.swiper.mySwiperHorizontal {
  width: 90%;
  padding: 40px 0;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 100px;
  width: auto;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
}

.swiper-pagination {
  text-align: center;
}

/* Slider */
.slider-container {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}

.slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slides {
  display: flex;
  width: 500%;
  height: 100%;
  animation: slideShow 25s infinite;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 25s infinite;
}

.dots span:nth-child(1)  { animation-delay: 0s; }
.dots span:nth-child(2)  { animation-delay: 5s; }
.dots span:nth-child(3)  { animation-delay: 10s; }
.dots span:nth-child(4)  { animation-delay: 15s; }
.dots span:nth-child(5)  { animation-delay: 20s; }

/* Animations */
@keyframes slideShow {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(0%); }
  25%  { transform: translateX(-100%); }
  45%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  70%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  95%  { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}
