*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --blue:#1a3fa0;
  --blue-dark:#122d7a;
  --blue-light:#2550c8;
  --blue-pale:#e8eef9;
  --blue-mid:#d0dcf5;
  --red:#DC0000;
  --red-dark:#DC0000;
  --red-pale:#fdeaea;
  --white:#ffffff;
  --off-white:#f8f9fc;
  --light:#f2f4fa;
  --ink:#0d1526;
  --ink2:#ffffff;
  --muted:#6b7494;
  --border:#e2e6f3;
  --shadow-blue:rgba(26,63,160,0.15);
  --shadow-red:rgba(227,30,36,0.15);
}
html{scroll-behavior:smooth}
body{font-family:'poppins',sans-serif;font-weight:400;color:var(--ink);background:linear-gradient(90deg,#071326e3,#0A3d91);overflow-x:hidden;line-height:1.6}


/* ==========================
   FLOATING SOCIAL BAR
========================== */

.side-social{
    position:fixed;
    right:20px;
    left:auto;
    top:65%;
    transform:translateY(-50%);
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:12px;

    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.side-social.show{
    opacity:1;
    visibility:visible;
}
.side-social .social{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    transition:.3s;
    border:2px solid ;
}

.side-social .social:hover{
    transform:translateX(5px);
}

/* COLORS */

.instagram{
    background:#E4405F;
}

.facebook{
    background:#1877F2;
}

.youtube{
    background:#FF0000;
}

.whatsapp{
    background:#25D366;
}
.side-social .instagram:hover{
    background:#E4405F;
}

.side-social .facebook:hover{
    background:#1877F2;
}

.side-social .youtube:hover{
    background:#FF0000;
}

.side-social .whatsapp:hover{
    background:#25D366;
}

.side-social .linkedin:hover{
    background:#0A66C2;
}
@media(max-width:768px){

    .side-social{

        right:10px;

        left:auto;

    }

}/* ═══════════════════════════════════════════   STICKY NAV═══════════════════════════════════════════ */
nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#ffffff;
    border-bottom:1px solid #e2e6f3;
    padding:0 5vw;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    /* box-shadow:0 2px 20px rgba(0,0,0,0.06); */
}
/* LOGO */
.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}
.nav-logo-img{
    width:auto;
    height:60px;
    object-fit:contain;
}
/* MENU */
.nav-links{
    display:flex;
    align-items:center;
    gap:1.8rem;

    list-style:none;
}
.nav-links li{
    list-style:none;
}
.nav-links a{
    position:relative;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    color:#0a3d91;
    transition:.3s ease;
    padding-bottom:4px;
}
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:#e31e24;
    transition:.3s ease;
}
.nav-links a:hover{
    color:#000000;
}
.nav-links a:hover::after{
    width:100%;
}
/* BUTTONS */
.nav-actions{
    display:flex;
    align-items:center;
    gap:.8rem;
}
.btn-nav-ghost{
    text-decoration:none;
    font-size:.82rem;
    font-weight:600;
    color:#1a3fa0;
    border:2px solid #1a3fa0;
    padding:.55rem 1.2rem;
    border-radius:50px;
    transition:.3s ease;
}
.btn-nav-ghost:hover{
    background:#1a3fa0;
    color:#fff;
}
.btn-nav-solid{
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#e31e24,#b8181d);
    padding:.6rem 1.4rem;
    border-radius:50px;
    transition:.3s ease;
    /* box-shadow:0 4px 14px rgba(227,30,36,0.2); */
}
.btn-nav-solid:hover{
    transform:translateY(-2px);
}
/* TOGGLE */
.nav-toggle{
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}
.nav-toggle span{
    width:24px;
    height:2px;
    background:#111;
    border-radius:2px;
    transition:.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

/* LAPTOP */
@media(max-width:1200px){

    .nav-links{
        gap:1rem;
    }

    .nav-links a{
        font-size:.82rem;
    }

}

/* TABLET */
@media(max-width:992px){

    nav{
        padding:0 1rem;
    }

    .nav-toggle{
        display:flex;
    }

    .nav-actions{
        display:none;
    }

    .nav-links{
        position:absolute;

        top:75px;
        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        padding:1.5rem;

        gap:1rem;

        display:none;

        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .nav-links.show{
        display:flex;
    }

}

/* MOBILE */
@media(max-width:768px){

    nav{
        height:68px;
    }

    .nav-logo-img{
        height:52px;
    }

}

/* SMALL MOBILE */
@media(max-width:420px){

    .nav-logo-img{
        height:45px;
    }

}
/* ═══════════════════════════════════════════   HERO SECTION═══════════════════════════════════════════ */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    margin:0;
    padding:0;
}
/* SWIPER */
.heroSwiper{
    width:100%;
    height:100%;
    cursor:grab;
}
.swiper-wrapper{
    width:100%;
    height:100%;
}
.hero-slide{
    width:100%;
    height:100%;
    overflow:hidden;
}
.heroSwiper:active{
    cursor:grabbing;
}
.hero-slide img{
    width:100%;
    height:100%;
    display:block;
    object-fit: fill;
    object-position:center;
    transition:transform 6s ease;
    margin-top:60px;
    
}
.banner4-slide img{
    object-fit: contain;
    margin-top: 10px;
    background: #fff;
}


.swiper-pagination{
    bottom:25px !important;
}
.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#ffffff;
    opacity:.7;
}
.swiper-pagination-bullet-active{
    background:#e31e24;

    opacity:1;
}

/* RESPONSIVE - FULL IMAGE VISIBLE */
@media(max-width:1200px){
    .hero{
        height:90vh;
    }

    .hero-slide img{
        object-fit:contain;
        object-position:center;
    }
}

@media(max-width:992px){
    .hero{
        height:80vh;
    }

    .hero-slide img{
        object-fit:cover;
        object-position:center;
    }
}
/* MOBILE */
@media(max-width:768px){

    .hero{
        height:auto;
        aspect-ratio:16/9;
        background:#fff;
    }

    .heroSwiper,
    .swiper-wrapper,
    .swiper-slide,
    .hero-slide{
        width:100%;
        height:100%;
    }

    .hero-slide img{
        width:100%;
        height:100%;
        display:block;

        /* MAIN FIX */
        object-fit:contain;

        object-position:center;
        background:#fff;
    }
}

@media (max-width: 480px) {

  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide,
  .hero-slide {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    aspect-ratio: unset !important;
  }

  .hero-slide img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: unset !important;
    object-position: unset !important;
    margin-top:60px;
  }

  .swiper-pagination {
    bottom: 5px !important;
  }
}/* ═══════════════════════════════════════════   TICKER STRIP═══════════════════════════════════════════ */
.ticker{
    background:var(--red);
    padding:.75rem 0;
    overflow:hidden;
}

.ticker-track{
    display:flex;
    white-space:nowrap;
    animation:ticker 20s linear infinite;
}

.ticker-item{
    display:inline-flex;
    align-items:center;
    gap:1.5rem;
    padding:0 2rem;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,.85);
}

.ticker-sep{
    color:rgba(255,255,255,.4);
    font-size:.5rem;
}

/* =========================
   LARGE DESKTOP 1600+
========================= */

@media(max-width:1600px){

    .ticker-track{
        animation-duration:22s;
    }
}

/* =========================
   LAPTOP 1200px
========================= */

@media(max-width:1200px){

    .ticker{
        padding:.7rem 0;
    }

    .ticker-item{
        font-size:.72rem;
        padding:0 1.7rem;
        gap:1.2rem;
        letter-spacing:.12em;
    }

    .ticker-track{
        animation-duration:24s;
    }
}

