/* =========================
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;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
}

/* =========================
ROOT COLORS
========================= */

:root{
    --primary:#0E6B3D;
    --primary-dark:#07552f;
    --secondary:#F4B400;
    --secondary-dark:#d79d00;
    --white:#ffffff;
    --light:#f5f7fa;
    --dark:#1f2937;
    --gray:#6b7280;
}

/* =========================
COMMON
========================= */

a{
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

img{
    max-width:100%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:var(--primary);
    font-weight:700;
}

.section-title p{
    color:#666;
}

/* =========================
TOP BAR
========================= */

/* =========================
TOP BAR
========================= */

.top-bar{
    background:var(--primary);
    color:#fff;
    padding:10px 0;
    font-size:14px;
    animation:topbarFade .8s ease;
}

.top-bar .container{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left{
    white-space:nowrap;
}

.top-left span{
    margin-right:15px;
}

.top-left i{
    color:var(--secondary);
    margin-right:5px;
}

.top-notice{
    flex:1;
    background:rgba(255,255,255,.12);
    border-radius:6px;
    padding:6px 12px;
    color:#fff;
    font-weight:600;
    overflow:hidden;
    animation:noticeGlow 2s infinite alternate;
}

.top-notice marquee{
    color:#fff;
}

.top-right{
    white-space:nowrap;
    font-weight:600;
}

/* =========================
ANIMATIONS
========================= */

@keyframes topbarFade{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes noticeGlow{
    from{
        box-shadow:0 0 5px rgba(244,180,0,.3);
    }
    to{
        box-shadow:0 0 15px rgba(244,180,0,.8);
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .top-bar .container{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .top-left{
        display:flex;
        flex-direction:column;
        gap:5px;
    }

    .top-left span{
        margin-right:0;
    }

    .top-notice{
        width:100%;
        font-size:13px;
    }

    .top-right{
        font-size:13px;
    }
}

/* =========================
HEADER
========================= */

/* =========================
   MAIN HEADER
========================= */

.main-header{
    background:#fff;
    padding:15px 0;
    border-top:4px solid #f4b400;
    border-bottom:1px solid #e5e5e5;
}

.main-header .container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* =========================
   LOGO
========================= */

.logo-box{
    flex:0 0 160px;
}

.logo-box img{
    width:150px;
    height:150px;
    object-fit:contain;
}

/* =========================
   SCHOOL DETAILS
========================= */

.school-details{
    flex:1;
    text-align:center;
}

.school-details h1{
    font-size:34px;
    font-weight:800;
    color:#0b7a3c;
    line-height:1.2;
    margin-bottom:10px;
    text-transform:uppercase;
}

.school-details h5{
    font-size:18px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.school-details p{
    font-size:16px;
    color:#666;
    margin-bottom:10px;
}

.motto{
    font-size:32px;
    font-weight:700;
    color:#f4b400;
}

/* =========================
   RIGHT SIDE BUTTONS
========================= */

.header-btn-group{
    width:240px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.header-btn-group a{
    display:block;
    text-decoration:none;
    text-align:center;
    padding:14px 15px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    transition:all .3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

/* Admission */

.btn-admission{
    background:#f4b400;
    color:#000 !important;
}

.btn-admission:hover{
    background:#e1a500;
    transform:translateY(-3px);
}

/* Circular */

.btn-circular{
    background:#198754;
    color:#fff !important;
}

.btn-circular:hover{
    background:#146c43;
    transform:translateY(-3px);
}

/* ERP */

.btn-erp{
    background:#0d6efd;
    color:#fff !important;
}

.btn-erp:hover{
    background:#0b5ed7;
    transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .main-header .container{
        flex-direction:column;
        text-align:center;
    }

    .logo-box{
        flex:auto;
    }

    .header-btn-group{
        width:100%;
        max-width:350px;
    }

    .school-details h1{
        font-size:26px;
    }

    .motto{
        font-size:24px;
    }
}


/* =========================
NAVBAR
========================= */

.custom-navbar{
    background:var(--primary);
    padding:0;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.custom-navbar .navbar-nav{
    margin:auto;
}

.custom-navbar .nav-link{
    color:#fff !important;
    padding:18px 16px !important;
    font-weight:600;
    transition:.3s;
}

.custom-navbar .nav-link:hover{
    background:var(--secondary);
    color:#000 !important;
}

.custom-navbar .nav-item{
    position:relative;
}

.custom-navbar .nav-item::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:3px;
    background:var(--secondary);
    transition:.4s;
}

.custom-navbar .nav-item:hover::after{
    width:100%;
}

/* =========================
DROPDOWN
========================= */

.dropdown-menu{
    border:none;
    border-radius:0;
    min-width:220px;
    border-top:4px solid var(--secondary);
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.dropdown-item{
    padding:12px 15px;
    font-weight:500;
}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================
SLIDER
========================= */

.carousel-item img{
    height:650px;
    object-fit:cover;
}

.carousel-caption{
    background:rgba(0,0,0,.5);
    padding:25px;
    border-radius:10px;
}

.carousel-caption h2{
    font-size:48px;
    font-weight:700;
}

.carousel-caption p{
    font-size:18px;
}

/* =========================
BUTTONS
========================= */

.theme-btn{
    background:var(--secondary);
    color:#000;
    padding:12px 28px;
    border-radius:5px;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================
SECTION
========================= */

section{
    padding:80px 0;
}

/* =========================
FOOTER
========================= */

.footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 20px;
}

.footer h4{
    margin-bottom:20px;
    color:var(--secondary);
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#fff;
}

.footer ul li a:hover{
    color:var(--secondary);
}

.footer-bottom{
    background:#07552f;
    padding:15px 0;
    text-align:center;
    color:#fff;
    margin-top:30px;
}

/* =========================
SCROLL TOP
========================= */

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:45px;
    height:45px;
    background:var(--secondary);
    color:#000;
    text-align:center;
    line-height:45px;
    border-radius:50%;
    z-index:999;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

.top-bar .container{
    flex-direction:column;
    text-align:center;
}

.main-header .container{
    flex-direction:column;
}

.logo-box img{
    width:120px;
    height:120px;
}

.school-details{
    margin-top:15px;
}

.school-details h1{
    font-size:24px;
}

.school-details h5{
    font-size:15px;
}

.motto{
    font-size:20px;
}

.header-btn{
    margin-top:15px;
}

.carousel-item img{
    height:350px;
}

.carousel-caption h2{
    font-size:24px;
}

}


/* =========================
HERO SLIDER
========================= */

.carousel-item{
    position:relative;
}

.carousel-item img{
    height:700px;
    object-fit:cover;
}

.carousel-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

.carousel-caption{
    z-index:2;
    bottom:50%;
    transform:translateY(50%);
}

.carousel-caption h1{
    color:#F4B400;
    font-size:30px;
    font-weight:600;
    margin-bottom:10px;
}

.carousel-caption h2{
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
    color:#fff;
}

.carousel-caption p{
    font-size:20px;
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
    color:#fff;
}

.slider-btn{
    background:#F4B400;
    color:#000;
    padding:14px 35px;
    border-radius:5px;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.slider-btn:hover{
    background:#0E6B3D;
    color:#fff;
}

.carousel-control-prev,
.carousel-control-next{
    width:5%;
}

@media(max-width:768px){

.carousel-item img{
    height:500px;
}

.carousel-caption h1{
    font-size:18px;
}

.carousel-caption h2{
    font-size:28px;
}

.carousel-caption p{
    font-size:14px;
}

}

/* =========================
WELCOME SECTION
========================= */

.welcome-section{
    padding:90px 0;
    background:#fff;
}

.welcome-image{
    position:relative;
}

.welcome-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    height: 500px;
}

.welcome-content{
    padding-left:25px;
}

.welcome-content .sub-title{
    display:inline-block;
    color:#F4B400;
    font-weight:700;
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.welcome-content h2{
    color:#0E6B3D;
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:15px;
}

.title-line{
    width:80px;
    height:4px;
    background:#F4B400;
    margin-bottom:25px;
}

.welcome-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.theme-btn{
    display:inline-block;
    background:#0E6B3D;
    color:#fff;
    padding:14px 30px;
    border-radius:5px;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:#F4B400;
    color:#000;
}

/* Mobile */

@media(max-width:991px){

.welcome-content{
    padding-left:0;
    margin-top:30px;
    text-align:center;
}

.title-line{
    margin:0 auto 25px;
}

.welcome-content h2{
    font-size:30px;
}

}
/* =========================
PRINCIPAL SECTION
========================= */

.principal-section{
    padding:90px 0;
    background:#f8f9fa;
}

.principal-image{
    text-align:center;
}

.principal-image img{
    width:100%;
    max-width:350px;
    border-radius:15px;
    border:6px solid #F4B400;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.principal-content{
    padding-left:20px;
}

.section-tag{
    display:inline-block;
    color:#F4B400;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.principal-content h2{
    color:#0E6B3D;
    font-size:40px;
    font-weight:700;
    margin-top:10px;
}

.title-line{
    width:80px;
    height:4px;
    background:#F4B400;
    margin:20px 0;
}

.principal-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.principal-content h5{
    margin-top:20px;
    color:#0E6B3D;
    font-weight:700;
}

.designation{
    color:#F4B400;
    font-weight:600;
}

@media(max-width:991px){

.principal-content{
    padding-left:0;
    text-align:center;
    margin-top:30px;
}

.title-line{
    margin:20px auto;
}

.principal-content h2{
    font-size:30px;
}

}

/* =========================
ABOUT SCHOOL
========================= */

.about-school{
    padding:90px 0;
    background:#fff;
}

.about-image img{
    width:100%;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.about-content{
    padding-left:20px;
}

.section-tag{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-content h2{
    color:#0E6B3D;
    font-size:40px;
    font-weight:700;
    margin-top:10px;
}

.title-line{
    width:80px;
    height:4px;
    background:#F4B400;
    margin:20px 0;
}

.about-content p{
    color:#555;
    line-height:1.9;
}

.vision-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    margin-bottom:20px;
    border-top:4px solid #F4B400;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.vision-card:hover{
    transform:translateY(-5px);
}

.vision-card i{
    font-size:35px;
    color:#0E6B3D;
    margin-bottom:15px;
}

.vision-card h5{
    color:#0E6B3D;
    font-weight:700;
}

.vision-card p{
    font-size:14px;
    margin-top:10px;
}

.theme-btn{
    display:inline-block;
    background:#0E6B3D;
    color:#fff;
    padding:14px 30px;
    border-radius:5px;
    margin-top:10px;
    transition:.3s;
}

.theme-btn:hover{
    background:#F4B400;
    color:#000;
}

/* Mobile */

@media(max-width:991px){

.about-content{
    padding-left:0;
    margin-top:30px;
    text-align:center;
}

.title-line{
    margin:20px auto;
}

.about-content h2{
    font-size:30px;
}

}

/* =========================
FACILITIES SECTION
========================= */

.facilities-section{
    padding:90px 0;
    background:#f8f9fa;
}

.section-heading span{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
}

.section-heading h2{
    color:#0E6B3D;
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    margin-bottom:50px;
}

.facility-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:12px;
    margin-bottom:30px;
    transition:.4s;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}

.facility-box:hover{
    transform:translateY(-8px);
    border-bottom:4px solid #F4B400;
}

.facility-box i{
    font-size:45px;
    color:#0E6B3D;
    margin-bottom:20px;
}

.facility-box h4{
    color:#0E6B3D;
    font-weight:700;
    margin-bottom:10px;
}

.facility-box p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:768px){

.section-heading h2{
    font-size:30px;
}

}

/* =========================
ACHIEVEMENTS SECTION
========================= */

.achievements-section{
    padding:90px 0;
    background:#0E6B3D;
    position:relative;
}

.achievements-section .section-heading span{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
}

.achievements-section .section-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.achievements-section .section-heading p{
    color:#e5e5e5;
    margin-bottom:50px;
}

.achievement-box{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:12px;
    transition:.4s;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.achievement-box:hover{
    transform:translateY(-8px);
}

.achievement-box i{
    font-size:50px;
    color:#F4B400;
    margin-bottom:15px;
}

.achievement-box h3{
    font-size:38px;
    font-weight:700;
    color:#0E6B3D;
    margin-bottom:10px;
}

.achievement-box p{
    color:#555;
    font-size:16px;
    margin:0;
}

@media(max-width:768px){

.achievements-section .section-heading h2{
    font-size:30px;
}

.achievement-box h3{
    font-size:30px;
}

}
/* =========================
ADMISSION SECTION
========================= */

.admission-section{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #0E6B3D,
        #07552f
    );
    position:relative;
}

.admission-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(images/pattern.png);
    opacity:.08;
}

.admission-content{
    position:relative;
    z-index:2;
}

.admission-content span{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.admission-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.admission-content p{
    color:#e9e9e9;
    line-height:1.9;
    margin:0;
}

.admission-btn{
    display:inline-block;
    background:#F4B400;
    color:#000;
    padding:16px 35px;
    border-radius:6px;
    font-weight:700;
    transition:.4s;
    position:relative;
    z-index:2;
}

.admission-btn:hover{
    background:#fff;
    color:#0E6B3D;
}

@media(max-width:991px){

.admission-section{
    text-align:center;
}

.admission-content h2{
    font-size:30px;
}

.admission-btn{
    margin-top:25px;
}

}

/* =========================
CONTACT SECTION
========================= */

.contact-section{
    padding:90px 0;
    background:#f8f9fa;
}

.contact-section .section-heading span{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
}

.contact-section .section-heading h2{
    color:#0E6B3D;
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.contact-section .section-heading p{
    color:#666;
    margin-bottom:50px;
}

.contact-info{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:60px;
    height:60px;
    background:#0E6B3D;
    color:#fff;
    text-align:center;
    line-height:60px;
    border-radius:50%;
    font-size:22px;
}

.info-box h5{
    color:#fff;
    margin-bottom:5px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    margin-bottom:20px;
    border-radius:6px;
}

.contact-form textarea.form-control{
    height:auto;
}

.contact-btn{
    background:#0E6B3D;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#F4B400;
    color:#000;
}

.map-section iframe{
    display:block;
}

/* Mobile */

@media(max-width:768px){

.contact-section .section-heading h2{
    font-size:30px;
}

.contact-info{
    margin-bottom:30px;
}

}

/* =========================
FOOTER
========================= */

.footer{
    background:#0E6B3D;
    padding:80px 0 50px;
    color:#fff;
}

.footer-logo{
    width:100px;
    margin-bottom:20px;
}

.footer-widget h4{
    color:#F4B400;
    margin-bottom:25px;
    font-weight:700;
    position:relative;
}

.footer-widget h4::after{
    content:'';
    width:50px;
    height:3px;
    background:#F4B400;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-widget p{
    line-height:1.9;
    color:#e5e5e5;
}

.footer-widget ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#e5e5e5;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#F4B400;
    padding-left:5px;
}

.contact-list li{
    display:flex;
    gap:10px;
    line-height:1.8;
}

.contact-list i{
    color:#F4B400;
    margin-top:5px;
}

/* =========================
COPYRIGHT
========================= */

.copyright{
    background:#07552f;
    color:#fff;
    padding:15px 0;
    font-size:14px;
}

.copyright strong{
    color:#F4B400;
}

/* Mobile */

@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-widget{
    margin-bottom:30px;
}

.footer-widget h4::after{
    left:50%;
    transform:translateX(-50%);
}

.contact-list li{
    justify-content:center;
}

.copyright{
    text-align:center;
}

}

/* =========================
GALLERY SECTION
========================= */

.gallery-section{
    padding:90px 0;
    background:#ffffff;
}

.gallery-section .section-heading span{
    color:#F4B400;
    font-weight:700;
    text-transform:uppercase;
}

.gallery-section .section-heading h2{
    color:#0E6B3D;
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.gallery-section .section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
}

.gallery-box{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.gallery-box img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-box:hover img{
    transform:scale(1.1);
}

.gallery-btn .theme-btn{
    background:#0E6B3D;
    color:#fff;
    padding:14px 35px;
    border-radius:5px;
    font-weight:600;
}

.gallery-btn .theme-btn:hover{
    background:#F4B400;
    color:#000;
}

@media(max-width:768px){

.gallery-section .section-heading h2{
    font-size:30px;
}

.gallery-box img{
    height:220px;
}

}



/* =========================
   VIDEO POPUP
========================= */

.video-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    backdrop-filter:blur(4px);
}

.popup-content{
    width:400px;
    height:450px;
    background:#ffffff;
    border-radius:15px;
    padding:15px;
    position:relative;
    text-align:center;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
    animation:popupZoom .4s ease;
}

@keyframes popupZoom{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.popup-content h3{
    font-size:22px;
    color:#0b7a3c;
    font-weight:700;
    margin-bottom:10px;
    padding-right:20px;
}

.popup-content video{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    background:#000;
}

.popup-btn{
    display:inline-block;
    margin-top:12px;
    background:#f4b400;
    color:#000;
    text-decoration:none;
    padding:12px 25px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.popup-btn:hover{
    background:#0b7a3c;
    color:#fff;
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    font-size:30px;
    color:#666;
    cursor:pointer;
    transition:.3s;
}

.close-popup:hover{
    color:red;
    transform:rotate(90deg);
}

/* Mobile */

@media(max-width:576px){

    .popup-content{
        width:95%;
        height:auto;
        padding:12px;
    }

    .popup-content h3{
        font-size:18px;
    }

    .popup-content video{
        height:250px;
    }

    .popup-btn{
        width:100%;
        padding:12px;
    }
}


.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-buttons a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
    animation:pulse 1.5s infinite;
}

.floating-whatsapp{
    background:#25D366;
}

.floating-call{
    background:#0d6efd;
}

.floating-buttons a:hover{
    transform:scale(1.1);
    color:#fff;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}


.notice-map-section{
    padding:70px 0;
    background:#f8f9fa;
}

.notice-box,
.map-box{
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.notice-box h3,
.map-box h3{
    color:#0b7a3c;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.notice-scroll{
    height:350px;
    overflow:hidden;
}

.notice-item{
    background:#f8f9fa;
    border-left:4px solid #f4b400;
    padding:12px 15px;
    margin-bottom:12px;
    border-radius:6px;
    font-weight:500;
    transition:.3s;
}

.notice-item:hover{
    background:#fff8e1;
}

.map-box iframe{
    border-radius:10px;
}


/* ===========================
   ABOUT PAGE BANNER
=========================== */
.page-banner{
    position: relative;
    height: 260px;
    background-image: url('../images/bg-img.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #001b44;
}

.page-banner img{
    width: 100%;
    height: 100%;
   object-fit: contain;
    object-position: center;
    display: block;
}

.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 61, 0.65);
    z-index: 1;
}

.banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.banner-content h1{
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-content p{
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.banner-content p a{
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
}

.banner-content p a:hover{
    color: #ffffff;
}

/* ===========================
   TABLET RESPONSIVE
=========================== */

@media (max-width: 991px){

    .page-banner{
        height: 280px;
    }

    .banner-content h1{
        font-size: 45px;
    }

    .banner-content p{
        font-size: 18px;
    }
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 767px){

    .page-banner{
        height: 220px;
    }

    .banner-content h1{
        font-size: 32px;
        margin-bottom: 5px;
    }

    .banner-content p{
        font-size: 14px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 480px){

    .page-banner{
        height: 180px;
    }

    .banner-content h1{
        font-size: 26px;
    }

    .banner-content p{
        font-size: 13px;
    }
}

.facility-details{
    padding:80px 0;
}

.facility-details img{
    width:100%;
    border-radius:10px;
}

.facility-content h2{
    font-size:36px;
    font-weight:700;
    color:#1b1b1b;
}

.facility-content p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}


.gallery-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    background:#fff;
    border-radius:15px;
    height:180px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    border:1px solid #eee;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
    background:#0d6efd;
}

.gallery-card:hover h5,
.gallery-card:hover .icon{
    color:#fff;
}

.gallery-card .icon{
    font-size:45px;
    margin-bottom:15px;
    transition:0.3s;
}

.gallery-card h5{
    color:#222;
    font-weight:600;
    margin:0;
    transition:0.3s;
}

.gallery-details-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    margin-bottom:50px;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.gallery-image-box{
    display:block;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
    transition:.4s;
}

.gallery-image-box img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-image-box:hover{
    transform:translateY(-5px);
}

.gallery-image-box:hover img{
    transform:scale(1.1);
}

.image-title{
    padding:15px;
    text-align:center;
    font-weight:600;
    color:#333;
}

@media(max-width:767px){

.gallery-image-box img{
    height:220px;
}

.section-title h2{
    font-size:30px;
}

}

.achievements-section{
    background:#f8f9fa;
}

.section-title{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.achievement-card{
    background:#fff;
    padding:40px 20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.achievement-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.achievement-card h3{
    font-size:42px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:10px;
}

.achievement-card h5{
    font-size:18px;
    font-weight:600;
    color:#333;
    margin:0;
}

@media(max-width:768px){
    .section-title{
        font-size:30px;
    }

    .achievement-card h3{
        font-size:34px;
    }
}

.notice-section{
    padding:80px 0;
    background:#f5f7fa;
}

.notice-board{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    max-width:900px;
    margin:auto;
}

.notice-header{
    background:linear-gradient(135deg,#0b3d91,#0d6efd);
    padding:18px 25px;
}

.notice-header h3{
    color:#fff;
    margin:0;
    font-size:28px;
    font-weight:700;
}

.notice-scroll{
    height:400px;
    overflow:hidden;
    padding:20px;
}

.notice-item{
    background:#fff;
    border-left:5px solid #ffc107;
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

.notice-item:hover{
    transform:translateX(8px);
    background:#f8fbff;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.notice-item a{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    display:block;
}

.notice-item a:hover{
    color:#0d6efd;
}

.notice-item::before{
    content:"📢";
    margin-right:10px;
    font-size:18px;
}

.notice-date{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:8px;
}

.notice-scroll marquee{
    height:100%;
}

@media(max-width:768px){

    .notice-section{
        padding:50px 0;
    }

    .notice-header h3{
        font-size:22px;
    }

    .notice-scroll{
        height:300px;
        padding:15px;
    }

    .notice-item{
        padding:15px;
    }

    .notice-item a{
        font-size:16px;
    }
}

.tc-verification-section{
    background:#f5f7fa;
    padding:80px 0;
}

.verification-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.verification-card h2{
    font-size:48px;
    font-weight:700;
    color:#0d4d8b;
    margin-bottom:15px;
}

.verification-card p{
    color:#666;
    font-size:18px;
    margin-bottom:30px;
}

.form-label{
    font-weight:600;
    margin-bottom:10px;
    color:#222;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    font-size:16px;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

.verify-btn{
    background:#0d4d8b;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.verify-btn:hover{
    background:#0b3d72;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .verification-card{
        padding:30px 20px;
    }

    .verification-card h2{
        font-size:32px;
    }

    .verification-card p{
        font-size:15px;
    }

    .verify-btn{
        width:100%;
    }
}

.contact-section{
    background:#f8f9fa;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0d4d8b;
}

.contact-info{
    background:#0d4d8b;
    color:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.contact-info h3{
    margin-bottom:30px;
    font-weight:700;
}

.info-box{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.info-box span{
    font-size:28px;
}

.info-box h6{
    margin-bottom:5px;
    font-weight:600;
}

.info-box p{
    margin:0;
    color:#eaeaea;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

.contact-btn{
    background:#0d4d8b;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#08386a;
}

@media(max-width:768px){

    .section-title{
        font-size:30px;
    }

    .contact-info,
    .contact-form-box{
        padding:25px;
    }

}
.map-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}


.admission-form-section{
    background:#f5f7fa;
    padding:60px 15px;
}

.form-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.form-box h2{
    text-align:center;
    margin-bottom:30px;
    color:#0d4d8b;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    flex:1;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.form-group textarea{
    resize:none;
}

.full-width{
    margin-bottom:20px;
}

.submit-btn{
    background:#0d4d8b;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.submit-btn:hover{
    background:#08386a;
}

/* Mobile Responsive */

@media(max-width:768px){

    .form-row{
        flex-direction:column;
        gap:15px;
    }

    .form-box{
        padding:20px;
    }

    .submit-btn{
        width:100%;
    }

}
