/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

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

.custom-navbar{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    padding:14px 0;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    transition:0.4s;
}

/* BRAND */

.navbar-brand{
    display:flex;
    align-items:center;
    max-width:78%;
    overflow:hidden;
}

/* LOGO BOX */

.logo-box{
    width:65px;
    height:65px;
    min-width:65px;

    border-radius:18px;
    overflow:hidden;

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

    margin-right:12px;

    background:#fff;

    box-shadow:0 8px 20px rgba(255,122,0,0.25);

    border:2px solid #fff3e7;
}

/* LOGO IMAGE */

.logo-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

/* TEXT */

.logo-text{
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.logo-text h5{
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#111;
    line-height:1.1;

    white-space:nowrap;
}

.logo-text span{
    font-size:15px;
    color:#777;
    font-weight:600;

    letter-spacing:0.5px;
}

/* NAV LINKS */

.navbar-nav .nav-link{
    color:#111;
    font-weight:500;
    margin:0 10px;
    position:relative;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    color:#ff7a00;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#ff7a00;
    transition:0.4s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

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

.gallery-dropdown{
    position:relative;
}

.gallery-link{
    display:flex;
    align-items:center;
    gap:5px;
    cursor:pointer;
}

/* MENU */

.gallery-menu{
    position:absolute;
    top:120%;
    left:0;

    width:220px;

    background:#fff;

    border-radius:18px;

    padding:14px;

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

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.4s ease;

    z-index:999;
}

/* SHOW ON HOVER */

.gallery-dropdown:hover .gallery-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ITEMS */

.gallery-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 16px;

    margin-bottom:10px;

    border-radius:14px;

    text-decoration:none;

    color:#222;

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

    transition:0.3s ease;
}

.gallery-item:last-child{
    margin-bottom:0;
}

.gallery-item i{
    font-size:20px;
    color:#222;
    transition:0.3s;
}

.gallery-item:hover{
    background:#fff3e7;
    color:#ff7a00;
    transform:translateX(5px);
}

.gallery-item:hover i{
    color:#ff7a00;
}

/* BUTTON */

.admission-btn{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 20px rgba(255,122,0,0.25);
}

.admission-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

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

@media(max-width:991px){

    .navbar-brand{
        max-width:80%;
    }

    .logo-box{
        width:55px;
        height:55px;
        min-width:55px;
        margin-right:10px;
    }

    .logo-text h5{
        font-size:15px;
        line-height:1.1;
    }

    .logo-text span{
        font-size:11px;
    }

    .navbar-toggler{
        padding:6px 10px;
        border:none;
        box-shadow:none !important;
    }

    /* DROPDOWN */

    .gallery-menu{
        position:static;

        width:100%;

        background:transparent;

        box-shadow:none;

        padding:0;

        margin-top:12px;

        border-radius:0;

        max-height:0;

        overflow:hidden;

        opacity:1;
        visibility:visible;

        transform:none;

        transition:max-height 0.4s ease;
    }

    .gallery-dropdown.active .gallery-menu{
        max-height:200px;
    }

    .gallery-item{
        background:#f7f7f7;
        border-radius:14px;
        margin-bottom:10px;
        font-size:16px;
    }

    .admission-btn{
        display:inline-flex;
        justify-content:center;
        align-items:center;
        margin-top:22px;
        padding:12px 26px;
    }

    .navbar-nav .nav-item:last-child{
        margin-bottom:12px;
    }

}

/* EXTRA SMALL MOBILE */

@media(max-width:576px){

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

    .navbar-brand{
        max-width:78%;
    }

    .logo-box{
        width:48px;
        height:48px;
        min-width:48px;
        border-radius:14px;
    }

    .logo-box img{
        border-radius:12px;
    }

    .logo-text h5{
        font-size:13px;
    }

    .logo-text span{
        font-size:10px;
    }

    .navbar-toggler{
        padding:4px 8px;
    }

}

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

.hero-section{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:140px 0 80px;
}

/* BACKGROUND BLURS */

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

.hero-blur-1{
    width:320px;
    height:320px;
    background:rgba(255,122,0,0.18);
    top:-100px;
    left:-100px;
}

.hero-blur-2{
    width:260px;
    height:260px;
    background:rgba(255,180,71,0.18);
    bottom:-100px;
    right:-100px;
}

/* ROW */

.hero-row{
    min-height:90vh;
    position:relative;
    z-index:2;
}

/* LEFT SIDE */

.hero-left{
    padding-right:40px;
}

.hero-tag{
    display:inline-block;
    background:#fff3e7;
    color:#ff7a00;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-left h1{
    font-size:62px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#ff7a00;
}

.hero-left p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    max-width:550px;
}

/* BUTTONS */

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(255,122,0,0.25);
}

.primary-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

.secondary-btn{
    border:2px solid #ff7a00;
    color:#ff7a00;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.secondary-btn:hover{
    background:#ff7a00;
    color:#fff;
}



/* ================= RIGHT HERO IMAGE ================= */

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* IMAGE WRAPPER */

