.services-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
}

.service-card {
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #198754;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(25, 135, 84, 0.1);
}

@media (max-width: 576px) {
  .service-card {
    padding: 2rem 1.5rem;
  }
}

.vision-mission-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(25, 135, 84, 0.1);
}

.vm-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #198754;
}

ul li {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}


.about.section {
  background-color: #f8f9fa;
}

.content-title {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.about-text p {
  line-height: 1.8;
  font-size: 1rem;
}

.img-overlap {
  transition: all 0.4s ease;
}

.img-overlap:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



/*Impact css*/
.impact-item {
  transition: all 0.4s ease;
}

.impact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.impact-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #e9f5ec;
  transition: transform 0.4s ease;
}

.impact-item:hover .impact-img img {
  transform: scale(1.05);
  border-color: #198754;
}


/*Intro section css*/
.intro.section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.intro h1 {
  letter-spacing: 0.5px;
}

.intro h3 {
  color: #2c3e50;
}

.intro p {
  line-height: 1.8;
}

.btn-success {
  background-color: #198754;
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #157347;
  transform: translateY(-3px);
}



/* Smooth hover effect for team cards */
    .team-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  }

  .team-img .overlay {
    transition: opacity 0.4s ease;
  }

  .team-img:hover .overlay {
    opacity: 1;
  }

  .team-img p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
  }

  /* Hover animation for cards */
    .hover-card {
      transition: all 0.3s ease-in-out;
      background: #fff;
    }
    .hover-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .icon-box {
      transition: background 0.3s ease;
    }
    .hover-card:hover .icon-box {
      background: #198754 !important;
      color: #fff !important;
    }

    /*Testimonies */
     .testimonial-card {
      background: #fff;
      transition: all 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .testimonial-img img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border: 3px solid #198754;
    }
    blockquote {
      font-size: 0.95rem;
      line-height: 1.6;
    }

     .blog-card {
      background: #fff;
      transition: all 0.3s ease;
    }
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .blog-img img {
      height: 220px;
      object-fit: cover;
    }
    .blog-date {
      top: 15px;
      left: 15px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .hover-success:hover {
      color: #198754 !important;
    }

.bg-darkgreen {
  background-color: #0A4B10;
}

/*Members Css*/
.member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-card img {
    transition: transform 0.35s ease;
}

.member-card:hover img {
    transform: scale(1.05);
}

