/********** Template CSS **********/
/* Smaller Hero Banner */

.food-banner{

    height:220px;

    background:
    linear-gradient(
    rgba(7,29,61,.85),
    rgba(7,29,61,.85)
    ),
    url("img/food-banner.jpg");

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

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

}


.food-banner h1{

    color:#f4c542;
    font-size:38px;
    font-weight:800;
    margin-bottom:8px;

}


.food-banner p{

    color:white;
    font-size:16px;
    margin:0;

}

/* Navbar */

.premium-navbar{

background:
linear-gradient(
135deg,
rgba(4,22,50,.96),
rgba(8,55,105,.96)
);

backdrop-filter:blur(15px);

padding:15px 0;

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

}


/* Logo */

.logo-box{
    width:60px;
    height:60px;
}


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



/* School Name */


.school-title{
    margin-left:35px;
 margin-top:18px;
}

.school-title h3{

    color:white;
    font-family:'Montserrat', sans-serif;
    font-size:18px;
    font-weight:700;
    letter-spacing:0.8px;
    margin:0;
    text-transform:uppercase;


}




.school-title p{

    color:#f4c542;
    font-family:'Montserrat', sans-serif;
    font-size:9px;
    font-weight:500;
    letter-spacing:1.2px;
    margin-top:1px;
    text-transform:uppercase;

}



/* Menu */


.nav-link{

color:white!important;

font-size:16px;

font-weight:600;

padding:15px 18px!important;

position:relative;

}



.nav-link:before{

content:"";

position:absolute;

bottom:5px;

left:50%;

width:0;

height:3px;

background:#f4c542;

transition:.4s;

transform:translateX(-50%);

}


.nav-link:hover:before,
.nav-link.active:before{

width:70%;

}



.nav-link:hover{

color:#f4c542!important;

}




/* Dropdown */


.dropdown-menu{

border:none;

border-radius:15px;

padding:12px;

margin-top:15px;

box-shadow:
0 15px 40px rgba(0,0,0,.3);

animation:dropdown .3s;

}


@keyframes dropdown{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}



.dropdown-item{

padding:12px 20px;

border-radius:8px;

font-weight:600;

}



.dropdown-item:hover{

background:#082f5c;

color:white;

}



/* Apply Button */


