

/* Testimonials Section */
.client-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  max-width: 400px;
}

.client-logo {
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
}