.hero-image-wrapper{
    position:relative;
    width:100%;
    max-width:550px;
    min-height:650px;

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

/* SUN GLOW */

.sun-glow{
    position:absolute;

    width:420px;
    height:420px;

    background:
    radial-gradient(circle,
    rgba(255,179,71,0.95) 0%,
    rgba(255,140,0,0.55) 35%,
    rgba(255,140,0,0.15) 65%,
    transparent 100%);

    border-radius:50%;

    filter:blur(10px);

    z-index:0;

    animation:sunPulse 5s ease-in-out infinite;
}

/* SUN RING */

.sun-ring{
    position:absolute;

    width:500px;
    height:500px;

    border:2px dashed rgba(255,140,0,0.25);

    border-radius:50%;

    animation:rotateRing 25s linear infinite;
}

/* IMAGE */

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

    width:100%;
    max-width:480px;

    object-fit:contain;

    filter:
    drop-shadow(0 25px 40px rgba(0,0,0,0.18))
    drop-shadow(0 10px 25px rgba(255,140,0,0.35));

    animation:floatImage 4s ease-in-out infinite;

    /* BOTTOM FADE MASK */
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 65%,
        rgba(0,0,0,0.85) 78%,
        rgba(0,0,0,0.45) 90%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 65%,
        rgba(0,0,0,0.85) 78%,
        rgba(0,0,0,0.45) 90%,
        transparent 100%
    );
}

/* FLOATING DOTS */

.floating-dot{
    position:absolute;
    border-radius:50%;
    background:#ff9f43;
    z-index:1;
    animation:floatDots 4s ease-in-out infinite;
}

.dot-1{
    width:18px;
    height:18px;
    top:18%;
    left:12%;
}

.dot-2{
    width:12px;
    height:12px;
    bottom:22%;
    left:18%;
    animation-delay:1s;
}

.dot-3{
    width:16px;
    height:16px;
    top:28%;
    right:12%;
    animation-delay:2s;
}

/* ================= ANIMATIONS ================= */

@keyframes floatImage{

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

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

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

}

@keyframes sunPulse{

    0%{
        transform:scale(1);
        opacity:0.9;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:0.9;
    }

}

@keyframes rotateRing{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes floatDots{

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

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

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

}

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

@media(max-width:991px){

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

    .hero-row{
    min-height:auto;
    }

    /* LEFT CONTENT */

    .hero-left{
        padding-right:0;

        text-align:center;

        margin-top:20px;
    }

    .hero-left p{
        margin:auto;
    }

    .hero-left h1{
        font-size:48px;
        line-height:1.25;
    }

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

    /* RIGHT IMAGE */

    .hero-right{
        margin-bottom:10px;
    }

    .hero-image-wrapper{
        min-height:500px;

        max-width:420px;

        margin:auto;
    }

    .sun-glow{
        width:320px;
        height:320px;
    }

    .sun-ring{
        width:380px;
        height:380px;
    }

    .hero-image-wrapper img{
        max-width:360px;
    }

}

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

@media(max-width:576px){

    .hero-section{
        padding:120px 0 60px;
    }

    .hero-left h1{
        font-size:34px;
        line-height:1.3;
    }

    .hero-left p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:280px;

        text-align:center;
    }

    /* IMAGE */

    .hero-image-wrapper{
        min-height:360px;

        max-width:100%;
    }

    .sun-glow{
        width:220px;
        height:220px;
    }

    .sun-ring{
        width:260px;
        height:260px;
    }

    .hero-image-wrapper img{
        max-width:250px;
    }

    /* FLOATING DOTS */

    .dot-1{
        top:12%;
        left:10%;
    }

    .dot-2{
        bottom:18%;
        left:12%;
    }

    .dot-3{
        top:18%;
        right:10%;
    }

}
/* ================= PREMIUM ABOUT ================= */

.premium-about{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#fff;
}

/* ================= BACKGROUND LIGHTS ================= */

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

.about-light-1{
    width:320px;
    height:320px;
    background:rgba(255,122,0,0.12);
    top:-100px;
    left:-100px;
}

.about-light-2{
    width:260px;
    height:260px;
    background:rgba(255,180,71,0.12);
    bottom:-100px;
    right:-100px;
}

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

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

.about-mini-title{
    display:inline-block;

    background:#fff3e7;
    color:#ff7a00;

    padding:10px 22px;

    border-radius:50px;

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

    margin-bottom:25px;
}

.about-content h2{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

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

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    max-width:560px;
}

/* ================= FEATURES ================= */

.about-features-wrap{
    margin-top:40px;

    display:flex;
    flex-direction:column;
    gap:20px;
}

/* FEATURE BOX */

