/* Swiper container */
/* Ensures swiper container takes full width and centers content */
 /* Ensures swiper container takes full width */
 :root{
     
    --color1:#000000;
    --color2:#1FDCC9;
    --color3:#40dbbe;
   /* --color3:#14d5c1;*/
    --color4:#f5f5f5;
    --color5:#000000;
    --color6:#cecbcb1e;
    

}
 .swiper {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    background-color: rgb(0, 0, 0);
  }
  
  /* Ensures each slide takes the full width of the container */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Makes sure images are centered inside the slide */
  .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain; /* Make sure images fit within their container */
    margin: 0 auto; /* Ensure image is centered horizontally */
  }
  .swiper-button-container {
    position: absolute;
    bottom: 20px;  /* Adjust the position to your preference */
    left: 70%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-button {
    background-color: var(--color1);
    color: var(--color3) !important;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

.swiper-button:hover {
    background-color: var(--color4);
}


/* Navigation arrows */
 /* hide the control */
/* .swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Pagination dots */
/* .swiper-pagination-bullet {
    background: #f6f7f6 !important;
    width: 12px;
    height: 12px;
    margin: 0 5px;
} */

.swiper-pagination-bullet-active {
    background: #40dbbe !important;
}
  /* Mobile responsive styles */
  @media (max-width: 999px) {
    .swiper {
      max-width: 100%;
      height: 50vh;
    }
  
    .swiper-slide {
      width: 100%;
    }
  
    .swiper-slide img {
      max-width: 100%; /* Ensures image fits on mobile */
    }
    .swiper-button {
 
        padding: 10px 10px;
        font-weight: bold;
        font-size: 18px;
    }
  }
  @media (max-width: 768px) {
    .swiper {
      max-width: 100%;
      height: 40vh;
    }
  
    .swiper-slide {
      width: 100%;
    }
  
    .swiper-slide img {
      max-width: 100%; /* Ensures image fits on mobile */
    }
    .swiper-button-container {
        position: absolute;
        bottom: 20px;  /* Adjust the position to your preference */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    .swiper-button {
 
        padding: 3px 3px;
        font-weight: bold;
        font-size: 14px;
    }
  }
  @media (max-width: 468px) {
    .swiper {
      max-width: 100%;
      height: 30vh;
    }
  
    .swiper-slide {
      width: 100%;
    }
  
    .swiper-slide img {
      max-width: 100%; /* Ensures image fits on mobile */
    }
    .swiper-button-container {
        position: absolute;
        bottom: 20px;  /* Adjust the position to your preference */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    .swiper-button {
 
        padding: 3px 3px;
        font-weight: bold;
        font-size: 14px;
        width: 100%;
    }
  }

