@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


    /* ✅ Adjustable banner height */
    .swiper {
      width: 100%;
      height: 75vh; /* You can change this (e.g. 60vh, 500px, 100vh) */
    }

    .swiper-slide {
      position: relative;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      background: #000;
      overflow: hidden;
    }

    .swiper-slide img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(70%);
      z-index: 1;
    }

    /* Dark overlay for readability */
    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background: rgba(0, 0, 0, 0.4);*/
      z-index: 1;
    }

    .slide-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 0 0px 0px 150px;
        text-align: left;
    }

    .slide-content h2 {
      font-family: "Rubik", sans-serif;
      font-size: 58px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .slide-content p {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 25px;
      line-height: 140%;
    }

    .slide-content a {
      font-family: 'Poppins', sans-serif;
      display: inline-block;
      background: #ee3522;
      color: #fff;
      padding: 12px 30px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .slide-content a:hover {
      background: #ee3522;
    }

    /* Pagination */
    .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.7;
    }

    .swiper-pagination-bullet-active {
      background: #ee3522;
      opacity: 1;
    }

    /* ✅ Responsive Design */
    @media (max-width: 992px) {
      .swiper {
        height: 65vh;
      }

      .slide-content {
        padding: 0 30px;
      }

      .slide-content h1 {
        font-size: 36px;
      }

      .slide-content p {
        font-size: 17px;
      }
    }

    @media (max-width: 768px) {

      .slide-content h2 {
        font-size: 40px;
      }

      .swiper {
        height: 55vh;
      }

      .swiper-slide {
        justify-content: center;
        align-items: center;
        text-align: center;
      }

      .slide-content {
        max-width: 90%;
        padding: 0 20px;
        text-align: center;
      }

      .slide-content h1 {
        font-size: 28px;
      }

      .slide-content p {
        font-size: 15px;
      }

      .slide-content a {
        padding: 10px 25px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .swiper {
        height: 50vh;
      }

      .slide-content {
        padding: 0 15px;
      }

      .slide-content h1 {
        font-size: 22px;
      }

      .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .slide-content a {
        padding: 8px 20px;
        font-size: 13px;
      }
    }