.hero-swiper {
  width: 100%;
}
.hero-swiper .swiper-slide {
  height: auto;
  padding: 40px 0;
}

/* pulled inline styles into classes so they don't repeat per-slide */
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
}

/* Pagination dots */
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--bs-primary, #ff5a1f);
}

/* Nav arrows */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,0.12);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255,255,255,0.25);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero-swiper .swiper-slide { padding: 20px 0 50px; }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }
}
@media (max-width: 575px) {
  .hero-img-wrap { margin-top: 24px; }
}

