


/* =========================================================
HERO
========================================================= */

.hero{
    min-height:890px;
    background:
    radial-gradient(circle at top right, rgba(66,165,245,.25), transparent 35%),
    linear-gradient(135deg,#0B2D5E 0%, #102F68 45%, #1565C0 100%);
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:150px 0 90px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
}

.hero::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
    top:-250px;
    right:-150px;
    animation:rotateGlow 20s linear infinite;
}

@keyframes rotateGlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.hero-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.hero-content{
    max-width:760px;
}

.hero-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:10px 18px;
    border-radius:999px;
    color:#7CC8FF;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:30px;
    animation:pulsePill 3s infinite;
}

@keyframes pulsePill{
    0%{
        box-shadow:0 0 0 0 rgba(124,200,255,.4);
    }
    70%{
        box-shadow:0 0 0 18px rgba(124,200,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(124,200,255,0);
    }
}

.hero-pill span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#7CC8FF;
}

.hero h1{
    width:100%;
    max-width:1000px;
    font-size:clamp(3rem, 4.2vw, 4.8rem);
    line-height:1.03;
    color:#fff;
    font-weight:700;
    letter-spacing:-3px;
    margin-bottom:28px;
}

.hero h1 span{
    color:#7CC8FF;
    position:relative;
}



.hero p{
    max-width: 1000px;
    color:rgba(255,255,255,.72);
    line-height:1.9;
    font-size: 1.4rem;
    font-weight: 500;
    /* margin-bottom:40px; */
}

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
    padding:18px 36px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 15px 35px rgba(232,64,28,.3);
}

.btn-primary:hover{
    transform:translateY(-5px) scale(1.02);
}

.btn-outline{
    border:1.5px solid rgba(255,255,255,.2);
    color:#fff;
    padding:17px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.btn-outline:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-3px);
}

.hero-visual{
    position:relative;
}

.hero-img-wrap{
    position:relative;
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-14px);
    }
    100%{
        transform:translateY(0px);
    }
}

.hero-img-wrap::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(66,165,245,.45), transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-img{
    width:100%;
    position:relative;
    z-index:2;
    border-radius:32px;
    box-shadow:0 40px 90px rgba(0,0,0,.35);
}


@media (max-width: 991px){

    .hero{
        min-height:auto;
        padding:120px 0 70px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:clamp(2.3rem,8vw,4rem);
        line-height:1.15;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:1rem;
        line-height:1.7;
        max-width:100%;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-img{
        max-width:100%;
        height:auto;
    }

    .hero-img-wrap::before{
        width:280px;
        height:280px;
    }
}

@media (max-width: 576px){

    .hero{
        padding-top:100px;
    }

    .hero h1{
        font-size:2rem;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        justify-content:center;
    }
}

/* =========================================================
STATS
========================================================= */

.stats{
    margin-top:80px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-radius:26px;
    overflow:hidden;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}

.stat{
    padding:20px 20px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.stat:last-child{
    border-right:none;
}

.stat:hover{
    background:rgba(255,255,255,.06);
    transform:translateY(-6px);
}

.stat h3{
    color:#fff;
    font-size:2.7rem;
    margin-bottom:10px;
}

.stat p{
    color:rgba(255,255,255,.7);
}

/* =========================================================
SECTION HEAD
========================================================= */

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:var(--accent);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    display:block;
    margin-bottom:16px;
}

.section-title{
    font-size:clamp(2.3rem,4vw,4rem);
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
    color:var(--navy);
}

.section-desc{
    max-width: 900px;
    margin:auto;
    line-height:1.9;
    color:var(--muted);
}

/* =========================================================
CARDS SECTION
========================================================= */

.cards-section{
    background:#F6F9FD;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
}

.card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #E7EDF6;
    transition:.45s cubic-bezier(.2,.8,.2,1);
    position:relative;
}

.card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,123,87,.08),transparent 45%);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.card:hover::before{
    opacity:1;
}

.card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 35px 70px rgba(15,23,42,.08);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-body{
    padding:30px;
    position:relative;
    z-index:2;
}

.tag{
    display:inline-block;
    background:#EEF4FF;
    color:#1565C0;
    padding:8px 14px;
    border-radius:999px;
    font-size:.72rem;
    font-weight:800;
    margin-bottom:18px;
}

