 /* Slider wrapper */
  .banner-slider {
    width: 100%;
    max-width: 1920px;
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    position: relative;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay */
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.25)
    );
  }

  /* Content */
  .slide-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    z-index: 10;
  }

  .slide-content h2 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .slide-content p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.5;
    opacity: 0.9;
  }

  .slide-content a {
    display: inline-block;
    padding: 10px 26px;
    background: #ff9800;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
  }

  .slide-content a:hover {
    background: #fff;
  }

  /* Navigation */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    scale: 0.8;
  }

  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }


  /* ===============================
   Responsive Design
   =============================== */

@media (max-width: 1024px) {
  .banner-slider .slide-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .banner-slider {
    height: 65vh;
  }

  .banner-slider .slide-content {
    left: 6%;
    right: 6%;
    max-width: 100%;
    text-align: center;
  }

  .banner-slider .slide-content h2 {
    font-size: 28px;
  }

  .banner-slider .slide-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .banner-slider {
    height: 60vh;
  }

  .banner-slider .slide-content h2 {
    font-size: 22px;
  }
}
