.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-slide {
  display: none; /* Hide all slides initially */
  flex-direction: column;
  align-items: center;
}

.testimonial-slide.active {
  display: flex; /* Only show the active slide */
}

.testimonial-text {
  /* font-size: 1.2em; */
  margin: 20px;
  max-width: 700px;
}

.testimonial-author {
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107; /* Yellow color for stars */
}

.testimonial-pagination {
  display: flex;
  margin-top: 20px;
}

.testimonial-pagination .dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.testimonial-pagination .dot.active {
  background-color: #ffc107; /* Yellow color for active dot */
}

#testimonials {
  padding: 3rem 0;
  height: 300px;
  background-image: url("../media/testimonials.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  margin-bottom: 0;
}
