

.hero-overlay h1 {
  font-size: 3rem;
  color: #333;
  text-align: center;
}

/* Livelihood Section */
.livelihood {
  background: #f3f0ff; /* soft lavender background */
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.livelihood h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #5a2d82; /* deep purple for empowerment */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.livelihood p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}
.livelihood img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}


/* Donate Us */
.donate-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 20px;
  color: #d35400;
}
.donate-section p {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}
.donate-impact {
  background: #f9fdf9;
  padding: 30px;
  margin: 30px auto;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.donate-impact h3 {
  text-align: center;
  color: #27ae60;
  margin-bottom: 25px;
  font-size: 22px;
}

.donation-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateX(8px);
}

.step .icon {
  font-size: 28px;
  color: #d35400;
  min-width: 40px;
  text-align: center;
}

.donate-box h3 {
  text-align: center;
  color: #d35400;
  margin-bottom: 15px;
} 

.donate-box p {
  text-align: left;
  color: #555;
  margin-bottom: 20px;
}

.donate-btn-wrapper {
  text-align: center;   /* Centers the button */
  margin-bottom: 25px;
  margin-top: 10px;
}
.donate-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto;
}
.donate-btn {
  text-align: center;
  display: inline-block;
  padding: 12px 28px;
  background: #27ae60;   /* Green color */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.donate-btn:hover {
  background: #2ecc71;  /* Lighter green on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.donate-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
