
.hero-section.style-4 {
    border-radius: 0px !important;
}
.hero-slide-overlay {
  background-color: rgba(6, 50, 50, 0.5);
  padding: 40px 20px;
  width: 100%;
  position: relative;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  /*filter: brightness(1.15);*/
  z-index: 0;
}

.hero-slide-overlay .container {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-bottom: 60px;
}

.hero-section.style-4 .hero-content .sub-title {
  color: var(--white-color);
}

.hero-section.style-4 .hero-content .title {
  color: var(--white-color);
}

.hero-section.style-4 .hero-content .text {
	margin-top: 10px;
   color: var(--white-color);
}

@media (max-width: 991px) {
  .hero-slide-overlay {
    background-color: rgba(6, 50, 50, 0.5); /* Dark overlay */
    padding: 0px 20px;
    border-radius: 0px;
    max-width: 100%;
  }

  .hero-content h1.title {
      font-size: 36px;
      text-align: left;
  }

  .hero-content p.text {
    font-size: 16px;
    text-align: left;
  }

  .hero-content .theme-btn {
    display: block;
    margin: 20px auto 0;
  }
}
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
  transition: color 0.3s ease;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease-in-out;
}
.swiper-slide-active {
  transform: scale(1.03);
}



@media (max-width: 767px) {	
  .hero-section .container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 40px 10px;
	 margin-bottom: 20px;
    text-align: left;
  }

}

