/* hero-slider.css */
.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  /* background: rgba(0, 0, 0, 0.3); */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
} */

.modal {
  transition: opacity 0.3s ease;
}

.modal-content {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal.active .modal-content {
  transform: scale(1);
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }

  .quote-form-container {
    margin-top: 2rem;
  }
}
