/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  background: #0066cc;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url("https://via.placeholder.com/1400x400/004488/ffffff?text=Saylani+Welfare") no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero button {
  background: #ffcc00;
  border: none;
  padding: 12px 25px;
  color: black;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.hero button:hover {
  background: #e6b800;
}

/* About */
.about {
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  margin-bottom: 15px;
}

/* Services */
.services {
  padding: 50px 20px;
  background: #f4f4f4;
  text-align: center;
}

.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Donation */
.donation {
  text-align: center;
  padding: 50px 20px;
}

.donation button {
  background: #0066cc;
  border: none;
  padding: 12px 25px;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.donation button:hover {
  background: #004c99;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
