/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #022a44;
}

/* Carousel container */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Each slide */
.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

/* Testimonial content */
.testimonial-content {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial-content h4 {
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: #022a44;
}

.testimonial-content span {
  font-size: 0.9rem;
  color: #666;
}

/* Star rating */
.star-rating {
  margin: 0.5rem 0 1rem;
}

.star-rating .star {
  width: 20px;
  height: 20px;
  fill: #fbc02d;
  margin-right: 2px;
}

/* Dots navigation */
.testimonial-dots {
  margin-top: 1.5rem;
}

.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: #022a44;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 600px) {
  .testimonial-content {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
