/* carousel.css */
.carousel-section {
  padding: 2rem 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots .dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #888;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: #fff;
}

@media (max-width: 768px) {
  .carousel-slide img {
    max-height: 250px;
  }
}

