/* ===================================
   Custom Hero Slider Styles
   =================================== */

/* Wrapper ensures full width */
.cb-slide-inner {
	width: 100%;
}

.cb-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Each slide should fill container */
.cb-hero-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

/* If your hero banners are sections from Elementor, 
   they will inherit their own styling here. */

/* Pagination dots */
.cb-hero-slider .swiper-pagination {
  bottom: 20px !important;
}
.cb-hero-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.cb-hero-slider .swiper-pagination-bullet-active {
  background: #0c1e21;
  opacity: 1;
}

/* ===============================
   Navigation arrows
   =============================== */
.cb-hero-slider .swiper-button-next,
.cb-hero-slider .swiper-button-prev {
  color: #fff;                /* arrow color */
  background-color: #0c1e21;  /* background */
  border-radius: 50%;         /* round shape */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

/* Arrow gap from edges */
.cb-hero-slider .swiper-button-prev {
  left: 15px !important;
}
.cb-hero-slider .swiper-button-next {
  right: 15px !important;
}

/* Hover effect */
.cb-hero-slider .swiper-button-next:hover,
.cb-hero-slider .swiper-button-prev:hover {
  background-color: #123136;
}

.cb-hero-slider .swiper-button-next:after,
.cb-hero-slider .swiper-button-prev:after {
	font-size: 14px;
}

/* Hide arrows on Desktop */
@media (min-width: 1025px) {
  .cb-hero-slider.hide-arrows-desktop .swiper-button-prev,
  .cb-hero-slider.hide-arrows-desktop .swiper-button-next {
    display: none !important;
  }
}

/* Hide arrows on Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .cb-hero-slider.hide-arrows-tablet .swiper-button-prev,
  .cb-hero-slider.hide-arrows-tablet .swiper-button-next {
    display: none !important;
  }
}

/* Hide arrows on Mobile */
@media (max-width: 767px) {
  .cb-hero-slider.hide-arrows-mobile .swiper-button-prev,
  .cb-hero-slider.hide-arrows-mobile .swiper-button-next {
    display: none !important;
  }
}

