/* Parent Testimonials Section Styles */
.parent-testimonials {
  padding: 0;
  text-align: center;
  margin-bottom: 2rem;
}

.wavy-line {
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}

.wavy-line svg {
  width: 100%;
  max-width: 1200px;
}

.testimonials-heading {
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
  color: var(--text-dark-grey);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  position: relative;
}

.quote-icon {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #475060;
  font-family: "IBM Plex Sans", sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.author-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark-grey);
}

.author-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .testimonials-heading {
    font-size: 2rem;
  }
}

/* Testimonials Section Styles */

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1068px) {
  .testimonials-container {
    gap: 1.5rem;
  }

  .testimonial-card {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }
}
