/* Testimonials Section Styles */
.parent-testimonials {
  padding: 0rem 0;
  position: relative;
  overflow: hidden;
}

.wavy-line {
  text-align: center;
  margin: 1rem 0;
}

.wavy-line svg {
  width: 120px;
  height: 20px;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #1d3557;
  font-family: "Onest", sans-serif;
  font-weight: 700;
}

.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: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.quote-icon {
  color: #0661bc;
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

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

.author-image {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h5 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* 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%;
  }
}
