/* ============================================
   WHO WE SERVE - PROFESSIONAL SIDE ARROWS FIX
   Left & Right Center Alignment
   ============================================ */

/* Make wrapper relative for absolute positioning */
.who-we-serve-swiper-wrapper {
  position: relative;
}

/* Left Arrow - Vertically Center */
.swiper-button-prev-custom {
  position: absolute;
  top: 42% !important;
  left: -28px;
  transform: translateY(-50%) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(10, 52, 50, 0.18);
  z-index: 25;
  border: 2px solid transparent;
}

/* Right Arrow - Vertically Center */
.swiper-button-next-custom {
  position: absolute;
  top: 40% !important;
  right: -28px;
  transform: translateY(-50%) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(10, 52, 50, 0.18);
  z-index: 25;
  border: 2px solid transparent;
}

/* Hover Effects */
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--primary-orange);
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 8px 28px rgba(219, 90, 54, 0.35);
  border-color: rgba(255,255,255,0.2);
}

/* Pagination fix */
.swiper-pagination-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 45px;
}

/* Old bottom navigation removal */
.swiper-navigation-custom {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .swiper-button-prev-custom {
    left: 10px;
  }
  .swiper-button-next-custom {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 44px;
    height: 44px;
  }
  
  .swiper-button-prev-custom svg,
  .swiper-button-next-custom svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 40px;
    height: 40px;
    top: 40% !important;
  }
}