.volunteer-hero {
  width: 100%;
  height: 90vh;
  background: url('../assets/images/volunteer.png') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.volunteer-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.volunteer-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1.2s ease;
}

.volunteer-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.volunteer-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background: #28a745;
  color: #fff;
}

.btn-primary:hover {
  background: #1e7e34;
}

/* Secondary Button */
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  #donateSection {
    padding: 80px 20px;
    background: #f4f9f6;
}

.donate-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXT SIDE */
.donate-text {
    flex: 1;
    min-width: 300px;
}

.donate-text h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 20px;
}

.donate-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* BUTTON */
.sect-donate-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #1b5e20;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
}

.sect-donate-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}

/* IMAGE SIDE */
.donate-image {
    flex: 1;
    min-width: 300px;
}

.donate-image img {
    width: 100%;
    border-radius: 1px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#learnMoreSection {
    background: #ffffff;
    padding: 90px 20px;
}

.learn-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.learn-container h2 {
    font-size: 2.6rem;
    color: #1b5e20;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* GRID */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* BOX */
.learn-box {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 1px;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.learn-box:hover {
    transform: translateY(-6px);
}

/* ICONS */
.learn-box i {
    font-size: 40px;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* TEXT */
.learn-box h3 {
    margin-bottom: 10px;
    color: #1b5e20;
}

.learn-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BUTTON */
.learn-btn-wrapper {
    margin-top: 40px;
}

.learn-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #1b5e20;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.learn-btn:hover {
    background: #2e7d32;
    transform: scale(1.05);
}

.partnerwithus {
    background: #f8fbf8;
    padding: 90px 20px;
}

.partner-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* TEXT SIDE */
.partner-text {
    flex: 1;
    min-width: 320px;
}

.partner-text h2 {
    font-size: 2.6rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.partner-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES */
.partner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature i {
    color: #2e7d32;
    font-size: 20px;
}

/* BUTTON */
.partner-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 30px;
    background: #1b5e20;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.partner-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}

/* IMAGES SIDE */
.partner-images {
    flex: 1;
    min-width: 320px;
    display: grid;
    gap: 20px;
}

.partner-images img {
    width: 100%;
    border-radius: 1px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ourimpact {
    background: #ffffff;
    padding: 90px 20px;
}

.impact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* TEXT SIDE */
.impact-text {
    flex: 1;
    min-width: 320px;
}

.impact-text h2 {
    font-size: 2.6rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.impact-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* IMPACT POINTS */
.impact-points {
    margin: 25px 0;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f9f6;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.point i {
    color: #2e7d32;
    font-size: 20px;
}

/* IMAGE */
.impact-image {
    flex: 1;
    min-width: 320px;
}

.impact-image img {
    width: 100%;
    border-radius: 1px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .impact-container {
        flex-direction: column;
        text-align: center;
    }

    .point {
        justify-content: center;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .partner-container {
        flex-direction: column;
        text-align: center;
    }

    .partner-features {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .donate-container {
        flex-direction: column;
        text-align: center;
    }

    .donate-btn {
        width: 100%;
    }
}
/* Responsive */
@media (max-width: 768px) {
  .volunteer-content h1 {
    font-size: 2.5rem;
  }

  .volunteer-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}