/* Hero Slider Styles */
.hero-slider-container {
  position: absolute;
  top: 0;
  left: .3%;
  width: 99.4%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
}


.hero-swiper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* Desktop image - visible on screens larger than 768px */
.desktop-image {
  display: block;
}

/* Mobile image - hidden by default, visible on screens 768px and below */
.mobile-image {
  display: none;
}

/* Show mobile image and hide desktop image on mobile devices */
@media (max-width: 768px) {
  .desktop-image {
    display: none !important;
  }

  .mobile-image {
    display: block !important;
  }
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white !important;
  background: rgba(0, 0, 0, 0.7) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  margin-top: 0 !important;
  top: auto !important;
  bottom: 80px !important;
  transform: none !important;
}

.hero-swiper .swiper-button-next {
  right: 20px !important;
}

.hero-swiper .swiper-button-prev {
  right: 80px !important;
  left: auto !important;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.05) !important;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-family: Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: bold !important;
  color: white !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-swiper .swiper-button-next::after {
  content: '→' !important;
}

.hero-swiper .swiper-button-prev::after {
  content: '←' !important;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
  bottom: 30px !important;
  z-index: 10 !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  margin: 0 6px !important;
  border-radius: 5px !important;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: white !important;
  border-color: white !important;
  transform: scale(1.3) !important;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    bottom: 60px !important;
  }

  .hero-swiper .swiper-button-prev {
    right: 75px !important;
  }

  .hero-swiper .swiper-button-next::after,
  .hero-swiper .swiper-button-prev::after {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    bottom: 50px !important;
  }

  /* Hero Slider Styles */
  .hero-slider-container {
    position: absolute;
    top: 0;
    left: .3%;
    width: 99.4%;
    height: 90%;
    z-index: 1;
    border-radius: 30px;
  }

  .hero-swiper .swiper-button-prev {
    right: 65px !important;
  }

  .hero-swiper .swiper-button-next::after,
  .hero-swiper .swiper-button-prev::after {
    font-size: 14px !important;
  }
}