:root {
  --indigo: #2A2D64;
  --indigo-dark: #1C1E47;
  --gold: #F8C84A;
  --slate: #8A97C4;
  --white: #FFFFFF;
  --light-bg: #F4F5FA;
  --text-dark: #2A2D64;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: var(--font-heading);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.btn-gold,
.elementor-widget-button .btn-gold .elementor-button {
  background-color: var(--gold) !important;
  color: var(--indigo-dark) !important;
  border: none !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-gold:hover {
  background-color: #e6b83e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 200, 74, 0.35);
}

.btn-outline,
.elementor-widget-button .btn-outline .elementor-button {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: var(--white) !important;
  color: var(--indigo) !important;
}

.section-indigo { background-color: var(--indigo) !important; color: var(--white); }
.section-indigo-dark { background-color: var(--indigo-dark) !important; color: var(--white); }
.section-light { background-color: var(--light-bg) !important; }

.gold-text { color: var(--gold) !important; }
.gold-underline { position: relative; display: inline-block; }
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.indigo-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(42, 45, 100, 0.08);
  position: relative;
  overflow: hidden;
}
.indigo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.indigo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(42, 45, 100, 0.12);
}
.indigo-card:hover::before { transform: scaleX(1); }

.count-up {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
}

.indigo-header { transition: all 0.35s ease; }
.indigo-header.elementor-sticky--effects {
  background-color: rgba(28, 30, 71, 0.95) !important;
  backdrop-filter: blur(12px);
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.h-scroll { display: flex; flex-wrap: nowrap; width: max-content; }
.h-panel {
  width: 100vw; max-width: 100vw; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.portfolio-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.portfolio-filter button {
  background: transparent;
  border: 2px solid var(--indigo);
  color: var(--indigo);
  padding: 8px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-filter button.active,
.portfolio-filter button:hover {
  background: var(--indigo);
  color: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.indigo-footer {
  background-color: var(--indigo-dark) !important;
  color: rgba(255,255,255,0.8);
}
.indigo-footer a { color: rgba(255,255,255,0.7); transition: color 0.3s ease; }
.indigo-footer a:hover { color: var(--gold); }
.footer-gold-line {
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 1024px) {
  .h-scroll { flex-direction: column; width: 100%; }
  .h-panel { width: 100%; max-width: 100%; }
}
@media (max-width: 767px) {
  .count-up { font-size: 2.2rem; }
  .indigo-card { padding: 28px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
