body{
font-family:'Noto Sans Devanagari',sans-serif;
margin:0;
background:#f5f7fa;
}

header{
background:#003893;
color:white;
}

.top-header{
padding:15px 5%;
}

.logo-box{
display:flex;
align-items:center;
gap:15px;
}

.logo-box img{
width:80px;
height:80px;
}

nav{
background:#c8102e;
}

nav ul{
margin:0;
padding:0;
display:flex;
justify-content:center;
list-style:none;
}

nav ul li a{
display:block;
padding:15px 20px;
color:white;
text-decoration:none;
}

.hero{
height:500px;
background:url('../images/school.jpg');
background-size:cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
background:rgba(0,0,0,.6);
padding:30px;
border-radius:10px;
}

.btn{
background:#ffd700;
padding:12px 25px;
text-decoration:none;
color:black;
font-weight:bold;
}

.section{
padding:60px 8%;
}

.title{
text-align:center;
margin-bottom:40px;
color:#003893;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.teacher-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.teacher-card{
background:white;
padding:20px;
text-align:center;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.teacher-card img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
}

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}