/* ═══ CUSTOM STYLES (NON-TAILWIND) ══════════════════════════ */

/* HERO CAROUSEL MECHANICS */
.hc-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hc-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle Overlay Glows */
.hc-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(30, 58, 138, 0.15), transparent 70%);
}

/* MARQUEE ANIMATION */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.animate-marquee-slow {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.animate-marquee:hover, .animate-marquee-slow:hover {
  animation-play-state: paused;
}

/* SCROLL REVEAL (Premium) */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* CUSTOM BUTTON GLOW */
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

/* RESPONSIVE HAMBURGER */
.ham-line {
  transition: all 0.3s ease;
}

.nav-open .ham-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .ham-line:nth-child(2) { opacity: 0; }
.nav-open .ham-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* UTILITIES */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
