body{
font-family:'Poppins', sans-serif;
margin:0;
background:#f5f7fa;
}

/* HEADER */

header{
background:#002147;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 30px;
flex-wrap:wrap;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:50px;
margin-right:10px;
}

/* NAVIGATION */

nav{
display:flex;
}

nav a{
color:white;
text-decoration:none;
margin:10px;
font-weight:500;
}

nav a:hover{
color:#ffd700;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO + SLIDER */

.hero{
position:relative;
max-width:100%;
overflow:hidden;
}

.slideshow img{
width:100%;
display:none;
}

.slideshow img.active{
display:block;
}

/* HERO TEXT */

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
background:rgba(0,0,0,0.4);
padding:30px;
border-radius:5px;
}

.hero-text h2{
font-size:40px;
margin-bottom:10px;
}

.hero-text p{
font-size:18px;
}

/* BUTTON */

.btn{
background:#28a745;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:10px;
}

/* SECTIONS */

section{
padding:60px 10%;
text-align:center;
}

.about{
background:white;
}

.academics{
background:#eef2f7;
}

.program{
background:white;
padding:20px;
margin:15px;
display:inline-block;
width:250px;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.news{
background:white;
}

.news-item{
background:#f1f1f1;
padding:20px;
margin:15px;
border-radius:5px;
}

/* GALLERY */

.gallery img{
width:300px;
margin:10px;
border-radius:5px;
}

/* DOWNLOADS */

.downloads{
background:#eef2f7;
}

.downloads ul{
list-style:none;
padding:0;
}

.downloads li{
margin:10px;
}

/* FOOTER */

footer{
background:#002147;
color:white;
padding:30px;
text-align:center;
margin-top:30px;
}

/* ABOUT TWO COLUMN */

.about-container{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
margin-top:30px;
}

.about-image img{
width:450px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.about-text{
max-width:500px;
text-align:left;
}

.about-text p{
margin-bottom:15px;
line-height:1.6;
}

/* FONT OPTIONS */

.font1{font-family:'Poppins', sans-serif;}
.font2{font-family:'Roboto', sans-serif;}
.font3{font-family:'Montserrat', sans-serif;}

/* MOBILE */

@media(max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
flex-direction:column;
width:100%;
text-align:center;
}

nav.show{
display:flex;
}

.program{
width:90%;
}

.gallery img{
width:90%;
}

.hero-text h2{
font-size:28px;
}

.about-container{
flex-direction:column;
text-align:center;
}

.about-text{
text-align:center;
}

.about-image img{
width:90%;
}

}
.footer{
background:#002147;
color:white;
padding:50px 20px 20px;
margin-top:40px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.footer-box h3{
margin-bottom:15px;
color:#ffcc00;
}

.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin:8px 0;
}

.footer-box ul li a{
color:white;
text-decoration:none;
transition:.3s;
}

.footer-box ul li a:hover{
color:#ffcc00;
padding-left:5px;
}

.footer-logo{
width:60px;
margin-bottom:10px;
border-radius:10px;
}

.social-icons a{
display:inline-block;
background:white;
color:#002147;
width:40px;
height:40px;
line-height:40px;
text-align:center;
border-radius:50%;
margin-right:10px;
transition:.3s;
font-size:18px;
}

.social-icons a:hover{
background:#ffcc00;
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.2);
margin-top:30px;
padding-top:15px;
font-size:14px;
}
.page-hero{
background:#002147;
color:white;
text-align:center;
padding:60px 20px;
}

.history{
padding:60px 20px;
background:#f5f7fa;
}

.history-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1100px;
margin:auto;
}

.history-images img{
width:100%;
margin-bottom:15px;
border-radius:10px;
}

.management, .staff{
padding:60px 20px;
text-align:center;
}

.team-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.team-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
width:220px;
transition:.3s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100%;
border-radius:10px;
}

.staff-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.staff-card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.staff-card:hover{
transform:scale(1.05);
}

.staff-card img{
width:100%;
border-radius:10px;
}
.admission-hero{
background:#002147;
color:white;
text-align:center;
padding:70px 20px;
}