.card h4{
    font-size:1.3rem;
    margin-bottom:12px;
    color:var(--navy);
}

.card p{
    font-size: 1.2rem;
    color:var(--muted);
    line-height:1.9;
}
/* =========================================================
STATS
========================================================= */

.stats{
    margin-top:80px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-radius:26px;
    overflow:hidden;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}

.stat{
    padding:38px 20px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.stat:last-child{
    border-right:none;
}

.stat:hover{
    background:rgba(255,255,255,.06);
    transform:translateY(-6px);
}

.stat h3{
    color:#fff;
    font-size:2.7rem;
    margin-bottom:10px;
}

.stat p{
    color:rgba(255,255,255,.7);
}

/* =========================================================
SECTION HEAD
========================================================= */

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:var(--accent);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    display:block;
    margin-bottom:16px;
}

.section-title{
    font-size:clamp(2.3rem,4vw,4rem);
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
    color:var(--navy);
}

.section-desc{
    max-width: 1500px;
    margin:auto;
    line-height:1.9;
    color:var(--muted);
}

/* =========================================================
CARDS SECTION
========================================================= */


.cards-section{
    background:#F6F9FD;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:24px;
}


.card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #E7EDF6;
    transition:.45s cubic-bezier(.2,.8,.2,1);
    position:relative;
}

.card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,123,87,.08),transparent 45%);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.card:hover::before{
    opacity:1;
}

.card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 35px 70px rgba(15,23,42,.08);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-body{
    padding:30px;
    position:relative;
    z-index:2;
}

.tag{
    display:inline-block;
    background:#EEF4FF;
    color:#1565C0;
    padding:8px 14px;
    border-radius:999px;
    font-size:.72rem;
    font-weight:800;
    margin-bottom:18px;
}


.card h4{
    font-size:1.2rem;
    margin-bottom:12px;
    color:var(--navy);
}

.card p{
    font-size: 1.0rem;
    color:var(--muted);
    line-height:1.9;
}


/* LARGE LAPTOP / SMALL DESKTOP */
@media (max-width:1400px){

    .cards-grid{
        grid-template-columns:repeat(6,1fr);
    }
}

/* TABLET */
@media (max-width:1100px){

    .cards-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* MOBILE */
@media (max-width:576px){

    .cards-grid{
        grid-template-columns:1fr;
    }
}

/* =========================================================
PILLARS SECTION
========================================================= */

.dark{
    background:
    radial-gradient(circle at top left, rgba(66,165,245,.12), transparent 30%),
    linear-gradient(135deg,#071C3C,#0B2D5E);
    position:relative;
    overflow:hidden;
}

.dark::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.03), transparent 70%);
    top:-350px;
    right:-200px;
    animation:spinSlow 30s linear infinite;
}

@keyframes spinSlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.dark .section-title{
    color:#fff;
}

.dark .section-desc{
    color:rgba(255,255,255,.68);
}

.dark .section-label{
    color:rgba(255,255,255,.5);
}

.dark-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
    position:relative;
    z-index:2;
}

.dark-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    padding:38px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    transition:.45s cubic-bezier(.2,.8,.2,1);
}

.dark-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,123,87,.15),
        transparent 40%,
        rgba(66,165,245,.10)
    );
    opacity:0;
    transition:.45s;
}

.dark-card:hover::before{
    opacity:1;
}

.dark-card:hover{
    transform:translateY(-12px) scale(1.02);
    border-color:rgba(255,123,87,.25);
    box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 40px rgba(255,123,87,.08);
}

.dark-card > *{
    position:relative;
    z-index:2;
}

.dark-icon{
    width:74px;
    height:74px;
    border-radius:22px;
    background:rgba(66,165,245,.12);
    color:#42A5F5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    margin-bottom:24px;
    transition:.45s cubic-bezier(.2,.8,.2,1);
    position:relative;
    overflow:hidden;
}

.dark-icon::before{
    content:'';
    position:absolute;
    width:160%;
    height:160%;
    background:
    linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.4),
        transparent 80%
    );
    transform:translateX(-130%) rotate(20deg);
    transition:.7s;
}

.dark-card:hover .dark-icon::before{
    transform:translateX(130%) rotate(20deg);
}

