/* Testimonial Slider Styles */
.testimonial-slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

/* Navigation controls */
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-prev,
.testimonial-next {
  background-color: var(--md-primary-fg-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--md-primary-fg-color--dark);
}

/* Dots */
.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s;
}

.testimonial-dot.active {
  background-color: var(--md-primary-fg-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 0 10px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}