html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial, sans-serif;
}


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

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

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

    padding:14px 6%;

    background:rgba(88,20,220,.92);
    backdrop-filter:blur(12px);

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

    transition:.35s;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    background:white;
    padding:4px;
    transition:.3s;
}

.logo img:hover{
    transform:rotate(8deg) scale(1.08);
}

.logo-text h2{
    color:#fff;
    font-size:31px;
    margin:0;
    line-height:1.1;
}

.logo-text p{
    color:#ddd;
    font-size:14px;
    margin-top:4px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:600;
    font-size:17px;
    transition:.3s;
}

.nav-links a:hover{
    color:#FFD54F;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#FFD54F;

    border-radius:20px;

    transition:.35s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-links a.active{
    color:#FFD54F;
}

.menu-toggle{
    display:none;
    color:white;
    font-size:34px;
    cursor:pointer;
}

/* MOBILE */

@media (max-width:900px){

.header{

    padding:12px 15px;

    justify-content:space-between;

    align-items:center;

}

.logo{

    flex:1;

    min-width:0;

    gap:10px;

}

.logo img{

    width:48px;

    height:48px;

    flex-shrink:0;

}

.logo-text{

    min-width:0;

}

.logo-text h2{

    font-size:18px;

    line-height:1.2;

    white-space:normal;

}

.logo-text p{

    font-size:11px;

}

.menu-toggle{

    display:block;

    font-size:30px;

    flex-shrink:0;

}

nav{

    margin-left:0;

}

.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#5a19df;

    flex-direction:column;

    align-items:center;

    gap:0;

    max-height:0;

    overflow:hidden;

    transition:.4s ease;

}

.nav-links.active{

    max-height:500px;

}

.nav-links li{

    width:100%;

    text-align:center;

    padding:16px 0;

}

}

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

.hero{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

position:relative;

overflow:hidden;

background:

linear-gradient(rgba(11,61,145,.72),rgba(11,61,145,.72)),

url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80");

background-size:cover;

background-position:center;

color:white;

}

.hero-content{

max-width:900px;

z-index:2;

animation:fadeUp 1s ease;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

background:#FFD54F;

color:#222;

font-weight:700;

border-radius:30px;

margin-bottom:25px;

}

.hero h1{

font-size:58px;

font-weight:700;

line-height:1.2;

margin-bottom:20px;

text-shadow:0 5px 15px rgba(0,0,0,.35);

}

.hero h1 span{

color:#FFD54F;

}

.hero p{

font-size:22px;

line-height:1.8;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

padding:16px 40px;

background:#FFD54F;

color:#222;

font-weight:700;

border-radius:40px;

text-decoration:none;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-5px);

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

}

.btn-secondary{

padding:16px 40px;

border:2px solid white;

color:white;

text-decoration:none;

font-weight:700;

border-radius:40px;

transition:.35s;

}

