*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#081b3a;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
position:fixed;
width:100%;
top:0;
left:0;
z-index:1000;
}

.logo-section{
display:flex;
align-items:center;
gap:12px;
}

.logo-section img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
}

.logo-section h2{
color:#0f2f6d;
font-size:28px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#0f2f6d;
transition: .3s;
}

.nav-links a:hover{color: #4da3ff;}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 8%;
background:linear-gradient(
135deg,
#081b3a,
#0f2f6d
);
}

.hero-left{
max-width:600px;
}

.badge{
background:#4da3ff;
color:white;
padding:10px 22px;
border-radius:30px;
display:inline-block;
margin-bottom:25px;
font-weight:bold;
}

.hero-left h1{
font-size:72px;
line-height:1.1;
color:white;
margin-bottom:25px;
}

.hero-left p{
font-size:22px;
line-height:1.8;
color:#dbeafe;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn,
.btn-outline{
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn{
background:#4da3ff;
color:white;
}

.btn-outline{
border:2px solid white;
color:white;
}

.btn:hover,
.btn-outline:hover{
transform:translateY(-5px);
}

.hero-right img{
width:420px;
border-radius:50%;
background:white;
padding:20px;
box-shadow:0 0 60px rgba(77,163,255,.6);
}
.stats{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
background:#f8fafc;
}

.stat-card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stat-card h2{
font-size:42px;
color:#0f2f6d;
margin-bottom:10px;
}

.stat-card p{
font-size:18px;
color:#666;
}
/* COURSES */

.courses{
padding:100px 8%;
background:white;
text-align:center;
}

.courses h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:50px;
}

.course-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.course-card{
background:#f8fafc;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.course-card:hover{
transform:translateY(-10px);
}

.course-card h3{
color:#0f2f6d;
margin-bottom:15px;
}

.course-card p{
color:#666;
line-height:1.7;
}
/* WHY US */

.why-us{
padding:100px 8%;
background:#f5f9ff;
text-align:center;
}

.why-us h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.why-card:hover{
transform:translateY(-10px);
}

.why-card h3{
color:#0f2f6d;
margin-bottom:15px;
}

.why-card p{
color:#666;
line-height:1.7;
}
/* ABOUT */

.about{
padding:100px 8%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.about-left{
flex:1;
}

.about-left h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:25px;
}

.about-left p{
font-size:18px;
line-height:1.9;
color:#666;
margin-bottom:20px;
}

.about-right{
flex:1;
text-align:center;
}

.about-right img{
width:300px;
border-radius:50%;
background:#f8fafc;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
/* TESTIMONIALS */

.testimonials{
padding:100px 8%;
background:#f5f9ff;
text-align:center;
}

.testimonials h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:50px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p{
color:#666;
line-height:1.8;
margin-bottom:20px;
}

.testimonial-card h4{
color:#0f2f6d;
}
/* CONTACT */

.contact{
padding:100px 8%;
background:white;
text-align:center;
}

.contact h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:20px;
}

.contact p{
color:#666;
margin-bottom:40px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:40px;
}

.contact-card{
background:#f8fafc;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
color:#0f2f6d;
margin-bottom:10px;
}

.contact-btn{
display:inline-block;
background:#0f2f6d;
color:white;
text-decoration:none;
padding:16px 35px;
border-radius:50px;
font-weight:bold;
}
/* ADMISSION BANNER */

.admission-banner{
padding:100px 8%;
text-align:center;
background:linear-gradient(
135deg,
#081b3a,
#0f2f6d
);
}

.admission-banner h2{
font-size:55px;
color:white;
margin-bottom:20px;
}

.admission-banner p{
font-size:20px;
color:#dbeafe;
margin-bottom:35px;
}

.admission-btn{
display:inline-block;
background:#4da3ff;
color:white;
padding:16px 40px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}
/* FOOTER */

footer{
background:#06142c;
text-align:center;
padding:40px 20px;
}

footer h3{
color:white;
margin-bottom:15px;
}

footer p{
color:#cbd5e1;
margin-bottom:8px;
}
@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
gap:50px;
}

.hero-left h1{
font-size:42px;
}

.hero-right img{
width:250px;
}

.stats,
.course-grid,
.why-grid,
.testimonial-grid,
.contact-grid{
grid-template-columns:1fr;
}

.navbar{
flex-direction:column;
gap:15px;
padding:15px;
}

.logo-section h2{
font-size:18px;
text-align:center;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.about{
flex-direction:column;
text-align:center;
}

.about-right img{
width:220px;
}

}
.gallery{
padding:100px 8%;
background:#f5f9ff;
text-align:center;
}

.gallery h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:40px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:20px;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}
.toppers{
padding:100px 8%;
background:white;
text-align:center;
}

.toppers h2{
font-size:50px;
color:#0f2f6d;
margin-bottom:40px;
}

table{
width:100%;
max-width:900px;
margin:auto;
border-collapse:collapse;
}

th{
background:#0f2f6d;
color:white;
padding:15px;
}

td{
padding:15px;
border:1px solid #ddd;
}
.contact-card a{
color:#0f2f6d;
font-weight:600;
text-decoration:none;
}

.contact-card a:hover{
color:#4da3ff;
}
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
text-decoration:none;
color:white;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
z-index:999;
}

.whatsapp-float:hover{
transform:scale(1.1);
}
.contact-card a{
color:#0f2f6d;
font-weight:600;
text-decoration:none;
}

.contact-card a:hover{
color:#4da3ff;
}