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

/* ================= ROOT COLORS ================= */
:root{
    --primary:#16213e;
    --secondary:#243b64;
    --bg:#f4f7ff;
    --accent:#f5c542;
    --dark:#0d1324;
    --white:#ffffff;
}

/* ================= GLOBAL RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    overflow-x:hidden;
    color:var(--primary);
}

img{
    max-width:100%;
    display:block;
}

section{
    overflow:hidden;
}

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

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

p{
    line-height:1.8;
    color:#555;
}

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

.custom-navbar{
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    padding:10px 0;
    transition:0.4s;
    width:100%;
}

/* CONTAINER */

.custom-navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* BRAND */

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

    text-decoration:none;

    width:auto;

    flex-shrink:0;
}

/* MAIN LOGO */

.main-school-logo{

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

    height:auto;

    object-fit:contain;

    display:block;

    transition:0.4s ease;
}

/* LOGO HOVER */

.navbar-brand:hover .main-school-logo{
    transform:scale(1.02);
}

/* TOGGLER */

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

/* NAV LINKS */

.navbar-nav .nav-link{
    color:var(--primary);
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
    position:relative;
    display:inline-block;
}

/* HOVER */

.navbar-nav .nav-link:hover{
    color:var(--secondary);
}

/* BOTTOM LINE */

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;

    width:0%;
    height:2px;

    background:var(--accent);

    border-radius:10px;

    transition:0.4s ease;
}

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

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

@media(max-width:991px){

    .navbar-collapse{
        background:white;
        margin-top:15px;
        padding:20px;
        border-radius:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
        text-align:center;
    }

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

    /* RESPONSIVE LOGO */

    .main-school-logo{
        max-width:190px;
    }

}

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

@media(max-width:576px){

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

    .main-school-logo{
        max-width:150px;
    }

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

}

/* ================= BUTTONS ================= */
.primary-btn{
    background:var(--primary);
    color:var(--white);
    border:none;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:0.4s ease;
    font-weight:600;
}

.primary-btn:hover{
    background:var(--secondary);
    transform:translateY(-3px);
    color:var(--white);
}

.secondary-btn{
    background:var(--accent);
    color:var(--dark);
    border:none;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:0.4s ease;
    font-weight:600;
}

.secondary-btn:hover{
    transform:translateY(-3px);
    background:#ffd861;
    color:var(--dark);
}

.admission-btn{
    background:var(--accent);
    color:var(--dark);
    border:none;
    font-weight:600;
    transition:0.4s ease;
}

.admission-btn:hover{
    background:#ffd861;
    transform:translateY(-2px);
    color:var(--dark);
}

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

.hero-section{
    background:linear-gradient(to right,#f4f7ff,#ffffff);
    overflow:hidden;
    position:relative;
    padding-top:110px;
    padding-bottom:40px;
}

/* REMOVE EXTRA SPACE */
.hero-row{
    min-height:88vh;
    align-items:center;
}

/* LEFT CONTENT */

.hero-badge{
    display:inline-block;
    background:rgba(245,197,66,0.15);
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:24px;
    border:1px solid rgba(245,197,66,0.4);
    font-size:14px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.15;
    color:var(--primary);
    font-weight:700;
    margin-bottom:22px;
}

.hero-content h1 span{
    color:var(--accent);
}

.hero-content p{
    font-size:18px;
    color:#555;
    max-width:540px;
    margin-bottom:35px;
    line-height:1.9;
}

/* BUTTONS */

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

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

.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    width:100%;
    padding-top:20px;
    padding-bottom:90px;
}

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

.hero-student-img{
    width:100%;
    max-width:520px;
    object-fit:contain;
    position:relative;
    z-index:2;

    /* SOFT BOTTOM FADE */
    -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 84%,
    rgba(0,0,0,0));

    mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 84%,
    rgba(0,0,0,0));
}

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

.topper-card{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:88%;
    max-width:420px;

    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);

    border-radius:24px;
    padding:18px 24px;

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

    z-index:5;

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

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

    animation:floatCard 4s ease-in-out infinite;
}

/* LEFT ICON */

.topper-icon{
    min-width:68px;
    height:68px;
    border-radius:18px;

    background:rgba(245,197,66,0.14);

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

    font-size:32px;
}

/* TEXT CONTENT */

.topper-info{
    flex:1;
}

/* SMALL BADGE */