.about-feature-box{
    background:#fff;

    border-radius:24px;

    padding:22px;

    display:flex;
    gap:18px;

    align-items:flex-start;

    transition:0.4s ease;

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

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

.about-feature-box:hover{
    transform:translateX(10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */

.feature-icon-box{
    min-width:65px;
    height:65px;

    border-radius:20px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

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

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

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

/* TEXT */

.about-feature-box h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#111;
}

.about-feature-box p{
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* BUTTON */

.about-main-btn{
    display:inline-block;

    margin-top:40px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;
    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 12px 25px rgba(255,122,0,0.25);
}

.about-main-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

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

.about-image-area{
    position:relative;

    min-height:700px;

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

/* IMAGE GLOW */

.about-image-glow{
    position:absolute;

    width:420px;
    height:420px;

    background:
    radial-gradient(circle,
    rgba(255,179,71,0.95) 0%,
    rgba(255,140,0,0.35) 40%,
    transparent 100%);

    border-radius:50%;

    filter:blur(20px);

    animation:pulseGlow 5s ease-in-out infinite;
}

/* ORANGE CIRCLE */

.orange-circle{
    position:absolute;

    width:520px;
    height:520px;

    border:2px dashed rgba(255,140,0,0.22);

    border-radius:50%;

    animation:rotateCircle 25s linear infinite;
}

/* MAIN IMAGE */

.about-image-area img{
    position:relative;
    z-index:2;

    width:100%;
    max-width:450px;
    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:50%;

    border:10px solid rgba(255,255,255,0.9);

    animation:floatImage 4s ease-in-out infinite;

    filter:
    drop-shadow(0 25px 40px rgba(0,0,0,0.18))
    drop-shadow(0 10px 25px rgba(255,140,0,0.28));

    box-shadow:
    0 0 0 12px rgba(255,122,0,0.08),
    0 0 0 25px rgba(255,180,71,0.05);

    overflow:hidden;
}

/* FLOATING SHAPES */

.floating-shape{
    position:absolute;
    border-radius:50%;
    background:#ff9f43;
    z-index:1;
    animation:floatingShape 4s ease-in-out infinite;
}

.shape-1{
    width:22px;
    height:22px;
    top:20%;
    left:18%;
}

.shape-2{
    width:15px;
    height:15px;
    bottom:18%;
    right:18%;
    animation-delay:2s;
}

/* ================= ANIMATIONS ================= */

@keyframes floatImage{

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

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

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

}

@keyframes pulseGlow{

    0%{
        transform:scale(1);
        opacity:0.9;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:0.9;
    }

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes floatingShape{

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

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

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

}

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

@media(max-width:991px){

    .premium-about{
        padding:90px 0;
    }

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

    .about-content p{
        margin:auto;
    }

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

    .about-feature-box{
        text-align:left;
    }

    .about-image-area{
        min-height:500px;
    }

    .orange-circle{
        width:380px;
        height:380px;
    }

    .about-image-area img{
        max-width:340px;
    }

}

@media(max-width:576px){

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

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

    .about-feature-box{
        padding:18px;
    }

    .feature-icon-box{
        min-width:55px;
        height:55px;
        font-size:20px;
    }

    .about-feature-box h4{
        font-size:18px;
    }

    .about-image-area{
        min-height:400px;
    }

    .orange-circle{
        width:280px;
        height:280px;
    }

    .about-image-area img{
        max-width:250px;
    }

}

/* ================= WHY WE ARE BEST ================= */

.why-best-section{
    position:relative;
    padding:120px 0;
    background:#fff8f2;
    overflow:hidden;
}

/* ================= BACKGROUND LIGHTS ================= */

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

.why-light-1{
    width:300px;
    height:300px;
    background:rgba(255,122,0,0.12);
    top:-100px;
    left:-100px;
}

.why-light-2{
    width:260px;
    height:260px;
    background:rgba(255,180,71,0.12);
    bottom:-100px;
    right:-100px;
}

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

.why-best-title{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
}

.why-mini-title{
    display:inline-block;

    background:#fff;
    color:#ff7a00;

    padding:10px 22px;

    border-radius:50px;

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

    margin-bottom:22px;

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

.why-best-title h2{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:22px;
}

.why-best-title h2 span{
    color:#ff7a00;
}

.why-best-title p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

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

.why-best-card{
    position:relative;
    z-index:2;

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

    backdrop-filter:blur(14px);

    border-radius:30px;

    padding:40px 32px;

    height:100%;

    transition:0.4s ease;

    overflow:hidden;

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

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

/* HOVER EFFECT */

.why-best-card::before{
    content:"";

    position:absolute;

    width:120px;
    height:120px;

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

    border-radius:50%;

    top:-40px;
    right:-40px;

    transition:0.5s ease;
}

.why-best-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 50px rgba(0,0,0,0.08);
}

.why-best-card:hover::before{
    transform:scale(1.4);
}

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

.why-icon{
    width:80px;
    height:80px;

    border-radius:24px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

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

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

    margin-bottom:28px;

    box-shadow:0 12px 25px rgba(255,122,0,0.25);
}

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

.why-best-card h4{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:16px;
}

.why-best-card p{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin:0;
}

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

@media(max-width:991px){

    .why-best-section{
        padding:90px 0;
    }

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

}

@media(max-width:576px){

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

    .why-best-title p{
        font-size:16px;
    }

    .why-best-card{
        padding:30px 24px;
        border-radius:24px;
    }

    .why-icon{
        width:65px;
        height:65px;
        font-size:24px;
        border-radius:18px;
    }

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

}

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

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

/* ================= BACKGROUND LIGHTS ================= */

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

.gallery-light-1{
    width:320px;
    height:320px;
    background:rgba(255,122,0,0.10);
    top:-120px;
    left:-120px;
}

.gallery-light-2{
    width:260px;
    height:260px;
    background:rgba(255,180,71,0.10);
    bottom:-100px;
    right:-100px;
}

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

.gallery-title{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
}

.gallery-mini-title{
    display:inline-block;

    background:#fff3e7;
    color:#ff7a00;

    padding:10px 22px;

    border-radius:50px;

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

    margin-bottom:22px;
}

.gallery-title h2{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:22px;
}

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

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

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

.gallery-card{
    position:relative;

    overflow:hidden;

    border-radius:32px;

    cursor:pointer;

    transition:0.5s ease;

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

    background:#fff;
}

/* IMAGE */

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

    object-fit:cover;

    transition:0.6s ease;
}

/* OVERLAY */

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

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.1)
    );

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

    opacity:0;

    transition:0.5s ease;
}

/* ICON */

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

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

    backdrop-filter:blur(10px);

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

    border-radius:50%;

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

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

    transform:scale(0.7);

    transition:0.5s ease;
}

/* HOVER */

.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-main-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;

    padding:16px 34px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;
    text-decoration:none;

    border-radius:60px;

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

    transition:0.4s ease;

    box-shadow:
    0 15px 30px rgba(255,122,0,0.22);
}

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

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

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

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

@media(max-width:991px){

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

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

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

}

@media(max-width:576px){

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

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

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

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

    .gallery-overlay i{
        width:55px;
        height:55px;
        font-size:20px;
    }

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

}

/* ================= PARENTS REVIEWS ================= */

.parents-review-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #fff7f0 0%,
        #fff3eb 50%,
        #fffaf5 100%
    );
}

