body {
    margin:0;
    font-family:sans-serif;
}

/* ===== NAVBAR HEIGHT FIX ===== */
:root {
    --nav-height:110px;
}

/* HERO SECTION */
.hero-video-section{
    position:relative;
    width:100%;
    height:calc(100vh - var(--nav-height));
    overflow:hidden;
}

/* BLUR VIDEO */
#heroBgVideo{
    position:absolute;
    inset:0;
    width:100%;
    object-fit:cover;
    filter:blur(20px) brightness(0.6);
    z-index:1;
}

/* MAIN VIDEO */
#heroVideo{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    height:100%;
    width:auto;
    max-width:100%;
    object-fit:contain;
    z-index:2;
}

/* HERO SLIDE */
.hero-slide{
    position:absolute;
    inset:0;
    display:none;
    z-index:3;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* MOBILE */
@media (max-width:768px){

    :root{
        --nav-height:80px;
    }

    .hero-video-section{
        height:220px;
        overflow:hidden;
    }

    #heroBgVideo{
        height:100%;
        width:100%;
        object-fit:cover;
    }

    #heroVideo{
        height:100%;
        width:auto;
        object-fit:contain;
    }
}

/* HERO SLIDER */
.hero-slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.hero-slider .hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.hero-slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

/* HERO TEXT */
.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:white;
    z-index:10;
}

.hero-text h1{
    font-family:'poppins';
    color:blue;
    font-size:70px;
    font-weight:400;
    line-height:90px;
    text-shadow:3px 3px 10px rgba(0,0,0,0.4);
}

/* HERO DOTS */
.hero-dots{
    position:absolute;
    bottom:25px;
    width:100%;
    text-align:center;
    z-index:20;
}

.hero-dots span{
    display:inline-block;
    width:12px;
    height:12px;
    background:#bbb;
    border-radius:50%;
    margin:0 4px;
    cursor:pointer;
}

.hero-dots .active-dot{
    background:white;
}

/* MOBILE FIX */
@media(max-width:767px){

    .banner-img,
    .banner-img img{
        display:block !important;
        visibility:visible !important;
        opacity:1 !important;
    }

    .col-md-5,
    .col-lg-5{
        display:block !important;
        width:100% !important;
    }
}

.wow{
    visibility:visible !important;
}

/* VPS CARD */
.vps-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:left;
    box-shadow:0 4px 20px rgba(0,0,0,0.10);
    transition:0.3s;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.vps-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 35px rgba(0,0,0,0.25);
}

.vps-card i{
    font-size:50px;
    color:#c62828;
    margin-bottom:15px;
    transition:0.3s;
}

.vps-card:hover i{
    transform:scale(1.25);
}

.vps-card p{
    text-align:justify;
    color:#555;
    line-height:1.6;
}

/* ANIMATION */
.fade-up{
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
}

.fade-left{
    animation:fadeLeft 1.2s ease forwards;
    opacity:0;
}

.fade-right{
    animation:fadeRight 1.2s ease forwards;
    opacity:0;
}

.zoom-in{
    animation:zoomIn 1.3s ease forwards;
    opacity:0;
}

.float-box{
    animation:floatBox 2s ease-in-out infinite alternate;
}

.fade-stagger{
    opacity:0;
    animation:fadeUp 1s ease forwards;
}

.fade-stagger:nth-child(1){animation-delay:0.2s;}
.fade-stagger:nth-child(2){animation-delay:0.4s;}
.fade-stagger:nth-child(3){animation-delay:0.6s;}
.fade-stagger:nth-child(4){animation-delay:0.8s;}
.fade-stagger:nth-child(5){animation-delay:1s;}

/* KEYFRAMES */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(0.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes floatBox{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-10px);
    }
}

@keyframes underlineGrow{
    from{
        width:0;
    }
    to{
        width:120px;
    }
}

/* POPUP */
@media (max-width:768px){
    #enquiryPopup > div{
        width:80% !important;
        max-width:80% !important;
        height:auto !important;
    }
}

