

  /* ─── BANNER SECTION ─── */
  .banner-section.index-three {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-bottom: 80px;
  }

  /* ─── VIDEO BG ─── */
  .banner-section.index-three .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .banner-section.index-three .banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .banner-section.index-three .banner-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  /* ─── Z-INDEX FIX ─── */
  .banner-section.index-three .container,
  .banner-section.index-three .banner-carousel-third {
    position: relative;
    z-index: 2;
  }

  /* ─── HERO TEXT ─── */
  .banner-section.index-three .banner-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .banner-section.index-three .display-one {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    word-break: break-word;
    color: #fff;
  }

  .banner-section.index-three .banner-desc {
    font-weight: 500;
    line-height: 1.7;
    max-width: 600px;
    color: #fff;
  }

  /* ─── SWIPER ─── */
  .banner-section.index-three .banner-carousel-third {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }

  .banner-section.index-three .swiper {
    width: 100%;
    padding-bottom: 40px !important;
    overflow: visible !important;
  }

  .banner-section.index-three .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .banner-section.index-three .swiper-slide {
    height: auto;
    display: flex;
  }

  .banner-section.index-three .slide-single {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }

  .banner-section.index-three .banner-img {
    width: 100%;
    display: block;
  }

  .banner-section.index-three .banner-img img {
    width: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 14px;
  }

  .banner-section.index-three .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
  }
  .banner-section.index-three .swiper-pagination-bullet-active {
    opacity: 1;
  }

  /* ══════════════════════════════════════
     MOBILE  ≤ 767px
  ══════════════════════════════════════ */
  @media (max-width: 767px) {
    .banner-section.index-three {
      padding-bottom: 50px;
    }
    .banner-section.index-three .banner-hero-text {
      padding-top: 120px;
      padding-bottom: 80px;
      gap: 12px;
    }
    .banner-section.index-three .display-one {
      font-size: 2rem;
    }
    .banner-section.index-three .banner-desc {
      font-size: 0.875rem;
    }
    .banner-section.index-three .banner-img img {
      height: 200px !important;
    }
  }

  /* ══════════════════════════════════════
     TABLET  768px – 991px
  ══════════════════════════════════════ */
  @media (min-width: 768px) and (max-width: 991px) {
    .banner-section.index-three {
      padding-bottom: 60px;
      min-height: 100vh;
    }
    .banner-section.index-three .banner-hero-text {
      padding-top: 110px;
      padding-bottom: 30px;
      gap: 16px;
    }
    .banner-section.index-three .display-one {
      font-size: 3.5rem;              /* 56px — clear on tablet */
    }
    .banner-section.index-three .banner-desc {
      font-size: 1rem;
      max-width: 520px;
    }
    .banner-section.index-three .banner-img img {
      height: 260px !important;       /* tall enough to see clearly */
    }
    .banner-section.index-three .swiper {
      padding-bottom: 36px !important;
    }
  }

  /* ══════════════════════════════════════
     SMALL LAPTOP  992px – 1199px
  ══════════════════════════════════════ */
  @media (min-width: 992px) and (max-width: 1199px) {
    .banner-section.index-three {
      padding-bottom: 80px;
    }
    .banner-section.index-three .banner-hero-text {
      padding-top: 120px;
      padding-bottom: 36px;
    }
    .banner-section.index-three .display-one {
      font-size: 4.5rem;              /* 72px */
    }
    .banner-section.index-three .banner-desc {
      font-size: 1rem;
      max-width: 560px;
    }
    .banner-section.index-three .banner-img img {
      height: 300px !important;
    }
  }

  /* ══════════════════════════════════════
     LARGE LAPTOP / DESKTOP  ≥ 1200px
  ══════════════════════════════════════ */
  @media (min-width: 1200px) {
    .banner-section.index-three {
      padding-bottom: 120px;
    }
    .banner-section.index-three .banner-hero-text {
      padding-top: 130px;
      padding-bottom: 40px;
    }
    .banner-section.index-three .display-one {
      font-size: 6rem;                /* 96px */
    }
    .banner-section.index-three .banner-desc {
      font-size: 1.05rem;
      max-width: 620px;
    }
    .banner-section.index-three .banner-img img {
      height: 340px !important;
    }
  }

