:root{
    --yellow:#ffcc00;
    --lightgreen:#9be15d;
    --dark:#111;
    --white:#fff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
    background:#fff;
}

/* ================= TOP HEADER ================= */

.top-header{
    background:#fff;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.top-school-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.top-school-brand img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.top-school-brand h4{
    font-size:32px;
    font-weight:800;
    color:#111;
}

/* ================= CONTACT BAR ================= */

.contact-bar{
    position:relative;

    background:
    linear-gradient(
        135deg,
        #dfff78 0%,
        #a9e34b 50%,
        #7dc942 100%
    );

    padding:14px 0;

    overflow:hidden;
}

/* PREMIUM SHINE EFFECT */

.contact-bar::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    animation:barShine 8s linear infinite;
}

@keyframes barShine{

    100%{
        left:140%;
    }

}

.contact-bar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    position:relative;
    z-index:2;
}

/* ================= LEFT & CENTER ================= */

.contact-left,
.contact-center{
    display:flex;
    align-items:center;
    gap:10px;

    color:#111;

    font-size:15px;
    font-weight:600;
}

.contact-left i,
.contact-center i{
    color:#0f5132;
    font-size:15px;
}

/* ================= SOCIAL ICONS ================= */

.contact-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-right a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    text-decoration:none;

    transition:0.35s ease;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.08);
}

.contact-right a:hover{
    transform:translateY(-4px);

    background:#0f5132;
    color:#fff;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .contact-bar .container{
        flex-direction:column;
        justify-content:center;
        text-align:center;

        gap:15px;
    }

    .contact-left,
    .contact-center{
        justify-content:center;
    }

}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .contact-bar{
        padding:18px 0;
    }

    .contact-bar .container{
        flex-direction:column;
        align-items:center;
        justify-content:center;

        gap:14px;
    }

    .contact-left,
    .contact-center{
        width:100%;

        justify-content:center;
        text-align:center;

        font-size:14px;

        flex-wrap:wrap;
    }

    .contact-right{
        justify-content:center;
        flex-wrap:wrap;
    }

    .contact-right a{
        width:38px;
        height:38px;
        font-size:14px;
    }

}

/* ================= NAVBAR ================= */

.custom-navbar{
    background:#fff;

    padding:12px 0;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.05);

    transition:.4s ease;
}

/* ================= BRAND ================= */

.navbar-brand{
    display:flex;
    align-items:center;

    margin:0;
    padding:0;
}

/* LOGO ONLY */

.nav-logo{
    width:170px;
    height:auto;

    display:block;

    object-fit:contain;

    transition:.4s ease;
}

.navbar-brand:hover .nav-logo{
    transform:scale(1.03);
}

/* ================= NAV LINKS ================= */

.navbar-nav .nav-link{
    color:#111;

    font-size:16px;
    font-weight:600;

    margin:0 12px;

    transition:.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#7dc942;
}

/* ================= DROPDOWN ================= */

.premium-dropdown{
    border:none;

    border-radius:18px;

    overflow:hidden;

    padding:10px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.premium-dropdown .dropdown-item{
    border-radius:12px;

    padding:12px 16px;

    font-weight:600;

    transition:.3s ease;
}

.premium-dropdown .dropdown-item:hover{
    background:#f4fde8;
    color:#69b92d;
}

/* ================= ADMISSION BUTTON ================= */

.admission-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--yellow),
        var(--lightgreen)
    );

    padding:14px 28px;

    border-radius:50px;

    color:#111;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.4s ease;

    box-shadow:
    0 12px 25px rgba(125,201,66,.18);
}

.admission-btn:hover{
    transform:translateY(-3px);

    color:#111;

    box-shadow:
    0 18px 35px rgba(125,201,66,.25);
}

/* ================= MOBILE TOGGLER ================= */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .custom-navbar{
        padding:10px 0;
    }

    .nav-logo{
        width:145px;
    }

    .navbar-collapse{
        padding-top:20px;
    }

    .navbar-nav{
        text-align:center;
    }

    .navbar-nav .nav-link{
        margin:10px 0;
    }

    .admission-btn{
        width:100%;
    }

}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .nav-logo{
        width:125px;
    }

    .admission-btn{
        padding:13px 22px;
        font-size:14px;
    }

}

/* =====================================================
   PREMIUM HERO SECTION
===================================================== */

.premium-hero-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;

    background:
    linear-gradient(
        -45deg,
        #1f1400,
        #352400,
        #4a3400,
        #6b4b00,
        #2b1d00
    );

    background-size:400% 400%;

    animation:gradientMove 15s ease infinite;
}

/* =====================================================
   ANIMATED GRADIENT
===================================================== */

@keyframes gradientMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

/* =====================================================
   FLOATING COLOR BLOBS
===================================================== */

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;

    animation:
    floatBlob 10s ease-in-out infinite;
}

.hero-glow-1{
    width:420px;
    height:420px;

    background:
    rgba(255,193,7,0.22);

    top:-120px;
    left:-100px;
}

.hero-glow-2{
    width:350px;
    height:350px;

    background:
    rgba(255,235,120,0.18);

    right:-120px;
    bottom:-80px;

    animation-delay:2s;
}

@keyframes floatBlob{

    0%{
        transform:translate(0,0);
    }

    25%{
        transform:translate(40px,-30px);
    }

    50%{
        transform:translate(-20px,40px);
    }

    75%{
        transform:translate(30px,20px);
    }

    100%{
        transform:translate(0,0);
    }

}

/* =====================================================
   FLOATING PARTICLES
===================================================== */

.premium-hero-section::before{
    content:"";

    position:absolute;
    inset:0;

    background-image:

    radial-gradient(circle, rgba(125,201,66,.30) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,214,10,.25) 2px, transparent 2px),
    radial-gradient(circle, rgba(125,201,66,.20) 1px, transparent 1px);

    background-size:
    140px 140px,
    220px 220px,
    90px 90px;

    animation:
    particleMove 35s linear infinite;

    opacity:.8;

    z-index:0;
}

@keyframes particleMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-300px);
    }

}

/* =====================================================
   EXTRA LIGHT BALL
===================================================== */

.premium-hero-section::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,215,0,.22),
        transparent 70%
    );

    top:20%;
    left:50%;

    transform:translateX(-50%);

    filter:blur(80px);

    animation:pulseLight 8s ease-in-out infinite;

    z-index:0;
}

/* =====================================================
   GLOW EFFECTS
===================================================== */

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.hero-glow-1{
    width:320px;
    height:320px;

    background:
    rgba(125,201,66,0.12);

    top:-100px;
    left:-100px;
}

.hero-glow-2{
    width:280px;
    height:280px;

    background:
    rgba(217,255,132,0.15);

    right:-100px;
    bottom:-100px;
}

/* =====================================================
   MAIN WRAPPER
===================================================== */

.hero-wrapper{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;

    min-height:650px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.hero-content-area{
    flex:0 0 45%;
    max-width:45%;

    position:relative;
}

.hero-content-slide{
    display:none;

    animation:
    fadeUp .7s ease;
}

.hero-content-slide.active{
    display:block;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =====================================================
   TAG
===================================================== */

.hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,193,7,.12);

    border:
    1px solid rgba(255,193,7,.25);

    color:#ffd54f;

    font-size:14px;
    font-weight:700;

    margin-bottom:24px;

    backdrop-filter:blur(10px);
}

/* =====================================================
   HEADING
===================================================== */

.hero-content-slide h1{
    font-size:68px;
    font-weight:800;
    line-height:1.08;

    color:#ffffff;

    margin-bottom:22px;
}

.hero-content-slide h1 span{
    color:#ffd54f;
}

/* =====================================================
   PARAGRAPH
===================================================== */

.hero-content-slide p{
    font-size:19px;
    line-height:1.9;

    color:rgba(255,248,220,.85);

    max-width:540px;

    margin-bottom:34px;
}

/* =====================================================
   BUTTON
===================================================== */

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 36px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #ffd54f,
        #ffb300
    );

    color:#111;

    font-size:16px;
    font-weight:800;

    transition:.4s ease;

    box-shadow:
    0 18px 35px rgba(255,193,7,.30);
}

.hero-btn:hover{
    transform:translateY(-5px);

    color:#111;

    box-shadow:
    0 25px 45px rgba(255,193,7,.40);
}

/* =====================================================
   RIGHT IMAGE AREA
===================================================== */

.hero-image-area{
    flex:0 0 52%;
    max-width:52%;
    position:relative;

    display:flex;
    align-items:center;
}

/* =====================================================
   IMAGE BOX
===================================================== */

.hero-image-slider{
    position:relative;

    width:100%;
    height:460px;

    border-radius:32px;

    overflow:hidden;

    background:#2b1d00;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);

    border:
    1px solid rgba(255,193,7,.18);
}

/* =====================================================
   IMAGE SLIDES
===================================================== */

.hero-image-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:
    opacity .8s ease,
    transform .8s ease;
}

.hero-image-slide.active{
    opacity:1;
    visibility:visible;
}

/* =====================================================
   IMAGE FIT
===================================================== */

.hero-image-slide img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    display:block;

    transition:
    transform 5s ease;
}

.hero-image-slide.active img{
    transform:scale(1.04);
}

/* =====================================================
   NAVIGATION BUTTONS
===================================================== */

.hero-navigation{
    position:absolute;

    top:50%;
    left:0;
    right:0;

    transform:translateY(-50%);

    display:flex;
    justify-content:space-between;

    padding:0 18px;

    pointer-events:none;

    z-index:5;
}

.hero-prev,
.hero-next{
    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:
    rgba(255,255,255,.95);

    color:#111;

    font-size:16px;

    cursor:pointer;

    pointer-events:auto;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);
}

.hero-prev:hover,
.hero-next:hover{
    background:#ffd54f;
    color:#111;

    transform:scale(1.08);
}

/* =====================================================
   DOTS
===================================================== */

.hero-dots{
    position:absolute;

    left:50%;
    bottom:20px;

    transform:translateX(-50%);

    display:flex;
    gap:10px;

    z-index:5;
}

.hero-dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:
    rgba(255,255,255,.7);

    cursor:pointer;

    transition:.4s ease;
}

