@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


    .swiper {
      width: 100%;
      height: 100vh;
    }

    .swiper-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .swiper-slide img,
    .swiper-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Overlay for better text readability */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.20);
      z-index: 1;
    }

    /* Text box */
    .banner-content {
    position: absolute;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 800px;
    left: 60px;
    top: 81%;
    transform: translateY(-50%);
}

    .banner-content h2 {
    font-family: "Inter Tight", sans-serif;

        font-size: 62px;
        margin-bottom: 15px;
        line-height: 140%;
        letter-spacing: 10px;
    }

    .banner-content h2 span{
        color: #58b7f6;
    }

    .banner-content p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      color: #eee;
    }

    .banner-content button {
      background: #ffcc00;
      color: #000;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .banner-content button:hover {
      background: #fff;
      color: #000;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
    }

    .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.7;
    }

    .swiper-pagination-bullet-active {
      background: #ffcc00;
    }

    @media (max-width: 768px) {
      .banner-content {
        left: 30px;
      }
      .banner-content h2 {
        font-size: 2rem;
      }
      .banner-content p {
        font-size: 1rem;
      }
    }