    @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

    .swiper {
      width: 100%;
      height: 90vh;
    }

    .slide {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex !important;
      align-items: center;
      background-size: cover;
      background-position: center;
    }

    /* Overlay */
    .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;

  /* Left to right fade */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

    /* Content Left */
    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      color: #fff;
      padding-left: 80px;
    }

    .slide-content h2 {
      font-family: "Jost", sans-serif;
      font-size: 58px;
      line-height: 110%;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .slide-content p {
      font-family: "Jost", sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 120%;
      margin-bottom: 20px;
    }

  .slide-content a {
  font-family: "Jost", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
}

/* Arrow */
.slide-content a::after {
  content: "→";
  transition: transform 0.3s ease;
}

/* Hover effect */
.slide-content a:hover {
  color: #000;
  background: #f6e0b3; /* change color */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Arrow move on hover */
.slide-content a:hover::after {
  transform: translateX(5px);
}

    /* Pagination */
    .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.6;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
      background: #ff4d4d;
    }

    /* Responsive */
    @media(max-width:768px){
      .slide-content {
        padding-left: 20px;
      }

      .slide-content h2 {
        font-size: 20px;
      }

      .slide-content p {
    font-size: 16px;
}

    }

@media only screen and (max-width: 800px) {


.swiper {
    height: 35vh;
}

}