.swiper-navBtn {
  color: #00AEFF;
  background-color: #fff;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 10px rgb(0 174 255 / 15%);
  z-index: 400;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: 1px solid #00AEFF;
}

.swiper-navBtn:hover {
  background-color: #00AEFF;
  color: #fff;
  box-shadow: 0 4px 15px rgb(0 174 255 / 30%);
}

.swiper-navBtn i {
  font-size: 18px;
}

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

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

/* Ensure FontAwesome doesn't get overridden by Swiper default styles if any */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 1200px) {
  .swiper-navBtn {
    width: 36px;
    height: 36px;
  }

  .swiper-navBtn i {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: flex !important;
    /* Force display if previously hidden */
  }
}