@media (min-width:769px) and (max-width:1200px){
    #enquiryPopup > div{
        width:60% !important;
        max-width:60% !important;
        height:auto !important;
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:scale(0.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
/* ================= POPUP ================= */

#enquiryPopup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.popup-box{
    width:40%;
    max-width:450px;
    height:auto;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    position:relative;
    animation:fadeIn .35s ease;
}

#closePop{
    position:absolute;
    top:10px;
    right:20px;
    font-size:32px;
    cursor:pointer;
    z-index:99;
}

.popup-iframe{
    width:100%;
    height:600px;
    border:0;
}

/* MOBILE */
@media (max-width:768px){

    .popup-box{
        width:80% !important;
        max-width:80% !important;
        height:auto !important;
    }
}

/* TABLET */
@media (min-width:769px) and (max-width:1200px){

    .popup-box{
        width:60% !important;
        max-width:60% !important;
        height:auto !important;
    }
}

/* ANIMATION */
@keyframes fadeIn{

    from{
        opacity:0;
        transform:scale(0.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}
header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}


/* ===== LOGO ===== */

.school-logo{
height:65px;
}

.school-title{
font-size:34px;
font-weight:700;
margin-left:10px;
color:#2e3a7b;
}

/* ===== NAVIGATION ===== */

.navigation-bar{
display:flex;
align-items:center;
justify-content: space-between;
padding: 10px 20px;

}

.social-links{
margin-left:auto;
}

/* MENU */

.navigation-bar nav{
flex:1;
}

.main-menu{
    display:flex;
    align-items:center;
 gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li{
    position:relative;
    list-style:none;
    flex-shrink:0;
}

.main-menu li a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    padding:5px 5px;
    display:block;
    white-space:nowrap;
}

/* ===== DROPDOWN ===== */

.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    display:none;
    min-width:240px;
    padding:0;
    margin:0;
    border-radius:8px;
    box-shadow:0 6px 20px rgba(0,0,0,0.18);
    z-index:9999;
    list-style:none;
}

.submenu li{
    display:block;
    width:100%;
}

.submenu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    font-size:15px;
    border-bottom:1px solid #eee;
    background:#fff;
    white-space:nowrap;
    text-align: left;
}

.submenu li a:hover{
    background:#ff8a30;
    color:#fff;
}

/* SHOW DROPDOWN */

.dropdown-menu-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-menu-item:hover .submenu{
    display:block;
}

/* ===== SOCIAL ICONS ===== */

.social-links{
display:flex;
align-items:center;
gap:0px;
margin-left:auto;
flex-shrink:0;
max-width:110px;
}

.social-links li{
list-style:none;
}

.social-links a{
width:34px;
height:34px;
display:flex;
font-size: 18px;
align-items:center;
justify-content:center;
background:#1e5b93;
color:#fff;
border-radius:50%;
}

/* ===== MOBILE BUTTON ===== */

.menu-btn{
display:none;
cursor:pointer;
position:absolute;
right:20px;
top:35px;
}

.menu-btn span{
display:block;
width:28px;
height:3px;
background:#000;
margin:5px 0;
}

/* ===== MOBILE MENU ===== */

.responsive-menu{
position:fixed;
top:0;
left:-100%;
width:80%;
height:100%;
background:#003c7d;
padding:25px;
transition:0.3s;
z-index:99999;
overflow-y:auto;
}

.responsive-menu.active{
left:0;
}

.responsive-menu ul li{
margin:15px 0;
}

.responsive-menu ul li a{
color:#fff;
font-size:18px;
}

/* MOBILE DROPDOWN */

.mobile-item{
display:flex;
justify-content:space-between;
cursor:pointer;
color:#fff;
font-size:18px;
}

.mobile-submenu{
display:none;
margin-left:15px;
margin-top:8px;
}

.mobile-submenu.open{
display:block;
}

.mobile-submenu li a{
font-size:16px;
}

