
#mobile-home-carousel {
  max-width: 600px;
  height: 600px; 
  margin: 0 auto; 
  padding: 16px;
}

#desktop-home-carousel {
  height: 60vh;
  margin: 0 auto; 
  padding: 16px;
}

.carousel-inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

/* .carousel-item a img {
  width: auto;
  height: auto;
  object-fit: contain; /* Ensure the image fits within the container
} */

.carousel-indicators button {
  height: 10px !important;
  width: 10px !important;
  margin: 0 10px !important;
  border-radius: 100%;
  background-color: gray !important;
  opacity: 0.5;
  padding: 0; 
  margin-right: 3px !important;
  margin-left: 3px !important;
}

/* transition duration to control the speed of fade effect */
.carousel-item {
  transition: transform 1s ease-in-out;
}

/* CSS for controlling visibility based on screen width */
@media (max-width: 767px) {
  /* Hide the desktop carousel on smaller screens */
  #desktop-carousel {
    display: none;
  }
}

@media (min-width: 768px) {
  /* Hide the mobile carousel on larger screens */
  #mobile-carousel {
    display: none;
  }
}