/* ================= BACKGROUND CIRCLES ================= */

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

.review-circle-1{
    width:320px;
    height:320px;

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

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

.review-circle-2{
    width:280px;
    height:280px;

    background:rgba(255,180,71,0.12);

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

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

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

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

.review-mini-title{
    display:inline-block;

    background:#fff;
    color:#ff7a00;

    padding:10px 22px;

    border-radius:50px;

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

    margin-bottom:22px;

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

.review-title h2{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:22px;
}

.review-title h2 span{
    color:#ff7a00;
}

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

/* ================= REVIEW WRAPPER ================= */

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

    display:flex;
    flex-direction:column;
    gap:45px;
}

/* CENTER LINE */

.review-wrapper::before{
    content:"";

    position:absolute;

    left:50%;
    top:0;

    transform:translateX(-50%);

    width:3px;
    height:100%;

    background:
    linear-gradient(
        to bottom,
        rgba(255,122,0,0.1),
        rgba(255,122,0,0.4),
        rgba(255,122,0,0.1)
    );

    border-radius:50px;
}

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

.review-card{
    position:relative;

    width:46%;

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

    backdrop-filter:blur(16px);

    border-radius:34px;

    padding:35px;

    transition:0.4s ease;

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

    box-shadow:
    0 20px 45px rgba(0,0,0,0.05);
}

/* LEFT SIDE */

.review-left{
    align-self:flex-start;
}

/* RIGHT SIDE */

.review-right{
    align-self:flex-end;
}

/* HOVER */

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

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

/* DOTS */

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

    position:absolute;

    width:22px;
    height:22px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    top:50%;

    transform:translateY(-50%);

    box-shadow:
    0 0 0 8px rgba(255,122,0,0.12);
}

/* LEFT DOT */

.review-left::before{
    right:-57px;
}

/* RIGHT DOT */

.review-right::before{
    left:-57px;
}

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

.review-profile{
    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:22px;
}

/* AVATAR */

.review-avatar{
    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

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

    color:#fff;

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

    box-shadow:
    0 10px 25px rgba(255,122,0,0.22);
}

/* TEXT */

.review-profile h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:4px;
    color:#111;
}

.review-profile span{
    color:#777;
    font-size:14px;
}

/* REVIEW CONTENT */

.review-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}

/* STARS */

.review-stars{
    display:flex;
    gap:8px;
}

.review-stars i{
    color:#ffb347;
    font-size:18px;
}

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

@media(max-width:991px){

    .parents-review-section{
        padding:90px 0;
    }

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

    /* REMOVE CENTER LINE */

    .review-wrapper::before{
        display:none;
    }

    /* FULL WIDTH CARDS */

    .review-card{
        width:100%;
    }

    .review-left,
    .review-right{
        align-self:stretch;
    }

    /* REMOVE DOTS */

    .review-card::before{
        display:none;
    }

}

