body{
font-family:'Poppins',sans-serif;
margin:0;
background:#f8f9fb;
color:#333;
}

header{
display:flex;
justify-content:space-between;
padding:20px 8%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
display:flex;
align-items:center;
height:50px;
}

.logo img{
max-height:50px;
width:auto;
object-fit:contain;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#444;
}

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
z-index:-2;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:-1;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.btn{
background:#ff7a00;
padding:14px 30px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:600;
display:inline-block;
margin-top:20px;
}

section{
padding:70px 8%;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:30px;
}

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

.stat{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

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

.project-card{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.donate{
background:#1a73e8;
color:white;
}

.contact-info{
max-width:600px;
margin:auto;
line-height:1.8;
}

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

/* Modal Styles */
.modal{
display:none;
position:fixed;
z-index:1000;
left:0;
top:0;
width:100%;
height:100%;
background-color:rgba(0,0,0,0.6);
}

.modal.active{
display:flex;
align-items:center;
justify-content:center;
}

.modal-content{
background-color:white;
padding:40px;
border-radius:10px;
width:90%;
max-width:500px;
box-shadow:0 10px 40px rgba(0,0,0,0.2);
position:relative;
}

.modal-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
border-bottom:2px solid #f0f0f0;
paddingbottom:15px;
}

.modal-header h2{
margin:0;
color:#1a73e8;
font-size:24px;
}

.close-btn{
background:none;
border:none;
font-size:28px;
color:#999;
cursor:pointer;
padding:0;
width:30px;
height:30px;
display:flex;
align-items:center;
justify-content:center;
}

.close-btn:hover{
color:#333;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:8px;
font-weight:600;
color:#333;
font-size:14px;
}

.form-group input,
.form-group select{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:5px;
font-size:14px;
font-family:'Poppins',sans-serif;
box-sizing:border-box;
transition:border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus{
outline:none;
border-color:#1a73e8;
box-shadow:0 0 5px rgba(26,115,232,0.2);
}

.submit-btn{
width:100%;
padding:14px;
background:#ff7a00;
color:white;
border:none;
border-radius:5px;
font-size:16px;
font-weight:600;
cursor:pointer;
font-family:'Poppins',sans-serif;
transition:background 0.3s;
}

.submit-btn:hover{
background:#e56a00;
}

@media(max-width:600px){
.modal-content{
width:95%;
padding:25px;
}

.modal-header h2{
font-size:20px;
}
}