.hero-dot.active{
    width:32px;

    border-radius:30px;

    background:#ffd54f;
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media(min-width:1400px){

    .hero-image-slider{
        height:500px;
    }

}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .premium-hero-section{
        padding:70px 0;
    }

    .hero-wrapper{
        flex-direction:column;

        gap:35px;

        min-height:auto;
    }

    .hero-content-area,
    .hero-image-area{
        max-width:100%;
        flex:0 0 100%;
        width:100%;
    }

    .hero-content-slide{
        text-align:center;
    }

    .hero-content-slide p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-content-slide h1{
        font-size:52px;
    }

    .hero-image-slider{
        height:420px;
        border-radius:28px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .premium-hero-section{
        padding:50px 0;
    }

    .hero-tag{
        font-size:12px;
        padding:10px 18px;
    }

    .hero-content-slide h1{
        font-size:38px;
        line-height:1.15;
    }

    .hero-content-slide p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-btn{
        width:100%;
        padding:16px;
    }

    .hero-image-slider{
        height:260px;
        border-radius:22px;
    }

    .hero-prev,
    .hero-next{
        width:40px;
        height:40px;
        font-size:13px;
    }

    .hero-dot{
        width:9px;
        height:9px;
    }

    .hero-dot.active{
        width:24px;
    }

}

/* =====================================================
   PREMIUM ABOUT SECTION
===================================================== */

.about-school-section{
    position:relative;
    padding:120px 0 140px;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #081c15 0%,
        #0f3d2e 50%,
        #164a35 100%
    );
}

/* =====================================================
   GLOWS
===================================================== */

.about-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.about-glow-1{
    width:500px;
    height:500px;
    background:rgba(180,255,90,0.15);
    top:-220px;
    left:-180px;
}

.about-glow-2{
    width:400px;
    height:400px;
    background:rgba(217,255,132,0.12);
    right:-120px;
    bottom:60px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.about-content{
    position:relative;
    z-index:5;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(12px);

    color:#d9ff84;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

.about-content h2{
    color:#fff;

    font-size:58px;
    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;
}

.about-content h2 span{
    color:#d9ff84;
}

.about-content p{
    color:rgba(255,255,255,0.78);

    font-size:16px;
    line-height:1.9;

    margin-bottom:15px;
}

/* =====================================================
   FEATURE GRID
===================================================== */

.about-points{
    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;
}

.about-point{
    display:flex;
    align-items:flex-start;

    gap:12px;

    padding:16px;

    border-radius:18px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(16px);

    transition:0.4s ease;
}

.about-point:hover{
    transform:translateY(-5px);

    border-color:rgba(217,255,132,0.35);

    background:rgba(255,255,255,0.12);
}

.about-icon{
    width:48px;
    height:48px;

    min-width:48px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #7dc942,
        #d9ff84
    );

    color:#111;

    font-size:18px;

    box-shadow:0 10px 25px rgba(217,255,132,0.25);
}

.about-point h5{
    color:#fff;

    font-size:15px;
    font-weight:700;

    margin-bottom:4px;
}

.about-point p{
    margin:0;

    color:rgba(255,255,255,0.72);

    font-size:12px;

    line-height:1.6;
}

/* =====================================================
   BUTTON
===================================================== */

.about-btn{
    display:inline-flex;
    align-items:center;

    gap:10px;

    margin-top:35px;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    color:#111;

    background:linear-gradient(
        135deg,
        #7dc942,
        #d9ff84
    );

    box-shadow:0 18px 35px rgba(125,201,66,0.25);

    transition:0.4s ease;
}

.about-btn:hover{
    transform:translateY(-5px);

    color:#111;
}

/* =====================================================
   DIRECTORS GRID
===================================================== */

.board-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    position:relative;
    z-index:5;
}

.board-card{
    position:relative;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(16px);

    border-radius:24px;

    overflow:hidden;

    transition:0.5s ease;

    height:100%;
}

.board-card:hover{
    transform:translateY(-10px);

    border-color:rgba(217,255,132,0.35);

    box-shadow:0 25px 50px rgba(0,0,0,0.25);
}

.board-image{
    width:100%;
    height:260px;
    overflow:hidden;
}

.board-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center top;

    transition:0.5s ease;
}

.board-card:hover img{
    transform:scale(1.06);
}

/* =====================================================
   CARD INFO
===================================================== */

.board-info{
    padding:18px;
    text-align:center;

    display:flex;
    flex-direction:column;

    justify-content:space-between;

    min-height:180px;
}

.board-info h4{
    color:#fff;

    font-size:18px;
    font-weight:700;

    line-height:1.4;

    margin-bottom:6px;
}

.board-info h5{
    color:rgba(255,255,255,0.75);

    font-size:13px;
    font-weight:600;

    margin-bottom:8px;
}

.board-info span{
    display:block;

    color:#d9ff84;

    font-size:13px;
    font-weight:700;

    margin-bottom:15px;
}

/* =====================================================
   PROFILE BUTTON
===================================================== */

.board-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 20px;

    border-radius:50px;

    text-decoration:none;

    background:#d9ff84;

    color:#111;

    font-size:13px;
    font-weight:700;

    transition:0.3s ease;
}

.board-btn:hover{
    background:#fff;

    color:#111;
}

/* =====================================================
   BOTTOM CURVE
===================================================== */

.section-curve-bottom{
    position:absolute;

    left:0;
    bottom:-1px;

    width:100%;

    line-height:0;

    z-index:2;
}

.section-curve-bottom svg{
    display:block;

    width:100%;
    height:90px;
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .about-school-section{
        padding:100px 0 110px;
    }

    .about-content{
        text-align:center;
        margin-bottom:50px;
    }

    .about-content h2{
        font-size:42px;
    }

    .board-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-points{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .about-school-section{
        padding:80px 0 90px;
    }

    .section-tag{
        font-size:12px;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:14px;
    }

    .about-points{
        grid-template-columns:1fr;
    }

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

    .board-image{
        height:320px;
    }

    .board-info{
        min-height:auto;
    }

    .section-curve-bottom svg{
        height:55px;
    }
}


/* ================= ACADEMIC ================= */

.academic-section{
    position:relative;

    padding:70px 0 120px;

    margin-top:-90px;

    z-index:5;

    border-radius:
    80px 80px 0 0;

    overflow:hidden;

    box-shadow:
    0 -20px 50px rgba(0,0,0,0.06);
}

/* PREMIUM TOP GLOW */

.academic-section::before{
    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(125,201,66,0.08);

    top:-220px;
    left:-150px;

    filter:blur(120px);

    z-index:0;
}

.academic-section::after{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(255,214,10,0.08);

    bottom:-180px;
    right:-120px;

    filter:blur(120px);

    z-index:0;
}

/* ================= TITLE ================= */

.academic-section .section-title{
    position:relative;
    z-index:2;
}

.academic-subtitle{
    max-width:720px;
    margin:18px auto 0;

    font-size:17px;
    line-height:1.9;

    color:#666;
}

/* ================= CARD ================= */

.academic-card{
    position:relative;

    background:#fff;

    padding:35px 25px;

    border-radius:30px;

    text-align:center;

    height:100%;

    overflow:hidden;

    transition:0.5s ease;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.05);

    z-index:2;
}

/* TOP GLOW */

.academic-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(155,225,93,0.18),
        transparent 70%
    );

    top:-80px;
    right:-80px;

    transition:0.5s ease;
}

/* HOVER */

.academic-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 25px 55px rgba(0,0,0,0.08);
}

.academic-card:hover::before{
    transform:scale(1.3);
}

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

.academic-icon{
    width:85px;
    height:85px;

    margin:auto auto 22px;

    border-radius:26px;

    background:
    linear-gradient(
        135deg,
        #ffcc00,
        #9be15d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;

    font-size:34px;

    box-shadow:
    0 15px 30px rgba(155,225,93,0.25);

    transition:0.4s ease;
}

.academic-card:hover .academic-icon{
    transform:
    rotate(-8deg)
    scale(1.05);
}

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

.academic-badge{
    display:inline-block;

    background:#f5ffe8;

    color:#6aa832;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;
    font-weight:700;

    margin-bottom:18px;
}

/* ================= TITLE ================= */

.academic-card h4{
    font-size:24px;
    font-weight:700;

    color:#111;

    margin-bottom:16px;
}

/* ================= TEXT ================= */

.academic-card p{
    font-size:15px;
    line-height:1.9;

    color:#666;

    margin:0;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .academic-section{
        padding:120px 0 90px;

        margin-top:-70px;

        border-radius:
        60px 60px 0 0;
    }

    .academic-card{
        padding:30px 20px;
    }

    .academic-card h4{
        font-size:21px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .academic-section{
        padding:100px 0 80px;

        margin-top:-50px;

        border-radius:
        40px 40px 0 0;
    }

    .academic-subtitle{
        font-size:15px;
    }

    .academic-card{
        border-radius:24px;

        padding:24px 16px;
    }

    .academic-icon{
        width:65px;
        height:65px;

        font-size:26px;

        border-radius:20px;
    }

    .academic-card h4{
        font-size:18px;
    }

    .academic-card p{
        font-size:13px;
        line-height:1.7;
    }

    .academic-badge{
        font-size:11px;
        padding:7px 14px;
    }
}

/* =====================================================
   PREMIUM ACHIEVEMENTS SECTION
===================================================== */

.achievements-section{
    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fcfff8 40%,
        #f7fff2 100%
    );
}

/* =====================================================
   PREMIUM GLOWS
===================================================== */

.achievement-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    pointer-events:none;
}

.achievement-glow-1{
    width:500px;
    height:500px;

    background:
    rgba(125,201,66,.10);

    top:-220px;
    left:-180px;
}

.achievement-glow-2{
    width:450px;
    height:450px;

    background:
    rgba(255,216,77,.10);

    bottom:-180px;
    right:-180px;
}

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

.achievements-section .section-title{
    position:relative;
    z-index:5;
}

.achievements-section .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:60px;

    background:
    rgba(125,201,66,.08);

    border:
    1px solid rgba(125,201,66,.15);

    color:#6ea92f;

    font-size:14px;
    font-weight:700;

    margin-bottom:24px;
}

.achievements-section h2{
    font-size:64px;
    font-weight:800;

    color:#111827;

    margin-bottom:18px;
}

.achievements-section h2 span{
    color:#7dc942;
}

.achievement-subtitle{
    max-width:760px;

    margin:0 auto;

    color:#667085;

    line-height:1.9;

    font-size:17px;
}