/* =========================
   TABLET 992px
========================= */

@media(max-width:992px){

    .ticker{
        padding:.65rem 0;
    }

    .ticker-item{
        font-size:.68rem;
        padding:0 1.4rem;
        gap:1rem;
        letter-spacing:.1em;
    }

    .ticker-sep{
        font-size:.45rem;
    }

    .ticker-track{
        animation-duration:26s;
    }
}

/* =========================
   TABLET / MOBILE 768px
========================= */

@media(max-width:768px){

    .ticker{
        padding:.6rem 0;
    }

    .ticker-item{
        font-size:.65rem;
        padding:0 1.1rem;
        gap:.8rem;
        letter-spacing:.08em;
    }

    .ticker-track{
        animation-duration:28s;
    }
}

/* =========================
   MOBILE 576px
========================= */

@media(max-width:576px){

    .ticker{
        padding:.55rem 0;
    }

    .ticker-item{
        font-size:.58rem;
        padding:0 .9rem;
        gap:.6rem;
        letter-spacing:.06em;
    }

    .ticker-sep{
        font-size:.4rem;
    }

    .ticker-track{
        animation-duration:30s;
    }
}

/* =========================
   SMALL MOBILE 400px
========================= */

@media(max-width:400px){

    .ticker{
        padding:.5rem 0;
    }

    .ticker-item{
        font-size:.52rem;
        padding:0 .7rem;
        gap:.45rem;
        letter-spacing:.05em;
    }

    .ticker-track{
        animation-duration:34s;
    }
}

/* ═══════════════════════════════════════════   SHARED SECTION STYLES═══════════════════════════════════════════ */
section{
    padding:6rem 5vw;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    font-size:.98rem;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:1rem;
}

.section-label::before{
    content:'';
    width:20px;
    height:3px;
    background:var(--red);
    border-radius:2px;
}

.section-h2{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.1;
    color:#fff;
    letter-spacing:-.02em;
    margin-bottom:1rem;
}

.section-h2 .blue{
    color:#dc0000;
}

.section-h2 .red{
    color:var(--red);
}

/* .section-desc-1{
    font-size:18px;
    font-weight:300;
    line-height:1.85;
    color:white;
    max-width:56ch;
    text-align:center;
}
 */

 .why .section-desc{

    text-align:center;

}


.section-desc{
    font-size:18px;
    font-weight:300;
    line-height:1.85;
    color:white;
    max-width:56ch;
    text-align:justify;
}

.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .65s ease, transform .65s ease;
}

.reveal.in{
    opacity:1;
    transform:none;
}

/* =========================   LARGE DESKTOP ========================= */

@media screen and (max-width:1600px){

    section{
        padding:5.5rem 4.5vw;
    }

    .section-desc{
        font-size:17px;
    }
}

/* ========================   LAPTOP ========================= */

@media screen and (max-width:1200px){

    section{
        padding:5rem 4vw;
    }

    .section-label{
        font-size:.9rem;
        letter-spacing:.18em;
    }

    .section-h2{
        line-height:1.15;
    }

    .section-desc{
        font-size:16px;
        line-height:1.75;
    }
}

/* =========================   TABLET ========================= */

@media screen and (max-width:992px){

    section{
        padding:4.5rem 4vw;
    }

    .section-label{
        font-size:.85rem;
        gap:.5rem;
    }

    .section-label::before{
        width:18px;
    }

    .section-h2{
        font-size:2.3rem;
    }

    .section-desc{
        font-size:15px;
        line-height:1.7;
        max-width:100%;
    }
}

/* =========================   TABLET / MOBILE ========================= */

@media screen and (max-width:768px){

    section{
        padding:4rem 5%;
    }

    .section-label{
        font-size:.8rem;
        letter-spacing:.15em;
        margin-bottom:.8rem;
    }

    .section-label::before{
        width:16px;
        height:2px;
    }

    .section-h2{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:.8rem;
    }

    .section-desc{
        font-size:14px;
        line-height:1.65;
        text-align:left;
    }

    .reveal{
        transform:translateY(20px);
    }
}

/* =========================   MOBILE ========================= */

@media screen and (max-width:576px){

    section{
        padding:3.5rem 4%;
    }

    .section-label{
        font-size:.72rem;
        gap:.45rem;
    }

    .section-h2{
        font-size:1.7rem;
        letter-spacing:-.01em;
    }

    .section-desc{
        font-size:13px;
        line-height:1.6;
    }
}

/* =========================   SMALL MOBILE========================= */

@media screen and (max-width:400px){

    section{
        padding:3rem 4%;
    }

    .section-label{
        font-size:.65rem;
        letter-spacing:.12em;
    }

    .section-label::before{
        width:14px;
    }

    .section-h2{
        font-size:1.45rem;
    }

    .section-desc{
        font-size:12px;
        line-height:1.55;
    }
}