/* CLOSE BUTTON */

.close-menu{
position:absolute;
top:15px;
right:20px;
font-size:30px;
color:#fff;
cursor:pointer;
}

/* ===== RESPONSIVE ===== */

/* ===== MOBILE HEADER FIX ===== */
@media(max-width:768px){

    header .row{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .col-lg-10{
        width: 100%;
        padding-right: 50px; /* menu icon ke liye space */
    }

    .d-flex.align-items-center{
        display: flex;
        align-items: center;
        flex-wrap: nowrap; /* 🔥 sab ek line me */
    }

    .school-logo{
        height: 45px;
        flex-shrink: 0;
    }

    .school-title{
        font-size: 18px;
        white-space: nowrap;   /* 🔥 text break na ho */
        overflow: hidden;
        text-overflow: ellipsis; /* long name cut with ... */
    }

    .menu-btn{
        display: block;
        top: 20px;
        right: 15px;
    }
}

:root{
    --header-height: 110px;
}

body{
    padding-top: var(--header-height);
}

@media(max-width:768px){
    :root{
        --header-height: 80px;
    }
}
/* FEATURE BOX */

.feature-box{
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    box-shadow:0px 4px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    text-align:center;
}

/* ICON */

.feature-icon{
    margin:0 auto 15px;
}

.feature-img{
    height:60px;
    display:block;
    margin:auto;
}

/* TITLE */

.feature-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    text-align:center;
}

/* DESCRIPTION */

.feature-description{
    color:#666;
    margin-top:10px;
    font-size:15px;
    line-height:1.6;
    text-align:justify;
}
/* ===== LEARN SECTION ===== */

.learn-text-box{
    visibility:visible !important;
}

.learn-image-box{
    width:100% !important;
    max-width:420px !important;
    margin:20px auto 0 auto !important;
    visibility:visible !important;
    opacity:1 !important;
    display:block !important;
}

.learn-image{
    width:100% !important;
    height:auto !important;
    object-fit:cover !important;
    border-radius:16px !important;
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}
.about-us-section{
    padding:70px 0;
    background:#ffffff;
}

/* SECTION TITLE */

.section-title{
    width:100%;
}

.about-title{
    font-weight:800;
    color:#1d1d1d;
}

.about-title span{
    color:#f24c00;
}

.about-subtitle{
    color:#555;
    font-size:17px;
    line-height:1.7;
    max-width:780px !important;
    width:100%;
    margin:10px auto 45px auto;
    text-align:center;
}

@media(min-width:992px){

    .about-subtitle{
        white-space:normal;
        width:100%;
        max-width:780px !important;
    }

}
/* FEATURE BOX */

.feature-box{
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    box-shadow:0px 4px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    text-align:center;
}

/* ICON */

.feature-icon{
    margin:0 auto 15px;
}

.feature-img{
    height:60px;
    display:block;
    margin:auto;
}

/* TITLE */

.feature-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    text-align:center;
}

/* DESCRIPTION */

.feature-description{
    color:#666;
    margin-top:10px;
    font-size:15px;
    line-height:1.6;
    text-align:justify;
}
.why-choose-section{
    padding:60px 0;
    background:#ffffff;
}

/* HEADING */

.why-choose-title{
    font-weight:900;
    color:#1d2d50;
    margin-bottom:35px;
    text-align:center;
    font-size:32px;
    letter-spacing:1px;
    position:relative;
    display:inline-block;
    width:100%;
}

/* UNDERLINE */

.why-underline{
    width:120px;
    height:4px;
    background:#c62828;
    margin:10px auto 30px auto;
    border-radius:50px;
}

/* CARD TITLE */

.vps-card-title{
    font-weight:700;
    color:#1d2d50;
}
.vision-mission-section{
    padding:80px 5%;
    background:#f7f9fc;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow:hidden;
}

.vm-container{
    max-width:1150px;
    margin:auto;
}

/* HEADING */

