/* Custom Swiper Styles for Partners Carousel */

.mySwiper {
  position: relative;
  width: 100%;
  padding: 0 80px 80px 80px;
}

.swiper-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.9);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(67, 69, 74, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  top: 43%;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-100%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 16px;
  height: 16px;
  stroke: #43454A;
  stroke-width: 2;
  fill: none;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-pagination {
  bottom: 20px !important;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #43454A !important;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #F87C2C !important;
  transform: scale(1.2);
}

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

@media (max-width: 768px) {
  .mySwiper {
    padding: 0 20px 40px 20px;
  }
  
  .swiper-wrapper {
    max-width: 100%;
  }
  
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none !important;
  }
  
  .swiper-slide {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .mySwiper {
    padding: 0 15px 30px 15px;
  }
  
  .swiper-slide {
    height: 80px;
  }
}