/* =====================================================
   MAIN SHOWCASE
===================================================== */

.achievement-showcase{
    position:relative;

    height:900px;

    margin-top:90px;
}

/* =====================================================
   CENTER DANCER
===================================================== */

.achievement-center{
    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    width:480px;
    height:480px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.achievement-center img{
    width:360px;

    position:relative;
    z-index:10;

    filter:
    drop-shadow(
        0 25px 45px rgba(0,0,0,.18)
    );
}

/* =====================================================
   GOLD MANDALA
===================================================== */

.mandala-ring{
    position:absolute;

    width:340px;
    height:340px;

    border-radius:50%;

    border:
    2px dashed rgba(255,216,77,.45);

    animation:
    rotateMandala 22s linear infinite;
}

.ring-2{
    width:430px;
    height:430px;

    border:
    2px solid rgba(125,201,66,.18);

    animation-direction:reverse;
}

.ring-3{
    width:520px;
    height:520px;

    border:
    1px dashed rgba(255,216,77,.18);

    animation-duration:35s;
}

@keyframes rotateMandala{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* =====================================================
   ACHIEVEMENT CARDS
===================================================== */

.achievement-card{
    position:absolute;

    width:250px;

    padding:32px;

    text-align:center;

    border-radius:32px;

    background:
    rgba(255,255,255,.88);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(125,201,66,.12);

    box-shadow:
    0 20px 45px rgba(0,0,0,.06);

    transition:.45s ease;
}

.achievement-card:hover{
    transform:translateY(-12px);

    border-color:
    rgba(125,201,66,.25);

    box-shadow:
    0 30px 60px rgba(0,0,0,.10);
}

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

.achievement-icon{
    width:75px;
    height:75px;

    margin:0 auto 20px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        #ffd84d,
        #d9ff84
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;

    font-size:30px;

    box-shadow:
    0 15px 35px rgba(255,216,77,.25);
}

.achievement-card h3{
    font-size:46px;
    font-weight:800;

    color:#0f3d2e;

    margin-bottom:10px;
}

.achievement-card span{
    color:#5f6d65;

    font-size:15px;
    font-weight:600;

    line-height:1.7;
}

/* =====================================================
   CARD POSITIONS
===================================================== */

.card-top{
    top:0;
    left:50%;

    transform:translateX(-50%);
}

.card-left{
    left:0;
    top:50%;

    transform:translateY(-50%);
}

.card-right{
    right:0;
    top:50%;

    transform:translateY(-50%);
}

.card-bottom-left{
    left:120px;
    bottom:0;
}

.card-bottom-right{
    right:120px;
    bottom:0;
}

/* =====================================================
   FLOATING PARTICLES
===================================================== */

.achievement-showcase::before{
    content:"";

    position:absolute;

    width:16px;
    height:16px;

    border-radius:50%;

    background:#ffd84d;

    top:18%;
    left:18%;

    box-shadow:
    180px 90px #d9ff84,
    600px 40px #ffd84d,
    800px 120px #d9ff84,
    700px 500px #ffd84d,
    200px 650px #d9ff84;

    opacity:.35;
}

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

@media(max-width:991px){

    .achievement-showcase{
        height:auto;

        display:flex;
        flex-direction:column;

        gap:25px;

        align-items:center;
    }

    .achievement-card,
    .achievement-center{
        position:relative;

        top:auto;
        left:auto;
        right:auto;
        bottom:auto;

        transform:none;
    }

    .achievement-center{
        width:100%;
        height:auto;

        margin-bottom:20px;
    }

    .achievement-center img{
        width:260px;
    }

    .mandala-ring{
        display:none;
    }
}

@media(max-width:576px){

    .achievements-section{
        padding:90px 0;
    }

    .achievements-section h2{
        font-size:34px;
    }

    .achievement-card{
        width:100%;
    }

    .achievement-card h3{
        font-size:36px;
    }

    .achievement-subtitle{
        font-size:15px;
    }

    .achievement-center img{
        width:220px;
    }
}

/* =====================================================
   ADVISORY BOARD SECTION
===================================================== */

.advisory-section{
    position:relative;
    padding:130px 0;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #081c15 0%,
        #0f3d2e 50%,
        #164a35 100%
    );
}

/* =====================================================
   ORNAMENT TOP & BOTTOM
===================================================== */

.ornament-top,
.ornament-bottom{
    position:absolute;
    left:0;
    width:100%;
    height:52px;

    background:
    url("Assets/floral-Photoroom.png")
    repeat-x center;

    background-size:auto 52px;

    z-index:20;
    opacity:.95;
}

.ornament-top{
    top:0;
}

.ornament-bottom{
    bottom:0;
    transform:rotate(180deg);
}


/* =====================================================
   PREMIUM GREEN GLOWS
===================================================== */

.advisory-section::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(180,255,90,0.15);

    top:-220px;
    left:-180px;

    filter:blur(140px);
}

.advisory-section::after{
    content:"";
    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(217,255,132,0.10);

    bottom:-180px;
    right:-120px;

    filter:blur(130px);
}

/* =====================================================
   TITLE
===================================================== */

.advisory-section .section-title{
    max-width:760px;
    margin:auto;

    position:relative;
    z-index:2;
}

.advisory-section .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:60px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(12px);

    color:#d9ff84;

    font-size:14px;
    font-weight:700;
}

.advisory-section .section-title h2{
    color:#fff;

    font-size:64px;
    font-weight:800;

    margin-top:20px;
}

.advisory-section .section-title h2 span{
    color:#d9ff84;
}

.advisory-section .section-title p{
    font-size:17px;
    line-height:1.9;

    color:
    rgba(255,255,255,0.75);

    margin-top:20px;
}

/* =====================================================
   CARD
===================================================== */

.advisory-card{
    position:relative;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.12);

    border-radius:28px;

    overflow:hidden;

    transition:0.5s ease;

    height:100%;
}

.advisory-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(217,255,132,0.18),
        transparent 70%
    );

    top:-80px;
    right:-80px;

    z-index:0;
}

.advisory-card:hover{
    transform:translateY(-12px);

    border-color:
    rgba(217,255,132,0.35);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.30);
}

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

.advisory-image-wrapper{
    position:relative;
    overflow:hidden;
}

.advisory-image-wrapper img{
    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:0.6s ease;
}

.advisory-card:hover img{
    transform:scale(1.08);
}

/* =====================================================
   OVERLAY
===================================================== */

.advisory-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.80)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:0.4s ease;
}

.advisory-card:hover .advisory-overlay{
    opacity:1;
}

/* =====================================================
   BUTTON
===================================================== */

.advisory-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 28px;

    border-radius:50px;

    text-decoration:none;

    background:#d9ff84;

    color:#111;

    font-size:14px;
    font-weight:700;

    transition:0.3s ease;

    box-shadow:
    0 10px 25px rgba(217,255,132,0.30);
}

.advisory-btn:hover{
    background:#fff;
    color:#111;

    transform:translateY(-3px);
}

/* =====================================================
   CONTENT
===================================================== */

.advisory-content{
    padding:24px 18px 26px;
    text-align:center;

    position:relative;
    z-index:2;
}

.advisory-content h4{
    color:#fff;

    font-size:21px;
    font-weight:700;

    margin-bottom:8px;
}

.advisory-content span{
    color:
    rgba(255,255,255,0.72);

    font-size:14px;
}

/* =====================================================
   PREMIUM HOVER LINE
===================================================== */

.advisory-card::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:4px;

    background:#d9ff84;

    transition:0.4s ease;
}

.advisory-card:hover::after{
    width:100%;
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .advisory-section{
        padding:100px 0;
    }

    .advisory-section .section-title h2{
        font-size:48px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .advisory-section{
        padding:80px 0;
    }

    .advisory-section .section-title h2{
        font-size:34px;
    }

    .advisory-section .section-title p{
        font-size:15px;
    }

    .advisory-content{
        padding:16px 10px 18px;
    }

    .advisory-content h4{
        font-size:15px;
    }

    .advisory-content span{
        font-size:11px;
        line-height:1.5;
        display:block;
    }

    .advisory-btn{
        padding:10px 18px;
        font-size:12px;
    }

    .ornament-top,
    .ornament-bottom{
        height:38px;
        background-size:auto 38px;
    }
}

/* ================= PREMIUM GALLERY SECTION ================= */

.premium-gallery-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #f9fff1 50%,
        #ffffff 100%
    );
    overflow:hidden;
}

/* ================= GLOW EFFECTS ================= */

.gallery-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.gallery-glow-1{
    width:320px;
    height:320px;

    background:rgba(125,201,66,0.12);

    top:-100px;
    left:-100px;
}

.gallery-glow-2{
    width:260px;
    height:260px;

    background:rgba(255,214,10,0.12);

    bottom:-100px;
    right:-100px;
}

/* ================= TITLE ================= */

.gallery-title{
    position:relative;
    z-index:2;

    max-width:850px;
    margin:auto;
}

.gallery-tag{
    display:inline-block;

    background:#f5ffe8;
    color:#7dc942;

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    margin-bottom:22px;
}

.gallery-title h2{
    font-size:56px;
    font-weight:800;
    line-height:1.2;

    color:#111;

    margin-bottom:22px;
}

.gallery-title h2 span{
    color:#7dc942;
}

.gallery-title p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* ================= GALLERY GRID ================= */

.gallery-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:70px;
}

/* ================= CARD ================= */

.gallery-card{
    position:relative;

    overflow:hidden;

    border-radius:30px;

    cursor:pointer;

    background:#fff;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.06);

    transition:0.5s ease;
}

/* IMAGE */

.gallery-card img{
    width:100%;
    height:260px;

    object-fit:cover;

    transition:0.6s ease;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.15)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:0.5s ease;
}

/* ICON */

.gallery-overlay i{
    width:70px;
    height:70px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.18);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.25);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;

    transform:scale(0.7);

    transition:0.5s ease;
}

/* HOVER EFFECT */