.vm-heading{
    text-align:center;
    margin-bottom:70px;
}

.vm-main-title{
    font-size:42px;
    font-weight:800;
    color:#1d2d50 !important;
    margin-bottom:10px;
    position:relative;
    display:inline-block;
}

.vm-underline{
    width:120px;
    height:4px;
    background:#1d2d50;
    margin:10px auto;
    border-radius:5px;
    animation:underlineGrow 1.5s ease forwards;
}

.vm-subtitle{
    color:#555;
    max-width:820px;
    margin:0 auto;
    font-size:18px;
    line-height:1.6;
}

/* ROW */

.vm-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    margin-bottom:100px;
    flex-wrap:wrap;
}

.vm-row-reverse{
    flex-wrap:wrap-reverse;
    margin-bottom:50px;
}

/* CONTENT BOX */

.vm-content-box{
    flex:1;
    min-width:300px;
    padding:40px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.vm-left-border{
    border-left:6px solid #1d2d50;
}

.vm-right-border{
    border-right:6px solid #1d2d50;
}

/* TITLE */

.vm-box-title{
    font-size:32px;
    font-weight:800;
    color:#1d2d50;
    margin-bottom:20px;
}

/* TEXT */

.vm-box-text{
    font-size:17px;
    line-height:1.8;
    color:#444;
    margin:0;
}

/* IMAGE */

.vm-image-box{
    flex:1;
    min-width:300px;
}

.vm-image{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* LIST */

.vm-list{
    list-style:none;
    padding:0;
    font-size:16px;
    color:#444;
    margin:0;
}

.vm-list-item{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:16px;
}

.vm-dot{
    width:12px;
    height:12px;
    background:#1d2d50;
    border-radius:50%;
    flex-shrink:0;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #20ba5a;
}
.footer-sec {
    background: #f4f9ff;
    padding: 60px 0 20px 0;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-left, .footer-links, .footer-map {
    flex: 1;
    min-width: 250px;
}
        .footer-left img {
            width: 140px;
            margin-bottom: 18px;
        }
        .footer-left h4 {
            margin: 10px 0 5px 0;
            font-weight: bold;
        }
        .footer-left p, .footer-left span {
            font-size: 15px;
            color: #333;
            line-height: 1.4;
        }

        .footer-links h3 {
            font-weight: 700;
            margin-bottom: 12px;
        }
        .footer-links ul {
            padding: 0;
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #333;
            font-size: 15px;
        }

        .footer-map iframe {
            width: 100%;
            height: 260px;
            border: 0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .bottom-footer-area {
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid #ddd;
        }
        .bottom-footer-area p {
            margin: 0;
        }
        .social-links-footer {
            display: flex;
            gap: 18px;
            justify-content: flex-end;
        }
        .social-links-footer a {
            color: #333;
            font-size: 18px;
        }
.vm-section{
    width:100%;
    padding:60px 0;
    background:#f5f7fa;
}

.vm-container{
    width:90%;
    max-width:1100px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0px 8px 40px rgba(0,0,0,0.10);
}

.vm-main-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#333;
    margin-bottom:40px;
}

.vision-block{
    margin-bottom:40px;
}

.vm-title{
    font-size:26px;
    font-weight:700;
    color:#f37335;
    margin-bottom:15px;
}

.vm-text{
    font-size:18px;
    line-height:30px;
    color:#444;
    text-align:justify;
}

.vm-list{
    list-style:none;
    padding:0;
    margin:0;
}

.vm-list-item{
    font-size:18px;
    line-height:30px;
    color:#444;
    margin-bottom:12px;
}
.principal-section{
    width:100%;
    padding:60px 0;
    background:#f5f7fa;
}

.principal-container{
    width:90%;
    max-width:1000px;
    margin:auto;
    background:#ffffff;
    padding:50px;
    border-radius:15px;
    box-shadow:0 8px 40px rgba(0,0,0,0.10);
}

.principal-main-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#333;
    margin-bottom:40px;
}

.principal-profile{
    text-align:center;
    margin-bottom:30px;
}

.principal-image{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0px 4px 20px rgba(0,0,0,0.12);
}

.principal-name{
    font-size:22px;
    margin-top:15px;
    font-weight:700;
    color:#333;
}

.principal-designation{
    font-size:16px;
    color:#777;
    margin-top:-5px;
}

.principal-text{
    font-size:18px;
    line-height:30px;
    color:#444;
    text-align:justify;
}

.principal-signature{
    font-size:20px;
    margin-top:25px;
    font-weight:700;
    color:#f37335;
    text-align:right;
}
.chairman-section{
    width:100%;
    padding:60px 0;
    background:#f5f7fa;
}

.chairman-container{
    width:90%;
    max-width:1000px;
    margin:auto;
    background:#ffffff;
    padding:50px;
    border-radius:15px;
    box-shadow:0 8px 40px rgba(0,0,0,0.1);
}

.chairman-heading{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#333;
    margin-bottom:40px;
}

.chairman-profile{
    text-align:center;
    margin-bottom:30px;
}

.chairman-image{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 4px 20px rgba(0,0,0,0.12);
}

.chairman-name{
    font-size:22px;
    margin-top:15px;
    font-weight:700;
    color:#333;
}

.chairman-designation{
    font-size:16px;
    color:#777;
    margin-top:-5px;
}

.chairman-text{
    font-size:18px;
    line-height:30px;
    color:#444;
    text-align:justify;
}

.chairman-sign{
    font-size:20px;
    margin-top:25px;
    font-weight:700;
    color:#f37335;
    text-align:right;
}
.mc-section{
    padding:100px 20px;
    background:#f8f9fc;
    font-family:'Segoe UI', sans-serif;
}

.mc-title{
    text-align:center;
    color:#222;
    font-size:40px;
    font-weight:700;
    margin-bottom:70px;
}

.mc-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    max-width:1500px;
    margin:auto;
}

.mc-card{
    width:300px;
    border-radius:20px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s;
    cursor:pointer;
}

.mc-img-box{
    overflow:hidden;
    height:320px;
}

.mc-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.mc-content{
    padding:25px;
    text-align:center;
}

.mc-name{
    font-size:22px;
    margin-bottom:8px;
    color:#222;
}

.mc-role{
    color:#666;
    font-size:15px;
    margin:0;
}

/* =========================================
   PREMIUM ALTERNATING SPORTS SECTIONS
========================================= */

.sports-section {
    padding: 70px 0;
}

.sports-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
    position: relative;
}

