/* Slider base */
.banner-carousel .swiper-slide {
  width: 100%;
  height: 550px;
  position: relative;
}

.slide-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.content-inner {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.content-inner h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.content-inner p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.content-inner .btn {
  background: transparent;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  transition: background 0.3s;
  border: 1px solid #fff;
}

.content-inner .btn:hover {
  background: #d72a21;
}

/* ===============================
   FIX #1 – Hide arrows initially
   =============================== */
.banner-carousel .swiper-button-next,
.banner-carousel .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Arrow styling */
.banner-carousel .swiper-button-next::after,
.banner-carousel .swiper-button-prev::after {
  color: #fff;
  font-size: 22px;
}

/* Pagination dots */
.banner-carousel .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.banner-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .banner-carousel .swiper-slide {
    height: min(550px, 85vh);
  }

  .content-inner h2 {
    font-size: 1.8rem;
  }

  .content-inner p {
    font-size: 1rem;
  }
}