.apply-btn{

background:
linear-gradient(45deg,#f4c542,#ffd966);

color:#071d3d;

padding:12px 28px;

border-radius:50px;

font-weight:800;

margin-left:15px;

display:inline-block;

transition:.4s;

box-shadow:

0 5px 20px rgba(244,197,66,.5);

}



.apply-btn:hover{

background:white;

transform:translateY(-5px);

}



/* Mobile */


@media(max-width:991px){

.school-title h3{

font-size:18px;

}


.navbar-nav{

background:#071d3d;

padding:20px;

border-radius:20px;

margin-top:15px;

}


.apply-btn{

margin:10px 0;

}

}
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.body {
background-color: #2244e1;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.gjs-food-banner{

    background:
    linear-gradient(
        rgba(7,29,61,0.82),
        rgba(7,29,61,0.82)
    ),
    url("img/food.png");

    background-size:cover;

    background-position:center;

    padding:45px 20px;

}

/* ==================================
   PREMIUM NAVY BLUE FOOTER
================================== */


.footer-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer{

    
    background: linear-gradient(
        135deg,
        rgba(4,22,50,.96),
        rgba(8,55,105,.96)
    ) !important;

    color:#ffffff;
}

.footer h3{
    color:#ffffff;
}

.footer p,
.footer a,
.footer .btn-link{
    color:#dce8ff !important;
}

.footer .btn-link:hover{
    color:#f4c542 !important;
    padding-left:8px;
}

.footer .btn.btn-social{
    border:1px solid rgba(255,255,255,.5);
    color:#fff;
    transition:.3s;
}

.footer .btn.btn-social:hover{
    background:#f4c542;
    border-color:#f4c542;
    color:#082f5c;
}

.footer .copyright{
    border-top:1px solid rgba(255,255,255,.15);
    color:#dce8ff;
}

.footer .copyright a{
    color:#f4c542;
}


.notice{

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

padding:22px;

border-left:5px solid #0d6efd;

background:#fff;

margin-bottom:12px;

transition:.3s;

}

.notice:hover{

background:#eef5ff;

transform:translateX(8px);

}

.new{

display:flex;

align-items:center;

font-weight:700;

color:#ff9800;

animation:blink 1s infinite;

}

@keyframes blink{

50%{
opacity:.5;
}

}

.notice h3{

font-size:20px;

margin-bottom:6px;

color:#0d47a1;

}

.notice a{

background:#0d6efd;

color:#fff;

padding:10px 22px;

border-radius:30px;

text-decoration:none;

}


.notice{
    display:inline-block;
}

.new{
    display:flex;
    align-items:center;
    gap:12px;
    background:#ffffff;
    padding:12px 20px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    font-size:17px;
    font-weight:600;
    color:#0A2E5D;
}

.notice-text{
    color:#0A2E5D;
}

.new-badge{
    background:linear-gradient(135deg,#ff3b30,#d90429);
    color:#fff;
    padding:5px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    box-shadow:0 5px 15px rgba(255,0,0,.35);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{

0%{
    transform:scale(1);
}

50%{
    transform:scale(1.12);
}

100%{
    transform:scale(1);
}

}


/* ===========================
      Admission Notice
=========================== */

.hero-notice{
    position:absolute;
    top:60px;
    left:3%;
    z-index:20;

    animation:fadeNotice 3s infinite;
}

/* First Line */

.hero-notice > .notice-text{
    display:block;
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    text-shadow:0 3px 10px rgba(0,0,0,.7);
}

/* Second Line */

.event-line{
    display:flex;
    align-items:center;
    gap:12px;
}

.star{
    color:#FFD700;
    font-size:15px;
    animation:twinkle 1.5s infinite;
}

.event-line .notice-text{
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-shadow:0 3px 10px rgba(0,0,0,.7);
}

.new-tag{
    color:#ff3b3b;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    animation:blink 1s infinite;
}



@media (max-width:768px){

    .hero-notice{
        left:15px;
        top:70px;
    }

    .hero-notice > .notice-text{
        font-size:18px;
    }

    .event-line .notice-text{
        font-size:16px;
    }

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

}

/* =========================== HERO SECTION =========================== */ .hero-banner{ position:relative; width:100%; height:90vh; overflow:hidden; } .hero-banner img{ width:100%; height:80%; object-fit:cover; display:block; }






/*==========================
CONTACT HERO
==========================*/





.hero{
    height:400px;
    width: 100%;

    background-image: url("../img/sgate1.png");

    background-size: cover;
     background-position: center top;
    
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    color: #fff;
}





.hero h1{

    font-size:72px;

    font-weight:700;

}

.hero p{

    font-size:28px;

    line-height:1.7;

}

@media(max-width:768px){

.hero{

height:380px;

}

.hero h1{

font-size:45px;

}

.hero p{

font-size:18px;

}

}



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

.cards{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.card{

    border:none;

    border-radius:18px;

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

    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

}

.icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0A2E5D;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.formbox{

    margin:50px auto;

    background:#fff;

    border-radius:20px;

    padding:40px;

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

}

.formbox h2{

    color:#0A2E5D;

    font-weight:700;

}

.form-control{

    height:55px;

    border-radius:12px;

}

textarea.form-control{

    height:auto;

}

.btn-school{

    background:#0A2E5D;

    color:#fff;

    padding:12px 35px;

    border-radius:30px;

    font-weight:600;

}

.btn-school:hover{

    background:#F4C542;

    color:#0A2E5D;

}

.illus{

    font-size:120px;

    color:#d8e8ff;

    text-align:center;

    margin-top:40px;

}

@media(max-width:768px){

.cards{

margin-top:30px;

}

.formbox{

padding:25px;

}

.illus{

display:none;

}

}

/* ===========================
   Staff 
=========================== */

.staff-hero{

    position:relative;

    width:100%;

    height:130px;

   background-image:url("../img/staff.png");   /*  Your Image */





    background-size:100% 100%;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

/* Dark overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,18,55,.18);

}

/* Content */

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.hero-content h1{

    font-family:Georgia,serif;

    font-size:70px;

    font-weight:700;

    margin-bottom:20px;

    text-shadow:0 3px 10px rgba(0,0,0,.25);

}

.hero-content p{

    font-size:26px;

    font-weight:400;

    letter-spacing:.5px;

    color:#fff;

}

/* Decorative Line */

.hero-divider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:20px;

}

.hero-divider span{

    width:120px;

    height:3px;

    background:#F6C343;

    border-radius:20px;

}

.hero-divider i{

    color:#F6C343;

    font-size:26px;

}


/* Responsive */

@media(max-width:992px){

.staff-hero{

    height:150px;

}

.hero-content h1{

    font-size:36px;

}

.hero-content p{

    font-size:15px;

}

.hero-divider span{

    width:70px;

}

}

@media(max-width:576px){

.staff-hero{

    height:150px;

}

.hero-content h1{

    font-size:36px;

}

.hero-content p{

    font-size:16px;

}

.hero-divider span{

    width:45px;

}

.hero-divider i{

    font-size:18px;

}

}







/*======================================
        STAFF SECTION
======================================*/

.staff-section{
    padding:80px 0;
    background:#f8f9fc;
    position:relative;
    overflow:hidden;
}

.staff-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left,#ffffff 0%,transparent 45%),
    radial-gradient(circle at bottom right,#eef3ff 0%,transparent 45%);
    opacity:.9;
}

/*=========================
        Heading
==========================*/

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
    z-index:2;
}

.section-title span{
    width:60px;
    height:2px;
    background:#d8a629;
}

.section-title h2{
    margin:0;
    color:#0d2f73;
    font-size:46px;
    font-weight:700;
    font-family:Georgia,serif;
}

.section-subtitle{
    max-width:760px;
    margin:18px auto 45px;
    text-align:center;
    color:#666;
    font-size:18px;
    line-height:32px;
    position:relative;
    z-index:2;
}

/*=========================
        Menu
==========================*/

.staff-menu{

    display:grid;

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

    gap:8px;

    margin-bottom:45px;
    margin-left: 1px;
    margin-right: 1px;

    position:relative;
    z-index:2;

}

.staff-menu button{

    height:62px;

    border:none;

   background:#fff; 

    border-radius:8px;

    color:#12306b; 

    font-size:15px;
padding: 0 8px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:5px;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    transition:.35s;

}

.staff-menu button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 28px rgba(0,0,0,.12);

}

.staff-menu button.active{

    background:#0a4db7; 

    color:#fff; 



}

.staff-menu button i{

    font-size:18px;

}

.staff-menu button.active i{

   color:#ffc93c; 
/* background: linear-gradient(135deg, #FFD54F, #FF9800);
color: #fff; */

}

/*=========================
        Cards
==========================*/

.staff-grid{

    display:grid;

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

    gap:28px;

    position:relative;
    z-index:2;

}

.staff-card{

    background:#fff;

    border-radius:16px;

    text-align:center;

    padding:40px 20px;

    border:1px solid #ececec;

    border-bottom:4px solid #0a4db7;

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

    transition:.35s;

}

.staff-card:hover{

    transform:translateY(-8px);

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

}

.staff-card h3{

    margin:0;

    font-size:22px;

    color:#102d73;

    font-weight:700;

}

.gold-line{

    width:42px;

    height:3px;

    background:#d8a629;

    margin:16px auto;

    border-radius:20px;

}

.staff-card p{

    margin:0;

    color:#6c6c6c;

    font-size:17px;

    letter-spacing:.6px;

    text-transform:uppercase;

}

/*=========================
        Responsive
==========================*/

@media(max-width:1200px){

.staff-menu{

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

}

.staff-grid{

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

}

}

@media(max-width:992px){

.section-title h2{

font-size:38px;

}

.section-subtitle{

font-size:17px;

}

.staff-grid{

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

}

.staff-menu{

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

}

}

@media(max-width:576px){

.staff-grid{

grid-template-columns:1fr;

}

.staff-menu{

grid-template-columns:1fr;

}

.section-title{

flex-direction:column;

gap:10px;

}

.section-title span{

display:none;

}

.section-title h2{

font-size:30px;

}

.section-subtitle{

font-size:16px;

line-height:28px;

}

.staff-card{

padding:30px 15px;

}

.staff-card h3{

font-size:20px;

}

.staff-card p{

font-size:15px;

}

}






/*=========================
        Final
==========================*/

.staff-menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:40px 0;
}

.staff-menu .tab-btn{
    text-decoration:none;
    padding:14px 25px;
    border-radius:50px;
    background:#fff;
    color:#0A2E5D;
    font-weight:600;
    border:1px solid #dce4ef;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.staff-menu .tab-btn:hover{
    background:#0A2E5D;
    color:#fff;
    transform:translateY(-3px);
}

.staff-menu .active{
    background:#0A2E5D;
    color:#fff;
    border-color:#0A2E5D;
}

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}