.sports-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #ff6600;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.sports-text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.sports-ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* ---------- Slider Box ---------- */
.slider-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    height: 350px;
}

.slider-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to   { opacity: 1; transform: scale(1); }
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }
.card {
    background:#fff;
    padding:25px;
    border-radius:18px;
    border-left:6px solid #1d4e89;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}
.card:hover {
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}
.card h3 {
    font-size:22px;
    margin-bottom:12px;
    color:#1d3557;
    font-weight:700;
}
.icon { margin-bottom:15px; }

/* Arrow Bullet Style */
.point-list {
    list-style:none;
    padding-left:0;
}
.point-list li {
    position:relative;
    padding-left:22px;
    margin:6px 0;
    color:#333;
    font-size:16px;
}
.point-list li::before {
    content:"➤";
    position:absolute;
    left:0;
    top:0;
    color:#1d4e89;
    font-size:16px;
    font-weight:600;
}

/* Info Box */
.info-box {
    background:#fff;
    padding:30px;
    margin-top:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}
.info-box h3 {
    font-size:26px;
    color:#1d3557;
    margin-bottom:12px;
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Form Card Styling === */
.apply-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.apply-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* === Form Inputs === */
.apply-input {
    border-radius: 10px !important;
    transition: 0.3s ease;
    border: 1.5px solid #ddd !important;
}
.apply-input:hover {
    border-color: #f37335 !important;
}
.apply-input:focus {
    border-color: #f37335 !important;
    box-shadow: 0 0 8px rgba(243, 115, 53, 0.3) !important;
}

/* === Submit Button === */
.apply-btn {
    background: #f37335;
    border: none;
    padding: 12px 25px;
    font-size: 17px;
    border-radius: 10px;
    transition: 0.3s ease;
}
.apply-btn:hover {
    background: #ff7f50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 115, 53, 0.35);
}

.curriculum-section{
    background:#f7f9fc;
    padding:80px 5%;
    font-family:'Segoe UI', sans-serif;
}

.curriculum-container{
    max-width:1150px;
    margin:auto;
}

.curriculum-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#1d3557;
}

.curriculum-subtitle{
    text-align:center;
    color:#555;
    max-width:800px;
    margin:10px auto 50px;
    font-size:18px;
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(270px, 1fr));
    gap:30px;
}

