.hero-banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-swiper .swiper-slide .container {
  position: relative;
  z-index: 2;
}

.hero-swiper .swiper-slide h1 {
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  font-weight: 700;
}

.hero-swiper .swiper-slide p {
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-swiper .swiper-slide .btn {
  padding: 12px 30px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.hero-swiper .swiper-slide .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: white;
  transform: scale(1.2);
}

.hero-button-prev, .hero-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-button-prev:hover, .hero-button-next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-swiper .swiper-slide h1 {
    font-size: 2.5rem;
  }

  .hero-swiper .swiper-slide p {
    font-size: 1.1rem;
  }

  .hero-button-prev, .hero-button-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-swiper .swiper-slide h1 {
    font-size: 2rem;
  }

  .hero-swiper .swiper-slide p {
    font-size: 1rem;
  }

  .hero-swiper .swiper-slide .btn {
    padding: 10px 20px;
  }
}

/* Animation classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate__delay-1s {
  animation-delay: 0.5s;
  opacity: 0;
}

.animate__delay-2s {
  animation-delay: 1s;
  opacity: 0;
}
