/* Testimonial Slider Styles */
#testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex !important;
  box-sizing: border-box;
  /* Remove any existing transition that might interfere */
  transition: none !important;
}

/* Optional: Add smooth hover effects for buttons */
#testimonial-prev:hover,
#testimonial-next:hover {
  background-color: rgba(59, 130, 246, 0.1);
  transform: translateY(-50%) scale(1.05);
}

/* Ensure buttons stay positioned correctly */
#testimonial-prev,
#testimonial-next {
  transition: all 0.2s ease;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .slides-wrapper {
    transition: transform 0.5s ease-in-out;
  }
  
  .testimonial-slide {
    flex-direction: column;
  }
}


@keyframes marquee {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-100%);
  }
}