.topper-badge{
    display:inline-block;

    background:var(--accent);
    color:var(--dark);

    padding:6px 14px;
    border-radius:30px;

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

    margin-bottom:10px;
    letter-spacing:0.5px;
}

/* TITLE */

.topper-info h4{
    color:var(--primary);
    font-size:21px;
    margin-bottom:5px;
    line-height:1.4;
    font-weight:700;
}

/* DESCRIPTION */

.topper-info p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

/* ================= GLOW EFFECT ================= */

.image-mask{
    position:absolute;
    bottom:-40px;

    width:500px;
    height:160px;

    background:radial-gradient(
    circle,
    rgba(245,197,66,0.30),
    transparent 70%);

    filter:blur(35px);

    z-index:1;
}

/* ================= FLOAT EFFECT ================= */

@keyframes floatCard{

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

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

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

}

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

@media(max-width:991px){

    .hero-image-wrapper{
        padding-bottom:80px;
    }

    .hero-student-img{
        max-width:430px;
    }

    .topper-card{
        width:90%;
        max-width:380px;
    }

}

@media(max-width:768px){

    .hero-image-wrapper{
        padding-bottom:75px;
    }

    .hero-student-img{
        max-width:320px;
    }

    .topper-card{
        width:95%;
        padding:15px 18px;
        gap:12px;
        border-radius:20px;
    }

    .topper-icon{
        min-width:55px;
        height:55px;
        font-size:26px;
        border-radius:14px;
    }

    .topper-badge{
        font-size:10px;
        padding:5px 12px;
    }

    .topper-info h4{
        font-size:17px;
    }

    .topper-info p{
        font-size:12px;
    }

    .image-mask{
        width:320px;
        height:120px;
    }

}

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


@media(max-width:768px){

    .hero-image-wrapper{
        padding-top:20px;
        padding-bottom:55px;
        position:relative;
    }

    /* IMAGE */

    .hero-student-img{
        max-width:300px;
    }

    /* CARD */

    .topper-card{
        position:absolute;
        left:50%;
        bottom:0;
        transform:translateX(-50%);

        width:92%;
        max-width:320px;

        padding:12px 14px;
        border-radius:18px;

        display:flex;
        flex-direction:row;
        align-items:center;
        gap:12px;
    }

    /* ICON */

    .topper-icon{
        min-width:45px;
        height:45px;
        border-radius:12px;
        font-size:22px;
    }

    /* BADGE */

    .topper-badge{
        font-size:9px;
        padding:4px 10px;
        margin-bottom:6px;
    }

    /* TITLE */

    .topper-info h4{
        font-size:15px;
        line-height:1.3;
        margin-bottom:3px;
    }

    /* TEXT */

    .topper-info p{
        font-size:11px;
        line-height:1.4;
    }

    /* GLOW */

    .image-mask{
        width:260px;
        height:90px;
        bottom:-25px;
    }

}


