.elementor-1488 .elementor-element.elementor-element-2d9d7ad > .elementor-widget-container{border-style:none;box-shadow:6px 0px 10px 0px rgba(0,0,0,0.5);}@media(max-width:767px){.elementor-1488 .elementor-element.elementor-element-2d9d7ad > .elementor-widget-container{margin:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-31a20cc *//* ===============================
   HERO SECTION – 4 IMAGE STRIP
================================ */

.ay-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Background image row */
.ay-hero-bg {
  display: flex;
  width: 100%;
  height: 100%;
}

.ay-hero-bg .bg-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  animation: bgZoom 8s ease-in-out infinite alternate;
}

/* Slight zoom animation */
@keyframes bgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Overlay content */
.ay-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
}

/* H1 */
.ay-hero-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeDown 1.2s ease forwards;
}

/* H2 */
.ay-hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeDown 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Holistic text – slide from left */
.ay-hero-tagline {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: slideLeft 1.2s ease forwards;
  animation-delay: 0.7s;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .ay-hero {
    height: 70vh;
  }

  .ay-hero-bg {
    flex-direction: column;
  }

  .ay-hero-bg .bg-img {
    height: 25%;
  }

  .ay-hero-title {
    font-size: 30px;
  }

  .ay-hero-subtitle {
    font-size: 16px;
  }

  .ay-hero-tagline {
    font-size: 14px;
  }
}
/* ===== SCROLL DOWN CUE ===== */
.hh-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
}

.hh-scroll-cue:hover {
  opacity: 1;
}

.hh-scroll-cue .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
  margin: 0 auto 6px;
  position: relative;
}

.hh-scroll-cue .wheel {
  width: 4px;
  height: 8px;
  background: #7dbb6c;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

.hh-scroll-cue .scroll-text {
  letter-spacing: 1px;
  font-size: 11px;
}

/* Animation */
@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .hh-scroll-cue {
    bottom: 20px;
  }
}
/* ===== HERO TEXT READABILITY FIX ===== */

/* Stronger but elegant overlay */
.hh-hero::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );
}

/* H1 – Main Title */
.hh-hero h1 {
  color: #f5f7f4; /* warm white */
  font-weight: 700;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 0 1px rgba(0,0,0,0.6);
}

/* H2 – Subtitle */
.hh-hero h2 {
  color: #e2efe0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Historic line highlight */
.hh-historic {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 14px 18px;
  border-left: 4px solid #7dbb6c;
  border-radius: 4px;
}
/* ===== CTA BUTTON BASE ===== */
.hh-cta {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  margin-right: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Primary button */
.hh-cta {
  background: #7dbb6c;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(125, 187, 108, 0.35);
}

/* Outline button */
.hh-cta.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}

/* Hover lift */
.hh-cta:hover {
  transform: translateY(-2px);
}

/* ===== RIPPLE EFFECT ===== */
.ripple-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.ripple-btn:hover::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

/* Keep text above ripple */
.hh-cta span,
.hh-cta {
  position: relative;
  z-index: 2;
}

/* Outline hover improvement */
.hh-cta.outline:hover {
  background: rgba(125,187,108,0.15);
  border-color: #7dbb6c;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .hh-cta {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-986c131 *//* ===== VIEW MORE PACKAGES BUTTON ===== */

.hh-packages-cta {
  text-align: center;
  margin-top: 50px;
}

.hh-view-more-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #2f7d32;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(47,125,50,0.35);
  transition: all 0.3s ease;
}

.hh-view-more-btn:hover {
  background: #256628;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(47,125,50,0.45);
}/* End custom CSS */