#section-6 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  padding: 0;
}

.sec6-con {
  width: 100%;
  height: 100%;
}

/* Carousel Container */
.sec6-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Carousel Slides */
.sec6-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  z-index: 1;
}

/* Dark overlay for luxury feel */
.sec6-carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: -1;
}

/* Radial gradient for center spotlight effect */
.sec6-carousel-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.sec6-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

/* H3 Element - Top Center */
.sec6-carousel-slide h3 {
  font-size: 35px;
  text-align: center;
  top: 0px;
  font-family: "Amsterdam", cursive;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
  position: absolute;
  animation: slideInDown 0.8s ease-out;
}

.sec6-carousel-slide h4 {
  font-size: 1.5rem;
  font-weight: lighter;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
  bottom: 100px;
  position: absolute;
  animation: slideInDown 0.8s ease-out;
}
/* P Element - Bottom Center */
.sec6-carousel-slide p {
  font-size: 12px;
  width: 35%;
  text-align: center;
  letter-spacing: 1px;
  bottom: 60px;
  font-family: "satoshi-regular", sans-serif;
  z-index: 3;
  position: absolute;
  animation: slideInUp 0.8s ease-out;
  max-width: 90%;
}

/* Carousel Dots */
.sec6-carousel-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sec6-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

.sec6-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.sec6-dot.active {
  background-color: #ffffff;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #section-6 {
    height: 45vh;
  }

  .sec6-carousel-slide h3 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .sec6-carousel-slide p {
    font-size: 0.5rem;
    letter-spacing: 0.8px;
  }

  .sec6-carousel-dots {
    bottom: 30px;
    right: 30px;
    gap: 10px;
  }

  .sec6-dot {
    width: 10px;
    height: 10px;
  }

  .sec6-dot.active {
    width: 12px;
    height: 12px;
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #section-6 {
    height: 80vh;
  }

  .sec6-carousel-slide {
    padding: 50px 30px;
  }

  .sec6-carousel-slide h3 {
    font-size: 2.8rem;
    letter-spacing: 1.2px;
  }

  .sec6-carousel-slide p {
    font-size: 1rem;
    letter-spacing: 0.6px;
  }

  .sec6-carousel-dots {
    bottom: 25px;
    right: 25px;
    gap: 8px;
  }

  .sec6-dot {
    width: 9px;
    height: 9px;
  }

  .sec6-dot.active {
    width: 11px;
    height: 11px;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #section-6 {
    height: 70vh;
    min-height: 500px;
  }

  .sec6-carousel-slide {
    padding: 40px 20px;
    justify-content: center;
    gap: 40px;
  }

  .sec6-carousel-slide h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .sec6-carousel-slide h4 {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .sec6-carousel-slide p {
    width: 50%;
    font-size: 0.5rem;
    letter-spacing: 0.4px;
  }

  .sec6-carousel-dots {
    bottom: 20px;
    right: 20px;
    gap: 6px;
  }

  .sec6-dot {
    width: 8px;
    height: 8px;
  }

  .sec6-dot.active {
    width: 10px;
    height: 10px;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (380px) ===== */
@media (max-width: 380px) {
  #section-6 {
    height: 60vh;
    min-height: 450px;
  }

  .sec6-carousel-slide {
    padding: 30px 15px;
    gap: 30px;
  }

  .sec6-carousel-slide h3 {
    font-size: 1.4rem;
    letter-spacing: 0.8px;
  }

  .sec6-carousel-slide p {
    font-size: 0.5rem;
    letter-spacing: 0.3px;
  }

  .sec6-carousel-dots {
    bottom: 15px;
    right: 15px;
    gap: 5px;
  }

  .sec6-dot {
    width: 6px;
    height: 6px;
  }

  .sec6-dot.active {
    width: 8px;
    height: 8px;
  }
}
