/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-ite {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 80px 0; */
}

.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-carousel h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-carousel p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-carousel .btn-get-started {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color, #2b4eff);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-carousel .btn-get-started:hover {
  background: var(--primary-color-dark, #1a3ccc);
}

/* Swiper Navigation Styles */
.hero-carousel .swiper-button-prev,
.hero-carousel .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hero-carousel .swiper-button-prev::after,
.hero-carousel .swiper-button-next::after {
  font-size: 24px;
  color: #fff;
}

.hero-carousel .swiper-button-prev:hover,
.hero-carousel .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Swiper Pagination Styles */
.hero-carousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.hero-carousel .swiper-pagination-bullet-active {
  background: var(--primary-color, #2b4eff);
}
