.bslider-container {
  width: 100%;
  max-width: 100%;
 overflow: auto !important;
  margin-top:13px;
}

.bslider {
  display: flex;
  gap: 10px;
  animation: scroll 15s linear infinite;
  /* Repeat the slides for infinite scrolling */
}

.bslider .bslide-image {
  width: 100%;
  width: 400px;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.bslider .slide-image:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Overlay for zoomed image */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.zoomed-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bslider-container {
    width: 100%;
  }

  .bslider .bslide-image {
    max-width: 250px;
  }
}