/* ==========================================
   GJS CONTACT PAGE CSS
   No conflicts with other pages
==========================================*/

.gjs-contact-hero{
    position:relative;
    padding:120px 20px;
    text-align:center;
    overflow:hidden;
    background:linear-gradient(135deg,#0a3d91,#1459c8,#1f7ae0);
}

.gjs-contact-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
}

.gjs-contact-hero::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:-120px;
    bottom:-150px;
}

.gjs-contact-hero .container{
    position:relative;
    z-index:2;
}

.gjs-contact-hero h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
}

.gjs-contact-hero p{
    color:#eef5ff;
    font-size:20px;
}

/* Section */

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

.gjs-contact-title{
    text-align:center;
    margin-bottom:60px;
}

.gjs-contact-title h2{
    font-size:38px;
    color:#0d47a1;
    font-weight:700;
}

.gjs-contact-title p{
    color:#777;
}

/* Cards */

.gjs-contact-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.gjs-contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(13,71,161,.15);
}

.gjs-contact-icon{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#0d47a1,#1976d2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.gjs-contact-card h4{
    color:#0d47a1;
    margin-bottom:18px;
    font-size:24px;
}

.gjs-contact-card p{
    color:#555;
    line-height:1.8;
}

/* Appointment */

.gjs-contact-appointment{
    padding:90px 0;
    background:linear-gradient(135deg,#0d47a1,#1565c0);
}

.gjs-contact-appointment h2{
    color:#fff;
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.gjs-contact-app-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:25px;
    color:#fff;
    height:100%;
    transition:.4s;
}

.gjs-contact-app-box:hover{
    transform:translateY(-8px);
}

.gjs-contact-app-box i{
    font-size:48px;
    margin-bottom:20px;
    display:block;
}

.gjs-contact-app-box h4{
    margin-bottom:20px;
}

/* Office Hours */

.gjs-contact-table-box{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.gjs-contact-table-box .table thead{
    background:#0d47a1;
    color:#fff;
}

.gjs-contact-table-box .table td,
.gjs-contact-table-box .table th{
    padding:18px;
}

/* Notice */

.gjs-contact-note{
    margin-top:50px;
    background:#fff8e8;
    border-left:6px solid #f59e0b;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.gjs-contact-note h5{
    color:#d97706;
    font-weight:700;
}

.gjs-contact-note p{
    color:#555;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

.gjs-contact-hero{
    padding:90px 20px;
}

.gjs-contact-hero h1{
    font-size:36px;
}

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

.gjs-contact-card{
    margin-bottom:25px;
}

.gjs-contact-app-box{
    margin-bottom:25px;
}

}

/*====================================================
        GOLDEN JUBILEE SCHOOL
     SCHOOL MANAGEMENT COMMITTEE
=====================================================*/

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

:root{

--primary:#0B4DB8;
--primary-dark:#082D73;
--gold:#F5B400;
--gold-light:#FFD95A;
--white:#ffffff;
--light:#f5f8fd;
--text:#444;
--shadow:0 15px 45px rgba(0,0,0,.10);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;
background:#f4f7fc;
color:var(--text);
overflow-x:hidden;

}

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

.management-hero{

position:relative;
padding:120px 20px 170px;
text-align:center;
background:
linear-gradient(rgba(8,45,115,.82),rgba(11,77,184,.82)),
url("../img/school-building.jpg");

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

}

.hero-overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:

radial-gradient(circle at top left,
rgba(255,255,255,.10),
transparent 45%),

radial-gradient(circle at bottom right,
rgba(255,255,255,.08),
transparent 45%);

}

.management-hero .container{

position:relative;
z-index:5;

}

.management-logo{

width:95px;
height:95px;
border-radius:50%;
margin:auto;
margin-bottom:25px;

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

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

backdrop-filter:blur(8px);

border:2px solid rgba(255,255,255,.2);

}

.management-logo i{

font-size:42px;
color:#FFD54F;

}

.management-hero h5{

color:#FFD54F;
letter-spacing:4px;
font-size:15px;
font-weight:600;
margin-bottom:15px;

}

.management-hero h1{

font-size:60px;
font-weight:800;
color:#fff;
margin-bottom:18px;

}

.management-hero p{

font-size:22px;
color:#edf3ff;
font-weight:300;

}

.management-hero p span{

color:#FFD54F;
padding:0 12px;

}

/*==========================
      GOLD CURVE
===========================*/

.gold-wave{

position:absolute;
left:0;
bottom:-1px;
width:100%;
height:85px;

background:linear-gradient(90deg,#F7C948,#FFD95A);

clip-path:ellipse(75% 100% at 50% 100%);

}

/*==========================
   CHAIRPERSON
===========================*/

.chairperson-section{

margin-top:-80px;
position:relative;
z-index:10;

}

.chairperson-card{

background:#fff;
border-radius:30px;
padding:45px;

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

box-shadow:var(--shadow);

transition:.35s;

}

.chairperson-card:hover{

transform:translateY(-8px);

}




.chairperson-icon{

width:170px;
height:170px;

border-radius:50%;

background:linear-gradient(135deg,#F7C948,#FFD95A);

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

flex-shrink:0;

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

}

.chairperson-icon i{

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

}

.chairperson-content span{

display:inline-block;

padding:8px 22px;

border-radius:30px;

background:#0B4DB8;

color:#fff;

font-size:13px;

letter-spacing:1px;

margin-bottom:20px;

}

.chairperson-content h2{

font-size:42px;
color:#082D73;
font-weight:700;

margin-bottom:18px;

}

.gold-divider{

width:120px;
height:4px;
border-radius:10px;

background:linear-gradient(90deg,#F5B400,#FFD95A);

}

/*==========================
   EXECUTIVE SECTION
===========================*/

.executive-section{

padding:70px 0;

}

.executive-grid{

display:grid;

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

gap:30px;

}

.executive-card{

background:#fff;

border-radius:25px;

padding:35px;

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

position:relative;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

overflow:hidden;

}

.executive-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:5px;

background:linear-gradient(90deg,#F5B400,#FFD95A);

}

.executive-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.executive-icon{

width:75px;
height:75px;

border-radius:50%;

background:linear-gradient(135deg,#082D73,#1565C0);

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

color:#fff;

font-size:30px;

flex-shrink:0;

}

.executive-card small{

display:block;

font-size:13px;

letter-spacing:1px;

color:#888;

margin-bottom:8px;

}

.executive-card h3{

font-size:23px;

font-weight:700;

color:#082D73;

margin:0;

}

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

@media(max-width:991px){

.management-hero h1{

font-size:42px;

}

.executive-grid{

grid-template-columns:1fr;

}

.chairperson-card{

flex-direction:column;
text-align:center;

}

}

@media(max-width:576px){

.management-hero{

padding:90px 20px 140px;

}

.management-hero h1{

font-size:30px;

}

.management-hero p{

font-size:16px;

}

.chairperson-icon{

width:130px;
height:130px;

}

.chairperson-icon i{

font-size:50px;

}

.chairperson-content h2{

font-size:28px;

}

}


/*==========================
 staff image 
===========================*/

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

.staffimg{
    position:relative;
    width:100%;
    height:65vh;
background-position: center 20%;

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

    background:
        linear-gradient(rgba(10,46,93,.65), rgba(10,46,93,.75)),
        url("../img/staff.png");   /* if CSS is in css/style.css */

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

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

.staffimg h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
}

.staffimg p{
    color:#fff;
    font-size:28px;
}








.gold-line{
    width:80px;
    height:4px;
    background:#F4C542;
    border-radius:50px;
    margin:15px auto;
}






























/* =========================================================
   FOUNDER'S DAY PREMIUM POPUP
   GOLDEN JUBILEE SCHOOL
========================================================= */

.disclaimer-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 20, 45, 0.78);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 15px;

    z-index: 999999;

    backdrop-filter: blur(6px);

    -webkit-backdrop-filter: blur(6px);

    overflow-y: auto;
}


/* =========================================================
   MAIN POPUP BOX
========================================================= */

.disclaimer-box {

    position: relative;

    width: 80%;

    max-width: 560px;

    max-height: 444vh;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border-top: 5px solid #F4C542;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .40),
        0 8px 25px rgba(0, 0, 0, .20);

    animation:
        founderPopup .5s cubic-bezier(.2,.8,.2,1);

    font-family: 'Poppins', sans-serif;

    overflow-y: auto;
}


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

.disclaimer-logo {

    width: 70px;

    height: 70px;

    margin: 18px auto 7px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #ffffff;

    border: 3px solid #F4C542;

    box-shadow:
        0 0 0 3px #0A2E5D,
        0 7px 18px rgba(0,0,0,.15);

    overflow: hidden;
}


.disclaimer-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 6px;
}


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

.close-disclaimer {

    position: absolute;

    top: 10px;

    right: 15px;

    width: 38px;

    height: 38px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    font-weight: 300;

    line-height: 1;

    color: #0A2E5D;

    cursor: pointer;

    z-index: 20;

    transition:
        color .25s ease,
        transform .25s ease;
}


.close-disclaimer:hover {

    color: #d32f2f;

    transform:
        rotate(90deg)
        scale(1.08);
}


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

.disclaimer-box h2 {

    margin: 5px 45px 4px;

    text-align: center;

    font-family: 'Poppins', sans-serif;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: .3px;

    color: #0A3D91;

    text-transform: uppercase;
}


/* =========================================================
   TAGLINE
========================================================= */

.founder-tagline {

    text-align: center;

    color: #B8860B;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .3px;

    padding: 0 25px;

    line-height: 1.5;
}


.founder-tagline span {

    color: #F4C542;

    margin: 0 5px;

    font-weight: 900;
}


/* =========================================================
   FOUNDER MESSAGE
========================================================= */

.founder-message {

    max-width: 650px;

    margin: 14px auto 12px;

    padding: 0 30px;

    text-align: center;

    color: #555;

    font-size: 13px;

    line-height: 1.55;
}


.founder-message strong {

    display: inline;

    color: #0A2E5D;

    font-weight: 800;
}


/* =========================================================
   FOUNDER HIGHLIGHT
========================================================= */

.founder-highlight {

    width: calc(100% - 70px);

    max-width: 600px;

    margin: 10px auto 15px;

    padding: 10px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    background:
        linear-gradient(
            135deg,
            #0A2E5D,
            #123F78
        );

    border-radius: 10px;

    border: 2px solid #F4C542;

    box-shadow:
        0 7px 20px rgba(10,46,93,.18);
}


/* FOUNDER ICON */

.founder-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #F4C542;

    color: #0A2E5D;

    font-size: 19px;

    font-weight: 900;
}


/* FOUNDER TEXT */

.founder-text {

    text-align: left;
}


.founder-label {

    color: #F4C542;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 2px;
}


.founder-name {

    color: #ffffff;

    font-size: 13px;

    line-height: 1.4;
}


.founder-name strong {

    color: #F4C542;

}


/* =========================================================
   INFORMATION BOX
========================================================= */

.founder-info {

    width: calc(100% - 70px);

    max-width: 600px;

    margin: 0 auto 15px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border: 1px solid #e1e1e1;

    border-radius: 10px;

    overflow: hidden;

    background: #fafafa;
}


.founder-info-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;
}


