/*=========================================================
    HERO SECTION
=========================================================*/

.hero{

    position:relative;

    padding-top: 80px;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#081B33;

    isolation:isolate;

}
/*=========================================================
    BACKGROUND SLIDER
=========================================================*/

.hero-slider{

    position:absolute;
    /* width: 100%; */
    inset:0;

    z-index:-3;

}

.hero-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:

        opacity 1.4s ease,

        transform 8s linear;

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

}

.hero-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.08);

}

.hero-slide.active img{

    animation:heroZoom 8s linear forwards;

}

@keyframes heroZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1.18);

    }

}

/*=========================================================
    DARK OVERLAY
=========================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    z-index:-2;

    background:

    linear-gradient(

        90deg,

        rgba(5,18,34,.92) 0%,

        rgba(5,18,34,.82) 45%,

        rgba(5,18,34,.74) 100%

    );

}

/*=========================================================
    BADGE
=========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    margin-bottom:28px;

    border-radius:999px;

    color:#fff;

    font-size:14px;

    font-weight:600;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

}

.hero-badge i{

    color:#3F7DFF;

}

/*=========================================================
    HEADING
=========================================================*/

.hero h1{

    margin:0;

    font-family:var(--heading-font);

    line-height:1.08;

    font-weight:800;

    color:#fff;

}

.hero-highlight{
    font-size: 68px;
    color:#3F7DFF;

}
.hero-highlight1{
    font-size: 36px;
}
.hero-highlight2{
    font-weight: 600;
    font-size: 28px;
}
/*=========================================================
    DESCRIPTION
=========================================================*/

.hero p{

    margin-top:15px;

    max-width:520px;

    color:rgba(255,255,255,.86);
    text-align: justify;
    font-size:14px;

    line-height:1.9;

}

/*=========================================================
    FEATURES
=========================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:q2px;
    align-items:center;

    margin-top:20px;
    font-weight:600;
    color:#fff;

}

.hero-feature{
    font-size: 14px;
}

.hero-feature i{

    color:#36D6FF;

}

/*=========================================================
    BUTTONS
=========================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:20px;

}

/*=========================================================
    PRIMARY BUTTON
=========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    transition:

        transform .35s,

        box-shadow .35s,

        background .35s,

        color .35s;

}

.btn-primary{

    color:#fff;

    background:

    linear-gradient(

        135deg,

        #00D9FF,

        #3F7DFF

    );

    box-shadow:

    0 18px 45px rgba(11,110,253,.28);

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:

    0 28px 55px rgba(11,110,253,.35);

}

/*=========================================================
    OUTLINE BUTTON
=========================================================*/

.btn-outline{

    color:#fff;

    border:2px solid rgba(255,255,255,.22);

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.05);

}

.btn-outline:hover{

    transform:translateY(-6px);

    background:#95c349;

    color:#081B33;

}

/*=========================================================
    SCROLL INDICATOR
=========================================================*/

.hero-scroll{

    position:absolute;

    left:50%;

    bottom:0px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    color:#fff;

    text-decoration:none;

    z-index:20;

}

.hero-scroll span{

    position:relative;

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.7);

    border-radius:30px;

}

.hero-scroll span::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    width:5px;

    height:10px;

    border-radius:20px;

    background:#fff;

    transform:translateX(-50%);

    animation:scrollWheel 2s infinite;

}

.hero-scroll small{

    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

}

@keyframes scrollWheel{

    0%{

        opacity:0;

        transform:

        translate(-50%,0);

    }

    30%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:

        translate(-50%,18px);

    }

}

/*=========================================================
    WAVE DIVIDER
=========================================================*/

.hero-wave{

    position:absolute;

    left:0;

    right:0;

    bottom:-2px;

    line-height:0;

    z-index:55;

}

.hero-wave svg{

    position: absolute;

    width:100%;

    height:130px;

}
/*=========================================================
    HERO ANIMATIONS
=========================================================*/

/*=========================================================
    HERO FADE IN
=========================================================*/