.curriculum-footer-text{
    margin-top:20px;
    font-size:18px;
    color:#333;
}
.academic-calendar-section{
    padding:80px 20px;
    background:#f7f9fc;
    font-family:'Segoe UI', sans-serif;
}

.academic-calendar-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:40px;
}

.academic-calendar-container{
    max-width:1100px;
    margin:auto;
}

.calendar-month-title{
    margin-top:40px;
    font-size:28px;
    color:#0a3d62;
}

.calendar-table{
    width:100%;
    margin-top:10px;
    border-collapse:collapse;
    background:white;
    box-shadow:0 4px 16px rgba(0,0,0,0.06);
}

.calendar-table th,
.calendar-table td{
    color:#000 !important;
}

.calendar-table th{
    padding:12px;
    text-align:left;
    background:#eaf1ff;
    font-weight:600;
}

.calendar-table td{
    padding:12px;
    font-size:16px;
}

/* Equal Column Width */
.calendar-table th:first-child,
.calendar-table td:first-child{
    width:60%;
}

.calendar-table th:last-child,
.calendar-table td:last-child{
    width:40%;
}

/* MOBILE FIX */
@media (max-width:600px){

    .calendar-table th:first-child,
    .calendar-table td:first-child,
    .calendar-table th:last-child,
    .calendar-table td:last-child{
        width:auto;
        display:block;
        text-align:left;
    }

    .calendar-table tr{
        margin-bottom:10px;
        display:block;
        border-bottom:1px solid #eee;
    }

}
.admission-process-section{
    padding:70px 5%;
    background:#f7f9ff;
    font-family:'Segoe UI', sans-serif;
}

.admission-process-container{
    max-width:1100px;
    margin:auto;
}

.admission-header{
    text-align:center;
    margin-bottom:50px;
}

.admission-main-title{
    font-size:42px;
    font-weight:800;
    color:#1a237e;
}

.admission-subtitle{
    font-size:18px;
    color:#333;
    margin-top:10px;
}

.admission-content-box{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.admission-step-title{
    font-size:26px;
    color:#1a237e;
    margin-bottom:15px;
    margin-top:35px;
}

.admission-step-title:first-child{
    margin-top:0;
}

.admission-doc-title{
    font-size:22px;
    color:#303f9f;
    margin-top:25px;
}

.admission-text{
    line-height:1.7;
    color:#444;
}

.admission-list{
    line-height:1.8;
    color:#444;
    padding-left:18px;
}

.contact-title{
    margin-bottom:10px;
}
.age-text{
    line-height:1.7;
    margin-bottom:1rem;
}

.age-table{
    width:100%;
    border-collapse:collapse;
}

.age-table-head{
    background:#f1f1f1;
    font-weight:600;
}

.age-table th,
.age-table td{
    padding:10px;
}

.age-note{
    line-height:1.7;
    margin-top:1.5rem;
}
.fee-school-name{
    font-size:18px;
    color:#333;
}

.fee-table{
    width:100%;
    border-collapse:collapse;
}

.fee-table-head{
    background:#f1f1f1;
    font-weight:600;
}

.fee-table th,
.fee-table td{
    padding:10px;
}

.fee-total-row{
    font-weight:600;
    background:#fafafa;
}

/* OVERLAY SHOW */
.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.video-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.video-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-card {
    flex: 1 1 calc(33.33% - 20px);
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    position: relative;
    cursor: pointer;
}

.video-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
}

