body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 705px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: black;
}

.banner img,
.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit:cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner img.active {
  opacity: 1;
}

.navigation-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #640d6b;
}

.dot.active {
  background-color: #f49d1a;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .banner {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 60vh;
  }

  .navigation-dots {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 50vh;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .navigation-dots {
    gap: 8px;
    bottom: 12px;
  }
}









