*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f172a;
color:white;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HERO */

.about-hero{
height:60vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.8)),
url('https://images.unsplash.com/photo-1492724441997-5dc865305da7');
background-size:cover;
background-position:center;
}

.about-hero h1{
font-size:48px;
margin-bottom:10px;
}

.about-hero p{
color:#cbd5f5;
}

/* ABOUT */

.about-section{
padding:80px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:10px;
}

/* MISSION */

.mission{
background:#1e293b;
padding:70px 0;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.card{
background:#0f172a;
padding:30px;
border-radius:10px;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
background:#1e293b;
}

/* SERVICES */

.services{
padding:80px 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service{
background:#1e293b;
padding:30px;
border-radius:10px;
text-align:center;
transition:.3s;
}

.service:hover{
background:#2563eb;
transform:scale(1.05);
}

/* STATS */

.stats{
background:#020617;
padding:70px 0;
}

.stat-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.stat h2{
font-size:40px;
color:#3b82f6;
}

/* CTA */

.cta{
padding:80px 0;
text-align:center;
background:#1e293b;
}

.cta button{
padding:14px 30px;
border:none;
background:#3b82f6;
color:white;
font-size:16px;
border-radius:30px;
cursor:pointer;
transition:.3s;
}

.cta button:hover{
background:#2563eb;
}

/* RESPONSIVE */

@media(max-width:900px){

.about-grid,
.mission-grid,
.service-grid,
.stat-grid{
grid-template-columns:1fr;
}

.about-hero h1{
font-size:32px;
}

}