 .hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1207px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  transform: scale(1);
  transition: transform 8s ease-in-out;
}

.slide.active {
  display: block;
  transform: scale(1.08); /* Ken Burns subtle zoom */
}

.overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.55)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 900px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slide.active .content {
  opacity: 1;
  transform: translateY(0);
}

.content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color:#EBEBEB
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 5;
  user-select: none;
  opacity: 0.7;
  transition: 0.3s;
}

.nav:hover {
  opacity: 1;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
  .content h1 { font-size: 1.8rem; }
  .content p { font-size: 1rem; }
}


.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 40px;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #000;
}


.video-wrapper {
  width: 100%;
  max-width: 315px; /* Keeps original width limit */
  margin: 0 auto;
  aspect-ratio: 315 / 576; /* Maintains vertical ratio */
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px; /* optional soft modern look */
}