.dark-card:hover .dark-icon{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
    transform:rotate(-8deg) scale(1.08);
    box-shadow:0 20px 40px rgba(232,64,28,.35);
}

.dark-card:hover .dark-icon i{
    transform:scale(1.15);
}

.dark-icon i{
    transition:.35s;
}

.dark-card h4{
    color:#fff;
    font-size:1.3rem;
    margin-bottom:14px;
    transition:.35s;
}

.dark-card:hover h4{
    color:#FFB09B;
}

.dark-card p{
    font-size: 1.4rem;
    color:rgba(255,255,255,.68);
    line-height:1.9;
}

/* =========================================================
REVEAL
========================================================= */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero-btns{
        justify-content:center;
    }
}

@media(max-width:900px){

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:650px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.9rem;
    }

    .hero{
        padding:130px 0 70px;
    }
}

/* =========================================================
COMMON SECTION
========================================================= */

.section-head.center{
    text-align:center;
    max-width: 1500px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    color:#FF7B57;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:18px;
}

.section-head h2{
    font-size:clamp(2.3rem,4vw,4rem);
    line-height:1.1;
    color:#0B2D5E;
    font-weight:700;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.section-head h2 span{
    color:#1565C0;
    font-style:italic;
}

.section-head p{
    color:#64748B;
    font-size:1.4rem;
    line-height:1.9;
}

/* =========================================================
HOW IT WORKS
========================================================= */

.how-section{
    padding:120px 0;
    background:#F7F9FD;
    overflow:hidden;
}

.how-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.how-left{
    display:flex;
    flex-direction:column;
    gap: 10px;
}

.how-step{
    display:flex;
    gap:22px;
}

.step-number{
    width: 60px;
    height: 60px;
    min-width:44px;
    border-radius:12px;
    background:#2E86FF;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 1.4rem;
    font-weight:800;
    margin-top:4px;
    box-shadow:0 10px 30px rgba(46,134,255,.25);
}

.step-content h3{
    font-size:2rem;
    line-height:1.2;
    color:#0B2D5E;
    font-weight:800;
    margin-bottom:12px;
    letter-spacing:-1px;
}

.step-content p{
    color:#48627F;
    line-height:1.9;
    font-size: 1.4rem;
}

.how-image-wrap{
    position:relative;
}

.how-image-wrap::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle, rgba(66,165,245,.35), transparent 70%);
    top:-60px;
    right:-60px;
    z-index:0;
}

.how-image-wrap img{
    width:100%;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:0 40px 70px rgba(0,0,0,.15);
}

.floating-badge{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:5;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.badge-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#EAF3FF;
    color:#2E86FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
}

.floating-badge h4{
    font-size:1rem;
    font-weight:800;
    color:#0B2D5E;
    margin-bottom:4px;
}

.floating-badge p{
    color:#64748B;
    font-size:.85rem;
    margin:0;
}

/* =========================================================
METRICS
========================================================= */

.metrics-section{
    padding:70px 0;
    background:
    radial-gradient(circle at top right, rgba(66,165,245,.25), transparent 35%),
    linear-gradient(135deg,#0B2D5E 0%, #102F68 45%, #1565C0 100%);
}

.metrics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.metric-card{
    text-align:center;
}

.metric-card h3{
    color:#fff;
    font-size:4rem;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:10px;
}

.metric-card p{
    color:rgba(255,255,255,.75);
    font-size: 1.2rem;
}

/* =========================================================
CAPABILITIES
========================================================= */

.capabilities-section{
    padding:120px 0;
    background:#fff;
}

.cap-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.cap-card{
    background:#fff;
    border:1px solid #E7EDF6;
    border-radius:28px;
    padding:40px;
    transition:.35s;
}

.cap-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.cap-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#EEF5FF;
    color:#2E86FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    margin-bottom:26px;
}

.cap-card h3{
    font-size:1.5rem;
    line-height:1.3;
    color:#0B2D5E;
    font-weight:800;
    margin-bottom:14px;
}

.cap-card p{
    font-size: 1.2rem;
    color:#64748B;
    line-height:1.9;
    /* font-size:.96rem; */
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .how-wrapper{
        grid-template-columns:1fr;
    }

    .metrics-grid{
        grid-template-columns:1fr 1fr;
    }

    .cap-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:700px){

    .metrics-grid{
        grid-template-columns:1fr;
    }

    .cap-grid{
        grid-template-columns:1fr;
    }

    .step-content h3{
        font-size:1.5rem;
    }

    .section-head h2{
        font-size:2.5rem;
    }
}

