.carousel-item {
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-item img {
  max-height: 100%;
  object-fit: cover;
  width: 100%;
}
.carousel-caption {
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Slight background overlay for better text visibility */
  padding: 10px;
}
.carousel-item:not(.active) .carousel-caption {
  display: none;
}
