/* ===( CODE AASHU )=== */
@font-face {
    font-family:"Jost-Regular";
    src: url("font/Jost-Regular.ttf");
}
@font-face {
    font-family:"Jost-Medium";
    src: url("font/Jost-Medium.ttf");
}
@font-face {
    font-family:"Jost-SemiBold";
    src: url("font/Jost-SemiBold.ttf");
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #07062c;
}
header{
    width: 100%;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(180deg, rgba(7,6,44,0.85), rgba(7,6,44,0));
}
.logo-text{
    font-family: "Jost-SemiBold";
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.logo-text span{
    color: #6ea8ff;
}
.logo-text.small{
    font-size: 20px;
}
.nav ul li a{
    color: inherit;
    text-decoration: none;
}
.hero-section{
    width: 100%;
    height: 100vh;
    background-image: url("img/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}
.menu,.close{
    display: none;
}
.nav ul{
    list-style: none;
    display: flex;
    align-items: center;
}
.nav ul li{
    font-family:"Jost-Medium";
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    margin-left: 50px;
    cursor: pointer;
    position: relative;
}
.nav ul li::after{
    content: '';
    position: absolute;
    top: -7px;
    left: -4px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    background: linear-gradient(45deg, #2e38b3,#104064);
    width: 0px;
    height: 0px;
    z-index: -1;
    transition: .5s;
}
.nav ul li:hover::after{
    width: 40px;
    height: 35px;
}
.hero-section h1{
    font-family:"Jost-SemiBold";
    font-weight: 600;
    font-size: 75px;
    line-height: 95px;
    color: #fff;
    width: 530px;
    padding-bottom: 15px;
    text-transform: capitalize;
    position: relative;
}
.hero-section h1::after{
    content: '';
    position: absolute;
    top: -75px;
    right: -55px;
    background-image: url("img/object.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 130px;
}
.hero-section p{
    font-family:"Jost-Regular";
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}
.hero-img img{
    height: 630px;
    margin-top: 90px;
    object-fit: contain;
    animation: move 3s infinite alternate;
}
@keyframes move {
    0%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(-10px);
    }
}

/* ── Sky.Solutions: buttons ── */
.hero-cta{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn{
    font-family: "Jost-Medium";
    font-size: 17px;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 40px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: inline-block;
}
.btn:hover{
    transform: translateY(-2px);
}
.btn-solid{
    background: linear-gradient(45deg, #2e38b3, #104064);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 100, 0.45);
}
.btn-ghost{
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #fff;
    background: transparent;
}
.btn-ghost:hover{
    background: rgba(255,255,255,0.1);
}

/* ── Sky.Solutions: scrolling content over the fixed hero ── */
.after-hero{
    position: relative;
    margin-top: 100vh;
    z-index: 1;
    background: #07062c;
    color: #fff;
}
.band{
    padding: 90px 0;
    background: #07062c;
}
.band.alt{
    background: #0b0a3a;
}
.wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.band h2{
    font-family: "Jost-SemiBold";
    font-size: 42px;
    text-transform: capitalize;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}
.band h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(45deg, #2e38b3, #6ea8ff);
}
.lede{
    font-family: "Jost-Regular";
    font-size: 19px;
    line-height: 1.7;
    color: #c9cfee;
    max-width: 640px;
}
.two-col{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.stats{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.stat{
    background: #0b0a3a;
    border: 1px solid rgba(110,168,255,0.18);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.band.alt .stat, .band.alt .card{
    background: #07062c;
}
.stat .num{
    font-family: "Jost-SemiBold";
    font-size: 34px;
    color: #6ea8ff;
}
.stat .label{
    font-family: "Jost-Regular";
    font-size: 15px;
    color: #c9cfee;
}
.cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card{
    background: #07062c;
    border: 1px solid rgba(110,168,255,0.18);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 30px 26px;
    transition: transform .3s ease, border-color .3s ease;
}
.card:hover{
    transform: translateY(-6px);
    border-color: #6ea8ff;
}
.card h3{
    font-family: "Jost-Medium";
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
}
.card p{
    font-family: "Jost-Regular";
    font-size: 15.5px;
    line-height: 1.65;
    color: #c9cfee;
}
.plans{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.plan{
    background: #0b0a3a;
    border: 1px solid rgba(110,168,255,0.18);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 34px 28px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.plan.popular{
    border-color: #6ea8ff;
    box-shadow: 0 18px 50px rgba(46,56,179,0.35);
}
.plan .badge{
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #2e38b3, #104064);
    color: #fff;
    font-family: "Jost-Medium";
    font-size: 13px;
    text-transform: capitalize;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.plan h3{
    font-family: "Jost-Medium";
    font-size: 22px;
    text-transform: capitalize;
}
.plan .price{
    font-family: "Jost-SemiBold";
    font-size: 46px;
    color: #6ea8ff;
}
.plan .price span{
    font-size: 18px;
    color: #c9cfee;
}
.plan ul{
    list-style: none;
    font-family: "Jost-Regular";
    font-size: 15.5px;
    color: #c9cfee;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.plan .btn{
    align-self: center;
}
.contact-wrap{
    text-align: center;
}
.contact-wrap .lede{
    margin: 0 auto;
}
.contact-wrap .hero-cta{
    justify-content: center;
}
.fineprint{
    font-family: "Jost-Regular";
    font-size: 14px;
    color: #8b93c4;
    margin-top: 30px;
}
.fineprint a{
    color: #6ea8ff;
    text-decoration: none;
}
footer{
    background: #05041f;
    padding: 44px 0 26px;
}
footer .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Jost-Regular";
    font-size: 14px;
    color: #8b93c4;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-grid{
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start !important;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(110,168,255,0.12);
    margin-bottom: 20px;
}
.footer-grid h4{
    font-family: "Jost-Medium";
    font-size: 14px;
    color: #fff;
    margin: 0 0 12px;
    text-transform: capitalize;
}
.footer-grid ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-grid a{
    color: #8b93c4;
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s ease;
}
.footer-grid a:hover{ color: #6ea8ff; }
.footer-grid p{
    font-size: 13.5px;
    line-height: 1.6;
    margin: 10px 0 0;
}
@media screen and (max-width:991px){
    .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* ── FAQ accordion ── */
.faq-item{
    background: #0b0a3a;
    border: 1px solid rgba(110,168,255,0.18);
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-item summary{
    font-family: "Jost-Medium";
    font-size: 17px;
    color: #fff;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #6ea8ff;
    font-size: 24px;
    transition: transform .3s ease;
}
.faq-item[open] summary::after{ transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary{ color: #6ea8ff; }
.faq-item .faq-a{
    font-family: "Jost-Regular";
    font-size: 15.5px;
    line-height: 1.7;
    color: #c9cfee;
    padding: 0 22px 20px;
}
.faq-item .faq-a a{ color: #6ea8ff; text-decoration: none; }
.faq-item .faq-a a:hover{ text-decoration: underline; }

/* ── Comparison table (AI workforce) ── */
.compare-wrap{ overflow-x: auto; }
.compare{
    width: 100%;
    border-collapse: collapse;
    font-family: "Jost-Regular";
    font-size: 15px;
    min-width: 560px;
}
.compare th{
    font-family: "Jost-Medium";
    font-size: 16px;
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid rgba(110,168,255,0.35);
}
.compare th.hl, .compare td.hl{
    background: rgba(46,56,179,0.25);
}
.compare td{
    color: #c9cfee;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(110,168,255,0.12);
    line-height: 1.5;
}
.compare td:first-child{ color: #fff; font-family: "Jost-Medium"; }

/* ── Inline text links inside bands ── */
.band .lede a, .band .checklist a, .card p a{
    color: #6ea8ff;
    text-decoration: none;
}
.band .lede a:hover, .band .checklist a:hover, .card p a:hover{ text-decoration: underline; }

/* ── Booking form ── */
.booking-form{
    max-width: 720px;
    margin: 28px auto 0;
    text-align: left;
}
.bf-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.booking-form label{
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-family: "Jost-Medium";
    font-size: 14px;
    color: #c9cfee;
}
.booking-form input,
.booking-form select{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(110,168,255,0.3);
    border-radius: 10px;
    padding: 13px 14px;
    font-family: "Jost-Regular";
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.booking-form input::placeholder{ color: rgba(255,255,255,0.35); }
.booking-form select{ appearance: none; cursor: pointer; }
.booking-form select option{ background: #0b0a3a; color: #fff; }
.booking-form input:focus,
.booking-form select:focus{
    border-color: #6ea8ff;
    background: rgba(255,255,255,0.09);
}
.bf-submit{
    display: block;
    margin: 22px auto 0;
    border: 0;
    cursor: pointer;
    font-family: "Jost-Medium";
}
.bf-submit:disabled{ opacity: .6; cursor: wait; }
.bf-status{
    font-family: "Jost-Regular";
    font-size: 14.5px;
    text-align: center;
    margin-top: 14px;
    min-height: 20px;
    color: #6ea8ff;
}
.bf-status.err{ color: #f87171; }
@media screen and (max-width:767px){
    .bf-grid{ grid-template-columns: 1fr; }
}

/* ── Breadcrumb ── */
.crumbs{
    font-family: "Jost-Regular";
    font-size: 13.5px;
    color: #8b93c4;
    margin-bottom: 18px;
}
.crumbs a{ color: #6ea8ff; text-decoration: none; }
.crumbs a:hover{ text-decoration: underline; }
@media screen and (max-width:991px){
    .two-col, .cards, .plans{
        grid-template-columns: 1fr;
    }
    .band{
        padding: 60px 0;
    }
    .band h2{
        font-size: 32px;
    }
}
@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .hero-img img{ animation: none; }
    .btn, .card{ transition: none; }
}

/* ── Services dropdown ── */
.nav ul li.has-dd{ position: relative; }
.nav ul li .dd{
    display: none;
    position: absolute;
    top: 100%;
    left: -14px;
    padding: 10px 0;
    min-width: 270px;
    background: #0b0a3a;
    border: 1px solid rgba(110,168,255,0.25);
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: stretch;
    z-index: 20;
}
.nav ul li.has-dd:hover .dd,
.nav ul li.has-dd:focus-within .dd{
    display: flex;
    animation: dd-open .3s cubic-bezier(.22,.61,.36,1);
    transform-origin: top center;
}
@keyframes dd-open{
    from{ opacity: 0; transform: translateY(-10px) scaleY(.96); }
    to{ opacity: 1; transform: translateY(0) scaleY(1); }
}
.nav ul .dd li{
    margin: 0;
    font-size: 15px;
    opacity: 0;
    animation: dd-item .35s ease forwards;
}
.nav ul .dd li:nth-child(1){ animation-delay: .04s; }
.nav ul .dd li:nth-child(2){ animation-delay: .08s; }
.nav ul .dd li:nth-child(3){ animation-delay: .12s; }
.nav ul .dd li:nth-child(4){ animation-delay: .16s; }
.nav ul .dd li:nth-child(5){ animation-delay: .20s; }
.nav ul .dd li:nth-child(6){ animation-delay: .24s; }
.nav ul .dd li:nth-child(7){ animation-delay: .28s; }
.nav ul .dd li:nth-child(8){ animation-delay: .32s; }
@keyframes dd-item{
    from{ opacity: 0; transform: translateX(-8px); }
    to{ opacity: 1; transform: translateX(0); }
}
.nav ul .dd li a{
    display: block;
    padding: 9px 18px;
    transition: padding-left .2s ease, color .2s ease;
}
.nav ul .dd li:hover{ background: rgba(110,168,255,0.12); }
.nav ul .dd li:hover a{ padding-left: 24px; color: #6ea8ff; }
.nav ul .dd li::after{ display: none; }
@media (prefers-reduced-motion: reduce){
    .nav ul li.has-dd:hover .dd, .nav ul li.has-dd:focus-within .dd{ animation: none; }
    .nav ul .dd li{ opacity: 1; animation: none; }
    .nav ul .dd li a{ transition: none; }
}
@media screen and (max-width:991px){
    .nav ul li .dd{
        display: flex;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: 0;
        padding: 6px 0 0;
    }
    .nav ul .dd li{ padding-bottom: 12px; font-size: 14px; opacity: 0.85; }
}

/* ── Blank pricing placeholders ── */
.plan.blank{ min-height: 240px; }

/* ── Receptionist AI widget ── */
#skyler-chat{ position: fixed; right: 22px; bottom: 22px; z-index: 99999; font-family: "Jost-Regular", sans-serif; }
.sc-launcher{
    width: 66px; height: 66px; border: 0; border-radius: 50%;
    background: #fff; padding: 7px; cursor: pointer; display: grid; place-items: center;
    box-shadow: 0 16px 38px rgba(10, 12, 60, 0.55);
}
.sc-launcher img{ width: 52px; height: 52px; border-radius: 50%; display: block; }
.sc-panel{
    display: none; position: absolute; right: 0; bottom: 82px;
    width: min(370px, calc(100vw - 32px)); height: 520px; max-height: calc(100vh - 120px);
    background: #0b0a3a; border: 1px solid rgba(110,168,255,0.3); border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55); overflow: hidden;
    flex-direction: column;
}
.sc-panel.open{ display: flex; }
.sc-head{
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(45deg, #2e38b3, #104064);
    padding: 12px 14px; color: #fff;
}
.sc-head img{ width: 40px; height: 40px; border-radius: 10px; background: #fff; }
.sc-title{ flex: 1; display: flex; flex-direction: column; line-height: 1.1; }
.sc-title strong{ font-family: "Jost-SemiBold"; font-size: 17px; }
.sc-title span{ font-size: 12px; opacity: 0.85; }
.sc-close{ background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; line-height: 1; }
.sc-log{ flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.sc-msg{ max-width: 85%; padding: 10px 12px; border-radius: 12px; font-size: 14px; line-height: 1.4; white-space: pre-wrap; }
.sc-msg.bot{ align-self: flex-start; background: rgba(255,255,255,0.08); color: #e7ebff; border: 1px solid rgba(110,168,255,0.18); border-bottom-left-radius: 4px; }
.sc-msg.user{ align-self: flex-end; background: linear-gradient(45deg, #2e38b3, #104064); color: #fff; border-bottom-right-radius: 4px; }
.sc-form{ display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(110,168,255,0.18); }
.sc-form input{
    flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(110,168,255,0.3);
    border-radius: 8px; padding: 10px 12px; font-size: 14px; color: #fff; outline: none;
}
.sc-form input:focus{ border-color: #6ea8ff; }
.sc-form button{
    border: 0; border-radius: 8px; background: linear-gradient(45deg, #2e38b3, #104064);
    color: #fff; padding: 0 16px; font-family: "Jost-Medium"; font-size: 14px; cursor: pointer;
}
.sc-form button:disabled{ opacity: 0.6; cursor: wait; }
.sc-teaser{
    display: none; position: absolute; right: 78px; bottom: 10px; max-width: 230px;
    background: #0b0a3a; border: 1px solid rgba(110,168,255,0.35);
    border-radius: 14px 14px 4px 14px; padding: 12px 14px;
    color: #e7ebff; font-size: 14px; line-height: 1.35; cursor: pointer;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.sc-teaser.show{ display: block; }
.sc-teaser button{
    position: absolute; top: -9px; right: -9px; width: 20px; height: 20px;
    border: 0; border-radius: 50%; background: #2e38b3; color: #fff;
    font-size: 12px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}

/* responsive */

/* laptop responsive- keep ur browser size in 1300px */
@media screen and (max-width:1440px){
    .logo img{
        width: 100px;
    }
    .nav ul li{
        font-size: 18px;
    }
    .hero-img img{
        height: 420px;
    }
    .hero-section h1{
        font-size: 60px;
        line-height: 75px;
        width: 460px;
    }
    .hero-section h1::after{
        top: -58px;
        right: 24px;
    }
}

/* small size laptop responsive - keep ur browser size in 1024px */

@media screen and (max-width:1200px){
    .logo img{
        width: 80px;
    }
    .nav ul li{
        font-size: 16px;
    }
    .hero-img img{
        height: 360px;
    }
    .hero-section h1{
        font-size: 50px;
        line-height: 65px;
        width: 387px;
    }
    .hero-section h1::after{
        top: -65px;
        right: 10px;
    }
    .hero-section p{
        font-size: 18px;
    }
    header{
        padding: 20px 80px;
    }
    .hero-section{
        padding: 0px 80px;
    }
}
/* tablet responsive - keep ur browser size in 768px */

@media screen and (max-width:991px){
    .hero-section{
        padding: 0px 50px ;
    }
    header{
        padding: 20px 50px ;
    }
    .hero-section h1{
        font-size: 40px;
        line-height: 60px;
        width: 320px;
    }
    .hero-section h1::after{
        top: -60px;
        right: 0px;
        background-size: contain;
    }
    .hero-img img{
        height: 30ppx;
    }
    .hero-section p{
        font-size: 14px;
    }
    .menu{
        display: block;
    }
    .close{
        display: block;
        z-index: 99;
        position: absolute;
        top: 30px;
        left: 30px;
    }
    .nav.active{
        right: -300px;
    }
    .nav{
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        background-color: #07062c;
        box-shadow: 0 40px 60px rgb(0 0 0 / 10%);
        transition: .5s ease-in-out;
    }
    .nav ul{
        flex-direction: column;
    }
    .nav ul li{
        margin-left: 0px;
        padding-bottom: 40px;
    }
}

/* mobile responsive - keep ur browser size in 360px */

@media screen and (max-width:650px){
    header{
        padding: 15px 25px;
    }
    .hero-section{
        padding: 0px 25px;
        flex-direction: column;
        row-gap: 25px;
    }
    .hero-section h1{
        font-size: 30px;
        line-height: 45px;
        width: 244px;
        padding-bottom: 5px;
    }
    .hero-section h1::after{
        top: -27px;
        right: 0px;
        width: 100px;
        height: 100px;
    }
    .content{
        margin-top: 100px;
    }
    .hero-img img{
        width: 100%;
        height: 100%;
        margin-top: 0px;
    }
    .logo img{
        width: 60px;
    }
}