/* =========================================================
CARD + ICON ANIMATIONS
========================================================= */

/* smooth transition */

.cap-card,
.cap-icon,
.cap-icon i,
.metric-card,
.how-step,
.step-number{
    transition:all .4s ease;
}

/* =========================
CAPABILITY CARDS
========================= */

.cap-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid #E7EDF6;
    border-radius:28px;
    padding:40px;
    transition:.45s cubic-bezier(.2,.8,.2,1);
}

/* glowing gradient */

.cap-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,123,87,.10),
        transparent 40%,
        rgba(46,134,255,.08)
    );
    opacity:0;
    transition:.45s;
    z-index:0;
}

.cap-card:hover::before{
    opacity:1;
}

.cap-card:hover{
    transform:
    translateY(-12px)
    scale(1.02);
    border-color:rgba(255,123,87,.25);
    box-shadow:
    0 35px 70px rgba(15,23,42,.10),
    0 10px 30px rgba(255,123,87,.08);
}

/* keep content above overlay */

.cap-card > *{
    position:relative;
    z-index:2;
}

/* =========================
ICON ANIMATION
========================= */

.cap-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:#EEF5FF;
    color:#2E86FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    margin-bottom:26px;
    position:relative;
    overflow:hidden;
    transition:.45s cubic-bezier(.2,.8,.2,1);
}

/* shine effect */

.cap-icon::before{
    content:'';
    position:absolute;
    width:140%;
    height:140%;
    background:
    linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.45),
        transparent 80%
    );
    transform:translateX(-120%) rotate(20deg);
    transition:.6s;
}

.cap-card:hover .cap-icon::before{
    transform:translateX(120%) rotate(20deg);
}

/* icon hover color */

.cap-card:hover .cap-icon{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
    transform:
    rotate(-6deg)
    scale(1.08);
    box-shadow:
    0 20px 40px rgba(232,64,28,.30);
}

.cap-card:hover .cap-icon i{
    transform:scale(1.15);
}

/* heading animation */

.cap-card h3{
    transition:.35s;
}

.cap-card:hover h3{
    color:#E8401C;
}

/* =========================
HOW STEP ANIMATION
========================= */

.how-step{
    padding:18px;
    border-radius:22px;
    transition:.4s ease;
}

.how-step:hover{
    background:#fff;
    transform:translateX(10px);
    box-shadow:0 18px 40px rgba(15,23,42,.06);
}

.how-step:hover .step-number{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    transform:scale(1.08) rotate(-6deg);
    box-shadow:0 15px 30px rgba(232,64,28,.25);
}

/* =========================
METRIC CARD ANIMATION
========================= */

.metric-card{
    position:relative;
    padding:24px;
    border-radius:24px;
}

.metric-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    opacity:0;
    transition:.35s;
}

.metric-card:hover::before{
    opacity:1;
}

.metric-card:hover{
    transform:translateY(-8px);
}

.metric-card h3{
    transition:.35s;
}

.metric-card:hover h3{
    transform:scale(1.08);
    color:#fff;
}

/* =========================
FLOATING BADGE
========================= */