.gallery-card:hover{
    transform:translateY(-12px);
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-overlay i{
    transform:scale(1);
}

/* ================= BUTTON ================= */

.gallery-btn-wrap{
    margin-top:60px;
}

.gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(135deg,#7dc942,#d9ff84);

    color:#111;

    font-weight:700;

    transition:0.4s ease;

    box-shadow:
    0 15px 30px rgba(125,201,66,0.20);
}

.gallery-btn:hover{
    transform:translateY(-6px);
    color:#111;
}

.gallery-btn i{
    transition:0.4s ease;
}

.gallery-btn:hover i{
    transform:translateX(6px);
}

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

@media(max-width:991px){

    .premium-gallery-section{
        padding:90px 0;
    }

    .gallery-title h2{
        font-size:42px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .premium-gallery-section{
        padding:80px 0;
    }

    .gallery-title h2{
        font-size:32px;
    }

    .gallery-title p{
        font-size:15px;
    }

    .gallery-grid{
        gap:16px;
        margin-top:50px;
    }

    .gallery-card{
        border-radius:20px;
    }

    .gallery-card img{
        height:160px;
    }

    .gallery-overlay i{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .gallery-btn{
        width:100%;
        justify-content:center;
    }

}

/* =====================================================
   PREMIUM TESTIMONIALS SECTION
===================================================== */

.premium-testimonials-section{
    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #081c15 0%,
        #0f3d2e 50%,
        #164a35 100%
    );
}

/* =====================================================
   SVG WAVES
===================================================== */

.testimonial-wave-top{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    line-height:0;
}

.testimonial-wave-top svg{
    width:100%;
    height:90px;
}

.testimonial-wave-bottom{
    position:absolute;
    bottom:-1px;
    left:0;

    width:100%;
    line-height:0;
}

.testimonial-wave-bottom svg{
    width:100%;
    height:90px;
}

/* =====================================================
   GLOW EFFECTS
===================================================== */

.testimonial-glow{
    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:0;
}

.testimonial-glow-1{
    width:420px;
    height:420px;

    background:
    rgba(180,255,90,0.15);

    top:-150px;
    left:-150px;
}

.testimonial-glow-2{
    width:350px;
    height:350px;

    background:
    rgba(255,215,0,0.12);

    bottom:-120px;
    right:-120px;
}

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

.premium-testimonials-section .section-title{
    position:relative;
    z-index:2;
}

.premium-testimonials-section .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:60px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(12px);

    color:#d9ff84;

    font-size:14px;
    font-weight:700;

    margin-bottom:24px;
}

.premium-testimonials-section .section-title h2{
    font-size:64px;
    font-weight:800;

    color:#fff;

    margin-bottom:18px;
}

.premium-testimonials-section .section-title h2 span{
    color:#d9ff84;
}

.testimonial-subtitle{
    max-width:760px;

    margin:18px auto 0;

    color:
    rgba(255,255,255,0.75);

    font-size:17px;
    line-height:1.9;
}

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

.testimonial-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:55px;
    margin-bottom:65px;

    position:relative;
    z-index:2;
}

.stat-box{
    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(16px);

    border:
    1px solid rgba(255,255,255,0.12);

    border-radius:30px;

    padding:35px 20px;

    text-align:center;

    transition:0.4s ease;
}

.stat-box:hover{
    transform:translateY(-10px);

    border-color:
    rgba(217,255,132,0.30);
}

.stat-box h3{
    font-size:42px;
    font-weight:800;

    color:#d9ff84;

    margin-bottom:10px;
}

.stat-box p{
    margin:0;

    color:
    rgba(255,255,255,0.80);

    font-size:16px;
    font-weight:600;
}

/* =====================================================
   SWIPER
===================================================== */

.testimonialSwiper{
    padding-bottom:70px;

    position:relative;
    z-index:2;
}

/* =====================================================
   TESTIMONIAL CARD
===================================================== */

.testimonial-card{
    position:relative;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.12);

    border-radius:34px;

    padding:38px;

    overflow:hidden;

    transition:0.5s ease;

    height:100%;
}

.testimonial-card::before{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(217,255,132,0.18),
        transparent 70%
    );

    top:-80px;
    right:-80px;
}

.testimonial-card:hover{
    transform:translateY(-12px);

    border-color:
    rgba(217,255,132,0.35);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.30);
}

/* =====================================================
   QUOTE ICON
===================================================== */

.quote-icon{
    position:absolute;

    top:25px;
    right:25px;

    font-size:70px;

    color:
    rgba(217,255,132,0.12);
}

/* =====================================================
   TOP SECTION
===================================================== */

.testimonial-top{
    display:flex;
    align-items:center;

    gap:18px;

    margin-bottom:25px;
}

.testimonial-top img{
    width:75px;
    height:75px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid rgba(217,255,132,0.30);
}

.testimonial-top h4{
    font-size:22px;
    font-weight:700;

    color:#fff;

    margin-bottom:4px;
}

.testimonial-top span{
    color:
    rgba(255,255,255,0.70);

    font-size:14px;
}

/* =====================================================
   STARS
===================================================== */

.testimonial-stars{
    display:flex;
    align-items:center;

    gap:6px;

    margin-bottom:22px;
}

.testimonial-stars i{
    color:#ffd84d;

    font-size:18px;

    transition:0.3s ease;
}

.testimonial-card:hover .testimonial-stars i{
    transform:scale(1.15);
}

/* =====================================================
   REVIEW TEXT
===================================================== */

.testimonial-card p{
    color:
    rgba(255,255,255,0.82);

    line-height:1.9;

    font-size:16px;

    margin-bottom:0;
}

/* =====================================================
   PAGINATION
===================================================== */

.swiper-pagination-bullet{
    width:12px;
    height:12px;

    background:
    rgba(255,255,255,0.35);

    opacity:1;
}

.swiper-pagination-bullet-active{
    width:34px;

    border-radius:20px;

    background:#d9ff84;
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .premium-testimonials-section{
        padding:100px 0;
    }

    .premium-testimonials-section .section-title h2{
        font-size:48px;
    }

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

        gap:20px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .premium-testimonials-section{
        padding:80px 0;
    }

    .premium-testimonials-section .section-title h2{
        font-size:34px;
    }

    .testimonial-subtitle{
        font-size:15px;
    }

    .testimonial-card{
        padding:28px;

        border-radius:26px;
    }

    .testimonial-top{
        gap:14px;
    }

    .testimonial-top img{
        width:65px;
        height:65px;
    }

    .testimonial-top h4{
        font-size:18px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.8;
    }

    .stat-box h3{
        font-size:34px;
    }

    .testimonial-wave-top svg{
        height:60px;
    }

    .testimonial-wave-bottom svg{
        height:60px;
    }
}

.wavy-top,
.wavy-bottom{
    position:absolute;
    left:0;
    width:100%;
    height:24px;
    z-index:10;

    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q6 4 12 12 T24 12 T36 12 T48 12 T60 12 T72 12 T84 12 T96 12 T108 12 T120 12' stroke='%23d9ff84' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");

    background-repeat:repeat-x;
    background-size:120px 24px;
}

.wavy-top{
    top:20px;
}

.wavy-bottom{
    bottom:20px;
    transform:rotate(180deg);
}

/* =====================================================
   PREMIUM CONTACT SECTION
===================================================== */

.premium-contact-section{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

/* =====================================================
   GLOW EFFECTS
===================================================== */

.contact-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.contact-glow-1{
    width:320px;
    height:320px;

    background:
    rgba(125,201,66,0.10);

    top:-120px;
    left:-120px;
}

.contact-glow-2{
    width:280px;
    height:280px;

    background:
    rgba(217,255,132,0.14);

    bottom:-120px;
    right:-120px;
}

/* =====================================================
   EQUAL HEIGHT CARDS
===================================================== */

.location-card,
.contact-form-card{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    background:#ffffff;

    border-radius:34px;

    padding:40px;

    border:
    1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;

    transition:0.45s ease;
}

.location-card:hover,
.contact-form-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 28px 70px rgba(0,0,0,0.08);
}

.location-card::before,
.contact-form-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(125,201,66,0.05);

    top:-80px;
    right:-80px;
}

/* =====================================================
   TAG
===================================================== */

.contact-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:max-content;

    padding:10px 24px;

    border-radius:50px;

    background:#f5ffe8;

    color:#69b92d;

    font-size:14px;
    font-weight:700;

    margin-bottom:20px;
}

/* =====================================================
   TITLES
===================================================== */

.location-card h2,
.contact-form-card h2{
    font-size:48px;
    font-weight:800;
    line-height:1.15;

    color:#111;

    margin-bottom:15px;
}

.location-card h2 span,
.contact-form-card h2 span{
    color:#69b92d;
}

.location-description,
.form-description{
    font-size:15px;
    line-height:1.8;

    color:#666;

    margin-bottom:25px;
}

/* =====================================================
   SCHOOL IMAGE
===================================================== */

