.hero {
  padding: 0 !important;
}

.hero-swiper {
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .slide-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-btn {
  text-align: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-accent);
  padding: 8px 16px;
  color: white;
  transition: all 0.3s;
}

.cta-btn:hover {
  cursor: pointer;
  background-color: var(--color-accent);
}

.slide-content h1,
.slide-content h2 {
  color: white;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-swiper .slide-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-swiper .slide-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
    .cta-btn {
    padding: 6px 12px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .hero-swiper .slide-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }

  .cta-btn {
    padding: 6px 12px;
  }
}