.founder-info-item:first-child {

    border-right: 1px solid #e1e1e1;
}


.info-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: #0A2E5D;

    color: #F4C542;

    font-size: 15px;
}


.founder-info-item span {

    display: block;

    color: #777;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .6px;
}


.founder-info-item strong {

    display: block;

    color: #0A2E5D;

    font-size: 11px;

    margin-top: 1px;
}


/* =========================================================
   OFFICIAL MESSAGE
========================================================= */

.official-message {

    max-width: 620px;

    margin: 0 auto 15px;

    padding: 0 25px;

    text-align: center;

    color: #666;

    font-size: 11px;

    line-height: 1.5;
}


.message-icon {

    color: #F4C542;

    margin-right: 5px;

}


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

.advisory-footer {

    width: 100%;

    min-height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background:
        linear-gradient(
            90deg,
            #0A2E5D,
            #123F78,
            #0A2E5D
        );

    color: #F4C542;

    text-align: center;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .6px;

}


.welcome-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 20px auto;
    max-width: 520px;
    padding: 0 35px;



}

.welcome-text strong {
    color: #0A2E5D;
    font-weight: 700;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes founderPopup {

    0% {

        opacity: 0;

        transform:
            translateY(-25px)
            scale(.96);

    }

    100% {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


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

@media (max-width: 768px) {

    .disclaimer-overlay {

        padding: 10px;

    }


    .disclaimer-box {

        max-width: 95%;

        max-height: 96vh;

        border-radius: 15px;

    }


    .disclaimer-logo {

        width: 58px;

        height: 58px;

        margin-top: 18px;

    }


    .disclaimer-box h2 {

        font-size: 20px;

        margin-left: 40px;

        margin-right: 40px;

    }


    .founder-tagline {

        font-size: 10px;

        padding: 0 15px;

    }


    .founder-tagline span {

        margin: 0 2px;

    }


    .founder-message {

        font-size: 11px;

        padding: 0 20px;

        margin-top: 10px;

    }


    .founder-highlight {

        width: calc(100% - 35px);

        padding: 9px 12px;

    }


    .founder-info {

        width: calc(100% - 35px);

        grid-template-columns: 1fr;

    }


    .founder-info-item:first-child {

        border-right: none;

        border-bottom: 1px solid #e1e1e1;

    }


    .official-message {

        font-size: 10px;

        padding: 0 15px;

    }


    .advisory-footer {

        font-size: 8px;

        line-height: 1.4;

    }


    .close-disclaimer {

        top: 7px;

        right: 8px;

        font-size: 30px;

    }

}









/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 420px) {

    .disclaimer-box h2 {
        font-size: 18px;
    }

    .disclaimer-logo {
        width: 58px;
        height: 58px;
    }

    .admission-line {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

}





.avatar-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;

    /* Dark Blue Outer + Light Blue Inner Border */
    border: 3px solid #0A2E5D;
    box-shadow:
        0 0 0 2px #D9ECFF,
        0 0 0 5px #0A2E5D,
        0 6px 18px rgba(10, 46, 93, 0.35);
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}