.floating-badge{
    animation:floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
IMAGE ANIMATION
========================= */

.how-image-wrap img{
    transition:transform .6s ease;
}

.how-image-wrap:hover img{
    transform:scale(1.03);
}

/* =========================
SECTION TITLE ANIMATION
========================= */

.section-head h2 span{
    display:inline-block;
    animation:waveText 3s ease-in-out infinite;
}

@keyframes waveText{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================================================
CTA
========================================================= */

.cta{
    background:var(--navy);
    text-align:center;
}

.cta h2{
    color:#fff;
    font-size:clamp(2rem,4vw,4rem);
    line-height:1.1;
    margin-bottom:22px;
    font-weight:900;
}

.cta p{
    max-width:760px;
    margin:auto auto 40px;
    color:rgba(255,255,255,.65);
    line-height:1.9;
}

.cta-btns{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-white{
    background:#fff;
    color:var(--navy);
    padding:16px 32px;
    border-radius:12px;
    font-weight:800;
    text-decoration:none;
}

.btn-white:hover{
    background:#EEF2F6;
}

.btn-white-outline{
    border:1.5px solid rgba(255,255,255,.3);
    color:#fff;
    padding:15px 32px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
}

/* =========================================================
FOOTER
========================================================= */

footer{
    background:var(--navy-deep);
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-title{
    color:#fff;
    margin-bottom:22px;
    font-size: 1.6rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:rgba(255,255,255,.55);
    text-decoration:none;
    font-size: 1.2rem;
}

.footer-links a:hover{
    color:#fff;
}

.footer-brand{
    color:#fff;
    font-size:1.8rem;
    font-weight:900;
    margin-bottom:16px;
}

.footer-text{
    color:rgba(255,255,255,.5);
    line-height:1.8;
    max-width:320px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:24px;
    text-align:center;
    color:rgba(255,255,255,.35);
    font-size:.82rem;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:560px){

    .footer-grid{
        grid-template-columns:1fr;
    }
}

/* =========================================================
ANIMATION
========================================================= */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* =========================================================
IMPACT STRIP
========================================================= */

.impact-strip{
    padding:70px 0;
    background:#fff;
}

.impact-top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    margin-bottom:60px;
}

.impact-top h3{
    font-size:1.8rem;
    font-weight:800;
    color:var(--navy);
    text-align:center;
    white-space:nowrap;
}

.impact-line{
    height:2px;
    width:120px;
    background:#DCE6F5;
}

.impact-grid{
    background:#fff;
    border:1px solid #E6EDF7;
    border-radius:32px;
    padding:45px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    box-shadow:0 15px 40px rgba(15,23,42,.04);
}

.impact-item{
    display:flex;
    gap:18px;
    padding:10px;
    transition:.35s ease;
}

.impact-item:hover{
    transform:translateY(-6px);
}

.impact-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.5rem;
    transition:.4s ease;
}

.impact-item:hover .impact-icon{
    transform:scale(1.08) rotate(-6deg);
}

.green{
    background:linear-gradient(135deg,#32B44A,#1C8D35);
}

.blue{
    background:linear-gradient(135deg,#2E86FF,#1565C0);
}

.purple{
    background:linear-gradient(135deg,#7B4DFF,#5E35D6);
}

.orange{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
}

.teal{
    background:linear-gradient(135deg,#0FA8B8,#007E8C);
}

.impact-item h4{
    font-size:1.05rem;
    color:var(--navy);
    margin-bottom:10px;
    font-weight:800;
}

.impact-item p{
    color:var(--muted);
    line-height:1.7;
    font-size:.92rem;
}

/* =========================================================
WHY AATMAN
========================================================= */

.why-aatman{
    padding:120px 0;
    background:#F7F9FD;
}

.why-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #E3EAF5;
    border-left:1px solid #E3EAF5;
}

.why-card{
    background:#fff;
    padding:60px 42px;
    border-right:1px solid #E3EAF5;
    border-bottom:1px solid #E3EAF5;
    transition:.4s cubic-bezier(.2,.8,.2,1);
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:'';
    position:absolute;
    left:0;
    top:40px;
    width:4px;
    height:28px;
    background:var(--accent);
    border-radius:20px;
}

.why-card:hover{
    transform:translateY(-10px);
    z-index:2;
    box-shadow:0 30px 60px rgba(15,23,42,.08);
}

.why-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:#EEF5FF;
    color:#1565C0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:28px;
    transition:.4s ease;
}

.why-card:hover .why-icon{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
    transform:rotate(-8deg) scale(1.08);
}

.why-card h3{
    font-size:2rem;
    line-height:1.2;
    font-weight:800;
    color:var(--navy);
    margin-bottom:18px;
    letter-spacing:-1px;
}

.why-card p{
    color:var(--muted);
    line-height:1.9;
    font-size:1rem;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .impact-grid{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .impact-grid{
        grid-template-columns:1fr;
        padding:30px;
    }

    .impact-top{
        flex-direction:column;
    }

    .impact-line{
        display:none;
    }

    .impact-top h3{
        white-space:normal;
        font-size:1.5rem;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:40px 30px;
    }

    .why-card h3{
        font-size:1.6rem;
    }
}
