.vertical-slider-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.vertical-slider {
  height: 100%;
  position: relative;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vertical-slide {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: none;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 16px;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0;
}

.vertical-slide.active {
  opacity: 1;
  display: block;
}

.image-row {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.image-card {
  flex: 1;
  margin: 0px 0;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
}

.vertical-slider-controls {
  position: absolute;
  right: 20px;
  top: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.vertical-slider-controls button {
  margin: 5px 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vertical-slider-controls button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.vertical-slider-indicators {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.vertical-slider-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vertical-slider-indicators button.active {
  background-color: #fff;
}

/* Additional controls styling */

.slider-options {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

