
/* Services Section */
.services {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #7cda24;
  bottom: -10px;
  left: 25%;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #7cda24;
  opacity: 0.05;
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-icon {
  font-size: 2.5rem;
  color: #7cda24;
  margin-bottom: 1rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: #7cda24;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-btn {
  display: inline-block;
  color: #7cda24;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.service-btn:hover::after {
  margin-left: 0.8rem;
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background-color: #f1f8e9;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.features-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.features-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-content {
  flex: 1;
  min-width: 300px;
}

.features-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.features-content p {
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  
}
.feature-list li{
    text-decoration: none;
    list-style: none;
}
.feature-item {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.feature-item::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #7cda24;
  position: absolute;
  left: 0;
  
}
.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #7cda24;
  transform: scale(1.3);
}

/* CTA Section */
.cta {
  padding: 5rem 5%;
  background: linear-gradient(
      to right,
      rgba(124, 218, 36, 0.9),
      rgba(124, 218, 36, 0.7)
    ),
    url("../wp-content/uploads/sukanya/handshake.jpg") center/cover no-repeat;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background-color: white;
  color: #00d084;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn:hover {
  background-color: transparent;
  color: white;
}
@media screen and (max-width: 768px) {
  

  .hamburger {
    display: block;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .features-container {
    flex-direction: column;
  }

  .features-image {
    order: -1;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .service-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}
