.slider-slide {
      width: 100%;
      background-size: cover; /* Set background image to cover */
      background-position: center; /* Center the background image */
      position: relative;
    }
    
    .text-container {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 20px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
      width: 40%;
      right: 0;
    }
    
    .text-container h2 {
      font-size: 2.5em;
      color: #FFFFFF;
      margin-bottom: 10px;
    }
    
    .text-container p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }
    


    /* Adjusted CSS for slider dots */
    .slider-container {
  position: relative; /* Ensure slider container has relative positioning */
}

.slider-dots {
  position: absolute;
  bottom: 20px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5; /* Ensure dots are above slides */
}

.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #27BDBE;
}
    /* Media queries for responsiveness */
    @media only screen and (min-width: 768px) {
      /* For desktop and tablets */
      .slider-slide {
        height: 850px;
      }
    }
    
    @media only screen and (max-width: 767px) {
      /* For mobile devices */
      .slider-slide {
        height: 100vw; /* Set height equal to width */
      }
    
      .text-container {
        width: 80%;
        left: 10%;
      }
    }