.admission-logo{
width:90px;
margin-bottom:15px;
border-radius:15px;
}

.admission-intro{
padding:60px 20px;
text-align:center;
max-width:800px;
margin:auto;
}

.requirements{
background:#f5f7fa;
padding:60px 20px;
text-align:center;
}

.requirement-box{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
max-width:500px;
margin:auto;
}

.requirement-box ul{
text-align:left;
}

.steps{
padding:60px 20px;
text-align:center;
}

.steps-container{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

.step{
background:white;
padding:25px;
width:200px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.step:hover{
transform:translateY(-10px);
}

.step i{
font-size:30px;
color:#002147;
margin-bottom:10px;
}

.admission-download,
.admission-contact{
padding:60px 20px;
text-align:center;
background:#f5f7fa;
}
.btn-outline{
background:white;
color:#002147;
border:2px solid #002147;
margin-left:10px;
}

.btn-outline:hover{
background:#002147;
color:white;
}
.form-hero{
background:#002147;
color:white;
text-align:center;
padding:70px 20px;
}

.form-logo{
width:80px;
margin-bottom:15px;
}

.form-section{
padding:60px 20px;
background:#f5f7fa;
}

.admission-form{
background:white;
max-width:700px;
margin:auto;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.admission-form h2{
margin-top:20px;
color:#002147;
}

.admission-form input,
.admission-form select,
.admission-form textarea{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #ccc;
font-family:Poppins;
}

.submit-btn{
width:100%;
font-size:18px;
}
.contact-hero{
background:url(images/campus.jpg) center/cover no-repeat;
height:300px;
position:relative;
}

.contact-overlay{
background:rgba(0,33,71,.7);
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.contact-info{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
padding:50px 20px;
background:#f5f7fa;
}

.contact-card{
background:white;
padding:25px;
width:220px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-10px);
}

.contact-card i{
font-size:28px;
color:#002147;
margin-bottom:10px;
}

.contact-main{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
padding:60px 20px;
max-width:1100px;
margin:auto;
}

.contact-form{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #ccc;
}

.contact-map iframe{
width:100%;
height:100%;
min-height:350px;
border:0;
border-radius:10px;
}
.academics-hero{
background:#002147;
color:white;
text-align:center;
padding:70px 20px;
}

.academic-overview{
padding:60px 20px;
text-align:center;
max-width:800px;
margin:auto;
}

.programmes{
background:#f5f7fa;
padding:60px 20px;
text-align:center;
}

.programme-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.programme-card{
background:white;
padding:25px;
width:250px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.programme-card:hover{
transform:translateY(-10px);
}

.programme-card i{
font-size:30px;
color:#002147;
margin-bottom:10px;
}

.subjects{
padding:60px 20px;
text-align:center;
}

.subject-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
max-width:900px;
margin:auto;
}

.subject{
background:#002147;
color:white;
padding:12px;
border-radius:6px;
}

.academic-facilities{
padding:60px 20px;
background:#f5f7fa;
text-align:center;
}

.facility-container{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

.facility-card{
background:white;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
overflow:hidden;
width:260px;
transition:.3s;
}

.facility-card:hover{
transform:scale(1.05);
}

.facility-card img{
width:100%;
height:170px;
object-fit:cover;
}

.academic-cta{
padding:60px 20px;
text-align:center;
}
.news-hero{
background:#002147;
color:white;
text-align:center;
padding:70px 20px;
}

.featured-news{
padding:60px 20px;
background:#f5f7fa;
}

.featured-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
max-width:1100px;
margin:auto;
align-items:center;
}

.featured-container img{
width:100%;
border-radius:10px;
}

.news-grid{
padding:60px 20px;
text-align:center;
}

.news-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.news-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.news-card:hover{
transform:translateY(-10px);
}

.news-card img{
width:100%;
height:180px;
object-fit:cover;
}

.news-content{
padding:20px;
text-align:left;
}

.date{
font-size:13px;
color:gray;
}

.read-more{
color:#002147;
font-weight:600;
text-decoration:none;
}

.news-cta{
padding:60px 20px;
text-align:center;
background:#f5f7fa;
}
.downloads-hero{
background:url(images/students2.jpg) center/cover no-repeat;
height:300px;
position:relative;
}

.downloads-overlay{
background:rgba(0,33,71,.75);
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.downloads-main{
padding:60px 20px;
text-align:center;
}

.downloads-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.download-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.download-card:hover{
transform:translateY(-10px);
}

.download-card i{
font-size:35px;
color:#002147;
margin-bottom:10px;
}

.download-btn{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#002147;
color:white;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.download-btn:hover{
background:#ffcc00;
color:black;
}

.downloads-cta{
padding:60px 20px;
background:#f5f7fa;
text-align:center;
}
.gallery-hero{
background:url(images/lauch2.jpg) center/cover no-repeat;
height:300px;
position:relative;
}

.gallery-overlay{
background:rgba(0,33,71,.75);
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.gallery-filter{
text-align:center;
padding:40px 20px;
}

.gallery-filter button{
padding:10px 20px;
margin:5px;
border:none;
background:#002147;
color:white;
border-radius:6px;
cursor:pointer;
}

.gallery-main{
padding:20px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
}

#lightbox img{
max-width:80%;
max-height:80%;
}

#lightbox span{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}
.school-identity{
padding:70px 20px;
background:#f5f7fa;
text-align:center;
}

.identity-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.identity-card{
background:white;
padding:30px;
width:260px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.4s;
}

.identity-card:hover{
transform:translateY(-10px);
}

.identity-card i{
font-size:35px;
color:#002147;
margin-bottom:10px;
}

.values-title{
margin-top:50px;
margin-bottom:20px;
}

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
max-width:700px;
margin:auto;
}

.value{
background:#002147;
color:white;
padding:14px;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.value:hover{
background:#ffcc00;
color:black;
transform:scale(1.05);
}
/* ABOUT HERO */

.about-hero{
height:420px;
background:linear-gradient(rgba(0,33,71,.75), rgba(0,33,71,.85)),
url(images/campus.jpg) center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}

.about-overlay h1{
font-size:42px;
margin-bottom:10px;
}

.about-overlay p{
font-size:18px;
}

/* SCHOOL IDENTITY */

.identity{
padding:70px 20px;
background:#f5f7fa;
text-align:center;
}

.identity-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.identity-card{
background:white;
padding:30px;
width:260px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.4s;
}

.identity-card:hover{
transform:translateY(-10px);
}

.identity-card i{
font-size:35px;
color:#002147;
margin-bottom:10px;
}

.values-title{
margin-top:50px;
margin-bottom:20px;
}

.values-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
max-width:700px;
margin:auto;
}

.value{
background:#002147;
color:white;
padding:14px;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.value:hover{
background:#ffcc00;
color:black;
transform:scale(1.05);
}
/* FEES */

.fees{
padding:70px 20px;
background:white;
text-align:center;
}

.fees-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.fees-card{
background:#f5f7fa;
padding:30px;
width:300px;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,.08);
transition:.4s;
text-align:left;
}

.fees-card:hover{
transform:translateY(-8px);
}

.fees-card h3{
color:#002147;
margin-bottom:15px;
}

.fees-card ul{
list-style:none;
padding:0;
}

.fees-card ul li{
margin:8px 0;
}

/* PAYMENT */

.payment{
padding:70px 20px;
background:#f5f7fa;
text-align:center;
}

.payment-container{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.pay-card{
background:white;
padding:30px;
width:260px;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,.08);
transition:.4s;
}

.pay-card:hover{
transform:scale(1.05);
}

.pay-card i{
font-size:35px;
color:#002147;
margin-bottom:12px;
}

.whatsapp{position:fixed;bottom:20px;right:20px;background:#25D366;color:#fff;padding:15px;border-radius:50%;font-size:22px;box-shadow:0 4px 10px rgba(0,0,0,0.3);animation:pulse 2s infinite;}
</style>