@media(max-width:576px){

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

    .review-title p{
        font-size:16px;
    }

    .review-card{
        padding:28px 22px;
        border-radius:26px;
    }

    .review-profile{
        gap:14px;
    }

    .review-avatar{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .review-profile h4{
        font-size:18px;
    }

    .review-card p{
        font-size:15px;
    }

}

/* =====================================================
   SCHOOL CONTACT SECTION
===================================================== */

.school-contact-section{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg,#fff8f2,#ffffff);
    overflow: hidden;
}

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

.school-map-card,
.school-form-card{
    background: #fff;

    padding: 40px;

    border-radius: 35px;

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

    height: 100%;
}

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

.school-contact-tag{
    display: inline-block;

    background: #fff3e7;

    color: #ff7a00;

    padding: 10px 22px;

    border-radius: 50px;

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

    margin-bottom: 18px;
}

/* =====================================================
   HEADINGS
===================================================== */

.school-map-card h2,
.school-form-card h2{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;

    color: #111;

    margin-bottom: 18px;
}

.school-map-card h2 span,
.school-form-card h2 span{
    color: #ff7a00;
}

.school-map-card p{
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

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

.school-google-map{
    margin-top: 30px;

    overflow: hidden;

    border-radius: 28px;

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

.school-google-map iframe{
    width: 100%;
    height: 350px;
    border: none;
}

/* =====================================================
   ADDRESS BOX
===================================================== */

.school-location-box{
    display: flex;
    gap: 18px;

    margin-top: 28px;
}

.school-location-icon{
    min-width: 60px;
    height: 60px;

    background: #fff3e7;

    border-radius: 18px;

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

.school-location-icon i{
    color: #ff7a00;
    font-size: 22px;
}

.school-location-content h4{
    font-size: 20px;
    font-weight: 700;
    color: #111;

    margin-bottom: 6px;
}

.school-location-content p{
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}

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

#schoolAdmissionForm{
    margin-top: 30px;
}

.school-form-group{
    margin-bottom: 22px;
}

.school-form-group label{
    display: block;

    margin-bottom: 10px;

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

    color: #222;
}

.school-form-group input,
.school-form-group select{
    width: 100%;
    height: 60px;

    border: 2px solid transparent;

    background: #fff8f2;

    border-radius: 18px;

    padding: 0 20px;

    outline: none;

    font-size: 15px;

    transition: 0.3s ease;
}

.school-form-group input:focus,
.school-form-group select:focus{
    border-color: #ff7a00;
    background: #fff;
}

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

.school-submit-btn{
    width: 100%;
    height: 62px;

    border: none;

    border-radius: 18px;

    background:
    linear-gradient(135deg,#ff7a00,#ffb347);

    color: #fff;

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

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

    transition: 0.4s ease;

    box-shadow:
    0 15px 30px rgba(255,122,0,0.22);
}

.school-submit-btn:hover{
    transform: translateY(-5px);
}

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

@media(max-width:991px){

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

    .school-map-card,
    .school-form-card{
        padding: 32px;
    }

    .school-map-card h2,
    .school-form-card h2{
        font-size: 40px;
    }

}

@media(max-width:576px){

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

    .school-map-card,
    .school-form-card{
        padding: 25px;
        border-radius: 28px;
    }

    .school-map-card h2,
    .school-form-card h2{
        font-size: 32px;
    }

    .school-google-map iframe{
        height: 260px;
    }

    .school-location-icon{
        min-width: 50px;
        height: 50px;
    }

    .school-location-icon i{
        font-size: 18px;
    }

}


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

.premium-footer{
    position: relative;

    background:
    linear-gradient(
        135deg,
        #111111 0%,
        #1a1a1a 50%,
        #101010 100%
    );

    color: #fff;

    padding: 100px 0 25px;

    overflow: hidden;
}

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

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

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

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

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

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

    background: rgba(255,180,71,0.10);

    bottom: -80px;
    right: -80px;
}

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

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

/* =====================================================
   LOGO AREA
===================================================== */

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

    margin-bottom: 25px;
}

/* DIRECT LOGO IMAGE */

.footer-logo-box img{
    width: 80px;
    height: 80px;

    object-fit: contain;

    transition: 0.4s ease;

    filter:
    drop-shadow(0 10px 20px rgba(255,122,0,0.18));
}

/* HOVER */

.footer-logo-box img:hover{
    transform: scale(1.05);
}

/* LOGO TEXT */

.footer-logo-area h3{
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 4px;

    color: #fff;
}

.footer-logo-area span{
    color: #ffb347;

    font-size: 14px;
}

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

.footer-about-text{
    color: #cfcfcf;

    line-height: 1.9;

    margin-bottom: 30px;

    font-size: 15px;
}

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

.footer-social-icons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-icons a{
    width: 48px;
    height: 48px;

    border-radius: 16px;

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

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

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    transition: 0.4s ease;

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

.footer-social-icons a:hover{
    background:
    linear-gradient(135deg,#ff7a00,#ffb347);

    transform:
    translateY(-5px);
}

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

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

    margin-bottom: 28px;

    position: relative;
}

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

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 70px;
    height: 4px;

    border-radius: 50px;

    background:
    linear-gradient(135deg,#ff7a00,#ffb347);
}

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

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a{
    color: #d2d2d2;

    text-decoration: none;

    font-size: 16px;

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

    transition: 0.3s ease;
}

.footer-links a i{
    color: #ff7a00;
}

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

    transform: translateX(6px);
}

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

.footer-contact-box{
    display: flex;
    gap: 18px;

    margin-bottom: 25px;
}

/* ICON */

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

    border-radius: 18px;

    background:
    linear-gradient(135deg,#ff7a00,#ffb347);

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

    box-shadow:
    0 10px 25px rgba(255,122,0,0.22);
}

.footer-contact-icon i{
    color: #fff;
    font-size: 22px;
}

/* TEXT */

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

    margin-bottom: 5px;

    color: #fff;
}

.footer-contact-box p{
    color: #cfcfcf;

    margin: 0;

    line-height: 1.8;

    font-size: 15px;
}

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

.footer-bottom-area{
    margin-top: 60px;

    padding-top: 25px;

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

    text-align: center;
}

.footer-bottom-area p{
    margin: 0;

    color: #bdbdbd;

    font-size: 15px;
}

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

@media(max-width:991px){

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

    .footer-logo-area{
        align-items: flex-start;
    }

}

@media(max-width:576px){

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

    .footer-logo-area{
        flex-direction: row;
        align-items: center;
    }

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

    .footer-logo-area h3{
        font-size: 20px;
    }

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

    .footer-contact-box{
        gap: 14px;
    }

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

    .footer-contact-icon i{
        font-size: 18px;
    }

}

/* =====================================================
   ABOUT HERO SECTION
===================================================== */

.about-premium-hero{
    position: relative;
    width: 100%;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
    padding: 120px 0;
    background: #081225;
}

.about-hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-dark-layer{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(7,17,40,0.80),
        rgba(7,17,40,0.72)
    );
    z-index: 1;
}

.about-hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: auto;
    padding: 0 15px;
}

.about-small-title{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.about-hero-content h1{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.about-hero-content p{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}



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

.about-section-mini-title{
    display: inline-block;
    background: #fff3df;
    color: #ff9100;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-main-title{
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}



/* =====================================================
   SCHOOL INTRO SECTION
===================================================== */

.about-school-section{
    padding: 110px 0;
    background: #fff;
}

.about-school-image{
    position: relative;
}

.about-school-image::before{
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255,145,0,0.18);
    top: -40px;
    left: -40px;
    filter: blur(80px);
}

.about-school-image img{
    width: 100%;
    border-radius: 35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.about-school-content{
    padding-left: 35px;
}

.about-school-content h2{
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.about-school-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

.about-feature-list{
    margin-top: 30px;
}

.about-feature-list div{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.about-feature-list i{
    color: #ff9100;
}



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

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

.about-vision-card{
    background: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 20px 70px rgba(0,0,0,0.06);
}

.about-vision-card::before{
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,145,0,0.08);
    top: -70px;
    right: -70px;
}

.about-vision-card:hover{
    transform: translateY(-10px);
}

.about-card-icon{
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg,#ff9100,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 28px;
    box-shadow: 0 15px 40px rgba(255,145,0,0.35);
}

.about-vision-card h3{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111;
}

.about-vision-card p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}



/* =====================================================
   WHY SECTION
===================================================== */

.about-why-section{
    padding: 110px 0;
    background: #fff;
}

.about-why-card{
    background: #fff;
    padding: 45px 30px;
    border-radius: 32px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.about-why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.10);
}

.about-why-card i{
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg,#ff9100,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 18px 40px rgba(255,145,0,0.30);
}

.about-why-card h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-why-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}



