
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
color:#333;
line-height:1.6;
}

/* HERO */

.hero{
height:350px;
background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url("https://images.unsplash.com/photo-1581094794329-c8112c4e5190");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero h1{
font-size:42px;
letter-spacing:1px;
}

/* SECTION */

.container{
width:90%;
max-width:1200px;
margin:auto;
padding:70px 0;
}

/* ABOUT */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:10px;
}

.about-text h2{
color:#0f4c81;
margin-bottom:15px;
}

.about-text p{
margin-bottom:15px;
}

/* MISSION VISION */

.mv-section{
background:white;
padding:70px 0;
}

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

.mv-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.mv-box h3{
color:#1c7ed6;
margin-bottom:10px;
}

/* SERVICES */

.services{
background:#f0f4fa;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:30px;
}

.service-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:.3s;
}

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

.service-card h4{
color:#0f4c81;
margin-bottom:10px;
}

/* STATS */

.stats{
background:#1c7ed6;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:20px;
}

.stat h2{
font-size:38px;
}

.stat p{
font-size:14px;
}

/* TEAM */

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

.member{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.member img{
width:100%;
/* height:250px; */
object-fit:cover;
}

.member h4{
margin:10px 0 5px;
}

/* RESPONSIVE */

@media(max-width:900px){

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

.mv-grid{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

.team-grid{
grid-template-columns:1fr;
}

}