/* ===== POPUP ===== */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000; /* Increased to be above header */
}

.video-popup video {
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.mandatory-disclosure-section{
    padding:0px;
}

.section-title{
    margin-bottom:43px;
    font-size:40px;
    color:#403e3e;
    font-weight:400;
}

.disclosure-table{
    width:100%;
}
.map-frame{
    width:100%;
}

.map-iframe{
    width:500px;
    height:450px;
    border:0;
}

.comment-title{
    margin-bottom:20px;
}

.contact-input{
    width:100%;
}

.contact-textarea{
    width:100%;
    min-height:140px;
}

.contact-heading{
    margin-bottom:20px;
}

.contact-list{
    padding:0;
    margin:0;
    list-style:none;
}

.contact-item{
    margin-bottom:20px;
}

.contact-flex{
    display:flex;
    flex-wrap:wrap;
}

.contact-address{
    display:flex;
    padding:0 8px;
}

.email-icon{
    height:65px;
    width:65px;
}
.benefit-title{
    margin-bottom:20px;
}

.benefit-text{
    margin-bottom:25px;
    line-height:1.8;
}

.about-us-custom{
    padding:0;
}
.mc-card{
    transition:0.4s ease;
}

.mc-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.mc-img{
    transition:0.4s ease;
}

.mc-img:hover{
    transform:scale(1.07);
}
.curriculum-section{
    background:#f7f9fc;
    padding:80px 5%;
    font-family:'Segoe UI', sans-serif;
}

.curriculum-container{
    max-width:1150px;
    margin:auto;
}

.curriculum-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#1d3557;
}

.curriculum-subtitle{
    text-align:center;
    color:#555;
    max-width:800px;
    margin:10px auto 50px;
    font-size:18px;
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(270px, 1fr));
    gap:30px;
}

.curriculum-footer-text{
    margin-top:20px;
    font-size:18px;
    color:#333;
}
.map-frame{
    width:100%;
}

.map-iframe{
    width:500px;
    height:450px;
    border:0;
}

/* ===== GALLERY SLIDER ===== */

.gallery-slider{
    width:100%;
}

.gallery-slider .slider-item{
    padding:10px;
}

.gallery-slider .slider-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    display:block;
    box-shadow:0 8px 18px rgba(0,0,0,0.10);
    transition:.3s ease-in-out;
}

/* Slider Image Hover */
.gallery-slider .slider-item img:hover{
    transform:scale(1.05);
}


/* ===== SLICK SLIDER FIX ===== */

.slick-slide{
    float:left;
    height:auto !important;
}

.slick-slide > div{
    width:100%;
}
.slick-track{
    display:flex !important;
}

.slick-list{
    overflow:hidden;
}


/* ===== SLICK ARROWS ===== */

.slick-prev:before,
.slick-next:before{
    color:#444;
    font-size:30px;
}
@media(max-width:576px){

    .gallery-slider .slider-item img{
        height:220px;
    }

    .gallery-item img{
        height:220px;
    }

}

/* ===== SLICK DOTS ===== */

.slick-dots li button:before{
    font-size:12px;
}


/* ===== GRID GALLERY ===== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}


/* ===== RESPONSIVE GRID ===== */

@media (max-width:1024px){

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:480px){

    .gallery-grid{
        grid-template-columns:repeat(1,1fr);
    }

}


/* ===== GRID IMAGE CARD ===== */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:16px;
}


/* ===== GRID IMAGE ===== */

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}


/* ===== GRID IMAGE HOVER ===== */

.gallery-item:hover img{
    transform:scale(1.08);
}