.btn-secondary:hover{

background:white;

color:#0B3D91;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}

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

@media(max-width:768px){

.hero{

height:90vh;

padding:20px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,

.btn-secondary{

width:220px;

text-align:center;

}

}

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

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

.card h3{
    margin-bottom:15px;
    color:#0B3D91;
}

.card p{
    color:#555;
}
/* About Section */

.about{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:80px 10%;
    background:white;
}

.about-image img{
    width:500px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.about-content{
    max-width:550px;
}

.about-content h2{
    font-size:42px;
    color:#0B3D91;
    margin-bottom:20px;
}

.about-content h3{
    margin-top:25px;
    color:#0B3D91;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-top:15px;
}

.about-btn{
    margin-top:30px;
    padding:14px 30px;
    background:#0B3D91;
    color:white;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-size:17px;
    transition:0.3s;
}

.about-btn:hover{
    background:#082b66;
}
/* ===========================
   Facilities Section
=========================== */

.facilities{
    background:#f8f9fc;
    padding:80px 10%;
    text-align:center;
}

.facilities h2{
    font-size:42px;
    color:#0B3D91;
    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:50px;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.facility-card{
    background:white;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:all 0.3s ease;
}

.facility-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.facility-icon{
    font-size:50px;
    margin-bottom:20px;
}

.facility-card h3{
    color:#0B3D91;
    margin-bottom:15px;
}

.facility-card p{
    color:#555;
    line-height:1.6;
}
/* Leadership Section */

.leadership{

    padding:90px 10%;
    background:#f7f9fc;

}

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;
    color:#123c88;

}

.section-heading p{

    color:#666;
    margin-top:10px;

}

.leaders{

    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

}

.leader-card{

    background:white;
    width:420px;

    padding:35px;

    border-radius:20px;

    text-align:center;

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

    transition:.4s;

}

.leader-card:hover{

    transform:translateY(-10px);

}

.leader-card img{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #123c88;

    margin-bottom:25px;

}

.leader-card h3{

    color:#123c88;

    margin-bottom:5px;

}

.leader-card h5{

    color:#f4b400;

    font-size:17px;

    margin-bottom:20px;

}

.leader-card p{

    line-height:1.9;

    color:#555;

}


/* ===========================
   School Highlights
=========================== */

.highlights{
    background:#0B3D91;
    color:white;
    text-align:center;
    padding:80px 10%;
}

.highlights h2{
    font-size:42px;
    margin-bottom:50px;
}

.highlight-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-box{
    background:rgba(255,255,255,0.1);
    padding:35px;
    border-radius:15px;
    transition:.3s;
}

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

.highlight-box h3{
    font-size:42px;
    margin-bottom:15px;
    color:#FFD700;
}

.highlight-box p{
    font-size:18px;
}
/* ===========================
   Gallery Section
=========================== */

.gallery{
    padding:90px 10%;
    background:#f8f9fc;
    text-align:center;
}

.gallery h2{
    font-size:42px;
    color:#0B3D91;
    margin-bottom:15px;
}

.gallery-subtitle{
    color:#666;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
    height:65px;
    border-radius:50%;
    background:white;
    padding:4px;
}

.logo-text h2{
    color:white;
    margin:0;
    font-size:28px;
}

.logo-text p{
    color:#d8e7ff;
    margin:2px 0 0;
    font-size:14px;
}
.quote-icon{
    font-size:50px;
    color:#123c88;
    opacity:0.2;
    margin-bottom:10px;
}
/* WHY CHOOSE US */

.why-choose{
    padding:90px 8%;
    background:#f8fbff;
}

.why-choose .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-tag{
    color:#f4b400;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.why-choose h2{
    font-size:48px;
    color:#123c8d;
    margin:15px 0;
}

.section-description{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

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

.feature-card{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#1e4ca1;
    color:white;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.feature-card h3{
    color:#123c8d;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}/* WHY CHOOSE US */

.why-choose{
    padding:90px 8%;
    background:#f8fbff;
}

.why-choose .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-tag{
    color:#f4b400;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.why-choose h2{
    font-size:48px;
    color:#123c8d;
    margin:15px 0;
}

.section-description{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

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

.feature-card{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#1e4ca1;
    color:white;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.feature-card h3{
    color:#123c8d;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}
/* WHY CHOOSE US */

.why-choose{
    padding:90px 8%;
    background:#f8fbff;
}

.why-choose .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-tag{
    color:#f4b400;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.why-choose h2{
    font-size:48px;
    color:#123c8d;
    margin:15px 0;
}

.section-description{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

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

.feature-card{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#1e4ca1;
    color:white;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.feature-card h3{
    color:#123c8d;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}
/* ABOUT SECTION */

.about-school{
    padding:100px 8%;
    background:#ffffff;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

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

.about-content h2{
    font-size:45px;
    color:#123c8d;
    margin:15px 0 25px;
}

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

.about-features{
    margin:35px 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-item{
    background:#f5f8ff;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    background:#123c8d;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#f4b400;
    color:#000;
    transform:translateY(-3px);
}

@media(max-width:900px){

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

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

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

}
/* FACILITIES */

.facilities{
    padding:100px 8%;
    background:#f8fbff;
}

.facilities .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:60px;
}

.facility-card{
    background:white;
    border-radius:18px;
    padding:40px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #123c8d;
}

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

.facility-icon{
    width:70px;
    height:70px;
    margin:auto;
    background:#123c8d;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:20px;
}

.facility-card h3{
    color:#123c8d;
    margin-bottom:15px;
    font-size:24px;
}

.facility-card p{
    color:#666;
    line-height:1.8;
}
.facility-card:hover .facility-icon{
    background:#f4b400;
    color:#123c8d;
    transform:rotate(8deg) scale(1.1);
    transition:.3s;
}
/* LEADERSHIP */

.leadership{

padding:100px 8%;
background:#fff;

}

.leadership .container{

max-width:1200px;
margin:auto;
text-align:center;

}

.leader-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
gap:40px;
margin-top:60px;

}

.leader-card{

background:white;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;

}

.leader-card:hover{

transform:translateY(-10px);

}

.leader-card img{

width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
border:6px solid #123c8d;
margin-bottom:25px;

}

.leader-card h3{

font-size:30px;
color:#123c8d;
margin-bottom:10px;

}

.leader-card span{

display:inline-block;
margin-bottom:20px;
font-weight:700;
color:#f4b400;
font-size:20px;

}

.leader-card p{

line-height:1.8;
color:#666;
font-size:17px;

}
.leader-card p{

font-style:italic;
position:relative;
padding-top:20px;

}

.leader-card p::before{

content:"❝";
font-size:60px;
color:#123c8d20;
position:absolute;
top:-20px;
left:0;

}
.news-section{
    padding:100px 8%;
    background:#f8fbff;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.news-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:5px solid #123c8d;
    transition:.3s;
}

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

.news-date{
    display:inline-block;
    background:#123c8d;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:15px;
}
.gallery-page{

    padding:120px 8%;
    background:#f8fbff;

}

.event-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    margin-top:60px;

}

.event-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

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

    transition:.4s;

}

.event-card:hover{

    transform:translateY(-10px);

}

.event-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.event-content{

    padding:25px;

}

.event-content h3{

    color:#123c8d;

}

.event-content a{

    display:inline-block;

    margin-top:15px;

    color:#123c8d;

    text-decoration:none;

    font-weight:700;

}
.gallery-hero{
    height:350px;
    background:url('../assets/images/gallery-banner.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
}

.gallery-overlay h1{
    font-size:55px;
}

.gallery-overlay p{
    font-size:20px;
}
.event-gallery{

    padding:100px 8%;

    background:#f8fbff;

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

    margin-top:50px;

}

.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.4s;

}

.event-card:hover{

    transform:translateY(-10px);

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

}

.event-image{

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.event-card:hover img{

    transform:scale(1.08);

}

.event-info{

    padding:25px;

}

.event-info h3{

    color:#123c8d;

    margin-bottom:15px;

}

.event-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

    color:#777;

    font-size:15px;

}

.event-btn{

    display:inline-block;

    padding:12px 24px;

    background:#123c8d;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.event-btn:hover{

    background:#f4b400;

    color:#123c8d;

}
.gallery-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:50px 0;

}

.gallery-filter button{

    border:none;

    padding:12px 25px;

    border-radius:30px;

    background:#e8eefb;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

.gallery-filter button:hover,
.gallery-filter .active{

    background:#123c8d;

    color:#fff;

}
.album-page{

    padding:120px 8%;

}

.photo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:40px;

}

.photo-grid img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.4s;

}

.photo-grid img:hover{

    transform:scale(1.05);

}

.back-btn{

    display:inline-block;

    margin-bottom:30px;

    text-decoration:none;

    color:#123c8d;

    font-weight:bold;

}
/* ===========================
   NOTICE BOARD
=========================== */

.notice-section{
    padding:80px 8%;
    background:#f8f9fc;
}

.notice-box{
    max-width:900px;
    margin:40px auto;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.notice-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
    gap:20px;
}

.notice-item:last-child{
    border-bottom:none;
}

.notice-content h4{
    margin:0;
    color:#0b3d91;
}

.notice-content p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.new-tag{
    background:red;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.notice-item a{
    background:#0b3d91;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    transition:.3s;
}

.notice-item a:hover{
    background:#f39c12;
}

@media(max-width:768px){
    .notice-item{
        flex-direction:column;
        align-items:flex-start;
    }
}
/* ===========================
   NEWS & EVENTS
=========================== */

.news-section{
    padding:80px 8%;
    background:#ffffff;
}

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

.news-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-content{
    padding:20px;
}

.news-content h3{
    color:#0b3d91;
    margin-bottom:10px;
}

.news-content p{
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

.news-content a{
    color:#0b3d91;
    font-weight:600;
    text-decoration:none;
}

.news-content a:hover{
    color:#f39c12;
}
/* ===========================
   ACHIEVEMENTS
=========================== */

.achievements{
    padding:80px 8%;
    background:#0b3d91;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.achievement-card{
    background:white;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
}

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

.achievement-card h1{
    font-size:48px;
    color:#0b3d91;
    margin-bottom:10px;
}

.achievement-card p{
    font-size:18px;
    color:#555;
}
/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:80px 8%;
    background:#f8f9fc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.testimonial-card p{
    color:#555;
    line-height:1.8;
    font-style:italic;
}

.testimonial-card h4{
    margin-top:20px;
    color:#0b3d91;
}
/* ===========================
   ADMISSION CTA
=========================== */

.admission-cta{
    background:linear-gradient(135deg,#0b3d91,#1b5fd1);
    color:#fff;
    text-align:center;
    padding:90px 8%;
}

.admission-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.admission-cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:#0b3d91;
}

.btn-primary:hover{
    background:#f39c12;
    color:#fff;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#0b3d91;
}
/* ===========================
   FLOATING BUTTONS
=========================== */

.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.call-btn,
.whatsapp-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.call-btn{
    background:#0b3d91;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:scale(1.1);
}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#2305cf;
    color:#b41313;
    padding-top:60px;
}

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer-logo{
    width:80px;
    margin-bottom:15px;
}

.footer-col h3{
    margin-bottom:20px;
    color:#ffd54f;
}

.footer-col p{
    color:#ddd;
    line-height:1.8;
}

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

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#ffd54f;
    padding-left:5px;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.social-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    color:#ffd54f;
}

.footer-bottom{
    border-top:1px solid rgba(255, 255, 255, 0.15);
    text-align:center;
    padding:20px;
    color:#ccc;
    font-size:15px;
}
.footer{
    background:#0d1b4c;
    color:#fff;
    padding:60px 0 0;
}
.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#ddd;
}
/* ===========================
   HEADER
=========================== */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#2b23cc;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 20px 8%;
    box-shadow:0 3px 15px rgba(18, 14, 14, 0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap: 15px;
}

.logo img{
    width:70px;
}

nav ul{
    display:flex;
    list-style:none;
    gap: 30px;
    margin:0;
    padding:0;
}

nav ul li a{
    text-decoration:none;
    color:#a6d3ef;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#0ecc4d;
}
.map iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:12px;
}
header{
    position:sticky;
    top:0;
    z-index:9999;
}
html{
    scroll-behavior:smooth;
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
button:hover,
.btn:hover{
    transform:scale(1.05);
}
.find-us{
    width:100%;
    padding:60px 8%;
}

.map{
    width:100%;
}

.map iframe{
    width:100%;
    height:400px;
    display:block;
    border:none;
    border-radius:12px;
}
.find-us{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.map{
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.map iframe{
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}
/* ===========================
   ABOUT HERO
=========================== */

.about-hero{
    height:55vh;
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("../images/school-building.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-overlay h1{
    color:#37f81d;
    font-size:55px;
    margin-bottom:15px;
}

.about-overlay p{
    color:#5e0ae6;
    font-size:22px;
}
.about-section{
    padding:80px 10%;
    background:#fff;
}

.about-section .container{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:40px;
    color:#1e3c72;
    margin-bottom:20px;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}
/* ===========================
   OUR STORY
=========================== */

.our-story{
    padding:90px 8%;
    background:#fff;
}

.our-story .container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.story-image{
    flex:1;
}

.story-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.story-content{
    flex:1;
}

.story-content h2{
    font-size:40px;
    color:#0b3d91;
    margin-bottom:20px;
}

.story-content p{
    color:#090202;
    line-height:1.8;
    margin-bottom:20px;
}

.story-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    font-weight:600;
    color:#000000;
}
/* ===========================
   MISSION
=========================== */

.mission-section{
    padding:90px 8%;
    background:#f8f9fc;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.mission-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.mission-card h3{
    color:#0b3d91;
    margin-bottom:20px;
}

.mission-card p{
    color:#110202;
    line-height:1.8;
}
/* ===========================
   LEADER SECTION
=========================== */

.leader-section{
    padding:90px 8%;
    background:#fff;
}

.leader-section .container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.leader-image{
    flex:1;
}

.leader-image img{
    width:100%;
    max-width:420px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.leader-content{
    flex:1;
}

.leader-content span{
    color:#f39c12;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.leader-content h2{
    font-size:38px;
    color:#0b3d91;
    margin:15px 0 25px;
}

.leader-content p{
    color:#0b0404;
    line-height:1.9;
    margin-bottom:18px;
}

.leader-content h4{
    color:#0b3d91;
    margin-top:20px;
}
.director{
    background:#f8f9fc;
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose{
    padding:90px 8%;
    background:#ffffff;
}

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

.choose-card{
    background:#f8f9fc;
    padding:35px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.choose-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

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

/* ===========================
   ABOUT STATS
=========================== */

.about-stats{
    background:#0b3d91;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    text-align:center;
    padding:70px 8%;
    gap:30px;
}

.stat-box h2{
    font-size:48px;
    color:#ffd54f;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}

/* ===========================
   TIMELINE
=========================== */

.timeline-section{
    padding:90px 8%;
    background:#f8f9fc;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.timeline-item{
    background:#fff;
    padding:30px;
    border-left:5px solid #0b3d91;
    border-radius:12px;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.timeline-item:hover{
    transform:translateY(-8px);
}

.timeline-item h3{
    color:#0b3d91;
    margin-bottom:15px;
}
/* ===========================
   CAMPUS HIGHLIGHTS
=========================== */

.campus-highlights{
    padding:90px 8%;
    background:#fff;
}

.campus-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.campus-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.campus-grid img:hover{
    transform:scale(1.05);
}

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

.about-cta{
    background:#0b3d91;
    color:#fff;
    text-align:center;
    padding:80px 8%;
}

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

.about-cta p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

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

.academics-hero{

    height:55vh;

    background:
    linear-gradient(rgba(155, 231, 237, 0.55),rgba(140, 195, 222, 0.55)),
    url("../images/academics/hero.jpg");

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

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

}

.academics-overlay h1{

    color:rgb(10, 233, 10);
    font-size:60px;
    margin-bottom:15px;

}

.academics-overlay p{

    color:rgb(112, 18, 174);
    font-size:22px;

}

/* ===========================
   ACADEMIC OVERVIEW
=========================== */

.academic-overview{

    padding:90px 8%;

}

.academic-overview .container{

    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;

}

.overview-image{

    flex:1;

}

.overview-image img{

    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.overview-content{

    flex:1;

}

.overview-content h2{

    color:#0b3d91;
    font-size:40px;
    margin-bottom:20px;

}

.overview-content p{

    color:#555;
    line-height:1.8;
    margin-bottom:20px;

}

.overview-content ul{

    list-style:none;
    padding:0;

}

.overview-content li{

    margin-bottom:15px;
    font-weight:600;

}

/* ===========================
   CLASSES OFFERED
=========================== */

.classes-section{
    padding:90px 8%;
    background:#f8f9fc;
}

.classes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.class-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.class-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

.class-card p{
    color:#080101;
    line-height:1.8;
}

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

.facilities-section{
    padding:90px 8%;
    background:#fff;
}

.facilities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.facility-card{
    background:#f8f9fc;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

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

.facility-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

.facility-card p{
    color:#0d0101;
    line-height:1.8;
}
/* Examination System */

.exam-system{
    padding:80px 8%;
    background:#f8fbff;
}

.exam-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.exam-card{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.exam-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.exam-icon{
    font-size:50px;
    margin-bottom:20px;
}

.exam-card h3{
    color:#0d47a1;
    margin-bottom:15px;
}

.exam-card p{
    color:#030000;
    line-height:1.7;
}

/* Co-Curricular Activities */

.activities{
    padding:80px 8%;
    background:#ffffff;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.activity-card{
    background:#f8fbff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.activity-card:hover{
    transform:translateY(-10px);
    background:#0d47a1;
    color:#fff;
}

.activity-card:hover h3,
.activity-card:hover p{
    color:#fff;
}

.activity-icon{
    font-size:50px;
    margin-bottom:20px;
}

.activity-card h3{
    color:#0d47a1;
    margin-bottom:15px;
}

.activity-card p{
    color:#0d0000;
    line-height:1.7;
}

.assessment-section{
    padding:80px 10%;
    background:#f8fbff;
}

.assessment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.assessment-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.assessment-card h3{
    color:#1e3a8a;
    margin-bottom:15px;
}

.assessment-card p{
    color:#0f0303;
    line-height:1.6;
}

/* ===========================
   PROSPECTUS
=========================== */

.prospectus{
    padding:80px 8%;
    background:#f8f9fc;
    text-align:center;
}

.prospectus p{
    max-width:700px;
    margin:20px auto 35px;
    line-height:1.8;
    color:#1a0404;
}

/* ===========================
   ACADEMICS CTA
=========================== */

.academics-cta{
    padding:90px 8%;
    background:#0b3d91;
    color:#fff;
    text-align:center;
}

.academics-cta h2{
    font-size:42px;
    margin-bottom:18px;
}

.academics-cta p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

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

.admission-hero{
    height:60vh;
    background:
    linear-gradient(rgba(210, 232, 245, 0.55),rgba(250, 241, 241, 0.55)),
    url("../assets/images/hero/admission.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.admission-overlay h1{
    color:#4915f4;
    font-size:58px;
    margin-bottom:20px;
}

.admission-overlay p{
    color:#9e0d0d;
    font-size:22px;
    margin-bottom:35px;
}

/* ===========================
   ADMISSION OVERVIEW
=========================== */

.admission-overview{
    padding:90px 8%;
    background:#fff;
}

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

.overview-card{
    background:#f8f9fc;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.overview-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

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

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

.admission-process{
    padding:90px 8%;
    background:#f8f9fc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.process-number{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#0b3d91;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
}

.process-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

.process-card p{
    color:#0c0404;
    line-height:1.8;
}

/* ===========================
   DOCUMENTS
=========================== */

.documents{
    padding:90px 8%;
    background:#fff;
}

.document-list{
    max-width:800px;
    margin:50px auto 0;
}

.document-item{
    background:#f8f9fc;
    padding:20px 25px;
    margin-bottom:20px;
    border-left:6px solid #0b3d91;
    border-radius:10px;
    font-size:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}
/* ===========================
   ELIGIBILITY
=========================== */

.eligibility{
    padding:90px 8%;
    background:#d3f186;
}

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

.eligibility-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.eligibility-card h3{
    color:#0b3d91;
    margin-bottom:15px;
}

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

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

.admission-form-section{
    padding:90px 8%;
    background:#92e2f4;
}

.admission-form{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0b3d91;
    box-shadow:0 0 10px rgba(11,61,145,.15);
}

.full{
    grid-column:1 / -1;
}

.admission-form button{
    width:220px;
    padding:15px;
}

@media(max-width:768px){

.admission-form{

grid-template-columns:1fr;

}

}
/* ===========================
   FAQ
=========================== */

.faq-section{
    padding:90px 8%;
    background:#f8f9fc;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#0ac476;
    margin-bottom:20px;
    padding:25px;
    border-left:5px solid #0b3d91;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#0b3d91;
    margin-bottom:12px;
}

.faq-item p{
    color:#0c0202;
    line-height:1.7;
}

/* ===========================
   ADMISSION FINAL CTA
=========================== */

.admission-final-cta{
    padding:90px 8%;
    background:linear-gradient(135deg,#0b3d91,#1f5fbf);
    text-align:center;
    color:#fff;
}

.admission-final-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.admission-final-cta p{
    max-width:750px;
    margin:0 auto 35px;
    line-height:1.9;
    font-size:18px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-secondary{
    display:inline-block;
    padding:15px 30px;
    background:#ffffff;
    color:#0b3d91;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#ffd54f;
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-section{
    padding:80px 8%;
    background:#58daf1;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    max-width:1200px;
    margin:auto;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-form h2{
    color:#0f4c81;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
    color:#0e0404;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:14px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    background:#0f4c81;

    color:#fff;

    border:none;

    padding:14px 30px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#196dbb;

}

.map{

    width:100%;

    margin-top:60px;

}

.map iframe{

    width:100%;

    height:450px;

    border-radius:18px;

}

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

}

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

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

color:white;

}

@media(max-width:900px){

.menu-toggle{

display:block;

}

.nav-links{

position:absolute;

top:80px;

left:0;

width:100%;

background:#0f4c81;

display:flex;

flex-direction:column;

align-items:center;

max-height:0;

overflow:hidden;

transition:.4s;

}

.nav-links.active{

max-height:500px;

padding:20px 0;

}

.nav-links li{

margin:15px 0;

}

}

@media(max-width:900px){

.hero{

display:flex;

flex-direction:column;

padding:40px 20px;

text-align:center;

}

.hero-content{

width:100%;

}

.hero-content h1{

font-size:34px;

line-height:1.2;

}

.hero-content p{

font-size:16px;

}

.hero-image{

width:100%;

margin-top:30px;

}

.hero-image img{

width:100%;

max-width:320px;

}

}
.logo img{

width:45px;
height:45px;

}

/* ================= ABOUT HOME ================= */

.about-home{

padding:90px 8%;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

background:white;

}

.about-image img{

width:100%;

border-radius:20px;

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

}

.section-tag{

display:inline-block;

background:#FFD54F;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:700;

margin-bottom:18px;

}

.about-content h2{

font-size:42px;

color:#0B3D91;

margin-bottom:20px;

line-height:1.3;

}

.about-content p{

font-size:17px;

line-height:1.8;

color:#555;

margin-bottom:30px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin-bottom:35px;

}

.feature{

background:#f4f7fc;

padding:18px;

border-radius:12px;

font-weight:600;

transition:.3s;

}

.feature:hover{

transform:translateY(-5px);

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

}

.about-btn{

display:inline-block;

padding:15px 35px;

background:#0B3D91;

color:white;

text-decoration:none;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.about-btn:hover{

background:#FFD54F;

color:#222;

}

@media(max-width:768px){

.about-home{

grid-template-columns:1fr;

text-align:center;

}

.about-content h2{

font-size:32px;

}

.about-features{

grid-template-columns:1fr;

}

}

/* ================= LEADERSHIP ================= */

.leadership{

    padding:90px 5%;

    background:#f7f9fc;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.leader-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

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

transition:.35s;

}

.leader-card:hover{

transform:translateY(-10px);

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

}

.leader-card img{

width:170px;

height:170px;

object-fit:cover;

border-radius:50%;

border:6px solid #0B3D91;

margin-bottom:20px;

}

.leader-card h3{

font-size:28px;

color:#0B3D91;

margin-bottom:8px;

}

.leader-card span{

display:inline-block;

padding:8px 18px;

background:#FFD54F;

border-radius:25px;

font-weight:700;

margin-bottom:20px;

}

.leader-card p{

font-size:16px;

line-height:1.8;

color:#555;

font-style:italic;

}

@media (max-width:768px){

    .leadership{

        grid-template-columns:1fr;

        padding:50px 15px;

    }

    .leader-card{

        width:100%;

        box-sizing:border-box;

    }

    .leader-card img{

        width:120px;

        height:120px;

    }

    .leader-card h3{

        font-size:22px;

    }

    .leader-card p{

        font-size:15px;

    }

}
/* ===================== STATS ===================== */

.stats{

padding:90px 8%;

background:linear-gradient(135deg,#0B3D91,#1b7bd6);

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

text-align:center;

}

.stat-card{

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

backdrop-filter:blur(10px);

border-radius:18px;

padding:40px 20px;

color:white;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

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

}

.stat-number{

font-size:55px;

font-weight:700;

color:#FFD54F;

margin-bottom:12px;

}

.stat-card h3{

font-size:20px;

font-weight:600;

}

@media(max-width:768px){

.stats{

padding:60px 20px;

}

.stat-number{

font-size:42px;

}

}

/* ================= NOTICE BOARD ================= */

.notice-section{

padding:90px 8%;

background:#f8f9fc;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

color:#0B3D91;

font-weight:700;

}

.section-title h2{

font-size:42px;

margin:15px 0;

color:#222;

}

.section-title p{

color:#666;

}

.notice-container{

display:grid;

gap:25px;

}

.notice-card{

display:flex;

align-items:center;

gap:25px;

background:white;

padding:25px;

border-radius:18px;

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

transition:.3s;

}

.notice-card:hover{

transform:translateY(-8px);

}

.notice-date{

min-width:90px;

background:#0B3D91;

color:white;

padding:15px;

text-align:center;

border-radius:15px;

}

.notice-date h3{

font-size:34px;

}

.notice-date span{

font-size:16px;

}

.notice-content h3{

margin-bottom:10px;

color:#0B3D91;

}

.notice-content p{

color:#666;

line-height:1.7;

}

@media(max-width:768px){

.notice-card{

flex-direction:column;

text-align:center;

}

}

/* ================= HOME GALLERY ================= */

.home-gallery{

padding:90px 8%;

background:white;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

margin-top:50px;

}

.gallery-item{

overflow:hidden;

border-radius:18px;

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

transition:.35s;

background:white;

}

.gallery-item:hover{

transform:translateY(-8px);

}

.gallery-item img{

width:100%;

height:230px;

object-fit:cover;

display:block;

transition:.4s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item h3{

padding:18px;

text-align:center;

color:#0B3D91;

font-size:18px;

}

.gallery-btn{

margin-top:40px;

text-align:center;

}



.academic-hero{
    height:70vh;
    background:
        linear-gradient(rgba(11,61,145,.75),rgba(11,61,145,.75)),
        url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.academic-hero-content{
    max-width:800px;
}

.academic-hero h1{
    font-size:56px;
    margin-bottom:20px;
}

.academic-hero p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:30px;
}

@media(max-width:768px){
    .academic-hero{
        height:55vh;
    }

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

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

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

.page-hero{
    min-height:70vh;
    padding:130px 20px 60px;
    display:flex;
    justify-content:center;
    align-items:center;

    background:
        linear-gradient(rgba(11,61,145,.75),rgba(11,61,145,.75)),
        url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    color:#fff;
}

.page-hero-content{

    max-width:850px;

    z-index:2;

    animation:fadeUp 1s ease;

}

.page-hero-tag{

    display:inline-block;

    background:#FFD54F;

    color:#222;

    padding:10px 22px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:25px;

}

.page-hero h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:20px;

}

.page-hero p{

    font-size:22px;

    line-height:1.8;

    margin-bottom:35px;

}

.page-hero h1 span{

    color:#FFD54F;

}

@media(max-width:768px){

.page-hero{

height:55vh;

}

.page-hero h1{

font-size:34px;

}

.page-hero p{

font-size:17px;

}

}

/* ================= PREMIUM PAGE HERO ================= */

.page-hero{
    position:relative;
    height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(11,61,145,.72),rgba(11,61,145,.72)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;
    background-position:center;
    color:#fff;
    padding:120px 20px 50px;
}

.page-hero-content{
    max-width:850px;
    animation:fadeUp 1s ease;
}

.page-hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:#FFD54F;
    color:#222;
    border-radius:30px;
    font-weight:700;
    margin-bottom:25px;
}

.page-hero h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero h1 span{
    color:#FFD54F;
}

.page-hero p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    background:rgba(87,11,229,.90);
    backdrop-filter:blur(10px);
    z-index:999;
    transition:.35s;
}

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

.gallery-header{

    background:#fff;

    padding:60px 20px 30px;

    text-align:center;
}

.gallery-header h2{

    font-size:42px;

    color:#0B3D91;

    margin-bottom:10px;
}

.gallery-header p{

    color:#666;

    font-size:18px;
}

/* ================= FILTER BUTTONS ================= */

.filter-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

    margin:25px 0 40px;
}

.filter-btn{

    border:none;

    padding:12px 24px;

    background:#EEF3FF;

    color:#0B3D91;

    font-size:15px;

    font-weight:600;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{

    background:#0B3D91;

    color:#fff;

    transform:translateY(-3px);
}

/* ================= GALLERY GRID ================= */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    padding:20px 5% 70px;
}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

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

    transition:.35s;
}

.gallery-item:hover{

    transform:translateY(-8px);
}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

.gallery-item h3{

    padding:18px;

    text-align:center;

    color:#0B3D91;

    font-size:20px;
}


/* ================= LOADER ================= */

#loader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100vh;

    background:linear-gradient(135deg,#0B3D91,#5a19df);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity .2s ease, visibility .2s ease;
}

#loader.hidden{

    opacity:0;

    visibility:hidden;
}

.loader-content{

    text-align:center;

    color:white;
}

.loader-content img{

    width:120px;

    height:120px;

    border-radius:50%;

    background:white;

    padding:8px;

    animation:logoFloat 1s ease-in-out infinite;
}

.loader-content h2{

    margin:20px 0 8px;

    font-size:30px;
}

.loader-content p{

    color:#ddd;

    margin-bottom:25px;
}

.loader-spinner{

    width:50px;

    height:50px;

    border:5px solid rgba(255,255,255,.25);

    border-top:5px solid #FFD54F;

    border-radius:50%;

    margin:auto;

    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{

        transform:rotate(360deg);
    }

}

@keyframes logoFloat{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-10px);
    }

}

html,
body{
    overflow-x:hidden;
}

#backToTop{

    position:fixed;

    bottom:25px;

    left:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#5B10E6;

    color:#fff;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}