  /* Desktop view */
  .homepage-slider {
    width: 90%;
    height: 450px; /* Adjust as per your desktop design */
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .swiper-slide .label-2 {
    top: 90% !important;
  }

  /* Mobile view */
  @media screen and (max-width: 768px) {
    .homepage-slider {
      width: 100%;
      height: 200px; /* Adjust height for landscape in mobile */
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .swiper-slide .label-2 {
      top: 86% !important;
    }

  }