/* ===== OVERLAY EFFECT ===== */

.gallery-item::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    transform:translate(-50%,-50%) scale(0);
    color:#fff;
    font-size:18px;
    font-weight:bold;
    background:rgba(0,0,0,0.6);
    padding:10px 18px;
    border-radius:30px;
    transition:0.4s;
    opacity:0;
     width:100%;
    height:100%;
}

/* Overlay Show on Hover */
.gallery-item:hover::after{
        opacity:1; 
    transform:translate(-50%,-50%) scale(1);
}
/* ===== FINAL DROPDOWN FIX ===== */

/* ===== HEADER FIX ===== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:99999;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* ===== NAVIGATION ===== */

.navigation-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ===== MENU ===== */

.main-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.main-menu li{
    position:relative;
}

.main-menu li a{
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
    padding:8px 0;
    display:block;
}

/* ===== DROPDOWN ===== */

.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:240px;
    display:none;
    padding:0;
    margin:0;
    list-style:none;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:99999;
}

.dropdown-menu-item:hover .submenu{
    display:block;
}

.submenu li a{
    padding:12px 18px;
    border-bottom:1px solid #eee;
}

.submenu li a:hover{
    background:#0d6efd;
    color:#fff;
}

/* ===== SOCIAL ICON ===== */

.social-links{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
}

.social-links a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
        font-size: 18px;

}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .main-menu{
        display:none;
    }

    .social-links{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .school-logo{
        height:45px;
    }

    .school-title{
        font-size:18px;
    }
}
/* Feature Box Basic Styling */
.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    
}

/* Zig-Zag Effect for the Right Side Columns */
@media (min-width: 992px) {
    /* Right column ke andar jo 2nd, 4th boxes hain unhe neeche shift karein */
    .feature-masonry .masonry-item:nth-child(even) {
        transform: translateY(30px);
    }
}

.feature-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Contacts Button Styling as per image_a288b8.png */
.btn-primary {
    background-color: #1e5b93;
    border: none;
    padding: 10px 25px;
}
/* ======= PAGE ANIMATION & DESIGN ======= */

.pager-section {
    position: relative;
    overflow: hidden;
}

.pager-content h2 {
    animation: fadeSlideDown 1s ease forwards;
}

@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Content Box Animation */
.content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Heading Style */
.acadmic-h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: titleGlow 1.2s ease;
}

@keyframes titleGlow {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

h4 {
    font-weight: 700;
    color: #333;
    border-left: 5px solid #ff6600;
    padding-left: 12px;
    margin-top: 30px;
    margin-bottom: 12px;
    animation: slideIn 0.8s ease;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* UL Animation */
.acadmic-ul li {
    list-style: none;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #fff7f0;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    display: flex;
    align-items: center;
    column-gap: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    opacity: 0;
    transform: translateX(-15px);
    animation: listFade 0.6s forwards;
}

.acadmic-ul li:nth-child(1) { animation-delay: 0.1s; }
.acadmic-ul li:nth-child(2) { animation-delay: 0.2s; }
.acadmic-ul li:nth-child(3) { animation-delay: 0.3s; }
.acadmic-ul li:nth-child(4) { animation-delay: 0.4s; }
.acadmic-ul li:nth-child(5) { animation-delay: 0.5s; }
.acadmic-ul li:nth-child(6) { animation-delay: 0.6s; }
.acadmic-ul li:nth-child(7) { animation-delay: 0.7s; }

@keyframes listFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.acadmic-ul li:hover {
    background: #ffe3cc;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.35);
}

.acadmic-ul i {
    color: #ff6600;
    font-size: 18px;
}

.sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #fff;
    transition: 0.3s;
    z-index: 1000;
}

/* IMPORTANT: fully hide */
.sidebar.hide {
    left: -250px !important;
}

/* content shift */
.content {
    margin-left: 250px;
    transition: 0.3s;
}

.content.full {
    margin-left: 0 !important;
}