*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Poppins', sans-serif;
}

body{
background: linear-gradient(135deg,#fff3e0,#ffe0b2);
color:#333;
}

/* Header */

header{
background: linear-gradient(90deg,#ff6a00,#ee0979);
color:white;
text-align:center;
padding:40px 20px;
font-size:28px;
letter-spacing:2px;
box-shadow:0px 4px 10px rgba(0,0,0,0.3);
}

/* Navigation */

nav{
display:flex;
justify-content:center;
background:#222;
padding:15px;
}

nav a{
color:white;
text-decoration:none;
margin:0 20px;
font-size:18px;
transition:0.3s;
}

nav a:hover{
color:#ff9800;
transform:scale(1.1);
}

/* Sections */

section{
padding:60px 20px;
text-align:center;
}

/* Gallery */

.gallery{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:20px;
}

.gallery img{
width:220px;
height:220px;
object-fit:cover;
border-radius:12px;
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.gallery img:hover{
transform:scale(1.1);
}

/* Aarti Timing */

#aarti ul{
list-style:none;
font-size:20px;
margin-top:20px;
}

#aarti li{
padding:10px;
background:#fff;
margin:10px auto;
width:300px;
border-radius:8px;
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

/* Donation */

#donation{
background:#fff3cd;
border-radius:10px;
}

#donation img{
margin-top:15px;
border-radius:10px;
}

/* Volunteer Form */

form{
margin-top:20px;
}

form input{
display:block;
margin:15px auto;
padding:12px;
width:260px;
border:1px solid #ccc;
border-radius:6px;
}

button{
background:#ff5722;
color:white;
padding:12px 25px;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#e64a19;
transform:scale(1.05);
}

/* Footer */

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}