/* Hero Slider Scoped CSS */
.pp-hero-slider-section {
  position: relative;
  width: 100%;
}

.swiper.pp-hero-swiper {
  width: 100%;
  height: 730px;
  max-width: 100%;
  padding: 0px !important;
}
.pp-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--blue);
  background-image: var(--bg-desktop);
}

/* Overlay */
.pp-hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pp-hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pp-hero-slide.align-left {
  text-align: left;
}
.pp-hero-slide.align-center {
  text-align: center;
}
.pp-hero-slide.align-right {
  text-align: right;
}

.pp-hero-heading {
  margin-bottom: 20px;
  color: var(--white);
}

.pp-hero-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.pp-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.pp-hero-btn:hover {
  background-color: var(--white);
  color: var(--blue);
}

/* Swiper Controls Customization */
.pp-hero-swiper .swiper-button-next,
.pp-hero-swiper .swiper-button-prev {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.pp-hero-swiper .swiper-button-next:after,
.pp-hero-swiper .swiper-button-prev:after {
  font-size: 20px;
}
.pp-hero-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px !important;
}
.pp-hero-swiper .swiper-pagination-bullet {
  background: var(--white);
  transition: all 0.3s;
  width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 50%;
}
.pp-hero-swiper .swiper-pagination-bullet-active,
.pp-hero-swiper .swiper-pagination-bullet:hover {
  background: var(--orange);
  transition: all 0.3s;
  width: 30px;
  height: 6px;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .swiper.pp-hero-swiper {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .pp-hero-swiper .swiper-button-next,
  .pp-hero-swiper .swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }

  .pp-hero-swiper .swiper-button-next:after,
  .pp-hero-swiper .swiper-button-prev:after {
    font-size: 14px;
  }
  .pp-hero-slide {
    background-image: var(--bg-mobile);
  }
  .swiper.pp-hero-swiper {
    height: 400px;
  }
}