.school-image-box{
    width:100%;

    height:280px;

    border-radius:28px;

    overflow:hidden;

    margin-bottom:24px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.school-image-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

.school-image-box:hover img{
    transform:scale(1.05);
}

/* =====================================================
   SCHOOL INFO
===================================================== */

.school-info-box h3{
    font-size:26px;
    font-weight:800;

    color:#111;

    margin-bottom:18px;
}

/* =====================================================
   LOCATION BOX
===================================================== */

.location-box{
    display:flex;
    align-items:flex-start;

    gap:16px;

    padding:20px;

    border-radius:24px;

    background:#fcfff7;

    border:
    1px solid rgba(125,201,66,0.10);

    margin-bottom:24px;
}

.location-icon{
    width:56px;
    height:56px;

    min-width:56px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #7dc942,
        #d9ff84
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.location-icon i{
    color:#fff;
    font-size:20px;
}

.location-content p{
    margin:0;

    color:#555;

    line-height:1.8;

    font-size:15px;
}

/* =====================================================
   CAMPUS HIGHLIGHTS
===================================================== */

.campus-highlights{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:12px;

    margin-bottom:24px;
}

.highlight-item{
    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    gap:8px;

    padding:16px 10px;

    border-radius:18px;

    background:#f9fff2;

    border:
    1px solid rgba(125,201,66,0.10);
}

.highlight-item i{
    color:#69b92d;

    font-size:20px;
}

.highlight-item span{
    font-size:13px;
    font-weight:700;

    color:#333;
}

/* =====================================================
   MAP
===================================================== */

.premium-map{
    overflow:hidden;

    border-radius:24px;

    margin-bottom:24px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.premium-map iframe{
    width:100%;
    height:260px;

    border:none;

    display:block;
}

/* =====================================================
   LOCATION BUTTON
===================================================== */

.location-btn{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    height:62px;

    border-radius:18px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #7dc942,
        #dfff78
    );

    color:#111;

    font-size:16px;
    font-weight:700;

    transition:0.4s ease;

    box-shadow:
    0 15px 30px rgba(125,201,66,0.18);
}

.location-btn:hover{
    color:#111;

    transform:translateY(-4px);
}
/* =====================================================
   FORM
===================================================== */

.contact-form-card form{
    margin-top:10px;

    display:flex;
    flex-direction:column;

    gap:18px;

    flex:1;
}

/* =====================================================
   FORM GROUP
===================================================== */

.form-group{
    margin-bottom:0;
}

.form-group label{
    display:block;

    margin-bottom:8px;

    color:#222;

    font-size:15px;
    font-weight:700;
}

/* =====================================================
   INPUT BOX
===================================================== */

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#69b92d;

    font-size:18px;

    z-index:2;
}

/* =====================================================
   INPUTS
===================================================== */

.input-box input,
.input-box select{
    width:100%;

    height:60px;

    border:none;
    outline:none;

    border-radius:18px;

    background:#f9fff1;

    border:2px solid transparent;

    padding-left:56px;
    padding-right:18px;

    font-size:15px;

    transition:0.35s ease;
}

.input-box input::placeholder{
    color:#888;
}

.input-box input:focus,
.input-box select:focus{
    background:#fff;

    border-color:#7dc942;

    box-shadow:
    0 10px 25px rgba(125,201,66,0.12);
}

/* =====================================================
   BUTTON WRAPPER
===================================================== */

.action-buttons{
    margin-top:10px;

    display:flex;
    flex-direction:column;

    gap:14px;
}

/* =====================================================
   EMAIL BUTTON
===================================================== */

.email-btn{
    width:100%;

    height:62px;

    border:none;
    outline:none;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    cursor:pointer;

    font-size:16px;
    font-weight:700;

    color:#111;

    background:
    linear-gradient(
        135deg,
        #7dc942,
        #dfff78
    );

    transition:0.4s ease;

    box-shadow:
    0 15px 30px rgba(125,201,66,0.18);
}

.email-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(125,201,66,0.24);
}

/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.whatsapp-btn{
    width:100%;

    height:62px;

    border:none;
    outline:none;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    cursor:pointer;

    font-size:16px;
    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #1ebe5d
    );

    transition:0.4s ease;

    box-shadow:
    0 15px 30px rgba(37,211,102,0.20);
}

.whatsapp-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(37,211,102,0.28);
}

.whatsapp-btn i,
.email-btn i{
    font-size:18px;
}

/* =====================================================
   PERFECT CARD HEIGHT ALIGNMENT
===================================================== */

.location-card,
.contact-form-card{
    min-height:100%;
}

.row.align-items-stretch > div{
    display:flex;
}

.location-card,
.contact-form-card{
    flex:1;
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .premium-contact-section{
        padding:90px 0;
    }

    .location-card,
    .contact-form-card{
        padding:32px;
    }

    .location-card h2,
    .contact-form-card h2{
        font-size:40px;
    }

    .school-image-box{
        height:240px;
    }

    .premium-map iframe{
        height:240px;
    }

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

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .premium-contact-section{
        padding:80px 0;
    }

    .location-card,
    .contact-form-card{
        padding:24px;

        border-radius:28px;
    }

    .location-card h2,
    .contact-form-card h2{
        font-size:32px;
    }

    .school-image-box{
        height:200px;
    }

    .premium-map iframe{
        height:220px;
    }

    .campus-highlights{
        grid-template-columns:1fr;
    }

    .highlight-item{
        flex-direction:row;

        justify-content:flex-start;

        text-align:left;

        padding:14px 16px;
    }

    .location-btn,
    .email-btn,
    .whatsapp-btn{
        height:58px;

        font-size:15px;
    }

    .input-box input,
    .input-box select{
        height:56px;

        font-size:14px;
    }

    .form-group label{
        font-size:14px;
    }

    .location-description,
    .form-description{
        font-size:14px;
    }
}
/* ================= ADMISSION HIGHLIGHTS ================= */

.admission-highlights{
    margin-top:28px;

    display:flex;
    flex-direction:column;

    gap:14px;

    padding:24px;

    background:#fcfff7;

    border:1px solid rgba(125,201,66,0.10);

    border-radius:22px;
}

.admission-item{
    display:flex;
    align-items:center;

    gap:14px;

    color:#222;

    font-size:15px;
    font-weight:600;
}

.admission-item i{
    color:#69b92d;

    font-size:18px;
}



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

.premium-footer{
    position:relative;

    padding:100px 0 30px;

    background:#0f1115;

    overflow:hidden;

    color:#fff;
}

/* =====================================================
   GLOW EFFECTS
===================================================== */

.footer-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.footer-glow-1{
    width:260px;
    height:260px;

    background:rgba(125,201,66,0.12);

    top:-100px;
    left:-100px;
}

.footer-glow-2{
    width:240px;
    height:240px;

    background:rgba(255,214,10,0.10);

    bottom:-100px;
    right:-100px;
}

/* =====================================================
   CONTAINER
===================================================== */

.premium-footer .container{
    position:relative;
    z-index:2;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand{
    display:flex;
    align-items:center;
    gap:16px;

    margin-bottom:25px;
}

.footer-brand img{
    width:78px;
    height:78px;

    object-fit:contain;

    border-radius:20px;

    background:#fff;

    padding:8px;
}

.footer-brand-text h4{
    font-size:28px;
    font-weight:800;

    margin-bottom:5px;
}

.footer-brand-text span{
    color:#d8ff73;

    font-size:15px;
    font-weight:600;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.footer-desc{
    color:#c7c7c7;

    line-height:1.9;

    font-size:15px;

    margin-bottom:28px;

    max-width:95%;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-socials{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:28px;
    flex-wrap:wrap;
}

/* ICON BUTTON */

.footer-socials a{
    position:relative;

    width:50px;
    height:50px;

    border-radius:18px;

    background:#171b22;

    border:1px solid rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    color:#fff;

    font-size:18px;

    text-decoration:none;

    transition:0.45s ease;
}

/* GLOW EFFECT */

.footer-socials a::before{
    content:"";

    position:absolute;

    width:120%;
    height:120%;

    background:
    linear-gradient(
        135deg,
        #7dc942,
        #dfff73,
        #ffd84d
    );

    top:100%;
    left:-100%;

    transition:0.5s ease;

    z-index:0;
}

/* ICON */

.footer-socials a i{
    position:relative;
    z-index:2;

    transition:0.4s ease;
}

/* HOVER */

.footer-socials a:hover{
    transform:
    translateY(-8px)
    scale(1.05);

    border-color:transparent;

    box-shadow:
    0 18px 35px rgba(125,201,66,0.28);
}

/* SLIDE EFFECT */

.footer-socials a:hover::before{
    top:0;
    left:0;
}

/* ICON COLOR */

.footer-socials a:hover i{
    color:#111;
    transform:scale(1.15);
}

/* MOBILE */

@media(max-width:576px){

    .footer-socials{
        justify-content:flex-start;
        gap:12px;
    }

    .footer-socials a{
        width:46px;
        height:46px;

        border-radius:15px;

        font-size:17px;
    }

}

/* =====================================================
   TITLES
===================================================== */

.footer-title{
    font-size:26px;
    font-weight:700;

    margin-bottom:30px;

    position:relative;
}

.footer-title::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:60px;
    height:4px;

    border-radius:20px;

    background:
    linear-gradient(90deg,#7dc942,#ffd60a);
}

/* =====================================================
   QUICK LINKS
===================================================== */

.footer-links{
    padding:0;
    margin:0;

    list-style:none;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    text-decoration:none;

    color:#d7d7d7;

    font-size:16px;
    font-weight:500;

    display:flex;
    align-items:center;
    gap:12px;

    transition:0.4s ease;
}

.footer-links a i{
    color:#7dc942;

    transition:0.4s ease;
}

.footer-links a:hover{
    color:#dfff73;

    transform:translateX(6px);
}

/* =====================================================
   CONTACT BOX
===================================================== */

.footer-contact-box{
    display:flex;
    align-items:flex-start;
    gap:16px;

    margin-bottom:24px;
}

/* ICON */

.footer-contact-icon{
    width:52px;
    height:52px;

    min-width:52px;

    border-radius:16px;

    background:
    linear-gradient(135deg,#7dc942,#dfff73);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 12px 25px rgba(125,201,66,0.18);
}

.footer-contact-icon i{
    color:#111;

    font-size:20px;
}

/* TEXT */

.footer-contact-box h5{
    font-size:18px;
    font-weight:700;

    margin-bottom:6px;
}

.footer-contact-box p{
    margin:0;

    color:#c8c8c8;

    line-height:1.8;

    font-size:15px;
}

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

.footer-bottom{
    margin-top:70px;

    padding-top:28px;

    border-top:1px solid rgba(255,255,255,0.08);

    text-align:center;
}

.footer-bottom p{
    margin:0;

    color:#bdbdbd;

    font-size:15px;
}

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

@media(max-width:991px){

    .premium-footer{
        padding:80px 0 25px;
    }

    .footer-brand-text h4{
        font-size:24px;
    }

}

@media(max-width:576px){

    .premium-footer{
        padding:70px 0 20px;
    }

    .footer-brand{
        align-items:flex-start;
    }

    .footer-brand img{
        width:65px;
        height:65px;
    }

    .footer-brand-text h4{
        font-size:22px;
    }

    .footer-title{
        font-size:22px;
        margin-bottom:24px;
    }

    /* .footer-socials a{
        width:44px;
        height:44px;
    } */

    .footer-contact-icon{
        width:46px;
        height:46px;
        min-width:46px;
    }

}


/* =====================================================
   SREYAS STORY SECTION
===================================================== */

.school-story-section{
    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f8ffe9 50%,
    #fffdf4 100%);
}

/* =====================================================
   SHAPES
===================================================== */

.story-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.story-shape-1{
    width:320px;
    height:320px;

    background:
    rgba(125,201,66,0.12);

    top:-100px;
    left:-120px;
}

.story-shape-2{
    width:280px;
    height:280px;

    background:
    rgba(255,220,90,0.15);

    right:-120px;
    bottom:-120px;
}

/* =====================================================
   STORY CONTENT
===================================================== */

.story-content{
    position:relative;
    z-index:2;
}

.story-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    border-radius:50px;

    background:#f5ffe8;

    color:#69b92d;

    font-size:14px;
    font-weight:700;

    margin-bottom:24px;

    box-shadow:
    0 12px 30px rgba(125,201,66,.12);
}

.story-content h2{
    font-size:64px;
    font-weight:800;
    line-height:1.15;

    color:#111;

    margin-bottom:24px;
}

.story-content h2 span{
    color:#69b92d;
}

.story-content p{
    font-size:17px;
    line-height:1.95;

    color:#666;

    margin-bottom:18px;
}

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

.story-stats{
    display:flex;
    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.story-stat-card{
    flex:1;

    min-width:180px;

    background:#fff;

    padding:24px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(0,0,0,.04);

    box-shadow:
    0 20px 40px rgba(0,0,0,.05);

    transition:.4s ease;
}

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

.story-stat-card h3{
    font-size:42px;
    font-weight:800;

    color:#69b92d;

    margin-bottom:10px;
}

.story-stat-card span{
    color:#666;
    font-weight:600;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.story-image-wrapper{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.story-image-card{
    width:100%;

    background:#fff;

    padding:12px;

    border-radius:36px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 35px 70px rgba(0,0,0,.10);
}

.story-image-card img{
    width:100%;
    height:580px;

    object-fit:cover;

    border-radius:28px;

    display:block;
}

/* =====================================================
   BADGES
===================================================== */

.story-badge{
    position:absolute;

    display:flex;
    align-items:center;
    gap:10px;

    background:#fff;

    padding:14px 20px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    color:#111;

    box-shadow:
    0 15px 35px rgba(0,0,0,.10);

    z-index:3;
}

.story-badge i{
    color:#69b92d;
}

.story-badge-top{
    top:30px;
    left:-30px;
}

.story-badge-bottom{
    bottom:30px;
    right:-30px;
}

/* =====================================================
   IMAGE FLOAT
===================================================== */

.story-image-card{
    animation:
    storyFloat 5s ease-in-out infinite;
}

@keyframes storyFloat{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }

}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .school-story-section{
        padding:90px 0;
    }

    .story-content{
        margin-top:50px;
        text-align:center;
    }

    .story-content h2{
        font-size:48px;
    }

    .story-stats{
        justify-content:center;
    }

    .story-image-card img{
        height:500px;
    }

    .story-badge-top{
        left:10px;
    }

    .story-badge-bottom{
        right:10px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .school-story-section{
        padding:70px 0;
    }

    .story-content{
        margin-top:40px;
    }

    .story-content h2{
        font-size:34px;
    }

    .story-content p{
        font-size:15px;
    }

    .story-image-card img{
        height:380px;
    }

    .story-badge{
        font-size:12px;

        padding:10px 14px;
    }

    .story-stat-card{
        min-width:100%;
    }

}

/* =====================================================
   VISION SECTION
===================================================== */

.vision-section{
    padding:110px 0;
    background:#ffffff;
}

.vision-card{
    position:relative;

    background:#fff;

    padding:50px 40px;

    border-radius:34px;

    overflow:hidden;

    height:100%;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.05);

    transition:0.5s ease;
}

.vision-card::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    top:-100px;
    right:-100px;

    background:
    rgba(125,201,66,0.08);
}

.vision-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}

.vision-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#7dc942,#dfff73);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    box-shadow:
    0 18px 35px rgba(125,201,66,0.22);
}

.vision-icon i{
    font-size:34px;
    color:#111;
}

.vision-card h3{
    font-size:34px;
    font-weight:800;
    color:#111;

    margin-bottom:18px;
}

.vision-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;

    margin:0;
}