.hero-content{
    display: flex;


    animation:heroFade 1.1s ease forwards;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================================
    STAGGER ANIMATION
=========================================================*/

.hero-badge{

    animation:fadeUp .8s .1s both;

}

.hero h1{

    animation:fadeUp .9s .3s both;

}

.hero p{

    animation:fadeUp .9s .55s both;

}

.hero-features{
    gap:12px;
    animation:fadeUp .9s .75s both;

}

.hero-buttons{

    animation:fadeUp .9s .95s both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================================
    KEN BURNS EFFECT
=========================================================*/

.hero-slide img{

    animation:kenBurns 12s linear infinite;

}

@keyframes kenBurns{

    0%{

        transform:scale(1.08);

    }

    50%{

        transform:scale(1.16);

    }

    100%{

        transform:scale(1.10);

    }

}

/*=========================================================
    FLOATING PARTICLES
=========================================================*/

.hero-particles{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:2;

}

.hero-particles span{

    position:absolute;

    display:block;

    border-radius:50%;

    background:rgba(255,255,255,.22);

    animation:particleFloat linear infinite;

}

.hero-particles span:nth-child(1){

    left:8%;

    width:8px;

    height:8px;

    animation-duration:12s;

}

.hero-particles span:nth-child(2){

    left:20%;

    width:14px;

    height:14px;

    animation-duration:18s;

    animation-delay:2s;

}

.hero-particles span:nth-child(3){

    left:34%;

    width:6px;

    height:6px;

    animation-duration:10s;

}

.hero-particles span:nth-child(4){

    left:48%;

    width:18px;

    height:18px;

    animation-duration:20s;

}

.hero-particles span:nth-child(5){

    left:64%;

    width:9px;

    height:9px;

    animation-duration:14s;

}

.hero-particles span:nth-child(6){

    left:78%;

    width:12px;

    height:12px;

    animation-duration:17s;

}

.hero-particles span:nth-child(7){

    left:90%;

    width:7px;

    height:7px;

    animation-duration:11s;

}

@keyframes particleFloat{

    from{

        transform:

            translateY(110vh)

            translateX(0)

            scale(.4);

        opacity:0;

    }

    10%{

        opacity:.9;

    }

    50%{

        transform:

            translateY(50vh)

            translateX(-25px)

            scale(1);

    }

    to{

        transform:

            translateY(-120px)

            translateX(35px)

            scale(.5);

        opacity:0;

    }

}

/*=========================================================
    TEXT SHIMMER
=========================================================*/

.hero-highlight{

    background: linear-gradient(90deg, #a6bf3f, #cbb62a, #80c955);

    background-size:200% auto;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:textShimmer 3s linear infinite;

}

@keyframes textShimmer{

    from{

        background-position:0%;

    }

    to{

        background-position:200%;

    }

}

/*=========================================================
    BADGE GLOW
=========================================================*/

.hero-badge{

    box-shadow:

        0 0 0 rgba(54,214,255,.5);

    animation:

        badgeGlow 3s infinite;

}

@keyframes badgeGlow{

    0%{

        box-shadow:

            0 0 0 rgba(54,214,255,0);

    }

    50%{

        box-shadow:

            0 0 28px rgba(54,214,255,.35);

    }

    100%{

        box-shadow:

            0 0 0 rgba(54,214,255,0);

    }

}

/*=========================================================
    BUTTON SHINE
=========================================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:80px;

    height:100%;

    transform:skewX(-25deg);

    background:

        linear-gradient(

            to right,

            transparent,

            rgba(255,255,255,.45),

            transparent

        );

    transition:left .8s ease;

}

.btn:hover::before{

    left:140%;

}

.btn:hover{

    transform:

        translateY(-6px)

        scale(1.02);

}

/*=========================================================
    BUTTON ICON
=========================================================*/

.btn i{

    transition:

        transform .35s ease;

}

.btn:hover i{

    transform:translateX(6px);

}


.hero-right{
    position:relative;
    padding-top:60px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.stats-card{

    position:relative;

    width:90%;

    padding:15px;

    border-radius:32px;

    background: rgb(203 182 42 / 26%);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.15);

    overflow:hidden;

    animation:cardFloat 6s ease-in-out infinite;

    box-shadow:
    0 30px 60px rgba(0,0,0,.35),
    inset 0 1px rgba(255,255,255,.15);

}

.stats-card::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:linear-gradient(90deg, #cbb62a, #ffffff, #76cc5b);

    z-index:-1;

    filter:blur(12px);

    opacity:.45;

    animation:borderGlow 6s linear infinite;

}

.hero-glow{

    position:absolute;

    width:650px;
    height:650px;

    background:#00b7ff;

    filter:blur(180px);

    opacity:.15;

    animation:pulse 6s infinite;

}

.stat-item{

    display:grid;

    grid-template-columns:80px 1fr 180px;

    align-items:center;

    gap:10px;

    padding:0px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.stat-item:last-child{

    border:none;

}

.icon{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:24px;

    animation:iconFloat 4s ease-in-out infinite;

}

.blue{

    background:linear-gradient(#1db8ff,#275eff);

}

.green{

    background:linear-gradient(#2ed573,#17b978);

}

.gold{

    background:linear-gradient(#ffc107,#ff9800);

}

.purple{

    background:linear-gradient(#8e44ff,#5b2eff);

}

.stat-info{

    display:flex;
    flex-direction:column;

}

.stat-info span{

    font-size:24px;

    font-weight:700;

    color:white;

}

.stat-info h4{
    font-size:24px;

    margin-top:5px;

    color:#9ddcff;

    font-size:18px;

}

.stat-item p{

    color:#d3e4f4;
    font:18px ;
    line-height:1.1;

}

.stats-card:hover{

    transform:translateY(-12px);

    transition:.5s;

}

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.12);

}

.circle1{

    width:18px;
    height:18px;

    left:25px;
    top:40px;

    animation:particle 6s infinite;

}

.circle2{

    width:10px;
    height:10px;

    right:25px;
    top:130px;

    animation:particle2 8s infinite;

}

.circle3{

    width:16px;
    height:16px;

    bottom:20px;
    left:100px;

    animation:particle3 7s infinite;

}

@keyframes cardFloat{

0%,100%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

}

@keyframes borderGlow{

100%{

transform:rotate(360deg);

}

}

@keyframes pulse{

50%{

transform:scale(1.15);

opacity:.25;

}

}

@keyframes iconFloat{

50%{

transform:translateY(-8px);

}

}

@keyframes particle{

50%{

transform:translateY(-30px);

opacity:0;

}

}

@keyframes particle2{

50%{

transform:translateX(-40px);

opacity:.2;

}

}

@keyframes particle3{

50%{

transform:translate(-20px,-25px);

}

}
/*=========================================================
    MOUSE GLOW
=========================================================*/

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:

        radial-gradient(

            rgba(54,214,255,.12),

            transparent 70%

        );

    filter:blur(45px);

    pointer-events:none;

    animation:glowPulse 6s ease-in-out infinite;

    z-index:1;

}

@keyframes glowPulse{

    0%{

        transform:

            translate(-50%,-50%)

            scale(.9);

    }

    50%{

        transform:

            translate(-50%,-50%)

            scale(1.2);

    }

    100%{

        transform:

            translate(-50%,-50%)

            scale(.9);

    }

}

/*=========================================================
    HERO SCROLL BOUNCE
=========================================================*/

.hero-scroll{

    animation:

        heroScrollFloat 2.8s ease-in-out infinite;

}

@keyframes heroScrollFloat{

    0%{

        transform:

            translateX(-50%)

            translateY(0);

    }

    50%{

        transform:

            translateX(-50%)

            translateY(-8px);

    }

    100%{

        transform:

            translateX(-50%)

            translateY(0);

    }

}

/*=========================================================
    WAVE DIVIDER
=========================================================*/

.hero-wave{

    animation:

        waveFloat 8s ease-in-out infinite;

}


.hero-wave path{

    fill:#ffffff;

}

@keyframes waveFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(6px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================================================
    IMAGE DARKEN ON HOVER
=========================================================*/

.hero:hover .hero-slide.active img{

    filter:

        brightness(.92)

        saturate(1.08);

}

/*=========================================================
    REDUCED MOTION
=========================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

    }

}
/*==============================
Responsive Hero Right
==============================*/

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50%;
    position:relative;
}

/*==============================
1400px
==============================*/

@media (max-width:1400px){

.stats-card{

    width:500px;
    padding:15px;

}
.hero-content{

    

    margin:0 auto;

    padding:120px ;

}
.stat-item{

    grid-template-columns:70px 1fr 150px;
    gap:8px;

}


}


/*==============================
1200px
==============================*/

@media (max-width:1200px){

.stats-card{

    width:80%;
    max-width:480px;
    margin: 100px 20px;
}
.hero-content{

    /* max-width:1320px; */

    margin:0 auto;

    padding:120px ;

}
.stat-item{

    grid-template-columns:65px 1fr;

}

.stat-item p{

    grid-column:2;

    margin-top:8px;

}

}


/*==============================
992px
==============================*/

@media (max-width:992px){
.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-highlight{
    font-size: 48px;
    color:#3F7DFF;

}
.hero-highlight1{
    font-size: 36px;
}
.hero-highlight2{
    font-weight: 600;
    font-size: 28px;
}
.stats-card {
    width: 80%;
    max-width: 480px;
}
.hero-content{

    /* max-width:1320px; */

    margin:0 auto;

    padding:10px ;

}
.hero-right {
    width: 100%;
    margin-top: 0px;
    padding: 0;
}
.hero{

    flex-direction:column;

}

.hero-left{

    width:100%;

}

.hero-right{

    width:100%;

    margin-top:0px;

}

.stats-card{

    max-width:700px;

}

}


/*==============================
768px
==============================*/

@media (max-width:768px){
.hero h1{

    margin:0;

    font-family:var(--heading-font);

    line-height:1;

    font-weight:800;

    color:#fff;

}
.hero p{

    margin-top:10px;
    font-size:14px;
    line-height:1.02;

}
    .hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-highlight{
    font-size: 38px;
    color:#3F7DFF;

}
.hero-highlight1{
    font-size: 26px;
}
.hero-highlight2{
    font-weight: 600;
    font-size: 18px;
}
.stats-card {
    width: 80%;
    max-width: 480px;
}
.hero-content{

    /* max-width:1320px; */

    margin:0 auto;

    padding:10px 14px 10px;

}
.hero-scroll{
    bottom:5px;
    color: black;

}
.hero-scroll span{
    color: #5b2eff;
}
.hero-right {
    width: 100%;
    margin-top: 0px;
    padding: 0;
}
.stats-card{

    padding:8px;

    border-radius:24px;

}

.stat-item{

    grid-template-columns:52px 1fr 200px;

    text-align:center;

    justify-items:center;

    gap:12px;

}

.stat-item p{

    grid-column:auto;

}

.icon{

    width:60px;
    height:60px;

    font-size:22px;

}


}


/*==============================
576px
==============================*/

@media (max-width:576px){
.stats-card {
    width: 80%;
    max-width: 480px;
}
.hero-right{

    padding:0 8px;

}
.content-left{
    padding: 20px 5px;
}
.hero-highlight{
    color:#3F7DFF;
    line-height: 1.05;
}
.hero-highlight1{
    font-size: 34px;
    line-height: 1.05;

}
.hero-highlight2{
    font-weight: 600;
    font-size: 26px;
    line-height: 1.05;

}
.hero-content{

    max-width:1320px;

    margin:0 auto;

    padding:10px 14px 10px;

}
.stats-card{

    padding:20px;

}

.stat-item{

    padding:5px 0;

}

.hero-glow{

    width:350px;
    height:350px;

}

}


/*==============================
400px
==============================*/

@media (max-width:400px){
.hero-content{

    max-width:1320px;

    margin:0 auto;

    padding:10px 14px 10px;

}
.hero-highlight{
    font-size: 38px;
    color:#3F7DFF;

}
.hero-highlight1{
    font-size: 26px;
}
.hero-highlight2{
    font-weight: 600;
    font-size: 18px;
}
.stats-card{

    padding:9px;

}

.icon{

    width:52px;
    height:52px;

    font-size:18px;

}


.stat-item p{

    font-size:14px;
    line-height:1.5;

}

}


/*==============================
320px
==============================*/

@media (max-width:320px){

.hero-right{

    padding:0 5px;

}

.stats-card{

    padding:15px;

}

.hero-content{

    max-width:1320px;

    margin:0 auto;

    padding:10px 14px 10px;

}

.icon{

    width:45px;
    height:45px;

}

}


/*=========================================================
    HERO CONTENT LAYOUT — LEFT TEXT / RIGHT QUOTE FORM
=========================================================*/

.hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    /* width:100%; */

    max-width:1320px;

    margin:0 auto;

    /* padding:150px 24px 110px; */

    position:relative;

    z-index:10;

    flex-wrap:wrap;

}

.content-left{

    flex:1 1 520px;

    max-width:620px;

}

.content-right{

    flex:1 1 400px;

    display:flex;

    justify-content:center;

}
