.banner-slide {
  position: relative;
}

.banner-image-container {
  position: relative;
  overflow: hidden; /* Ensure the image does not overflow when scaled */
}

.image-scale {
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}

.image-scale:hover {
  transform: scale(1.2); /* Zoom the image by 20% on hover */
}

.banner-content-container {
  position: absolute;
  bottom: 40px;
  left: 20px;
  z-index: 2;
}

.banner-content {
  position: relative;
  top: 50px;
}

.banner-title {
  position: relative;
  top: -5px;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-overlay {
  position: relative;
}

.banner-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; /* Adjust overlay height */
  /* background: rgba(0, 0, 0, 0.5); */
  background: #16558898;
  border-radius: 0 0 8px 8px;
}