/* =====================================================
   SCHOOL LEADERSHIP SECTION
===================================================== */

.school-leadership{
    position:relative;
    overflow:hidden;
    padding:130px 0;

    background:
    linear-gradient(
        135deg,
        #071b13 0%,
        #0b2f23 35%,
        #134332 70%,
        #0c2b20 100%
    );
}

/* =====================================================
   PREMIUM BACKGROUND EFFECTS
===================================================== */

.school-leadership::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(217,255,132,.10);

    top:-180px;
    left:-180px;

    filter:blur(140px);
}

.school-leadership::after{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    bottom:-150px;
    right:-120px;

    filter:blur(120px);
}

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

.leadership-title{
    position:relative;
    z-index:2;

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;
}

.leadership-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:60px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    color:#d9ff84;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

.leadership-title h2{
    font-size:68px;
    font-weight:800;
    line-height:1.15;

    color:#fff;

    margin-bottom:20px;
}

.leadership-title h2 span{
    color:#d9ff84;
}

.leadership-title p{
    color:
    rgba(255,255,255,.75);

    font-size:17px;
    line-height:1.9;

    max-width:720px;

    margin:auto;
}

/* =====================================================
   ROW ALIGNMENT
===================================================== */

.school-leadership .row{
    justify-content:center;
    position:relative;
    z-index:2;
}

.school-leadership .col-lg-5{
    display:flex;
}

/* =====================================================
   CARD
===================================================== */

.leadership-card{
    width:100%;

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:36px;

    text-align:center;

    padding:40px 32px;

    transition:.45s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

    overflow:hidden;
}

.leadership-card:hover{
    transform:
    translateY(-10px);

    border-color:
    rgba(217,255,132,.25);

    box-shadow:
    0 35px 70px rgba(0,0,0,.35);
}

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

.leadership-card img{
    width:240px;
    height:240px;

    object-fit:cover;

    border-radius:50%;

    display:block;

    margin:0 auto 28px;

    border:6px solid
    rgba(217,255,132,.15);

    box-shadow:
    0 20px 50px rgba(0,0,0,.30);

    transition:.5s ease;
}

.leadership-card:hover img{
    transform:scale(1.05);
}

/* =====================================================
   NAME
===================================================== */

.leadership-card h3{
    font-size:32px;
    font-weight:800;

    color:#fff;

    margin-bottom:10px;
}

/* =====================================================
   QUALIFICATION
===================================================== */

.qualification{
    display:block;

    color:
    rgba(255,255,255,.75);

    font-size:15px;
    font-weight:500;

    margin-bottom:20px;
}

/* =====================================================
   DESIGNATION BADGE
===================================================== */

.designation-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:11px 24px;

    border-radius:60px;

    background:
    rgba(217,255,132,.12);

    border:
    1px solid rgba(217,255,132,.25);

    color:#d9ff84;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

/* =====================================================
   BUTTON
===================================================== */

.leadership-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:15px 32px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #7dc942,
        #d9ff84
    );

    color:#111;

    font-size:15px;
    font-weight:700;

    transition:.4s ease;

    box-shadow:
    0 15px 35px rgba(125,201,66,.20);
}

.leadership-btn:hover{
    transform:translateY(-4px);

    color:#111;

    box-shadow:
    0 20px 45px rgba(217,255,132,.25);
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .school-leadership{
        padding:100px 0;
    }

    .leadership-title{
        margin-bottom:60px;
    }

    .leadership-title h2{
        font-size:52px;
    }

    .leadership-card{
        padding:35px 28px;
    }

    .leadership-card img{
        width:220px;
        height:220px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .school-leadership{
        padding:80px 0;
    }

    .leadership-title h2{
        font-size:34px;
    }

    .leadership-card{
        padding:28px 22px 35px;
        border-radius:28px;
    }

    .leadership-card img{
        width:170px;
        height:170px;
        margin-bottom:18px;
    }

    .leadership-card h3{
        font-size:24px;
        margin-bottom:8px;
    }

    .qualification{
        margin-bottom:15px;
    }

    .designation-badge{
        margin-bottom:20px;
    }

    .leadership-btn{
        width:auto;
        min-width:170px;

        margin-top:15px;
        margin-bottom:10px;

        padding:14px 28px;
    }
}

/* =====================================================
   WHY SECTION
===================================================== */

.why-section{
    padding:120px 0;
    background:#ffffff;
}

.why-card{
    position:relative;

    background:#fff;

    padding:45px 30px;

    border-radius:32px;

    text-align:center;

    overflow:hidden;

    height:100%;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.05);

    transition:0.5s ease;
}

.why-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    top:-90px;
    right:-90px;

    background:
    rgba(255,214,10,0.10);
}

.why-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 28px 60px rgba(0,0,0,0.08);
}

.why-card i{
    width:90px;
    height:90px;

    border-radius:26px;

    background:
    linear-gradient(135deg,#7dc942,#dfff73);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 28px;

    font-size:36px;
    color:#111;

    box-shadow:
    0 18px 35px rgba(125,201,66,0.22);
}

.why-card h4{
    font-size:24px;
    font-weight:800;
    color:#111;

    margin-bottom:16px;
}

.why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;

    margin:0;
}

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

@media(max-width:991px){

    .about-hero-section{
        padding:100px 0 70px;
        text-align:center;
    }

    .about-hero-content h1{
        font-size:54px;
    }

    .about-hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .about-hero-buttons{
        justify-content:center;
    }

    .about-hero-image{
        margin-top:50px;
        max-width:500px;
    }

   

}

@media(max-width:576px){

    .about-hero-section{
        padding:90px 0 60px;
    }

    .about-hero-content h1{
        font-size:38px;
    }

    .about-hero-content p{
        font-size:15px;
    }

    .about-main-btn,
    .about-outline-btn{
        width:100%;
    }

    .about-hero-image{
        max-width:320px;
    }

    .vision-section,
    .why-section{
        padding:80px 0;
    }

    .vision-card,
    .why-card{
        padding:35px 25px;
    }

    .vision-card h3{
        font-size:28px;
    }

   

}
/* =====================================================
   ABOUT CTA SECTION
===================================================== */

.about-cta-section{
    padding:0 0 120px;
    background:#ffffff;
}

.about-cta-wrapper{
    position:relative;

    overflow:hidden;

    padding:70px 65px;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    #7dc942 0%,
    #dfff73 100%);

    box-shadow:
    0 30px 70px rgba(125,201,66,0.22);
}

/* GLOW EFFECTS */

.about-cta-wrapper::before{
    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.15);

    top:-120px;
    right:-120px;
}

.about-cta-wrapper::after{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.10);

    bottom:-80px;
    left:-80px;
}

