/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.testimonials-heading {
  font-size: 2rem;
  color: #1a3d2f;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  text-align: center;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 0.25rem;
}

.client-title {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.client-quote {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.stars i {
  color: #f57c00;
  margin: 0 1px;
  font-size: 1rem;
}

/* Clients Section (Matches Testimonials Style) */
.clients-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.clients-section .section-title {
  font-size: 2rem;
  color: #1a3d2f;
  margin-bottom: 1rem;
}

.clients-section .section-subheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
}

.client-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  max-width: 160px;
  text-align: center;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-card img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.client-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
}
