.description {
  font-size: 48px;
  line-height: 1.1;
  margin: 0;
}

.card-title-visible::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  opacity: 0.2;
  z-index: -1;
  height: 100%;
}
/* ===== TESTIMONIALS SECTION ===== */

#testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: flex-start;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: 999px; /* Capsule shape */
  padding: 20px 30px 20px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 50%;
}
.testimonial-card:nth-child(2n) {
  margin-left: auto;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background-color: #e8f5e9;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2d5a27;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2d5a27;
  font-size: 40px;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.testimonial-rating {
  color: #f1c40f;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-name {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #2d5a27;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .description {
    font-size: 40px;
  }
  .testimonial-card {
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    max-width: 100%;
  }

  .testimonial-avatar {
    margin-bottom: 10px;
  }
  header {
    top: 0;
  }
  .hamburger {
    display: none;
  }
  .logo {
    flex-direction: column;
  }
  .cta-btn {
    display: none;
  }
  .hero {
    padding: 20px;
    flex-direction: column;
    font-size: 16px;
    height: auto;
  }
  .hero h1 {
    font-size: 46px;
  }
  .services-slider {
    overflow: visible;
  }
  .services-grid {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 10px;
  }
  .slide {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 10px;
    width: 100%;
  }
  .service-card {
    height: 250px;
    min-height: 250px;
    width: 100%;
    border-radius: 10px;
  }
  .card-title-visible {
    font-size: 1.4rem;
    bottom: 20px;
    left: 20px;
    /* position: relative; */
  }
  .card-content h3 {
    font-size: 1.2rem;
  }
  .slider-arrow {
    display: none;
  }
  .slider-arrow.left {
    left: -5px;
  }
  .slider-arrow.right {
    right: -5px;
  }
  .footer-content {
    flex-direction: column;
    row-gap: 50px;
  }
  .separator {
    visibility: hidden;
  }
}