/* =====================================================
   PRINCIPAL SECTION
===================================================== */

.about-principal-section{
    padding: 120px 0;
    background: #fff8f1;
    overflow: hidden;
}

/* LEFT CONTENT */

.about-principal-content{
    padding-right: 30px;
}

.about-principal-content .about-main-title{
    margin-bottom: 28px;
}

.about-principal-content p{
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 22px;
}

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

.about-principal-box{
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.10);
    transition: 0.4s;
}

.about-principal-box:hover{
    transform: translateY(-8px);
}

/* TOP GLOW */

.about-principal-box::before{
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,145,0,0.10);
    top: -120px;
    right: -100px;
    z-index: 1;
}

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

.about-principal-image{
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.about-principal-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.about-principal-box:hover .about-principal-image img{
    transform: scale(1.04);
}

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

.about-principal-info{
    position: relative;
    z-index: 2;
    padding: 35px 35px 40px;
    text-align: center;
}

.about-principal-info h3{
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.about-principal-info span{
    display: inline-block;
    color: #ff9100;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-principal-info p{
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

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

@media(max-width:1199px){

    .about-principal-image{
        height: 430px;
    }

    .about-principal-info h3{
        font-size: 30px;
    }

}

@media(max-width:991px){

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

    .about-principal-content{
        padding-right: 0;
        text-align: center;
    }

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

    .about-principal-box{
        max-width: 500px;
        margin: auto;
    }

    .about-principal-image{
        height: 500px;
    }

}

@media(max-width:767px){

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

    .about-principal-content .about-main-title{
        margin-bottom: 22px;
    }

    .about-principal-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .about-principal-image{
        height: 420px;
    }

    .about-principal-info{
        padding: 30px 25px 35px;
    }

    .about-principal-info h3{
        font-size: 28px;
    }

}

@media(max-width:576px){

    .about-principal-box{
        border-radius: 30px;
    }
    

    .about-principal-image{
        height: 350px;
    }

    .about-principal-info{
        padding: 28px 20px 30px;
    }

    .about-principal-info h3{
        font-size: 24px;
    }

    .about-principal-info span{
        font-size: 16px;
    }

    .about-principal-info p{
        font-size: 15px;
    }

}

/* =====================================================
   ROBOTICS SECTION
===================================================== */

.about-robotics-section{
    padding: 110px 0;
    background: #fff;
}

.about-robotics-image img{
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.about-robotics-content{
    padding-left: 35px;
}

.about-robotics-content h2{
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111;
}

.about-robotics-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}



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

.about-cta-section{
    padding: 110px 0;
    background: #fff8f1;
}

.about-cta-box{
    background: linear-gradient(135deg,#ff9100,#ffb347);
    padding: 85px 40px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(255,145,0,0.25);
}

.about-cta-box::before{
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    top: -140px;
    right: -120px;
}

.about-cta-box h2{
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.about-cta-box p{
    position: relative;
    z-index: 2;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
    max-width: 850px;
    margin: auto auto 35px;
}

.about-cta-btn{
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #ff9100;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.4s;
}

.about-cta-btn:hover{
    transform: translateY(-5px);
    color: #111;
}



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

@media(max-width:1200px){

    .about-hero-content h1{
        font-size: 48px;
    }

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

    .about-main-title{
        font-size: 42px;
    }

    .about-cta-box h2{
        font-size: 46px;
    }

}



@media(max-width:991px){

    .about-premium-hero{
        min-height: auto;
        padding: 130px 0 100px;
    }

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

    .about-school-content,
    .about-robotics-content{
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .about-school-content h2,
    .about-robotics-content h2{
        font-size: 36px;
    }

    .about-main-title{
        font-size: 34px;
    }

    .about-cta-box{
        padding: 70px 35px;
    }

    .about-cta-box h2{
        font-size: 40px;
    }

}



@media(max-width:767px){

    .about-premium-hero{
        margin-top: 80px;
        padding: 120px 0 90px;
    }

    .about-hero-content h1{
        font-size: 34px;
        line-height: 1.3;
    }

    .about-hero-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .about-school-section,
    .about-vision-section,
    .about-why-section,
    .about-robotics-section,
    .about-cta-section{
        padding: 85px 0;
    }

    .about-school-content h2,
    .about-robotics-content h2{
        font-size: 30px;
    }

    .about-main-title{
        font-size: 28px;
    }

    .about-vision-card,
    .about-why-card{
        padding: 38px 25px;
    }

    .about-cta-box{
        padding: 60px 25px;
        border-radius: 30px;
    }

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

}



@media(max-width:576px){

    .about-small-title{
        font-size: 12px;
        padding: 10px 22px;
    }

    .about-hero-content h1{
        font-size: 28px;
    }

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

    .about-school-content h2,
    .about-robotics-content h2{
        font-size: 26px;
    }

    .about-main-title{
        font-size: 24px;
    }

    .about-vision-card h3{
        font-size: 26px;
    }

    .about-why-card h4{
        font-size: 22px;
    }

    .about-cta-box h2{
        font-size: 28px;
    }

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

}

/* =====================================================
   FINAL MOBILE FIX
===================================================== */

@media(max-width:767px){

    /* FIX CONTAINER OVERFLOW */

    .container{
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* FIX ROW OVERFLOW */

    .row{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* HERO */

    .about-premium-hero{
        overflow: hidden;
    }

    .about-hero-content{
        width: 100%;
        overflow: hidden;
    }

    .about-hero-content h1{
        font-size: 32px;
        line-height: 1.3;
        word-break: break-word;
    }

    /* SCHOOL SECTION */

    .about-school-image::before{
        width: 140px;
        height: 140px;
        left: -20px;
        top: -20px;
        filter: blur(60px);
    }

    .about-school-image img{
        border-radius: 24px;
    }

    .about-school-content{
        padding-left: 0;
        margin-top: 30px;
    }

    /* VISION CARDS */

    .about-vision-card{
        padding: 32px 22px;
        border-radius: 24px;
    }

    .about-card-icon{
        width: 75px;
        height: 75px;
        font-size: 26px;
    }

    /* WHY CARDS */

    .about-why-card{
        padding: 32px 22px;
        border-radius: 24px;
    }

    .about-why-card i{
        width: 75px;
        height: 75px;
        font-size: 26px;
    }

    /* PRINCIPAL SECTION */

    .about-principal-section{
        overflow: hidden;
    }

    .about-principal-box{
        width: 100%;
        border-radius: 24px;
    }

    .about-principal-image{
        height: 320px;
    }

    .about-principal-info{
        padding: 24px 18px 28px;
    }

    /* ROBOTICS */

    .about-robotics-content{
        padding-left: 0;
        margin-top: 30px;
    }

    .about-robotics-image img{
        border-radius: 24px;
    }

    /* CTA */

    .about-cta-box{
        width: 100%;
        padding: 50px 20px;
        border-radius: 24px;
    }

    .about-cta-box::before{
        width: 220px;
        height: 220px;
        top: -100px;
        right: -100px;
    }

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

}



/* EXTRA SMALL MOBILE */

@media(max-width:576px){

    html,
    body{
        overflow-x: hidden;
    }

    *{
        max-width: 100%;
    }

    .about-hero-content h1{
        font-size: 28px;
    }

    .about-main-title{
        font-size: 24px;
        line-height: 1.35;
    }

    .about-school-content h2,
    .about-robotics-content h2{
        font-size: 26px;
        line-height: 1.35;
    }

    .about-vision-card h3{
        font-size: 24px;
    }

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

    .about-principal-info h3{
        font-size: 24px;
    }

    .about-cta-box h2{
        font-size: 28px;
        line-height: 1.3;
    }

}

/* =========================================================
   ACADEMICS PAGE CSS
   ONLY ACADEMICS PAGE CLASSES
========================================================= */


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

.academics-hero{
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 120px 0 90px;
    margin-top: 88px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO IMAGE */

.academics-hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.academics-overlay{
    position: absolute;
    inset: 0;
    background: rgba(7,18,40,0.74);
    z-index: 1;
}

/* CONTENT */

.academics-hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 0 15px;
}

/* SMALL TITLE */

.academics-small-title{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

/* TITLE */

.academics-hero-content h1{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
}

/* TEXT */

.academics-hero-content p{
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin: auto;
}



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

.academic-mini-title{
    display: inline-block;
    background: #fff2df;
    color: #ff9100;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.academic-main-title{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}



/* =========================================================
   PROGRAM SECTION
========================================================= */

.academic-program-section{
    padding: 100px 0;
    background: #fff;
}

.academic-program-card{
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    height: 100%;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.academic-icon{
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg,#ff9100,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 24px;
    color: #fff;
    font-size: 32px;
}

.academic-program-card h3{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111;
}

.academic-program-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}



/* =========================================================
   LEARNING SECTION
========================================================= */

.learning-section{
    padding: 100px 0;
    background: #fff8f1;
}

/* IMAGE */

.learning-image img{
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* CONTENT */

.learning-content{
    padding-left: 30px;
}

.learning-content h2{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111;
}

.learning-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

/* LIST */

.learning-list{
    margin-top: 28px;
}

.learning-list div{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.learning-list i{
    color: #ff9100;
}



/* =========================================================
   SUBJECT SECTION
========================================================= */

.subjects-section{
    padding: 100px 0;
    background: #fff;
}

.subject-card{
    background: #fff;
    padding: 40px 25px;
    border-radius: 26px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.subject-card i{
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient(135deg,#ff9100,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 22px;
    color: #fff;
    font-size: 30px;
}

.subject-card h4{
    font-size: 24px;
    font-weight: 700;
    color: #111;
}



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

.academics-cta-section{
    padding: 100px 0;
    background: #fff8f1;
}

.academics-cta-box{
    background: linear-gradient(135deg,#ff9100,#ffb347);
    border-radius: 35px;
    padding: 70px 40px;
    text-align: center;
}

.academics-cta-box h2{
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.academics-cta-box p{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    max-width: 760px;
    margin: auto auto 32px;
}

/* BUTTON */

.academics-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ff9100;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

.academics-cta-btn:hover{
    transform: translateY(-4px);
    color: #111;
}



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

@media(max-width:991px){

    .academics-hero{
        min-height: 480px;
        padding: 110px 0 80px;
    }

    .academics-hero-content h1{
        font-size: 46px;
    }

    .academics-hero-content p{
        font-size: 17px;
    }

    .learning-content{
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .academic-main-title{
        font-size: 38px;
    }

    .learning-content h2{
        font-size: 38px;
    }

    .academics-cta-box h2{
        font-size: 40px;
    }

}



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

@media(max-width:767px){

    .academics-hero{
        min-height: auto;
        padding: 95px 0 70px;
        margin-top: 75px;
    }

    .academics-hero-content{
        padding: 0 10px;
    }

    .academics-small-title{
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 16px;
    }

    .academics-hero-content h1{
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

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

    .academic-program-section,
    .learning-section,
    .subjects-section,
    .academics-cta-section{
        padding: 70px 0;
    }

    .academic-main-title{
        font-size: 30px;
    }

    .learning-content h2{
        font-size: 30px;
    }

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

    .learning-list div{
        font-size: 15px;
    }

    .academic-program-card,
    .subject-card{
        padding: 32px 24px;
        border-radius: 24px;
    }

    .academic-program-card h3{
        font-size: 24px;
    }

    .subject-card h4{
        font-size: 20px;
    }

    .academics-cta-box{
        padding: 50px 24px;
        border-radius: 28px;
    }

    .academics-cta-box h2{
        font-size: 30px;
    }

    .academics-cta-box p{
        font-size: 15px;
    }

    .academics-cta-btn{
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }

}



/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .academics-hero-content h1{
        font-size: 28px;
    }

    .academic-main-title{
        font-size: 26px;
    }

    .learning-content h2{
        font-size: 26px;
    }

    .learning-image img{
        border-radius: 20px;
    }

    .academic-program-card,
    .subject-card{
        padding: 28px 20px;
    }

}



/* =====================================================
   PHOTOS PAGE HERO
===================================================== */

.photos-hero-section{
    position: relative;
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.photos-hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5,18,40,0.78), rgba(5,18,40,0.75));
    z-index: 1;
}

.photos-hero-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    padding: 120px 20px;
}

.photos-small-title{
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.photos-hero-content h1{
    font-size: 62px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
}

.photos-hero-content p{
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}


/* =====================================================
   PHOTO GALLERY SECTION
===================================================== */

.photos-gallery-section{
    padding: 110px 0;
    background: #f8fafc;
}

.photo-gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    height: 280px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

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

.photo-gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.photo-gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.photo-gallery-overlay h4{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}


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

@media(max-width:991px){

    .photos-hero-content h1{
        font-size: 48px;
    }

    .photo-gallery-card{
        height: 240px;
    }

}


@media(max-width:767px){

    .photos-hero-section{
        min-height: auto;
    }

    .photos-hero-content{
        padding: 100px 15px;
    }

    .photos-hero-content h1{
        font-size: 36px;
    }

    .photos-hero-content p{
        font-size: 16px;
        line-height: 1.8;
    }

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

    .photo-gallery-card{
        height: 180px;
        border-radius: 22px;
    }

    .photo-gallery-overlay{
        padding: 16px;
    }

    .photo-gallery-overlay h4{
        font-size: 15px;
    }

}


@media(max-width:576px){

    .photos-hero-section{
        margin-top: 80px;
    }

    .photos-hero-content h1{
        font-size: 30px;
    }

    .photos-small-title{
        font-size: 12px;
        padding: 10px 20px;
    }

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

}

/* =====================================================
   VIDEOS HERO SECTION
===================================================== */

.videos-hero-section{
    position: relative;
    width: 100%;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.videos-hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(6,18,40,0.80),
        rgba(6,18,40,0.78)
    );
    z-index: 1;
}

.videos-hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 120px 20px;
}

.videos-small-title{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.videos-hero-content h1{
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.videos-hero-content p{
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}



/* =====================================================
   VIDEOS SECTION
===================================================== */

.videos-gallery-section{
    padding: 110px 0;
    background: #f8fafc;
}

.video-card{
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

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

.video-frame{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-frame iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content{
    padding: 30px;
}

.video-content h3{
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.video-content p{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}



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

@media(max-width:991px){

    .videos-hero-content h1{
        font-size: 46px;
    }

    .video-content h3{
        font-size: 24px;
    }

}


@media(max-width:767px){

    .videos-hero-section{
        min-height: auto;
    }

    .videos-hero-content{
        padding: 100px 15px;
    }

    .videos-hero-content h1{
        font-size: 36px;
    }

    .videos-hero-content p{
        font-size: 16px;
        line-height: 1.8;
    }

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

    .video-content{
        padding: 24px;
    }

    .video-content h3{
        font-size: 22px;
    }

}


@media(max-width:576px){

    .videos-hero-section{
        margin-top: 80px;
    }

    .videos-hero-content h1{
        font-size: 30px;
    }

    .videos-small-title{
        font-size: 12px;
        padding: 10px 20px;
    }

    .video-content h3{
        font-size: 20px;
    }

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

}

/* =====================================================
   ADMISSION HERO SECTION
===================================================== */

.admission-hero-section{
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
    padding: 120px 0;
}

.admission-hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admission-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(7,17,40,0.80),
        rgba(7,17,40,0.72)
    );
    z-index: 1;
}

.admission-hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 0 15px;
}

.admission-mini-title{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.admission-hero-content h1{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.admission-hero-content p{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}



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

.admission-section-tag{
    display: inline-block;
    background: #fff3df;
    color: #ff9100;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.admission-main-title{
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}



/* =====================================================
   ADMISSION PROCESS
===================================================== */

.admission-process-section{
    padding: 110px 0;
    background: #fff;
}

.admission-step-card{
    background: #fff;
    border-radius: 32px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.admission-step-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.10);
}

.admission-step-number{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(255,145,0,0.08);
}

.admission-step-card i{
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg,#ff9100,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(255,145,0,0.30);
}

.admission-step-card h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.admission-step-card p{
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}