/* ================= ABOUT PREVIEW ================= */
.about-preview{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* IMAGE WRAPPER */
.about-image-wrapper{
    position:relative;
    width:100%;
    display:flex;
    justify-content:center;
}

/* IMAGE */
.about-img{
    width:100%;
    max-width:520px;
    height:550px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transition:0.4s;
}

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

/* EXPERIENCE BOX */
.experience-box{
    position:absolute;
    bottom:30px;
    left:20px;
    background:var(--accent);
    color:var(--dark);
    padding:18px 24px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.experience-box h3{
    font-size:32px;
    margin:0;
    font-weight:700;
}

.experience-box span{
    font-size:14px;
    font-weight:600;
}

/* CONTENT */
.about-content{
    padding-left:20px;
}

.section-subtitle{
    color:var(--accent);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:48px;
    color:var(--primary);
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

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

/* POINTS */
.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.point-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fbff;
    padding:15px 18px;
    border-radius:16px;
    transition:0.3s;
    border:1px solid rgba(0,0,0,0.05);
}

.point-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.point-item span{
    width:35px;
    height:35px;
    background:var(--accent);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

.point-item p{
    margin:0;
    font-size:15px;
    font-weight:500;
    line-height:1.5;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

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

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

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

    .point-item{
        justify-content:center;
    }

    .experience-box{
        left:50%;
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .about-img{
        height:420px;
        border-radius:25px;
    }

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

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

    .experience-box{
        padding:14px 20px;
    }

    .experience-box h3{
        font-size:26px;
    }

}

/* ================= FEATURE CARDS ================= */
.feature-card{
    background:var(--white);
    padding:35px 25px;
    border-radius:25px;
    height:100%;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border:1px solid rgba(22,33,62,0.08);
}

.feature-card i{
    font-size:45px;
    color:var(--accent);
    margin-bottom:20px;
    transition:0.4s ease;
}

.feature-card h5{
    margin-bottom:15px;
    color:var(--primary);
}

.feature-card:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.feature-card:hover h5,
.feature-card:hover p{
    color:var(--white);
}

.feature-card:hover i{
    transform:scale(1.15);
    color:var(--accent);
}

/* ================= STATS SECTION ================= */
.stats-section{
    padding:90px 0;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:var(--white);
}

.stat-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:35px 20px;
    border-radius:20px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.1);
}

.stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.stat-box h3{
    font-size:45px;
    color:var(--accent);
    margin-bottom:10px;
}

.stat-box p{
    color:var(--white);
    margin:0;
}

/* ================= GALLERY ================= */
.gallery-preview{
    background:var(--bg);
}

.gallery-card{
    width:100%;
    aspect-ratio:1;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

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

.gallery-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(22,33,62,0.4),transparent);
    opacity:0;
    transition:0.4s ease;
    z-index:1;
}

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

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

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

/* ================= PARENT SECTION ================= */
.parent-section{
    background:linear-gradient(135deg,#16213e,#243b64);
    position:relative;
    overflow:hidden;
    color:white;
}

/* GLOW EFFECT */
.parent-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(245,197,66,0.15);
    border-radius:50%;
    top:-100px;
    left:-100px;
    filter:blur(50px);
}

.parent-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
    filter:blur(50px);
}

/* TITLE */
.parent-subtitle{
    color:var(--accent);
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title h2 span{
    color:var(--accent);
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,0.8);
    font-size:17px;
    line-height:1.8;
}

/* VIDEO CARD */
.video-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(12px);
    border-radius:30px;
    overflow:hidden;
    transition:0.4s;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

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

