/* Testimonial Carousel Styles */

.testimonial-carousel-container {
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  margin: 0;
}

.testimonial-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-text {
  flex: 1;
}

/* Indicators */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 0.5rem 0;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-indicator:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.testimonial-indicator.active {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: 1rem;
  }
}

