/* Image Slider */
.image-slider {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Main Image */
.main-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for image changes */
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.prev-arrow {
  left: -60px; /* Position arrow outside the image */
}

.next-arrow {
  right: -60px; /* Position arrow outside the image */
}

/* Dots */
.dots {
  display: flex;
  justify-content: center; /* Center dots horizontally */
  gap: 10px; /* Add spacing between dots */
  margin-top: 15px; /* Space between image and dots */
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: #007bff;
  transform: scale(1.2); /* Slightly enlarge the active dot */
}





/* Video Section */
.video-section .ratio {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Videos */
.video-section video:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}