/* Hero Banner – container with background image overlay */
.hero-banner-overlay {
  position: relative;
  padding: 24px 12px 32px;
  background: #f2f8f9;
}

.hero-banner-overlay .hero-banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-banner-overlay .hero-banner-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.12);
}

.hero-banner-overlay .banner-swiper {
  border-radius: 20px;
}

.hero-banner-overlay .banner-slide {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-banner-overlay .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 25, 47, 0.88) 0%, rgba(10, 25, 47, 0.72) 45%, rgba(10, 25, 47, 0.35) 100%);
  z-index: 1;
}

.hero-banner-overlay .hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 70px 60px;
  max-width: 680px;
}

.hero-banner-overlay .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.hero-banner-overlay .hero-badge i {
  font-size: 11px;
  color: #fff;
}

.hero-banner-overlay .title {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff !important;
}

.hero-banner-overlay .text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88) !important;
}

.hero-banner-overlay .text,
.hero-banner-overlay .text p,
.hero-banner-overlay .text span {
  color: rgba(255, 255, 255, 0.88) !important;
}

.hero-banner-overlay .banner-pagination {
  bottom: 24px !important;
  z-index: 3;
}

.hero-banner-overlay .banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-banner-overlay .banner-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 10px;
  background: #fff;
}

.hero-banner-overlay .banner-nav {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-banner-overlay .banner-nav .banner-prev,
.hero-banner-overlay .banner-nav .banner-next {
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-banner-overlay .banner-nav .banner-prev:after,
.hero-banner-overlay .banner-nav .banner-next:after {
  display: none;
}

.hero-banner-overlay .banner-nav .banner-prev:hover,
.hero-banner-overlay .banner-nav .banner-next:hover {
  background: #fff;
  color: var(--theme-color1);
}

@media (max-width: 991.98px) {
  .hero-banner-overlay .banner-slide {
    min-height: 460px;
  }

  .hero-banner-overlay .hero-slide-content {
    padding: 50px 36px;
  }

  .hero-banner-overlay .title {
    font-size: 34px;
  }
}

@media (min-width: 768px) {
  .hero-banner-overlay {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1200px) {
  .hero-banner-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-banner-overlay {
    padding: 16px 10px 24px;
  }

  .hero-banner-overlay .banner-slide {
    min-height: 400px;
  }

  .hero-banner-overlay .hero-slide-content {
    padding: 40px 24px 70px;
  }

  .hero-banner-overlay .title {
    font-size: 28px;
  }

  .hero-banner-overlay .banner-nav {
    right: 16px;
    bottom: 14px;
  }
}