/* VIDEO */
.video-card video{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

/* CONTENT */
.video-content{
    padding:25px;
}

.video-content h4{
    color:var(--accent);
    margin-bottom:12px;
    font-weight:700;
}

.video-content p{
    color:rgba(255,255,255,0.85);
    line-height:1.7;
    margin:0;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

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

}

@media(max-width:768px){

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

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

    .video-card video{
        height:250px;
    }

}


/* ================= OUR BRANCHES ================= */

.branches-section{
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.branches-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(245,197,66,0.05);
    border-radius:50%;
    top:-150px;
    right:-120px;
}

.branch-card{
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    height: 100%;
    display:flex;
    flex-direction:column;
}

.branch-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.branch-img{
    overflow:hidden;
    height:280px;
}

.branch-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

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

.branch-content{
    padding:35px;
    flex-grow:1;
    display:flex;
    flex-direction:column;
}

.branch-content h3{
    font-size:30px;
    color:var(--primary);
    margin-bottom:18px;
    line-height:1.5;
}

.branch-content h3 span{
    color:var(--accent);
}

.branch-content p{
    color:#555;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
    flex-grow:1;
}

.branch-btn{
    display:inline-block;
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    transition:0.4s ease;
    font-weight:600;
    width:fit-content;
}

.branch-btn:hover{
    background:var(--accent);
    color:var(--dark);
    transform:translateY(-4px);
}
.section-title p{
    color:#6b7280;
    font-size:17px;
    margin-top:10px;
    font-weight:500;
}


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

@media(max-width:991px){

    .branch-img{
        height:240px;
    }

    .branch-content h3{
        font-size:26px;
    }

}

@media(max-width:576px){

    .branch-content{
        padding:25px;
    }

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

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

    .branch-btn{
        width:100%;
        text-align:center;
    }

}

/* ================= ADMISSION + CONTACT ================= */

.admission-contact-section{
    background:linear-gradient(to bottom,#f4f7ff,#ffffff);
    position:relative;
    overflow:hidden;
}

/* ================= SECTION HEADER ================= */

.section-header{
    margin-bottom:20px;
}

.section-subtitle{
    color:var(--accent);
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:15px;
    font-size:30px;
}

.section-header h2{
    font-size:48px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:18px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

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

.map-card,
.admission-form-card{
    background:#fff;
    border-radius:30px;
    padding:28px;
    width:100%;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.map-card:hover,
.admission-form-card:hover{
    transform:translateY(-6px);
}

/* BOTH SAME HEIGHT */

.map-card,
.admission-form-card{
    height:100%;
}

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

.map-title h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:8px;
    font-size:28px;
}

.map-title p{
    color:#666;
    font-size:14px;
    margin-bottom:22px;
}

/* BRANCH BOX */

.branch-location-card{
    background:#f7f9ff;
    border-radius:20px;
    padding:16px;
    border:1px solid rgba(0,0,0,0.05);
}

/* BRANCH TITLE */

.branch-heading{
    font-size:18px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:14px;
}

.branch-heading span{
    color:var(--accent);
}

/* SMALL MAP */

.small-map{
    width:100%;
    height:140px;
    border-radius:16px;
    overflow:hidden;
}

.small-map iframe{
    width:100%;
    height:100%;
    border:0;
}

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

.form-title h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.form-title p{
    color:#666;
    line-height:1.7;
    margin-bottom:24px;
    font-size:15px;
}

/* INPUTS */

.custom-input{
    height:56px;
    border-radius:16px;
    border:1px solid #dbe2f0;
    padding:0 18px;
    font-size:15px;
    box-shadow:none !important;
    transition:0.3s;
}

.custom-input:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(245,197,66,0.15) !important;
}

/* BUTTON */

.submit-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:600;
    font-size:17px;
    transition:0.4s ease;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(22,33,62,0.2);
}

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

@media(max-width:991px){

    .section-header h2{
        font-size:38px;
    }

    .map-card,
    .admission-form-card{
        padding:24px;
    }

}

@media(max-width:768px){

    .section-subtitle{
        font-size:20px;
    }

    .section-header h2{
        font-size:30px;
    }

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

    .map-card,
    .admission-form-card{
        border-radius:24px;
        padding:20px;
    }

    .map-title h4{
        font-size:24px;
    }

    .branch-heading{
        font-size:16px;
    }

    .small-map{
        height:120px;
    }

    .custom-input{
        height:52px;
        font-size:14px;
    }

    .submit-btn{
        height:54px;
        font-size:15px;
    }

}

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

.footer-section{
    background: var(--dark);
    color: var(--white);
    padding: 90px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(245,197,66,0.05);
    border-radius:50%;
    top:-200px;
    right:-200px;
}

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

.footer-section h5{
    color: var(--accent);
    margin-bottom: 22px;
    font-size: 24px;
    position: relative;
}

.footer-section h5::after{
    content:'';
    width:45px;
    height:3px;
    background:var(--accent);
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:20px;
}

.footer-section p,
.footer-section a{
    color:#d7d7d7;
    text-decoration:none;
    line-height:1.8;
    font-size:15px;
}

/* QUICK LINKS */

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

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

.footer-links a{
    transition:0.3s ease;
    display:inline-block;
}

.footer-links a:hover{
    color:var(--accent);
    transform:translateX(6px);
}


/* CONTACT SECTION */

.branches-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:10px;
}

.branch-box{
    padding-left:20px;
    border-left:2px solid rgba(245,197,66,0.4);
}

.branch-box h6{
    color:var(--white);
    font-size:17px;
    margin-bottom:15px;
    line-height:1.6;
}

.branch-box h6 span{
    color:var(--accent);
    font-weight:500;
}

.branch-box p{
    margin-bottom:14px;
}


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

.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:60px;
}

.social-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:var(--white);
    transition:0.4s ease;
    font-size:18px;
}

.social-icons a:hover{
    background:var(--accent);
    color:var(--dark);
    transform:translateY(-6px) scale(1.08);
}


/* COPYRIGHT */

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

.mt-4{
    margin-top:30px;
}
/* EMAIL ALIGN FIX */

.branch-box p{
    margin-bottom:14px;
}

/* NEW */
.branch-box .email-line{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
}

.branch-box .email-line i{
    color:var(--accent);
    font-size:15px;
    margin-top:2px;
}


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

@media(max-width:991px){

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

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

}

@media(max-width:576px){

    .footer-section{
        padding:70px 20px 35px;
    }

    .footer-section h5{
        font-size:22px;
    }

    .branch-box{
        padding-left:15px;
    }

    .social-icons a{
        width:42px;
        height:42px;
        font-size:16px;
    }

}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

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

    .navbar-collapse{
        background:var(--white);
        padding:20px;
        margin-top:15px;
        border-radius:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .hero-content{
        text-align:center;
        margin-bottom:40px;
    }

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

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

    .hero-img{
        height:400px;
    }
}