/* ═══════════════════════════════════════════   ABOUT═══════════════════════════════════════════ */
.about{background:transparent;}
.about-inner{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;}
.about-text .section-desc{margin-bottom:2rem;}
.about-highlights{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:2rem;}
.ah{background:var(--off-white);border:1px solid var(--border);border-radius:12px;padding:1.1rem;display:flex;align-items:flex-start;gap:.8rem;transition:.3s ease;}
.ah:hover{border-color:var(--blue);box-shadow:0 4px 16px var(--shadow-blue);}
.ah-icon{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;}
.about-highlights .ah:nth-child(1) .ah-icon{background:#fff7ed;color:#f97316;}
.about-highlights .ah:nth-child(2) .ah-icon{background:#ecfeff;color:#06b6d4;}
.about-highlights .ah:nth-child(3) .ah-icon{background:#fef2f2;color:#ef4444;}
.about-highlights .ah:nth-child(4) .ah-icon{background:#f3e8ff;color:#9333ea;}
.ah-title{font-size:.85rem;font-weight:700;color:var(--ink);margin-bottom:.2rem;}
.ah-body{font-size:.75rem;color:var(--muted);line-height:1.5;}
.about-ctas{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-solid-blue,.btn-solid-red{display:inline-block;color:var(--white);font-weight:700;font-size:.85rem;letter-spacing:.04em;text-decoration:none;padding:.85rem 2rem;border-radius:50px;transition:all .25s;}
.btn-solid-blue{background:linear-gradient(135deg,var(--blue),var(--blue-light));box-shadow:0 4px 16px var(--shadow-blue);}
.btn-solid-red{background:linear-gradient(135deg,var(--red),var(--red-dark));box-shadow:0 4px 14px var(--shadow-red);}
.btn-solid-blue:hover{transform:translateY(-2px);box-shadow:0 8px 24px var(--shadow-blue);}
.btn-solid-red:hover{transform:translateY(-2px);box-shadow:0 8px 22px var(--shadow-red);}
.about-visual{position:relative;}
.about-img-box{position:relative;min-height:520px;border-radius:24px;overflow:hidden;background:linear-gradient(145deg,var(--blue-pale),var(--blue-mid));box-shadow:0 20px 60px var(--shadow-blue);}
.about-bg-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.about-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);z-index:1;}
.aib-center{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:2rem;}
.aib-bg{position:absolute;inset:0;opacity:.15;background-image:radial-gradient(rgba(26,63,160,.4) 1px,transparent 1px);background-size:20px 20px;}
/* .aib-icon{font-size:3rem;color:#10b981;margin-bottom:1rem;} */
.aib-text{color:#fff;font-size:2rem;font-weight:800;line-height:1.3;margin-top:8.5rem}
.aib-text span{display:block;font-size:1rem;font-weight:600;margin-top:1.5rem;color:#f3f4f6;}
.about-badge-float,.about-badge-float2{position:absolute;z-index:10;border-radius:16px;padding:1rem 1.2rem;}
.about-badge-float{right:-1rem;bottom:1rem;background:#fff;border:1px solid var(--border);min-width:150px;box-shadow:0 12px 40px rgba(26,63,160,.2);}
.about-badge-float2{left:-1rem;top:1rem;background:linear-gradient(135deg,var(--red),var(--red-dark));box-shadow:0 12px 30px var(--shadow-red);}
.abf-num{font-family:'Outfit',sans-serif;font-weight:900;font-size:2rem;color:var(--blue);line-height:1;}
.abf-label{font-size:.7rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-top:2px;}
.abf2-icon{font-size:1.5rem;color:#facc15;margin-bottom:.4rem;display:block;}
.abf2-text{font-size:.78rem;font-weight:700;color:#fff;line-height:1.3;}
@media(max-width:1600px){.about-inner{grid-template-columns:1.05fr .95fr;gap:1.5rem;}.about-img-box{min-height:480px;}.aib-text{font-size:1.8rem;}}
@media(max-width:1200px){.about-inner{gap:2rem;}.about-img-box{min-height:460px;}.aib-text{font-size:1.7rem;}.about-badge-float,.about-badge-float2{padding:1rem 1.2rem;}}
@media(max-width:992px){.about-inner{grid-template-columns:1fr;gap:2rem;}.about-visual{order:-1;}.about-img-box{min-height:430px;}.about-badge-float{right:1rem;bottom:1rem;}.about-badge-float2{left:1rem;top:1rem;}.aib-center{padding:2rem;}.aib-text{font-size:1.6rem;}}
@media(max-width:768px){.about{padding:70px 5%;}.about-highlights{grid-template-columns:1fr;gap:1rem;}.about-ctas{flex-direction:column;}.btn-solid-blue,.btn-solid-red{width:100%;text-align:center;}.about-img-box{min-height:350px;border-radius:20px;}.aib-text{font-size:1.4rem;line-height:1.3;}.aib-text span{font-size:.9rem;}.about-badge-float,.about-badge-float2{padding:1rem;border-radius:14px;}.abf-num{font-size:1.5rem;}.ah{padding:1rem;}.ah-icon{width:46px;height:46px;font-size:1rem;}.ah-title{font-size:.8rem;}.ah-body{font-size:.72rem;}}
@media(max-width:576px){.about{padding:60px 4%;}.about-inner{gap:1.5rem;}.about-img-box{min-height:320px;border-radius:18px;}.aib-center{padding:1.5rem;}.aib-icon{font-size:2.8rem;}.aib-text{font-size:1.25rem;}.aib-text span{font-size:.82rem;}.about-badge-float{min-width:120px;right:.5rem;bottom:.5rem;}.about-badge-float2{left:.5rem;top:.5rem;}.abf-num{font-size:1.3rem;}.abf-label{font-size:.62rem;}.abf2-text{font-size:.68rem;}.btn-solid-blue,.btn-solid-red{font-size:.8rem;padding:.8rem 1.4rem;}}
@media(max-width:400px){.about{padding:50px 4%;}.about-img-box{min-height:280px;}.aib-icon{font-size:2.3rem;}.aib-text{font-size:1.05rem;}.aib-text span{font-size:.75rem;}.about-badge-float,.about-badge-float2{padding:.75rem;}.abf-num{font-size:1.1rem;}.ah{padding:.9rem;gap:.6rem;}.ah-icon{width:40px;height:40px;font-size:.9rem;}.ah-title{font-size:.75rem;}.ah-body{font-size:.68rem;line-height:1.4;}}
/* ═══════════════════════════════════════════WHY CHOOSE US═══════════════════════════════════════════ */
.why{
    /* background:linear-gradient(180deg,var(--off-white) 0%,var(--white) 100%); */
    background:transparent;
}
.why-header{
    text-align:center;
    margin-bottom:3.5rem;
}
.why-header .section-label{
    justify-content:center;
}
.why-header .section-label::before{
    display:none;
}
.why-header .section-desc{
    margin:0 auto;
    max-width:700px;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}
.why-card{
    background:#fff;
    border:1.5px solid var(--border);
    border-radius:18px;
    padding:1.6rem 1.5rem;
    display:flex;
    align-items:flex-start;
    gap:1rem;
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
    min-height:140px;
}
.why-card:hover{
    transform:translateY(-5px);

    border-color:var(--blue);

    box-shadow:0 10px 30px rgba(26,63,160,0.12);
}
.why-card.red-card:hover{

    border-color:var(--red);

    box-shadow:0 10px 30px rgba(227,30,36,0.12);
}
.wc-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
}
.wc-icon.blue-icon{
    background:#eef4ff;
}
.wc-icon.red-icon{
    background:#ffeef0;
}
.wc-content{
    flex:1;
}
.wc-title{
    font-size:20px;
    font-weight:800;
    color:var(--ink);
    margin-bottom:.4rem;
    line-height:1.3;
}
.wc-body{
    font-size:18px;
    line-height:1.7;
    color:var(--muted);
}
.why-card:nth-child(1) .wc-icon{
    background:#e8f0ff;
    color:#2563eb;
}
.why-card:nth-child(2) .wc-icon{
    background:#fff4e6;
    color:#f97316;
}
.why-card:nth-child(3) .wc-icon{
    background:#fef2f2;
    color:#ef4444;
}
.why-card:nth-child(4) .wc-icon{
    background:#f3e8ff;
    color:#9333ea;
}
.why-card:nth-child(5) .wc-icon{
    background:#ecfeff;
    color:#06b6d4;
}
.why-card:nth-child(6) .wc-icon{
    background:#ecfdf5;
    color:#10b981;
}
/* =========================
   LARGE DESKTOP 1600px
========================= */

@media screen and (max-width:1600px){

    .why-grid{
        gap:1.2rem;
    }

    .why-card{
        padding:1.5rem;
        min-height:130px;
    }

    .wc-title{
        font-size:19px;
    }

    .wc-body{
        font-size:17px;
    }
}

/* =========================
   LAPTOP 1200px
========================= */

@media screen and (max-width:1200px){

    .why-grid{
        gap:1rem;
    }

    .why-card{
        padding:1.4rem;
        min-height:125px;
    }

    .wc-icon{
        width:50px;
        height:50px;
        font-size:1.35rem;
    }

    .wc-title{
        font-size:18px;
    }

    .wc-body{
        font-size:16px;
        line-height:1.6;
    }
}

/* =========================
   TABLET 992px
========================= */

@media screen and (max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:1rem;
    }

    .why-card{
        padding:1.3rem;
        min-height:120px;
    }

    .wc-icon{
        width:48px;
        height:48px;
        font-size:1.2rem;
    }

    .wc-title{
        font-size:17px;
    }

    .wc-body{
        font-size:15px;
    }
}

/* =========================
   TABLET / MOBILE 768px
========================= */

@media screen and (max-width:768px){

    .why-header{
        margin-bottom:2.5rem;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:1rem;
    }

    .why-card{
        padding:1.2rem;
        gap:.9rem;
        min-height:auto;
    }

    .wc-icon{
        width:45px;
        height:45px;
        border-radius:12px;
        font-size:1.1rem;
    }

    .wc-title{
        font-size:16px;
    }

    .wc-body{
        font-size:14px;
        line-height:1.6;
    }
}

/* =========================
   MOBILE 576px
========================= */

@media screen and (max-width:576px){

    .why{
        padding:60px 4%;
    }

    .why-card{
        padding:1rem;
        border-radius:16px;
    }

    .wc-icon{
        width:42px;
        height:42px;
        font-size:1rem;
    }

    .wc-title{
        font-size:15px;
        margin-bottom:.3rem;
    }

    .wc-body{
        font-size:13px;
    }
}

/* =========================
   SMALL MOBILE 400px
========================= */

@media screen and (max-width:400px){

    .why{
        padding:50px 4%;
    }

    .why-card{
        padding:.9rem;
        gap:.7rem;
    }

    .wc-icon{
        width:38px;
        height:38px;
        font-size:.9rem;
        border-radius:10px;
    }

    .wc-title{
        font-size:14px;
    }

    .wc-body{
        font-size:12px;
        line-height:1.5;
    }
}


/* ═══════════════════════════════════════════   COURSES SECTION═══════════════════════════════════════════ */
.courses{
    padding:100px 7%;
    background:transparent;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.7rem;
    font-weight:800;
    color:#fff;
}

.section-title h2 span{
    color:#dc0000;
}

.section-title p{
    max-width:700px;
    margin:15px auto 0;
    font-size:1rem;
    line-height:1.8;
    color:#bfc3cc;
}

/* GRID */

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.course-card{
    position:relative;
    height:430px;
    border-radius:28px;
    overflow:hidden;
    cursor:pointer;
    transition:.5s ease;
}

/* BG IMAGE */

.bg-img{
    position:absolute;
    inset:0;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    transition:.5s ease;
}

.bg-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

/* OVERLAY */

.course-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.35),
        transparent
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:#fff;
}

/* TEXT */

.course-overlay h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:10px;
    color:#fff;
}

.course-overlay p{
    font-size:.95rem;
    line-height:1.7;
    color:rgba(255,255,255,.85);
}

/* HOVER */
.course-card:hover{
    transform:translateY(-10px);
}
.course-card:hover .bg-img img{
    transform:scale(1.08);
}
/* ========================   LARGE DESKTOP ========================= */
@media(max-width:1600px){

    .course-card{
        height:420px;
    }
}
/* =========================   LAPTOP ========================= */
@media(max-width:1200px){
    .courses{
        padding:90px 5%;
    }
    .course-grid{
        gap:30px;
    }
    .course-card{
        height:400px;
    }
    .course-overlay h3{
        font-size:24px;
    }
}
/* =========================   TABLET========================= */
@media(max-width:992px){
    .course-grid{
        grid-template-columns:repeat(2,1fr);
        gap:28px;
    }
    .course-card{
        height:380px;
    }
    .section-title h2{
        font-size:2.3rem;
    }
}
/* =========================   TABLET========================= */

@media(max-width:768px){
    .courses{
        padding:80px 5%;
    }
    .course-grid{
        grid-template-columns:1fr;
        gap:25px;
    }
    .course-card{
        height:370px;
    }
    .section-title{
        margin-bottom:45px;
    }
    .section-title h2{
        font-size:2rem;
    }
    .section-title p{
        font-size:.95rem;
    }
    .course-overlay{
        padding:25px;
    }
    .course-overlay h3{
        font-size:23px;
    }
    .course-overlay p{
        font-size:.9rem;
    }
}
/* =========================   MOBILE ========================= */
@media(max-width:576px){
    .courses{
        padding:70px 4%;
    }
    .course-card{
        height:330px;
        border-radius:22px;
    }
    .bg-img{
        border-radius:22px;
    }
    .section-title h2{
        font-size:1.8rem;
    }
    .section-title p{
        font-size:.9rem;
    }
    .course-overlay{
        padding:22px;
    }
   .course-overlay h3{
        font-size:21px;
    }
    .course-overlay p{
        font-size:.88rem;
        line-height:1.6;
    }
}
/* =========================   SMALL MOBILE ========================= */
@media(max-width:400px){
    .courses{
        padding:60px 4%;
    }
    .course-card{
        height:290px;
    }
    .section-title h2{
        font-size:1.6rem;
    }
   .course-overlay{
        padding:18px;
    }
    .course-overlay h3{
        font-size:19px;
    }
    .course-overlay p{
        font-size:.82rem;
    }
}
/* ═══════════════════════════════════════════   PROGRAMS HIGHLIGHT═══════════════════════════════════════════ */
.programs{
    /* background:var(--light) */
     background:transparent;
}
.programs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3.5rem}
.prog-card{border-radius:20px;padding:2.2rem;position:relative;overflow:hidden;cursor:default;transition:transform .3s,box-shadow .3s}
.prog-card:hover{transform:translateY(-4px)}
.prog-card.short{background:linear-gradient(145deg,#fff8f0,#ffe8c9);border:1.5px solid rgba(227,30,36,.15)}
.prog-card.short:hover{box-shadow:0 16px 48px rgba(227,30,36,.15)}
.prog-card.advanced{background:linear-gradient(145deg,var(--blue-pale),var(--blue-mid));border:1.5px solid rgba(26,63,160,.15)}
.prog-card.advanced:hover{box-shadow:0 16px 48px var(--shadow-blue)}
.prog-card.degree{background:linear-gradient(145deg,#0d1526,#1a2d5a);border:1.5px solid rgba(26,63,160,.3)}
.prog-card.degree:hover{box-shadow:0 16px 48px rgba(26,63,160,.35)}
.prog-duration{display:inline-flex;align-items:center;gap:.4rem;font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;border-radius:100px;padding:.3rem .8rem;margin-bottom:1.2rem}
.short .prog-duration{background:rgba(227,30,36,.12);color:var(--red);font-size:14px}
.advanced .prog-duration{background:rgba(26,63,160,.12);color:var(--blue);font-size:14px}
.degree .prog-duration{background:rgba(255,255,255,.1);color:rgba(255,255,255,.7);font-size:14px}
.prog-icon{font-size:2.5rem;display:block;margin-bottom:1rem}
.prog-title{font-size:1.2rem;font-weight:800;margin-bottom:.7rem}
.short .prog-title,.advanced .prog-title{font-size:30px;color:var(--ink)}
.degree .prog-title{color:#fff;font-size:30px;}
.prog-body{font-size:.82rem;font-weight:400;line-height:1.75;margin-bottom:1.5rem}
.short .prog-body,.advanced .prog-body{color:var(--muted);font-size:16px;}
.degree .prog-body{color:rgba(255,255,255,.6);font-size:16px;}
.prog-courses{display:flex;flex-wrap:wrap;gap:.4rem}
.prog-tag{font-size:.62rem;font-weight:600;letter-spacing:.06em;border-radius:100px;padding:.2rem .7rem}
.short .prog-tag{background:rgba(227,30,36,.1);color:var(--red);font-size:11px;}
.advanced .prog-tag{background:rgba(26,63,160,.1);color:var(--blue);font-size:11px;}
.degree .prog-tag{background:rgba(255,255,255,.1);color:rgba(255,255,255,.7);font-size:11px;}
.prog-card.short .prog-icon{
    background:#fff7ed;
    color:#f97316;
}
.prog-card.advanced .prog-icon{
    background:#ecfeff;
    color:#06b6d4;
}
.prog-card.degree .prog-icon{
    background:#fef3c7;
    color:#f59e0b;
}
.prog-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    margin-bottom:1.2rem;
}
.prog-card.short .prog-duration i{
    color:#f97316;
    margin-right:.4rem;
}
.prog-card.advanced .prog-duration i{
    color:#06b6d4;
    margin-right:.4rem;
}
.prog-card.degree .prog-duration i{
    color:#facc15;
    margin-right:.4rem;
}
.btn-solid-red i{
    margin-right:.4rem;
}
/* =========================   LARGE DESKTOP ========================= */
@media screen and (max-width:1600px){
    .programs-grid{
        gap:1.3rem;
        margin-top:3rem;
    }
    .prog-card{
        padding:2rem;
    }
    .prog-title{
        font-size:28px;
    }
    .prog-body{
        font-size:15px;
    }
}
/* =========================   LAPTOP ========================= */
@media screen and (max-width:1400px){
    .programs-grid{
        gap:1.2rem;
    }
    .prog-card{
        padding:1.8rem;
    }
    .prog-icon{
        width:65px;
        height:65px;
        font-size:1.6rem;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:26px;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:15px;
    }
}
/* =========================   LAPTOP ========================= */
@media screen and (max-width:1200px){
    .programs-grid{
        grid-template-columns:repeat(3,1fr);
        gap:1rem;
    }
    .prog-card{
        padding:1.6rem;
        border-radius:18px;
    }
    .prog-icon{
        width:60px;
        height:60px;
        font-size:1.5rem;
        border-radius:16px;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:22px;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:14px;
        line-height:1.65;
    }
    .prog-tag{
        font-size:10px;
    }
}
/* =========================   TABLET ========================= */
@media screen and (max-width:992px){
    .programs-grid{
        grid-template-columns:repeat(2,1fr);
        gap:1rem;
    }
    .prog-card{
        padding:1.5rem;
    }
    .prog-icon{
        width:56px;
        height:56px;
        font-size:1.35rem;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:20px;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:13px;
    }
}
/* =========================   TABLET / MOBILE ========================= */

@media screen and (max-width:768px){
    .programs{
        padding:70px 5%;
    }
    .programs-grid{
        grid-template-columns:1fr;
        gap:1rem;
        margin-top:2.5rem;
    }
    .prog-card{
        padding:1.4rem;
        border-radius:16px;
    }
    .prog-duration{
        font-size:.62rem;
        padding:.28rem .7rem;
        margin-bottom:1rem;
    }
    .prog-icon{
        width:52px;
        height:52px;
        font-size:1.25rem;
        border-radius:14px;
        margin-bottom:1rem;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:18px;
        margin-bottom:.5rem;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:13px;
        line-height:1.6;
        margin-bottom:1.2rem;
    }
    .prog-courses{
        gap:.35rem;
    }
    .prog-tag{
        padding:.2rem .6rem;
        font-size:10px;
    }
}
/* =========================   MOBILE ========================= */
@media screen and (max-width:576px){
    .programs{
        padding:60px 4%;
    }
    .prog-card{
        padding:1.2rem;
    }
    .prog-icon{
        width:48px;
        height:48px;
        font-size:1.1rem;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:16px;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:12px;
    }
    .prog-duration{
        font-size:.58rem;
    }
    .prog-tag{
        font-size:9px;
    }
}
/* =========================   SMALL MOBILE ========================= */
@media screen and (max-width:400px){
    .programs{
        padding:50px 4%;
    }
    .prog-card{
        padding:1rem;
        border-radius:14px;
    }
    .prog-icon{
        width:42px;
        height:42px;
        font-size:1rem;
        border-radius:12px;
    }
    .short .prog-title,
    .advanced .prog-title,
    .degree .prog-title{
        font-size:15px;
        line-height:1.3;
    }
    .short .prog-body,
    .advanced .prog-body,
    .degree .prog-body{
        font-size:11px;
        line-height:1.5;
    }
    .prog-tag{
        font-size:8px;
        padding:.18rem .5rem;
    }
}
/* ═══════════════════════════════════════════STUDENT JOURNEY═══════════════════════════════════════════ */
.journey{
    background:transparent;
    text-align:center;
}
/* HEADER */
.journey-header{
    margin-bottom:4rem;
}
.journey-header .section-label{
    justify-content:center;
}
.journey-header .section-label::before{
    display:none;
}
.journey-header .section-desc{
    max-width:700px;
    margin:0 auto;
}
/* GRID */
.journey-steps{
    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:1.8rem;
    align-items:flex-start;
    margin-top:4rem;
}
/* LINE */
.journey-steps::before{
    content:'';
    position:absolute;
    top:48px;
    left:7%;
    right:7%;
    height:3px;
    background:white;
    z-index:0;
    opacity:.12;
}

/* STEP */
.jstep{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    z-index:2;
}
/* CHARACTER BOX */
.jstep-char{
    width:65px;
    height:65px;
    /* border-radius:18px; */
    background:transparent;
    position:relative;
    overflow:visible;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    z-index:2;
    transition:
    transform .65s cubic-bezier(.2,.8,.2,1);
    /* box-shadow:
    0 8px 20px rgba(0,0,0,.18); */
}
/* DIFFERENT COLORS */
.jstep:nth-child(1) .jstep-char{
    /* background:#1d4ed8; */
}
.jstep:nth-child(2) .jstep-char{
    /* background:#ea580c; */
}
.jstep:nth-child(3) .jstep-char{
    /* background:#0891b2; */
}
.jstep:nth-child(4) .jstep-char{
    /* background:#dc2626; */
}
.jstep:nth-child(5) .jstep-char{
    /* background:#9333ea; */
}
.jstep:nth-child(6) .jstep-char{
    /* background:#059669; */
}
/* CHARACTER IMAGE */
.jstep-char img{
    position:absolute;
    bottom:0;
    left:50%;
    width:85px;
    height:auto;
    transform:
    translateX(-50%)
    translateY(8px);
    transition:
    transform .75s cubic-bezier(.2,.8,.2,1);
    filter:
    drop-shadow(
        0 12px 18px rgba(0,0,0,.35)
    );
}
/* NUMBER */
.jstep-num{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    border:3px solid #1a3fa0;
    color:#1a3fa0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.95rem;
    font-weight:800;
    margin-top:1rem;
    margin-bottom:1rem;
    transition:.4s ease;
}
.jstep:nth-child(even) .jstep-num{
    border-color:#e31e24;
    color:#e31e24;
}
/* POP OUT */
.jstep:hover .jstep-char{
    transform:
    translateY(-6px);
}
.jstep:hover .jstep-char img{
    transform:
    translateX(-50%)
    translateY(-30px)
    scale(1.25);

    z-index:5;
}
/* NUMBER HOVER */
.jstep:hover .jstep-num{
    transform:scale(1.12);
    background:#1a3fa0;
    color:#fff;
}
.jstep:nth-child(even):hover .jstep-num{
    background:#e31e24;
}
/* TEXT */
.jstep-title{
    font-size:18px;
    font-weight:800;
    color:#fff;
    margin-bottom:.5rem;
    line-height:1.4;
}

.jstep-sub{
    font-size:16px;
    color:#fff;
    line-height:1.7;
    max-width:180px;
}

/* CTA */

.journey-cta{
    margin-top:4rem;
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

/* =========================   LARGE DESKTOP ========================= */

@media screen and (max-width:1600px){

    .journey-header{
        margin-bottom:3.5rem;
    }

    .journey-steps{
        gap:1.5rem;
        margin-top:3.5rem;
    }

    .jstep-title{
        font-size:17px;
    }

    .jstep-sub{
        font-size:15px;
    }
}

/* =========================   LAPTOP ========================= */

@media screen and (max-width:1400px){

    .journey-steps{
        gap:1.2rem;
    }

    .jstep-char{
        width:62px;
        height:62px;
        border-radius:16px;
    }

    .jstep-char img{
        width:80px;
    }

    .jstep-num{
        width:40px;
        height:40px;
        font-size:.9rem;
    }

    .jstep-title{
        font-size:16px;
    }

    .jstep-sub{
        font-size:14px;
        line-height:1.6;
    }
}

/* =========================   LAPTOP / TABLET ========================= */

@media screen and (max-width:1200px){

    .journey-steps{
        grid-template-columns:repeat(3,1fr);
        gap:2rem;
    }

    .journey-steps::before{
        display:none;
    }

    .jstep-char{
        width:60px;
        height:60px;
    }

    .jstep-char img{
        width:78px;
    }

    .jstep-title{
        font-size:15px;
    }

    .jstep-sub{
        font-size:14px;
        max-width:170px;
    }
}

/* =========================   TABLET ========================= */

@media screen and (max-width:992px){

    .journey{
        padding:70px 5%;
    }

    .journey-header{
        margin-bottom:2.8rem;
    }

    .journey-steps{
        grid-template-columns:repeat(2,1fr);
        gap:2rem;
        margin-top:2.5rem;
    }

    .jstep-char{
        width:58px;
        height:58px;
    }

    .jstep-char img{
        width:75px;
    }

    .jstep-num{
        width:38px;
        height:38px;
        margin-top:.9rem;
        margin-bottom:.9rem;
    }

    .jstep-title{
        font-size:15px;
    }

    .jstep-sub{
        font-size:13px;
        max-width:220px;
    }
}

/* =========================   TABLET / MOBILE ========================= */

@media screen and (max-width:768px){

    .journey{
        padding:60px 5%;
    }

    .journey-steps{
        grid-template-columns:1fr;
        gap:1.8rem;
    }

    .jstep-char{
        width:55px;
        height:55px;
        border-radius:14px;
    }

    .jstep-char img{
        width:72px;
    }

    .jstep-num{
        width:36px;
        height:36px;
        font-size:.85rem;
    }

    .jstep-title{
        font-size:14px;
        margin-bottom:.35rem;
    }

    .jstep-sub{
        font-size:13px;
        line-height:1.55;
        max-width:260px;
    }

    /* MOBILE POP-OUT */

    .jstep:hover .jstep-char img{
        transform:
        translateX(-50%)
        translateY(-16px)
        scale(1.12);
    }

    .journey-cta{
        margin-top:2.5rem;
        gap:.8rem;
    }
}

/* =========================   MOBILE ========================= */

@media screen and (max-width:576px){

    .journey{
        padding:55px 4%;
    }

    .journey-header{
        margin-bottom:2rem;
    }

    .journey-steps{
        gap:1.5rem;
    }

    .jstep-char{
        width:50px;
        height:50px;
    }

    .jstep-char img{
        width:66px;
    }

    .jstep-num{
        width:34px;
        height:34px;
        border-width:2px;
    }

    .jstep-title{
        font-size:13px;
    }

    .jstep-sub{
        font-size:12px;
    }

    .journey-cta{
        flex-direction:column;
        align-items:center;
    }
}

/* =========================   SMALL MOBILE ========================= */

@media screen and (max-width:400px){

    .journey{
        padding:50px 4%;
    }

    .jstep-char{
        width:46px;
        height:46px;
        border-radius:12px;
    }

    .jstep-char img{
        width:60px;
    }

    .jstep-num{
        width:32px;
        height:32px;
        font-size:.78rem;
    }

    .jstep-title{
        font-size:12px;
        line-height:1.3;
    }

    .jstep-sub{
        font-size:11px;
        line-height:1.45;
    }

    .jstep:hover .jstep-char img{
        transform:
        translateX(-50%)
        translateY(-10px)
        scale(1.08);
    }
}
/* ═══════════════════════════════════════════   ENQUIRY FORM═══════════════════════════════════════════ */
.enquiry{
    /* background:linear-gradient(145deg,var(--off-white),var(--blue-pale)) */
     background:transparent;
}
.enquiry-inner{display:grid;grid-template-columns:1fr 1fr;gap:1px;align-items:center}
.enq-left .section-desc{margin-bottom:2rem;font-size:18px;}
.enq-highlights{display:flex;flex-direction:column;gap:.8rem}
.enq-hl{display:flex;align-items:center;gap:.8rem;font-size:16px;font-weight:600;color:#fff}
.enq-hl::before{content:'✓';width:24px;height:24px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.65rem;font-weight:900;flex-shrink:0}
.enq-form{background:#fff;border-radius:24px;padding:2.5rem;box-shadow:0 20px 60px rgba(26,63,160,.12);border:1px solid var(--border)}
.enq-form h3{font-size:1.3rem;font-weight:800;color:var(--ink);margin-bottom:.4rem}
.enq-form p{font-size:.82rem;color:var(--muted);margin-bottom:1.8rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.form-group label{font-size:.75rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--ink2)}
.form-group input,.form-group select,.form-group textarea{
  padding:.8rem 1rem;border:1.5px solid var(--border);border-radius:10px;font-family:'Outfit',sans-serif;
  font-size:.88rem;color:var(--ink);background:var(--off-white);transition:border-color .2s,box-shadow .2s;outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,63,160,.1);background:#fff}
.form-group textarea{resize:vertical;min-height:90px;line-height:1.6}
.form-group select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7494' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;cursor:pointer}
.btn-submit{width:100%;background:linear-gradient(135deg,var(--blue),var(--blue-light));color:#fff;font-family:'Outfit',sans-serif;font-size:.95rem;font-weight:700;letter-spacing:.06em;border:none;border-radius:50px;padding:1rem 2rem;cursor:pointer;box-shadow:0 8px 24px var(--shadow-blue);transition:all .25s;display:flex;align-items:center;justify-content:center;gap:.5rem}
.btn-submit:hover{transform:translateY(-2px);box-shadow:0 12px 32px var(--shadow-blue);background:linear-gradient(135deg,var(--blue-light),var(--blue))}
/* ENQUIRY ICON COLORS */

.enq-hl i:nth-child(1){
    color:#2563eb;
}

.enq-hl:nth-child(2) i{
    color:#f97316;
}

.enq-hl:nth-child(3) i{
    color:#10b981;
}

.enq-hl:nth-child(4) i{
    color:#9333ea;
}

.enq-hl:nth-child(5) i{
    color:#ef4444;
}

.btn-submit i{
    margin-right:.5rem;
}

.enq-hl i{
    margin-right:.6rem;
}
/* =========================   LARGE DESKTOP ========================= */

@media screen and (max-width:1600px){

    .enquiry-inner{
        /* gap:4rem; */
    }

    .enq-form{
        padding:2.2rem;
    }
}

/* =========================   LAPTOP ========================= */

@media screen and (max-width:1400px){

    .enquiry-inner{
        /* gap:3rem; */
    }

    .enq-form{
        padding:2rem;
    }

    .enq-form h3{
        font-size:1.2rem;
    }

    .enq-hl{
        font-size:15px;
    }
}

/* =========================   LAPTOP ========================= */

@media screen and (max-width:1200px){

    .enquiry-inner{
        gap:2.5rem;
    }

    .enq-form{
        padding:1.8rem;
        border-radius:22px;
    }

    .form-row{
        gap:.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        font-size:.85rem;
    }

    .btn-submit{
        font-size:.9rem;
    }
}

/* =========================   TABLET ========================= */

@media screen and (max-width:992px){

    .enquiry{
        padding:70px 5%;
    }

    .enquiry-inner{
        grid-template-columns:1fr;
        gap:2.5rem;
    }

    .enq-left{
        text-align:center;
    }

    .enq-left .section-desc{
        margin:0 auto 2rem;
    }

    .enq-highlights{
        align-items:flex-start;
        max-width:500px;
        margin:0 auto;
    }

    .enq-form{
        padding:1.8rem;
    }
}

/* =========================   TABLET / MOBILE ========================= */

@media screen and (max-width:768px){

    .enquiry{
        padding:60px 5%;
    }

    .enquiry-inner{
        gap:2rem;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .enq-form{
        padding:1.5rem;
        border-radius:20px;
    }

    .enq-form h3{
        font-size:1.1rem;
    }

    .enq-form p{
        font-size:.8rem;
        margin-bottom:1.4rem;
    }

    .enq-hl{
        font-size:14px;
        gap:.7rem;
    }

    .enq-hl::before{
        width:22px;
        height:22px;
        font-size:.6rem;
    }

    .form-group label{
        font-size:.72rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:.75rem .9rem;
        font-size:.82rem;
    }

    .btn-submit{
        padding:.9rem 1.5rem;
        font-size:.88rem;
    }
}

/* =========================   MOBILE ========================= */

@media screen and (max-width:576px){

    .enquiry{
        padding:55px 4%;
    }

    .enq-form{
        padding:1.3rem;
        border-radius:18px;
    }

    .enq-form h3{
        font-size:1rem;
    }

    .enq-form p{
        font-size:.75rem;
    }

    .enq-hl{
        font-size:13px;
    }

    .enq-hl::before{
        width:20px;
        height:20px;
        font-size:.55rem;
    }

    .form-group label{
        font-size:.68rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:.7rem .85rem;
        border-radius:9px;
        font-size:.8rem;
    }

    .btn-submit{
        font-size:.82rem;
        border-radius:45px;
    }
}

/* =========================   SMALL MOBILE ========================= */

@media screen and (max-width:400px){

    .enquiry{
        padding:50px 4%;
    }

    .enq-form{
        padding:1rem;
        border-radius:16px;
    }

    .enq-form h3{
        font-size:.95rem;
    }

    .enq-form p{
        font-size:.72rem;
        margin-bottom:1rem;
    }

    .enq-hl{
        font-size:12px;
        line-height:1.5;
    }

    .enq-hl::before{
        width:18px;
        height:18px;
        font-size:.5rem;
    }

    .form-group label{
        font-size:.64rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        font-size:.78rem;
        padding:.65rem .8rem;
    }

    .btn-submit{
        font-size:.78rem;
        padding:.8rem 1rem;
    }
}
/* ═══════════════════════════════════════════   CONTACT SECTION═══════════════════════════════════════════ */
.contact{
    /* background:var(--white); */
     background:transparent;
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    margin-top:3rem;
    align-items:stretch;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:1.2rem;
    height:100%;
}
.ci-card{
    background:var(--off-white);
    border:1.5px solid var(--border);
    border-radius:18px;
    padding:1.3rem 1.4rem;
    display:flex;
    align-items:flex-start;
    gap:1rem;
    transition:all .3s ease;
}

.ci-card:hover{
    border-color:var(--blue);
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(26,63,160,0.08);
}
.ci-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    flex-shrink:0;
}
.ci-icon.bl{
    background:var(--blue-pale);
}
.ci-icon.rd{
    background:var(--red-pale);
}
.ci-label{
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:.35rem;
}
.ci-val{
    font-size:18px;
    font-weight:600;
    color:var(--ink);
    line-height:1.7;
}
.ci-val a{
    font-size:20px;
    color:var(--blue);
    text-decoration:none;
}
.ci-val a:hover{
    text-decoration:underline;
}
.follow-title{
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:1rem;
}
.social-row{
    display:flex;
    gap:.8rem;
    flex-wrap:wrap;
}
.social-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    text-decoration:none;
    transition:all .3s ease;
}
.social-btn:hover{
    transform:translateY(-4px) scale(1.08);
    border-color:var(--blue);
    background:var(--blue-pale);
}
.contact-map{
    width:100%;
    height:100%;
    min-height:100%;
    border-radius:20px;
    overflow:hidden;
    border:1.5px solid var(--border);
    box-shadow:0 10px 30px rgba(26,63,160,0.08);
}
.contact-map iframe{
    width:100%;
    height:100%;
    min-height:640px;
    border:0;
}
/* CONTACT ICON COLORS */

.ci-card:nth-child(1) .ci-icon{
    background:#eff6ff;
    color:#2563eb;
}

.ci-card:nth-child(2) .ci-icon{
    background:#ecfdf5;
    color:#10b981;
}

.ci-card:nth-child(3) .ci-icon{
    background:#fef2f2;
    color:#ef4444;
}

.ci-card:nth-child(4) .ci-icon{
    background:#fff7ed;
    color:#f97316;
}

/* SOCIAL COLORS */

.social-btn:nth-child(1){
    color:#e1306c;
}

.social-btn:nth-child(2){
    color:#1877f2;
}

.social-btn:nth-child(3){
    color:#ff0000;
}

.social-btn:nth-child(4){
    color:#25d366;
}

.social-btn:nth-child(5){
    color:#0a66c2;
}
/* MOBILE */
@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }
    .contact-map iframe{
        min-height:400px;
    }

}
@media(max-width:768px){

  .contact{
    padding:4rem 1rem;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
    margin-top:2rem;
  }

  .ci-card{
    padding:1rem;
    border-radius:16px;
  }

  .ci-icon{
    width:44px;
    height:44px;
    font-size:1.1rem;
  }

  .ci-val{
    font-size:.85rem;
    line-height:1.6;
    word-break:break-word;
  }

  .social-row{
    gap:.6rem;
  }

  .social-btn{
    width:42px;
    height:42px;
    font-size:1rem;
  }

  .contact-map{
    border-radius:16px;
  }

  .contact-map iframe{
    width:100%;
    min-height:300px;
    display:block;
  }
}
/* ═══════════════════════════════════════════ FOOTER═══════════════════════════════════════════ */
/* ===========================
   FOOTER
=========================== */

footer{
    background:transparent;
    padding:4rem 5vw 2rem;
}

/* TOP */

.footer-top{
    display:grid;
    grid-template-columns:2.5fr 1fr 1fr 1.2fr;
    gap:2.5rem;
    align-items:start;
    margin-bottom:3rem;
}

/* LOGO */

.fb-logo{
    display:block;
    margin-bottom:1.5rem;
}

.fb-logo img{
    max-width:280px;
    width:100%;
    height:auto;
    display:block;
}

/* BRAND */

.footer-brand p{
    font-size:17px;
    color:#fff;
    line-height:1.8;
    max-width:30ch;
}

/* HEADINGS */

.footer-col h4{
    font-size:14px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:1rem;
}

/* LISTS */

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:.75rem;
}

.footer-col ul li{
    display:flex;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    display:flex;
    align-items:flex-start;
    gap:10px;
    line-height:1.6;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#DC0000;
}

/* ICONS */

.footer-col ul li a i{
    width:18px;
    margin-top:3px;
}

/* PHONE */

.footer-col ul li:nth-child(1) i,
.footer-col ul li:nth-child(2) i{
    color:#10b981;
}

/* EMAIL */

.footer-col ul li:nth-child(3) i{
    color:#ef4444;
}

/* LOCATION */

.footer-col ul li:nth-child(4) i{
    color:#2563eb;
}

/* DEMO */

.footer-col ul li:nth-child(5) i{
    color:#f59e0b;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:1.5rem;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
}

.fb-copy{
    color:#fff;
    font-size:14px;
}

/* SOCIAL */

.fb-social{
    display:flex;
    gap:12px;
}

.fbs{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.fbs:hover{
    background:#DC0000;
    border-color:#DC0000;
    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:992px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

}

/* MOBILE */

@media(max-width:768px){

    footer{
        padding:3rem 20px 2rem;
    }

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand p{
        max-width:100%;
    }

    .fb-logo img{
        margin:auto;
    }

    .footer-col ul li{
        justify-content:center;
    }

    .footer-col ul li a{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .fb-social{
        justify-content:center;
    }

}
/* ═══════════════════════════════════════════   WHATSAPP FLOAT═══════════════════════════════════════════ */
.wa-float{position:fixed;bottom:2rem;right:2rem;z-index:900;width:54px;height:54px;border-radius:50%;background:#25d366;display:flex;align-items:center;justify-content:center;font-size:1.5rem;box-shadow:0 8px 24px rgba(37,211,102,.4);text-decoration:none;transition:transform .25s;animation:fadeUp .8s 1s ease both}
.wa-float:hover{transform:scale(1.1)}

/* ═══════════════════════════════════════════   SCROLL TOP═══════════════════════════════════════════ */
.scroll-top{position:fixed;bottom:2rem;left:2rem;z-index:900;width:40px;height:40px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1rem;cursor:pointer;box-shadow:0 4px 16px var(--shadow-blue);opacity:0;transform:translateY(10px);transition:all .3s;border:none}
.scroll-top.show{opacity:1;transform:translateY(0)}

/* ═══════════════════════════════════════════   ANIMATIONS═══════════════════════════════════════════ */
@keyframes ticker{to{transform:translateX(-50%)}}
.hero-h1,.hero-sub,.hero-badge,.hero-btns,.hero-stats{animation:fadeUp .7s ease both}
.hero-sub{animation-delay:.12s}
.hero-btns{animation-delay:.24s}
.hero-stats{animation-delay:.36s}

/* ═══════════════════════════════════════════   RESPONSIVE═══════════════════════════════════════════ */
@media(max-width:1100px){
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .courses-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:960px){
  nav{padding:0 1.5rem;height:60px}
  .nav-links{display:none}
  .hero-inner{grid-template-columns:1fr;padding:3rem 1.5rem}
  .hero-visual{display:none}
  .about-inner,.production-inner,.enquiry-inner,.contact-grid,.footer-top{grid-template-columns:1fr;gap:2.5rem}
  .about-badge-float,.about-badge-float2{display:none}
  .programs-grid{grid-template-columns:1fr}
  .journey-steps{grid-template-columns:repeat(3,1fr);gap:2rem}
  .journey-steps::before{display:none}
  .form-row{grid-template-columns:1fr}
  section{padding:4rem 1.5rem}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .hero-h1{font-size:2.2rem}
  .why-grid,.courses-grid{grid-template-columns:1fr}
  .journey-steps{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr}
  .hero-btns{flex-direction:column;align-items:flex-start}
}




/* ═══════════════════════════════════   POPUP═════════════════════════════════════ */

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.65);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transition:.4s ease;
}

/* SHOW POPUP */

.popup-overlay.show{

    opacity:1;

    visibility:visible;
}

/* BOX */

.popup-box{
    width:550px;
    max-width:95%;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    animation:popupAnim .5s ease;
}/* IMAGE */

/* .popup-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;
} */

/* CONTENT */

.popup-content{
    padding:45px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}
.popup-content h2{

    font-size:2rem;

    font-weight:800;

    margin-bottom:10px;

    color:#111827;
}

.popup-content p{

    font-size:.95rem;

    line-height:1.7;

    color:#6b7280;

    margin-bottom:25px;
}

/* FORM */

.popup-content form{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.popup-content input{

    width:100%;

    height:52px;

    border:1.5px solid #dbe2ea;

    border-radius:12px;

    padding:0 15px;

    font-size:.95rem;

    outline:none;
}

.popup-content input:focus{

    border-color:#2563eb;
}

/* BUTTON */

.popup-content button{

    height:54px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

.popup-content button:hover{

    transform:translateY(-2px);
}

/* CLOSE */

.popup-close{

    position:absolute;

    top:15px;

    right:18px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:#fff;

    font-size:1.8rem;

    cursor:pointer;

    z-index:2;

    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* ANIMATION */

@keyframes popupAnim{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}
/* =========================   LARGE DESKTOP ========================= */

@media screen and (max-width:1600px){

    .popup-box{
        width:860px;
    }

    .popup-content{
        padding:42px 32px;
    }
}

/* =========================   LAPTOP ========================= */

@media screen and (max-width:1400px){

    .popup-box{
        width:820px;
        max-width:94%;
    }

    .popup-content{
        padding:38px 30px;
    }

    .popup-content h2{
        font-size:1.9rem;
    }
}

/* =========================   LAPTOP ========================= */

@media screen and (max-width:1200px){

    .popup-box{
        width:760px;
        max-width:94%;
    }

    .popup-content{
        padding:34px 28px;
    }

    .popup-content h2{
        font-size:1.75rem;
    }

    .popup-content p{
        margin-bottom:20px;
    }
}

/* =========================   TABLET ========================= */

@media screen and (max-width:992px){

    .popup-overlay{
        padding:18px;
    }

    .popup-box{
        width:680px;
        max-width:95%;
    }

    .popup-content{
        padding:30px 24px;
    }

    .popup-content h2{
        font-size:1.6rem;
    }

    .popup-content p{
        font-size:.9rem;
        line-height:1.65;
    }

    .popup-content input{
        height:50px;
    }

    .popup-content button{
        height:50px;
    }
}

/* =========================   TABLET / MOBILE ========================= */

@media screen and (max-width:768px){

    .popup-overlay{
        padding:14px;
        align-items:center;
    }

    .popup-box{
        grid-template-columns:1fr;
        width:100%;
        max-width:100%;
        max-height:92vh;
        overflow-y:auto;
        border-radius:18px;
    }
/* 
    .popup-image{
        height:220px;
    }

    .popup-image img{
        object-fit:cover;
    } */

    .popup-content{
        padding:26px 20px;
    }

    .popup-content h2{
        font-size:1.45rem;
        margin-bottom:8px;
    }

    .popup-content p{
        font-size:.88rem;
        margin-bottom:18px;
    }

    .popup-content form{
        gap:12px;
    }

    .popup-content input,
    .popup-content button{
        height:48px;
    }

    .popup-close{
        width:36px;
        height:36px;
        top:12px;
        right:12px;
        font-size:1.4rem;
    }
}

/* =========================
   MOBILE 576px
========================= */

@media screen and (max-width:576px){

    .popup-overlay{
        padding:10px;
    }

    .popup-box{
        border-radius:16px;
        max-height:94vh;
    }

    /* .popup-image{
        height:180px;
    } */

    .popup-content{
        padding:22px 16px;
    }

    .popup-content h2{
        font-size:1.3rem;
        line-height:1.35;
    }

    .popup-content p{
        font-size:.82rem;
        line-height:1.55;
    }

    .popup-content input{
        height:46px;
        padding:0 12px;
        font-size:.85rem;
        border-radius:10px;
    }

    .popup-content button{
        height:46px;
        font-size:.88rem;
        border-radius:10px;
    }

    .popup-close{
        width:34px;
        height:34px;
        top:10px;
        right:10px;
        font-size:1.25rem;
    }
}

/* =========================
   SMALL MOBILE 400px
========================= */

@media screen and (max-width:400px){

    /* .popup-image{
        height:150px;
    } */

    .popup-content{
        padding:18px 14px;
    }

    .popup-content h2{
        font-size:1.15rem;
    }

    .popup-content p{
        font-size:.78rem;
    }

    .popup-content form{
        gap:10px;
    }

    .popup-content input{
        height:44px;
        font-size:.8rem;
    }

    .popup-content button{
        height:44px;
        font-size:.82rem;
    }

    .popup-close{
        width:32px;
        height:32px;
        font-size:1.1rem;
    }
}