.swiper {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 60px;
  }
  
  .swiper-slide {
    position: relative;
    width: 100%;
    height: 600px;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
  }
  
  .overlay-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .overlay-text p {
    font-size: 1.4rem;
    max-width: 700px;
    font-family: "Poppins", sans-serif;
    line-height: 30px;
  }
  
  /* Swiper navigation buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: white;
    width: 40px;
    height: 40px;
    display:none;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .swiper,
    .swiper-slide,
    .swiper-slide img {
      height: 400px;
    }
  
    .overlay-text h2 {
      font-size: 1.8rem;
    }
  
    .swiper .overlay-text p {
      font-size: 1rem;
      line-height: 20px;
    }
  
    .swiper-button-next,
    .swiper-button-prev {
      width: 28px;
      height: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .swiper,
    .swiper-slide,
    .swiper-slide img {
      height: 300px;
    }
  
    .overlay-text h2 {
      font-size: 1.5rem;
    }
  
    .overlay-text p {
      font-size: 0.9rem;
    }
  
    .swiper-button-next,
    .swiper-button-prev {
      width: 22px;
      height: 22px;
    }
  }
  
  