@media(max-width:768px){

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

    .hero-section{
        padding-top:120px;
    }

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

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

    .hero-img{
        height:300px;
        border-radius:20px;
    }

    .admission-cta h2{
        font-size:34px;
    }

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

    .school-name{
        font-size:18px;
    }

    .logo-img{
        width:42px;
        height:42px;
    }
}

@media(max-width:576px){

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

    .primary-btn,
    .secondary-btn,
    .admission-btn{
        width:100%;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

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


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

.about-hero{
    height:70vh;
    background:
    linear-gradient(rgba(22,33,62,0.82), rgba(22,33,62,0.82)),
    url('Assets/about2.avif');

    background-size:cover;
    background-position:center;

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

    color:var(--white);
    padding-top:100px;
}

.about-hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.about-hero-content p{
    max-width:800px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.9;
    color:#eee;
}


/* ================= PREMIUM ABOUT IMAGE ================= */

.about-img-box{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:500px;
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.about-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.about-img-box:hover img{
    transform:scale(1.08);
}

/* EXPERIENCE BADGE */

.experience-badge{
    position:absolute;
    bottom:25px;
    left:25px;

    background:var(--accent);
    color:var(--dark);

    padding:15px 25px;
    border-radius:20px;

    font-size:1.2rem;
    font-weight:700;

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


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

.section-title h2{
    font-size:2.8rem;
    color:var(--primary);
    position:relative;
    display:inline-block;
    margin-bottom:25px;
}

.section-title h2::after{
    content:'';
    position:absolute;
    width:70px;
    height:4px;
    background:var(--accent);
    left:0;
    bottom:-10px;
    border-radius:20px;
}

.section-title.text-center h2::after{
    left:50%;
    transform:translateX(-50%);
}


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

.vision-section{
    background:
    linear-gradient(to bottom, #eef3ff, #f8faff);
    position:relative;
    overflow:hidden;
}

/* OPTIONAL BACKGROUND GLOW */

.vision-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(245,197,66,0.08);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(20px);
}

/* CARD */

.vision-card{
    position:relative;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);

    padding:50px 35px;
    border-radius:30px;

    text-align:center;
    height:100%;

    transition:0.5s ease;
    overflow:hidden;

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

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 2px 8px rgba(255,255,255,0.5) inset;
}

/* TOP SHINE EFFECT */

.vision-card::before{
    content:'';
    position:absolute;
    top:-100%;
    left:-40%;

    width:80%;
    height:250%;

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

    transform:rotate(25deg);
    transition:0.7s ease;
}

/* HOVER EFFECT */

.vision-card:hover{
    transform:translateY(-12px) scale(1.02);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.15),
    0 5px 15px rgba(245,197,66,0.15);

    background:var(--primary);
}

/* SHINE ANIMATION */

.vision-card:hover::before{
    left:120%;
}

/* ICON */

.vision-card i{
    width:90px;
    height:90px;

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

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(135deg, var(--accent), #ffe28a);

    color:var(--dark);
    font-size:2.5rem;

    transition:0.5s ease;

    box-shadow:0 10px 25px rgba(245,197,66,0.35);
}

/* ICON HOVER */

.vision-card:hover i{
    transform:rotateY(360deg) scale(1.1);
}

/* TITLE */

.vision-card h3{
    color:var(--primary);
    margin-bottom:18px;
    font-size:1.8rem;
    transition:0.4s ease;
}

/* TEXT */

.vision-card p{
    color:#555;
    line-height:1.9;
    transition:0.4s ease;
}

/* TEXT HOVER */

.vision-card:hover h3,
.vision-card:hover p{
    color:var(--white);
}

.vision-card h3{
    color:var(--primary);
    margin-bottom:15px;
}


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

.stats-section{
    padding:90px 0;

    background:
    linear-gradient(rgba(13,19,36,0.88), rgba(13,19,36,0.88)),
    url('Assets/about2.avif');

    background-size:cover;
    background-position:center;
}

.stat-box{
    background:rgba(255,255,255,0.08);
    padding:40px 20px;
    border-radius:25px;
    transition:0.4s ease;
    backdrop-filter:blur(8px);
}

.stat-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.15);
}

.stat-box h3{
    font-size:3rem;
    color:var(--accent);
    font-weight:700;
}

.stat-box p{
    color:var(--white);
    margin-top:10px;
}


/* ================= FACILITIES ================= */

.facility-card{
    background:var(--white);
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    transition:0.4s ease;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.facility-card:hover{
    transform:translateY(-10px);
    background:var(--primary);
}

.facility-card:hover h4,
.facility-card:hover p{
    color:var(--white);
}

.facility-card:hover i{
    color:var(--accent);
}

.facility-card i{
    font-size:3rem;
    color:var(--secondary);
    margin-bottom:20px;
}

.facility-card h4{
    margin-bottom:15px;
    color:var(--primary);
}


/* ================= PREMIUM DIRECTOR SECTION ================= */

.principal-section{
    background:#eef3ff;
}

.principal-box{
    background:var(--white);
    padding:60px;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* LEFT CONTENT */

.principal-content{
    padding-right:20px;
}

.principal-tag{
    display:inline-block;
    background:rgba(245,197,66,0.15);
    color:var(--secondary);

    padding:10px 20px;
    border-radius:50px;

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

    margin-bottom:20px;
}

.principal-content h2{
    font-size:2.7rem;
    color:var(--primary);
    margin-bottom:25px;
}

.principal-content p{
    line-height:1.9;
    margin-bottom:20px;
}

/* DIRECTOR DETAILS */

.director-details{
    margin-top:35px;
    border-left:4px solid var(--accent);
    padding-left:20px;
}

.director-details h4{
    margin-bottom:8px;
    color:var(--primary);
    font-size:1.4rem;
}

.director-details p{
    margin:0;
    color:var(--secondary);
    font-weight:600;
}

/* IMAGE SECTION */

.principal-image-box{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.principal-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

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

/* IMAGE CONTENT */

.principal-image-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;

    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);

    padding:18px 20px;
    border-radius:20px;

    text-align:center;
}

.principal-image-content h4{
    margin-bottom:5px;
    color:var(--primary);
    font-size:1.2rem;
}

.principal-image-content span{
    color:var(--secondary);
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:768px){

    .principal-box{
        padding:30px;
    }

    .principal-content h2{
        font-size:2rem;
    }

    .principal-content{
        padding-right:0;
    }

}

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

.about-cta{
    padding:100px 20px;

    background:
    linear-gradient(rgba(36,59,100,0.88), rgba(36,59,100,0.88)),
    url('Assets/about3.avif');

    background-size:cover;
    background-position:center;

    text-align:center;
    color:var(--white);
}

.about-cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.about-cta p{
    max-width:800px;
    margin:auto;
    margin-bottom:30px;
    color:#eee;
}


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

@media(max-width:768px){

    .about-hero{
        height:auto;
        padding:160px 0 100px;
    }

    .about-hero-content h1{
        font-size:2.5rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .principal-box{
        padding:30px;
    }

    .about-cta h2{
        font-size:2rem;
    }

}

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

.academics-hero{
    height:75vh;

    background:
    linear-gradient(rgba(13,19,36,0.82), rgba(13,19,36,0.82)),
    url('Assets/academics2.avif');

    background-size:cover;
    background-position:center;

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

    text-align:center;
    color:var(--white);

    padding-top:100px;
}

.academics-hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.academics-hero-content p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:1.1rem;
    color:#eee;
}


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

.academic-programs{
    background:#f8faff;
}

.academic-card{
    background:var(--white);
    padding:45px 30px;
    border-radius:30px;
    text-align:center;

    height:100%;

    transition:0.5s ease;
    position:relative;
    overflow:hidden;

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

.academic-card::before{
    content:'';
    position:absolute;

    width:120%;
    height:120%;

    background:linear-gradient(
    135deg,
    rgba(245,197,66,0.08),
    transparent);

    top:-100%;
    left:-100%;

    transition:0.6s ease;
}

.academic-card:hover::before{
    top:0;
    left:0;
}

.academic-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

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

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

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

    background:
    linear-gradient(135deg,var(--accent),#ffe38b);

    box-shadow:0 10px 25px rgba(245,197,66,0.3);
}

.academic-icon i{
    font-size:2.5rem;
    color:var(--dark);
}

.academic-card h3{
    color:var(--primary);
    margin-bottom:18px;
}

.academic-card p{
    margin:0;
}


/* ================= WHY ACADEMICS ================= */

.why-academics{
    background:var(--white);
}

.why-academics-img{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:500px;

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

.why-academics-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.why-academics-img:hover img{
    transform:scale(1.08);
}

.academic-features{
    margin-top:30px;
}

.academic-features div{
    margin-bottom:16px;
    font-weight:600;
    color:var(--primary);

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

.academic-features i{
    color:var(--accent);
    font-size:1.1rem;
}


/* ================= SUBJECTS ================= */

.subjects-section{
    background:#eef3ff;
}

.subject-card{
    background:var(--white);
    padding:45px 25px;

    border-radius:30px;
    text-align:center;

    transition:0.5s ease;

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

.subject-card:hover{
    transform:translateY(-12px);
    background:var(--primary);
}

.subject-card:hover h4{
    color:var(--white);
}

.subject-card:hover i{
    color:var(--accent);
}

.subject-card i{
    font-size:3rem;
    color:var(--secondary);
    margin-bottom:20px;

    transition:0.4s ease;
}

.subject-card h4{
    color:var(--primary);
    margin:0;

    transition:0.4s ease;
}


/* ================= EXAM SECTION ================= */

.exam-section{
    background:var(--white);
}

.exam-box{
    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    padding:60px;
    border-radius:35px;

    color:var(--white);

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

.exam-box h2{
    margin-bottom:20px;
    font-size:2.5rem;
}

.exam-box p{
    color:#eee;
    margin:0;
}


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

@media(max-width:991px){

    .academics-hero{
        height:auto;
        padding:170px 0 120px;
    }

    .academics-hero-content h1{
        font-size:3rem;
    }

    .why-academics-img{
        height:400px;
    }

}

@media(max-width:768px){

    .academics-hero-content h1{
        font-size:2.4rem;
    }

    .academics-hero-content p{
        font-size:1rem;
    }

    .academic-card,
    .subject-card{
        padding:35px 25px;
    }

    .exam-box{
        padding:35px;
        text-align:center;
    }

    .exam-box h2{
        font-size:2rem;
    }

    .why-academics-img{
        height:320px;
    }

}


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

.gallery-hero{
    height:70vh;

    background:
    linear-gradient(rgba(13,19,36,0.82), rgba(13,19,36,0.82)),
    url('Assets/Gallery2.avif');

    background-size:cover;
    background-position:center;

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

    text-align:center;
    color:var(--white);

    padding-top:100px;
}

.gallery-hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-hero-content p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:1.1rem;
    color:#eee;
}


/* ================= GALLERY INTRO ================= */

.gallery-intro{
    background:#f8faff;
}

.gallery-intro p{
    font-size:1.05rem;
    line-height:1.9;
}


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

.gallery-section{
    background:#eef3ff;
}


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

.gallery-card{
    position:relative;
    overflow:hidden;

    border-radius:25px;

    height:280px;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,0.10);

    transition:0.5s ease;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
}


/* IMAGE */

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

    object-fit:cover;

    transition:0.6s ease;
}

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


/* OVERLAY */

.gallery-overlay{
    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:20px;

    background:
    linear-gradient(
    to top,
    rgba(13,19,36,0.92),
    transparent);

    transition:0.4s ease;
}

.gallery-overlay h4{
    color:var(--white);
    margin:0;
    font-size:1.1rem;
    font-weight:600;

    transform:translateY(10px);
    opacity:0;

    transition:0.4s ease;
}

.gallery-card:hover .gallery-overlay h4{
    transform:translateY(0);
    opacity:1;
}


/* ================= PREMIUM BORDER EFFECT ================= */

.gallery-card::before{
    content:'';

    position:absolute;

    inset:0;

    border:2px solid transparent;
    border-radius:25px;

    transition:0.4s ease;

    z-index:2;
}

.gallery-card:hover::before{
    border-color:rgba(245,197,66,0.7);
}


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

@media(max-width:991px){

    .gallery-hero{
        height:auto;
        padding:170px 0 120px;
    }

    .gallery-hero-content h1{
        font-size:3rem;
    }

    .gallery-card{
        height:240px;
    }

}

@media(max-width:768px){

    .gallery-hero-content h1{
        font-size:2.4rem;
    }

    .gallery-hero-content p{
        font-size:1rem;
    }

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

    .gallery-overlay{
        padding:15px;
    }

    .gallery-overlay h4{
        font-size:0.95rem;
        opacity:1;
        transform:none;
    }

}

@media(max-width:576px){

    .gallery-card{
        height:170px;
    }

}

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

.admission-hero{
    min-height:85vh;

    background:
    linear-gradient(rgba(13,19,36,0.82), rgba(13,19,36,0.82)),
    url('Assets/admissions2.jpeg');

    background-size:cover;
    background-position:center;

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

    text-align:center;
    color:var(--white);

    padding:160px 0 100px;
}

.admission-badge{
    display:inline-block;

    background:rgba(245,197,66,0.18);
    color:var(--accent);

    padding:12px 24px;
    border-radius:50px;

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

    margin-bottom:25px;

    border:1px solid rgba(245,197,66,0.4);
}

.admission-hero-content h1{
    font-size:4.2rem;
    font-weight:800;

    margin-bottom:25px;
}

.admission-hero-content p{
    max-width:850px;
    margin:auto;

    line-height:1.9;
    font-size:1.1rem;

    color:#eee;
}

.hero-highlights{
    display:flex;
    justify-content:center;
    gap:25px;

    flex-wrap:wrap;

    margin-top:40px;
}

.hero-highlights div{
    background:rgba(255,255,255,0.08);

    padding:12px 22px;

    border-radius:50px;

    backdrop-filter:blur(10px);

    font-weight:500;
}

.hero-highlights i{
    color:var(--accent);
    margin-right:8px;
}


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

.admission-section{
    background:#f8faff;
}


/* LEFT CONTENT */

.section-subtitle{
    display:inline-block;

    background:rgba(245,197,66,0.15);
    color:var(--secondary);

    padding:10px 20px;
    border-radius:50px;

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

    margin-bottom:20px;
}

.admission-content h2{
    font-size:3rem;
    margin-bottom:25px;

    color:var(--primary);
}

.admission-content p{
    line-height:1.9;
    margin-bottom:20px;
}


/* FEATURES */

.admission-features{
    margin-top:35px;
}

.admission-features div{
    margin-bottom:18px;

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

    font-weight:600;
    color:var(--primary);
}

.admission-features i{
    width:45px;
    height:45px;

    border-radius:50%;

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

    background:rgba(245,197,66,0.18);

    color:var(--accent);
}


/* LIMITED SEATS */

.limited-seats-box{
    margin-top:40px;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    padding:30px;

    border-radius:25px;

    color:var(--white);

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

.limited-seats-box h4{
    margin-bottom:10px;
    font-size:1.6rem;
}

.limited-seats-box p{
    color:#eee;
    margin:0;
}


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

.admission-form-card{
    background:var(--white);

    padding:45px;

    border-radius:35px;

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

    position:relative;
    overflow:hidden;
}

.admission-form-card::before{
    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(245,197,66,0.08);

    border-radius:50%;

    top:-100px;
    right:-100px;
}

.form-title{
    margin-bottom:30px;
}

.form-title h4{
    color:var(--primary);
    margin-bottom:10px;

    font-size:2rem;
}

.form-title p{
    margin:0;
}


/* INPUTS */

.custom-input{
    height:58px;

    border-radius:15px;

    border:1px solid #d9e2f2;

    padding:12px 18px;

    font-size:15px;

    box-shadow:none !important;

    transition:0.4s ease;
}

.custom-input:focus{
    border-color:var(--accent);

    box-shadow:
    0 0 0 4px rgba(245,197,66,0.15) !important;
}


/* BUTTON */

.submit-btn{
    width:100%;

    border:none;

    background:
    linear-gradient(
    135deg,
    var(--accent),
    #ffd861);

    color:var(--dark);

    padding:15px;

    border-radius:50px;

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

    transition:0.4s ease;
}

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

    box-shadow:0 12px 25px rgba(245,197,66,0.35);
}


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

@media(max-width:991px){

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

    .admission-hero-content h1{
        font-size:3rem;
    }

    .admission-content h2{
        font-size:2.3rem;
    }

}

@media(max-width:768px){

    .admission-hero-content h1{
        font-size:2.4rem;
    }

    .admission-hero-content p{
        font-size:1rem;
    }

    .hero-highlights{
        gap:15px;
    }

    .hero-highlights div{
        font-size:14px;
    }

    .admission-content h2{
        font-size:2rem;
    }

    .admission-form-card{
        padding:30px 25px;
    }

    .form-title h4{
        font-size:1.6rem;
    }

    .limited-seats-box{
        padding:25px;
    }

}