/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 20px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-slide cite {
  font-style: normal;
  color: var(--secondary-color);
  font-weight: 500;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
}
