#section-6a {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px;
}

.sec6a-con {
  width: 100%;
  height: 100%;
  padding: 10px;
}

/* Carousel Container */
.sec6a-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.sec6a-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Carousel Images */
.sec6a-carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.sec6a-carousel-image.active {
  opacity: 1;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  #section-6a {
    height: 45vh;
  }
}

@media (max-width: 900px) {
  #section-6a {
    height: 40vh;
  }
}

@media (max-width: 520px) {
  #section-6a {
    height: 40h;
  }
}
