/* ===( 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: 26px 0;
}
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;
}
@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; }
}

/* 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;
    }
}