/* CONTENT */

.about-cta-content{
    position:relative;
    z-index:2;
}

.about-cta-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.20);

    backdrop-filter:blur(10px);

    padding:12px 24px;

    border-radius:50px;

    color:#111;

    font-size:14px;
    font-weight:700;

    margin-bottom:24px;
}

.about-cta-content h2{
    font-size:58px;
    font-weight:800;
    line-height:1.2;

    color:#111;

    margin-bottom:20px;
}

.about-cta-content h2 span{
    color:#ffffff;
}

.about-cta-content p{
    max-width:650px;

    font-size:17px;
    line-height:1.9;

    color:#1d1d1d;

    margin:0;
}

/* BUTTON */

.about-cta-btn{
    position:relative;
    z-index:2;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    background:#ffffff;

    color:#111;

    font-size:16px;
    font-weight:700;

    transition:0.4s ease;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);
}

.about-cta-btn:hover{
    transform:translateY(-6px);

    color:#111;

    background:#111;
    color:#fff;
}

.about-cta-btn i{
    transition:0.4s ease;
}

.about-cta-btn:hover i{
    transform:translateX(6px);
}

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

@media(max-width:991px){

    .about-cta-wrapper{
        padding:55px 40px;
        text-align:center;
    }

    .about-cta-content h2{
        font-size:46px;
    }

}

@media(max-width:576px){

    .about-cta-section{
        padding:0 0 80px;
    }

    .about-cta-wrapper{
        padding:40px 25px;
        border-radius:28px;
    }

    .about-cta-content h2{
        font-size:34px;
    }

    .about-cta-content p{
        font-size:15px;
    }

    .about-cta-btn{
        width:100%;
    }

}
/* =====================================================
   FACILITIES SECTION
===================================================== */

.facilities-section{
    position:relative;
    padding:120px 0;
    background:#f9fff2;
    overflow:hidden;
}

/* BACKGROUND GLOW */

.facilities-section::before{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
    rgba(125,201,66,0.08);

    top:-120px;
    left:-120px;

    filter:blur(10px);
}

.facilities-subtitle{
    max-width:700px;

    margin:22px auto 0;

    font-size:17px;
    line-height:1.9;

    color:#666;
}

/* =====================================================
   FACILITY CARD
===================================================== */

.facility-card{
    position:relative;

    background:#ffffff;

    padding:42px 30px;

    border-radius:32px;

    text-align:center;

    overflow:hidden;

    height:100%;

    transition:0.5s ease;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.05);
}

/* TOP LIGHT EFFECT */

.facility-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    top:-90px;
    right:-90px;

    background:
    rgba(255,214,10,0.10);
}

/* HOVER */

.facility-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}

/* ICON */

.facility-icon{
    width:90px;
    height:90px;

    border-radius:28px;

    background:
    linear-gradient(135deg,#7dc942,#dfff73);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 28px;

    box-shadow:
    0 18px 35px rgba(125,201,66,0.22);

    transition:0.4s ease;
}

.facility-card:hover .facility-icon{
    transform:rotate(-6deg) scale(1.05);
}

.facility-icon i{
    font-size:36px;
    color:#111;
}

/* TITLE */

.facility-card h4{
    font-size:24px;
    font-weight:800;

    color:#111;

    margin-bottom:16px;
}

/* TEXT */

.facility-card p{
    color:#666;

    font-size:15px;
    line-height:1.8;

    margin:0;
}

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

@media(max-width:991px){

    .facilities-section{
        padding:90px 0;
    }

}

@media(max-width:576px){

    .facilities-section{
        padding:80px 0;
    }

    .facility-card{
        padding:35px 22px;
        border-radius:26px;
    }

    .facility-icon{
        width:75px;
        height:75px;
        border-radius:22px;
    }

    .facility-icon i{
        font-size:30px;
    }

    .facility-card h4{
        font-size:21px;
    }

    .facilities-subtitle{
        font-size:15px;
    }

}



/* =====================================================
   PREMIUM GALLERY HERO SECTION
===================================================== */

.gallery-hero-section{
    position:relative;

    min-height:520px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f8ffe9 45%,
    #fff9d8 100%);
}

/* ================= LIGHT BACKGROUND LOGO ================= */

.gallery-bg-logo{
    position:absolute;

    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:1;

    pointer-events:none;
}

.gallery-bg-logo img{
    width:520px;

    opacity:0.04;

    filter:grayscale(100%);
}

/* ================= PREMIUM CIRCLES ================= */

.gallery-circle{
    position:absolute;

    border-radius:50%;

    z-index:1;

    filter:blur(10px);
}

.gallery-circle-1{
    width:260px;
    height:260px;

    background:rgba(125,201,66,0.16);

    top:-70px;
    left:-70px;
}

.gallery-circle-2{
    width:220px;
    height:220px;

    background:rgba(255,214,10,0.20);

    bottom:-70px;
    right:-70px;
}

/* ================= CONTENT ================= */

.gallery-hero-content{
    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

/* TAG */

.gallery-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 30px;

    border-radius:60px;

    background:#ffffff;

    color:#7dc942;

    font-size:14px;
    font-weight:700;

    margin-bottom:28px;

    box-shadow:
    0 12px 30px rgba(0,0,0,0.05);
}

/* TITLE */

.gallery-hero-content h1{
    font-size:78px;
    font-weight:800;
    line-height:1.12;

    color:#111;

    margin-bottom:28px;
}

.gallery-hero-content h1 span{
    color:#7dc942;
}

/* TEXT */

.gallery-hero-content p{
    max-width:760px;

    margin:auto auto 32px;

    font-size:18px;
    line-height:1.9;

    color:#555;
}

/* BREADCRUMB */

.gallery-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    flex-wrap:wrap;

    font-size:15px;
    font-weight:700;

    color:#666;
}

.gallery-breadcrumb a{
    color:#7dc942;

    text-decoration:none;

    transition:0.3s ease;
}

.gallery-breadcrumb a:hover{
    color:#111;
}

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

@media(max-width:991px){

    .gallery-hero-section{
        min-height:450px;

        padding:100px 0;
    }

    .gallery-bg-logo img{
        width:380px;
    }

    .gallery-hero-content h1{
        font-size:56px;
    }

    .gallery-hero-content p{
        font-size:17px;
    }

}

@media(max-width:576px){

    .gallery-hero-section{
        min-height:400px;

        padding:90px 0 70px;
    }

    .gallery-bg-logo img{
        width:260px;
    }

    .gallery-tag{
        font-size:12px;

        padding:10px 22px;
    }

    .gallery-hero-content h1{
        font-size:38px;
    }

    .gallery-hero-content p{
        font-size:15px;

        line-height:1.8;
    }

    .gallery-breadcrumb{
        font-size:13px;
    }

    .gallery-circle-1{
        width:160px;
        height:160px;
    }

    .gallery-circle-2{
        width:130px;
        height:130px;
    }

}

/* =====================================================
   GALLERY PAGE SECTION
===================================================== */

.gallery-page-section{
    padding:120px 0;
    background:#ffffff;
}

/* CARD */

.gallery-photo-card{
    position:relative;

    overflow:hidden;

    border-radius:28px;

    height:300px;

    cursor:pointer;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:0.5s ease;
}

.gallery-photo-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.gallery-photo-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s ease;
}

.gallery-photo-card:hover img{
    transform:scale(1.12);
}

/* OVERLAY */

.gallery-photo-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.90),
    rgba(0,0,0,0.10));

    display:flex;
    align-items:flex-end;

    padding:28px;

    opacity:0;

    transition:0.5s ease;
}

.gallery-photo-card:hover .gallery-photo-overlay{
    opacity:1;
}

/* TITLE */

.gallery-photo-overlay h4{
    color:#fff;

    font-size:24px;
    font-weight:700;

    margin:0;

    transform:translateY(20px);

    transition:0.5s ease;
}

.gallery-photo-card:hover .gallery-photo-overlay h4{
    transform:translateY(0);
}

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

@media(max-width:991px){

    .gallery-hero-content h1{
        font-size:54px;
    }

    .gallery-page-section{
        padding:90px 0;
    }

}

@media(max-width:576px){

    .gallery-hero-section{
        min-height:65vh;
    }

    .gallery-hero-logo{
        width:80px;
    }

    .gallery-hero-content h1{
        font-size:38px;
    }

    .gallery-hero-content p{
        font-size:15px;
    }

    .gallery-page-section{
        padding:80px 0;
    }

    .gallery-photo-card{
        height:180px;
        border-radius:20px;
    }

    .gallery-photo-overlay{
        padding:18px;
        opacity:1;
    }

    .gallery-photo-overlay h4{
        font-size:16px;
        transform:none;
    }

}


/* =====================================================
   VIDEOS GALLERY SECTION
===================================================== */

.videos-gallery-section{
    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fff0 100%);
}

/* ================= VIDEO CARD ================= */

.video-card{
    position:relative;

    height:100%;

    background:#ffffff;

    border-radius:34px;

    overflow:hidden;

    transition:0.5s ease;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.05);
}

.video-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.08);
}

/* ================= VIDEO FRAME ================= */

.video-frame{
    position:relative;

    overflow:hidden;

    border-radius:34px 34px 0 0;
}

.video-frame iframe{
    width:100%;

    height:380px;

    border:none;

    display:block;
}

/* ================= CONTENT ================= */

.video-content{
    padding:28px;
}

.video-content h4{
    font-size:28px;
    font-weight:800;

    color:#111;

    margin-bottom:14px;
}

.video-content p{
    font-size:15px;
    line-height:1.9;

    color:#666;

    margin:0;
}

/* ================= PREMIUM TOP LINE ================= */

.video-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #7dc942,
    #ffe15c);
}

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

@media(max-width:991px){

    .videos-gallery-section{
        padding:90px 0;
    }

    .video-frame iframe{
        height:320px;
    }

    .video-content h4{
        font-size:24px;
    }

}

@media(max-width:576px){

    .videos-gallery-section{
        padding:80px 0;
    }

    .video-card{
        border-radius:26px;
    }

    .video-frame{
        border-radius:26px 26px 0 0;
    }

    .video-frame iframe{
        height:240px;
    }

    .video-content{
        padding:22px;
    }

    .video-content h4{
        font-size:20px;
    }

    .video-content p{
        font-size:14px;
        line-height:1.8;
    }

}


