.gallery-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* Forces the scroll to "snap" to a slide */
  scroll-behavior: smooth;
  gap: 10px;
  width: 100%;
  height: 400px;
}

.gallery-item {
  flex: 0 0 100%; /* Each slide takes up 100% of the container width */
  scroll-snap-align: center; /* Snaps the slide to the center of the view */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps images from stretching */
  border-radius: 8px;
}

/* Optional: Hide the scrollbar for a cleaner look */
.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-wrapper {
  /* ... existing styles ... */
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.dots-container {
  text-align: center;
  padding: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
  background-color: #333; /* Darker color for the active slide */
  transform: scale(1.2);  /* Slightly larger for emphasis */
}

