/* style.css */

/* Carousel image height control with specificity */
#myCarousel .carousel-inner img {
  height: 400px; /* adjust as needed */
  object-fit: cover; /* maintain aspect ratio and cover area */
}
/* Overlay box common styles */
.overlay-box {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  max-width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Left box positioning */
.left-box {
  bottom: 20px;
  left: 20px;
}

/* Right box positioning */
.right-box {
  top: 20px;
  right: 20px;
}
