/*.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  pointer-events: all;
  background: white !important;
  border: 1px solid #ddd !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
}*/

/*.timeline-dot:hover { transform: none; }*/

/* CUSTOM DOT STYLES */
.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  align-items: center;
}

.testimonial-carousel .owl-dot span {
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: hsl(var(--border));
  transition: all 0.3s ease;
}
e0c229
.testimonial-carousel .owl-dot.active span {
  width: 32px;
  background: hsl(var(--primary));
}

/* OPTIONAL: Fade Animations */
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

.owl-carousel .animated {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

/* NAV + DOTS INLINE LAYOUT */
.testimonial-carousel .owl-nav,
.testimonial-carousel .owl-dots {
  position: static;
}

/* Parent container styling */
.testimonial-carousel .owl-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/* Override Owl default layout */
.testimonial-carousel .owl-nav {
  display: flex;
  gap: 16px;
}

.testimonial-carousel .owl-dots {
  display: flex;
  gap: 8px;
  align-items: center;    position: absolute;
    margin-top: 0;
}

.testimonial-carousel .owl-nav button.owl-next {
      margin-left: 100px;
}
.testimonial-sub-carousel .owl-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    position: absolute;
    width: 100%;
    margin-top: 50px;
}
.testimonial-sub-carousel .owl-dot.active span {
  width: 32px;
  background: #e0c229;
}
@keyframes mouseScroll {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(6px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

#home .mouse {
  animation: mouseScroll 1.6s infinite ease-in-out;
}
.error { color:red; display:none; }
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Visible */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Slight delay variants */
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

.mouse {
  animation: mouse-float 1.6s ease-in-out infinite;
}

@keyframes mouse-float {
  0%   { transform: translate(-50%, 0); }
  50%  { transform: translate(-50%, 8px); }
  100% { transform: translate(-50%, 0); }
}
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-2px) scale(1.05);
}
/* Mobile Menu */
.burger { display:inline;}
 @media (max-width: 600px) { .burger { display:flex !important;}
 .burger {
    width: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    display:none;
}

.burger span {
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}
/* Active States */
.mobile-nav.active {
    opacity:1;
    display:inline;
            z-index: 99;
        margin-top: 81px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.hover-3d {
  transform-style: preserve-3d;
  perspective: 1000px;

  transform: none;
  box-shadow: 0 0px 0px 0px hsl(var(--gold) / 0);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, box-shadow;
}

.hover-3d:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 50px -12px hsl(var(--gold) / 0.25);
}
.mobile-nav {
    display:none;
    opacity:0;
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    background: #FFF;
    padding-top: 0;
    transition: right 0.3s ease;
    margin-top: 96px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin: 20px;
}

.mobile-nav a {
    color: #65758b;
    text-decoration: none;
    font-size: 18px;
}

