.main-title{
font-size:2rem;
font-weight:900;
text-transform:uppercase;
letter-spacing:2px;
color:white;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f7fb;
color:#222;
line-height:1.7;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
url('7. jpeg.jpeg');
background-size:cover;
background-position:center;
padding:20px 8%;
color:white;
display:flex;
flex-direction:column;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.brand{
display:flex;
align-items:center;
gap:15px;
}

.brand img{
width:70px;
height:70px;
border-radius:50%;
background:white;
padding:5px;
}

.brand h1{
font-size:1.3rem;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.nav-links a:hover{
color:#7ed957;
}

.hero-content{
margin:auto 0;
max-width:700px;
padding-top:80px;
}

.hero-content h2{
font-size:4rem;
line-height:1.1;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#7ed957;
color:#111;
padding:15px 30px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
transform:translateY(-4px);
background:white;
}

.section{
padding:90px 8%;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:2.8rem;
color:#1b4332;
}

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

.about-grid img{
width:100%;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

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

.stat-card{
background:white;
padding:25px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:22px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.gallery{
background:#eef6f0;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:18px;
transition:0.3s;
box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

.gallery-grid img:hover{
transform:scale(1.03);
}

.donate{
background:#1b4332;
color:white;
padding:80px 8%;
text-align:center;
}

.donation-box{
margin-top:30px;
background:rgba(255,255,255,0.1);
padding:30px;
border-radius:20px;
display:inline-block;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.contact-card{
background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

footer{
background:#111;
color:white;
text-align:center;
padding:25px;
}

@media(max-width:900px){

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

.hero-content h2{
font-size:2.5rem;
}

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

.nav-links{
margin-top:15px;
flex-wrap:wrap;
}

}
.contact-btn,
.whatsapp-btn{
display:block;
margin:12px auto;
padding:14px 20px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
width:90%;
max-width:300px;
transition:0.3s;
}

.contact-btn{
background:#1b4332;
color:white;
}

.whatsapp-btn{
background:#25D366;
color:white;
}

.contact-btn:hover,
.whatsapp-btn:hover{
transform:translateY(-3px);
opacity:0.9;
}