/* =====================================================
   PREMIUM ADVISORY HERO
===================================================== */

.advisory-hero{
    position:relative;

    padding:170px 0 140px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f7ffe7 35%,
    #fff9dc 70%,
    #ffffff 100%);
}

/* =====================================================
   PREMIUM GLOW EFFECTS
===================================================== */

.advisory-hero::before{
    content:"";

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(125,201,66,0.22),
    transparent 70%);

    top:-180px;
    left:-160px;

    filter:blur(60px);
}

.advisory-hero::after{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(255,214,10,0.22),
    transparent 70%);

    bottom:-180px;
    right:-140px;

    filter:blur(60px);
}

/* =====================================================
   FLOATING SHAPES
===================================================== */

.advisory-shape{
    position:absolute;

    border-radius:50%;

    z-index:1;
}

.advisory-shape-1{
    width:140px;
    height:140px;

    border:18px solid rgba(125,201,66,0.14);

    top:120px;
    right:8%;

    animation:floatImage 6s ease-in-out infinite;
}

.advisory-shape-2{
    width:80px;
    height:80px;

    background:rgba(255,214,10,0.20);

    bottom:140px;
    left:8%;

    animation:floatImage 5s ease-in-out infinite;
}

.advisory-shape-3{
    width:26px;
    height:26px;

    background:#7dc942;

    top:35%;
    left:14%;

    animation:floatImage 4s ease-in-out infinite;
}

/* =====================================================
   CONTENT
===================================================== */

.advisory-hero-content{
    position:relative;
    z-index:5;

    max-width:980px;

    margin:auto;

    text-align:center;
}

/* TOP TAG */

.advisory-top-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:14px 30px;

    border-radius:60px;

    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.65);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.06);

    margin-bottom:34px;
}

.advisory-top-tag i{
    color:#7dc942;

    font-size:15px;
}

.advisory-top-tag span{
    font-size:14px;
    font-weight:700;

    color:#111;
}

/* =====================================================
   TITLE
===================================================== */

.advisory-hero-content h1{
    font-size:82px;
    font-weight:900;
    line-height:1.08;

    color:#111;

    margin-bottom:28px;

    letter-spacing:-2px;
}

.advisory-hero-content h1 span{
    color:#7dc942;

    position:relative;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.advisory-hero-content p{
    font-size:20px;
    line-height:2;

    color:#555;

    max-width:820px;

    margin:auto auto 50px;
}

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

.advisory-hero-stats{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;

    flex-wrap:wrap;
}

.hero-stat-box{
    min-width:220px;

    padding:30px 35px;

    border-radius:30px;

    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.7);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

.hero-stat-box:hover{
    transform:translateY(-10px);

    box-shadow:
    0 28px 60px rgba(0,0,0,0.10);
}

.hero-stat-box h3{
    font-size:42px;
    font-weight:800;

    color:#7dc942;

    margin-bottom:10px;
}

.hero-stat-box span{
    font-size:15px;
    font-weight:600;

    color:#555;
}

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

@media(max-width:991px){

    .advisory-hero{
        padding:140px 0 110px;
    }

    .advisory-hero-content h1{
        font-size:60px;
    }

    .advisory-hero-content p{
        font-size:17px;
    }

}

@media(max-width:576px){

    .advisory-hero{
        padding:120px 0 90px;
    }

    .advisory-top-tag{
        padding:12px 22px;

        gap:10px;
    }

    .advisory-top-tag span{
        font-size:12px;
    }

    .advisory-hero-content h1{
        font-size:42px;

        line-height:1.15;

        margin-bottom:22px;
    }

    .advisory-hero-content p{
        font-size:15px;

        line-height:1.8;

        margin-bottom:36px;
    }

    .advisory-hero-stats{
        gap:16px;
    }

    .hero-stat-box{
        min-width:150px;

        padding:22px 18px;

        border-radius:22px;
    }

    .hero-stat-box h3{
        font-size:30px;
    }

    .hero-stat-box span{
        font-size:12px;
    }

    .advisory-shape-1{
        width:80px;
        height:80px;

        border-width:12px;
    }

    .advisory-shape-2{
        width:50px;
        height:50px;
    }

}

/* =====================================================
   ADVISOR DETAILS SECTION
===================================================== */

.advisor-details-section{
    padding:110px 0;

    background:#fff;
}

/* CARD */

.advisor-profile-card{
    position:relative;

    background:#fff;

    border-radius:34px;

    padding:45px;

    margin-bottom:45px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

.advisor-profile-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.10);
}

/* IMAGE */

.advisor-image-box{
    position:relative;
}

.advisor-image-box img{
    width:100%;
    max-width:320px;
    height:380px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT */

.advisor-content{
    position:relative;
}

.advisor-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#f3ffe5;

    color:#7dc942;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;
    font-weight:700;

    margin-bottom:20px;
}

.advisor-content h2{
    font-size:42px;
    font-weight:800;

    color:#111;

    margin-bottom:10px;
}

.advisor-content h5{
    font-size:18px;
    font-weight:600;

    color:#666;

    margin-bottom:24px;
}

.advisor-content p{
    font-size:17px;
    line-height:2;

    color:#555;

    margin-bottom:0;
}

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

@media(max-width:991px){

    .advisor-profile-card{
        padding:35px 25px;
    }

    .advisor-content{
        text-align:center;
    }

    .advisor-content h2{
        font-size:34px;
    }

    .advisor-content p{
        font-size:16px;
        line-height:1.9;
    }

}

@media(max-width:576px){

    .advisory-hero{
        padding:110px 0 80px;
    }

    .advisory-hero-content h1{
        font-size:42px;
    }

    .advisory-hero-content p{
        font-size:15px;
    }

    .advisor-details-section{
        padding:80px 0;
    }

    .advisor-profile-card{
        padding:28px 20px;

        border-radius:28px;
    }

    .advisor-image-box img{
        max-width:240px;
        height:300px;
    }

    .advisor-content{
        text-align:center;
    }

    .advisor-content h2{
        font-size:28px;
    }

    .advisor-content h5{
        font-size:15px;
    }

    .advisor-content p{
        font-size:14px;
        line-height:1.9;
    }

    .advisor-tag{
        font-size:11px;

        padding:8px 16px;
    }

}

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

.admission-hero{
    position:relative;

    padding:170px 0 130px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f8ffe8 45%,
    #fff9dc 100%);
}

.admission-glow{
    position:absolute;

    border-radius:50%;

    filter:blur(80px);
}

.admission-glow-1{
    width:420px;
    height:420px;

    background:rgba(125,201,66,0.18);

    top:-120px;
    left:-120px;
}

.admission-glow-2{
    width:320px;
    height:320px;

    background:rgba(255,214,10,0.18);

    bottom:-120px;
    right:-100px;
}

.admission-hero-content{
    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

.admission-tag{
    display:inline-block;

    background:#fff;

    padding:14px 30px;

    border-radius:60px;

    font-size:14px;
    font-weight:700;

    color:#7dc942;

    margin-bottom:30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.06);
}

.admission-hero-content h1{
    font-size:80px;
    font-weight:900;
    line-height:1.08;

    color:#111;

    margin-bottom:26px;
}

.admission-hero-content h1 span{
    color:#7dc942;
}

.admission-hero-content p{
    font-size:19px;
    line-height:2;

    color:#555;

    max-width:760px;

    margin:auto auto 40px;
}

.admission-hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;
}

.admission-main-btn,
.admission-outline-btn{
    padding:16px 34px;

    border-radius:60px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:0.4s ease;
}

.admission-main-btn{
    background:#111;

    color:#fff;
}

.admission-main-btn:hover{
    background:#7dc942;

    color:#fff;

    transform:translateY(-5px);
}

.admission-outline-btn{
    border:2px solid #111;

    color:#111;
}

.admission-outline-btn:hover{
    background:#111;

    color:#fff;

    transform:translateY(-5px);
}

/* =====================================================
   PROCESS SECTION
===================================================== */

.admission-process-section{
    padding:110px 0;
}

.process-card{
    position:relative;

    height:100%;

    padding:45px 30px;

    border-radius:30px;

    background:#fff;

    text-align:center;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.05);

    transition:0.4s ease;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;

    top:20px;
    right:25px;

    font-size:52px;
    font-weight:800;

    color:rgba(125,201,66,0.10);
}

.process-icon{
    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#7dc942,#dfff73);

    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon i{
    font-size:34px;

    color:#111;
}

.process-card h4{
    font-size:24px;
    font-weight:700;

    margin-bottom:16px;
}

.process-card p{
    color:#666;

    line-height:1.9;
}


/* =====================================================
   FORM SECTION
===================================================== */

.admission-form-section{
    padding:110px 0;
}

.admission-form-wrapper{
    padding:55px;

    border-radius:40px;

    background:#fff;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.06);
}

.form-title h2{
    font-size:54px;
    font-weight:800;

    margin:20px 0 40px;
}

.form-title h2 span{
    color:#7dc942;
}

.form-group label{
    font-weight:700;

    margin-bottom:12px;

    display:block;
}

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;

    top:50%;
    left:20px;

    transform:translateY(-50%);

    color:#7dc942;
}

.input-box input,
.input-box textarea{
    width:100%;

    border:none;

    outline:none;

    background:#f7f7f7;

    border-radius:18px;

    padding:18px 20px 18px 55px;

    font-size:15px;
}

.textarea-box i{
    top:26px;
}

.submit-btn{
    border:none;

    background:#111;

    color:#fff;

    padding:16px 40px;

    border-radius:60px;

    font-weight:700;

    transition:0.4s ease;
}

.submit-btn:hover{
    background:#7dc942;

    transform:translateY(-5px);
}

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

@media(max-width:991px){

    .admission-hero-content h1{
        font-size:58px;
    }

    .benefits-content h2,
    .form-title h2{
        font-size:42px;
    }

}

@media(max-width:576px){

    .admission-hero{
        padding:130px 0 90px;
    }

    .admission-hero-content h1{
        font-size:42px;
    }

    .admission-hero-content p{
        font-size:15px;

        line-height:1.8;
    }

    .benefits-content h2,
    .form-title h2{
        font-size:34px;
    }

    .admission-form-wrapper{
        padding:35px 22px;
    }

    .process-card{
        padding:35px 24px;
    }

}