body {
  overflow-x: hidden;
}
.swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-swiper {
  background: #000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-swiper.is-ready {
  opacity: 1;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide video,
.swiper-slide .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.custom-progress-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  right: 10%;
  display: flex;
  gap: 8px;
  padding: 0;
  z-index: 10;
}

.custom-progress-bar {
  flex: 1;
  height: 2px;
  background: #ffffff33;
  overflow: hidden;
}

.custom-progress-fill {
  height: 100%;
  background: #ffffff;
  transition: width 0.1s linear;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #ffffff !important;
  width: 40px !important;
  height: 40px !important;
  z-index: 50;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  display: none !important;
}

.hero-swiper .swiper-button-next img,
.hero-swiper .swiper-button-prev img {
  width: 40px;
  height: 40px;
}
.swiper-navigation-icon {
  display: none !important;
}
.hero-swiper .swiper-button-prev {
  left: 3rem !important;
}
.hero-swiper .swiper-button-next {
  right: 3rem !important;
}

@media (min-width: 1920px) {
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
  }
  .hero-swiper .swiper-button-next img,
  .hero-swiper .swiper-button-prev img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none !important;
  }

  .custom-progress-container {
    bottom: 1rem;
    left: 4%;
    right: 4%;
  }
}
