/* =============================================
   BCo Services – Master Stylesheet
   Light Theme · Teal Accents
   ============================================= */

:root {
  --dark-bg: #f4f7fb;
  --dark-surface: #ffffff;
  --dark-card: #ffffff;
  --dark-border: rgba(0,153,204,0.15);
  --gold: #0099cc;
  --gold-light: #00b3e6;
  --gold-dark: #0077aa;
  --gold-glow: rgba(0,153,204,0.12);
  --text-primary: #1a2a3a;
  --text-secondary: #4a5a6a;
  --text-muted: #8899aa;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #0099cc; border-radius: 3px; }

/* =============================================
   ABOUT PAGE HERO VISUAL
   ============================================= */
.about-hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
}
.ahv-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.10);
}
.ahv-ring-1 {
  width: 340px;
  height: 340px;
  animation: rotateDeco 30s linear infinite;
}
.ahv-ring-2 {
  width: 260px;
  height: 260px;
  animation: rotateDeco 22s linear infinite reverse;
  border-color: rgba(0,212,255,0.08);
}
.ahv-ring-3 {
  width: 180px;
  height: 180px;
  animation: rotateDeco 16s linear infinite;
  border-color: rgba(0,212,255,0.1);
}
.ahv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #060d1f;
  box-shadow: 0 0 50px rgba(0,212,255,0.35);
  z-index: 2;
}
.ahv-stat {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: floatStat 5s ease-in-out infinite;
}
.ahv-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ahv-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.ahv-stat-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}
.ahv-stat-2 {
  bottom: 60px;
  left: 10px;
  animation-delay: -1.5s;
}
.ahv-stat-3 {
  bottom: 60px;
  right: 10px;
  left: auto;
  animation-delay: -3s;
}
@keyframes floatStat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.ahv-stat-1 { animation: floatStatCenter 5s ease-in-out infinite; }
@keyframes floatStatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* =============================================
   SERVICES PAGE HERO VISUAL
   ============================================= */
.services-hero-visual {
  position: relative;
  width: 380px;
  height: 340px;
}
.shv-center-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,0.10) 0%, transparent 70%);
  border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.2);
  animation: pulseOrb 3s ease-in-out infinite;
}
@keyframes pulseOrb {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.shv-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.shv-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
}
.shv-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.shv-title {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.shv-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.shv-card-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatShv1 6s ease-in-out infinite;
}
.shv-card-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation: floatShv2 7s ease-in-out infinite;
}
.shv-card-3 {
  bottom: 50px;
  left: 0;
  animation: floatShv3 5.5s ease-in-out infinite;
}
.shv-card-4 {
  bottom: 0;
  right: 0;
  left: auto;
  animation: floatShv4 6.5s ease-in-out infinite;
}
@keyframes floatShv1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes floatShv2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-10px); }
}
@keyframes floatShv3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatShv4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================
   INDUSTRIES PAGE HERO VISUAL
   ============================================= */
.industries-hero-visual {
  position: relative;
  width: 340px;
  height: 340px;
}
.ihv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(0,212,255,0.10);
  border-radius: 50%;
  animation: rotateDeco 25s linear infinite;
}
.ihv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #060d1f;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
  z-index: 2;
}
.ihv-dot {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--dark-card);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: orbitDots 15s linear infinite;
}
.ihv-dot-1 { top: -25px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ihv-dot-2 { top: 50%; right: -25px; transform: translateY(-50%); animation-delay: -2.5s; }
.ihv-dot-3 { bottom: -25px; left: 50%; transform: translateX(-50%); animation-delay: -5s; }
.ihv-dot-4 { top: 50%; left: -25px; transform: translateY(-50%); animation-delay: -7.5s; }
.ihv-dot-5 { top: 15%; right: 15%; animation-delay: -10s; }
.ihv-dot-6 { bottom: 15%; left: 15%; animation-delay: -12.5s; }
@keyframes orbitDots {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-8px) translateX(4px); }
  50% { transform: translateY(0) translateX(0); }
  75% { transform: translateY(8px) translateX(-4px); }
  100% { transform: translateY(0) translateX(0); }
}
.ihv-dot-1 { animation: orbitDot1 4s ease-in-out infinite; }
.ihv-dot-2 { animation: orbitDot2 4s ease-in-out infinite; animation-delay: -1s; }
.ihv-dot-3 { animation: orbitDot3 4s ease-in-out infinite; animation-delay: -2s; }
.ihv-dot-4 { animation: orbitDot4 4s ease-in-out infinite; animation-delay: -3s; }
.ihv-dot-5 { animation: orbitDot5 4s ease-in-out infinite; animation-delay: -0.5s; }
.ihv-dot-6 { animation: orbitDot6 4s ease-in-out infinite; animation-delay: -2.5s; }
@keyframes orbitDot1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes orbitDot2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-12px); }
}
@keyframes orbitDot3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}
@keyframes orbitDot4 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(12px); }
}
@keyframes orbitDot5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -8px); }
}
@keyframes orbitDot6 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, 8px); }
}

/* =============================================
   PAGE HERO ENHANCEMENTS
   ============================================= */
.text-gold { color: var(--gold); }
.body-text { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.section-pad { padding: 100px 0; }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  padding: 18px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(6,13,31,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--dark-border);
  padding: 12px 0;
}
.brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-left: 4px;
  vertical-align: middle;
}
.nav-link {
  color: var(--text-secondary) !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary) !important;
  background: rgba(255,255,255,0.05);
}
.navbar-toggler {
  border: 1px solid var(--dark-border);
  padding: 8px 12px;
  background: transparent;
}
.toggler-icon { display: flex; flex-direction: column; gap: 5px; }
.toggler-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(6,13,31,0.97);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #060d1f;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 11px 28px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,212,255,0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #060d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 10px 27px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.2) !important;
  color: var(--text-primary) !important;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.4) !important;
  transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Fallback base – shared structure, no colour tint */
  background: var(--dark-bg);
}

/* ==============================================
   PAGE-INDEX HERO  –  "Light Airy"
   Soft white to light blue with teal accents
   ============================================== */
.page-index .hero-section {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(244,247,251,0.70) 30%, transparent 60%),
    linear-gradient(to top,    rgba(255,255,255,0.80) 0%, rgba(244,247,251,0.30) 40%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 0%, rgba(0,153,204,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 100%, rgba(0,153,204,0.06) 0%, transparent 55%),
    var(--dark-bg);
}

/* ==============================================
   PAGE-ABOUT HERO  –  "Light Clean"
   Soft light gradient with subtle teal accents
   ============================================== */
.page-about .hero-section {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(244,247,251,0.50) 35%, transparent 60%),
    linear-gradient(to top,    rgba(255,255,255,0.85) 0%, rgba(244,247,251,0.35) 45%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 5% 0%, rgba(0,153,204,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 95% 100%, rgba(0,153,204,0.06) 0%, transparent 50%),
    var(--dark-bg);
}

/* ==============================================
   PAGE-SERVICES HERO  –  "Light Bright"
   Clean light gradient with structured feel
   ============================================== */
.page-services .hero-section {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(244,247,251,0.60) 35%, transparent 60%),
    linear-gradient(to top,    rgba(255,255,255,0.88) 0%, rgba(244,247,251,0.40) 45%, transparent 70%),
    linear-gradient(to left,   rgba(0,0,0,0.04) 0%, transparent 30%),
    radial-gradient(ellipse 55% 40% at 90% 0%, rgba(0,153,204,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 10% 100%, rgba(0,153,204,0.05) 0%, transparent 50%),
    var(--dark-bg);
}

/* ==============================================
   PAGE-INDUSTRIES HERO  –  "Light Open"
   Clean light with balanced symmetry
   ============================================== */
.page-industries .hero-section {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(244,247,251,0.55) 30%, transparent 55%),
    linear-gradient(to top,    rgba(255,255,255,0.85) 0%, rgba(244,247,251,0.40) 40%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 50%,   rgba(0,153,204,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(0,153,204,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%,   rgba(0,153,204,0.04) 0%, transparent 60%),
    var(--dark-bg);
}

/* ==============================================
   PAGE-CONTACT HERO  –  "Light Welcoming"
   Bright and inviting with soft accents
   ============================================== */
.page-contact .hero-section {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.70) 30%, transparent 55%),
    linear-gradient(to top,    rgba(255,255,255,0.90) 0%, rgba(244,247,251,0.50) 40%, transparent 65%),
    linear-gradient(to right,  rgba(0,153,204,0.03) 0%, transparent 40%),
    linear-gradient(to left,   rgba(0,153,204,0.03) 0%, transparent 40%),
    radial-gradient(ellipse 60% 50% at 50% -5%, rgba(0,153,204,0.08) 0%, transparent 60%),
    var(--dark-bg);
}
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,212,255,0.05) 0%, transparent 70%),
              var(--dark-bg);
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-30px)} }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(0,212,255,0.05);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 16.5px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; color: var(--text-muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* HERO FLOAT CARDS */
.hero-card-stack { position: relative; width: 320px; height: 360px; }
.float-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.float-card i { font-size: 1.5rem; color: var(--gold); }
.fc-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.fc-val { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.card-1 { top: 30px; right: 0; width: 220px; animation: floatCard1 6s ease-in-out infinite; }
.card-2 { top: 140px; left: 0; width: 230px; animation: floatCard2 7s ease-in-out infinite; }
.card-3 { bottom: 30px; right: 20px; width: 220px; animation: floatCard3 5.5s ease-in-out infinite; }
.hero-circle-deco {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 280px; height: 280px;
  border: 1px dashed rgba(0,212,255,0.10);
  border-radius: 50%;
  animation: rotateDeco 25s linear infinite;
}
@keyframes floatCard1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes rotateDeco { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-glow);
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

/* =============================================
   SERVICE CARDS (Home)
   ============================================= */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 54px; height: 54px;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: rgba(0,212,255,0.2); }
.sc-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.sc-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px; }
.sc-link { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; transition: var(--transition); }
.sc-link:hover { color: var(--gold-light); letter-spacing: 1px; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: var(--dark-surface); }
.why-visual {
  position: relative;
  width: 320px; height: 320px;
  margin: auto;
}
.why-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.15);
}
.ring-1 { width: 300px; height: 300px; animation: rotateDeco 20s linear infinite; }
.ring-2 { width: 200px; height: 200px; animation: rotateDeco 15s linear infinite reverse; }
.why-center-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #060d1f;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.why-orbit-dot {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold);
  top: 50%; left: 50%;
  /* Each dot starts at a different position on the orbit (90deg offset between 4 dots) */
  --orbit-radius: 130px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.dot-1 { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)); --start-angle: 0deg; }
.dot-2 { transform: translate(-50%, -50%) rotate(90deg) translateX(var(--orbit-radius)); --start-angle: 90deg; animation-delay: -3s; }
.dot-3 { transform: translate(-50%, -50%) rotate(180deg) translateX(var(--orbit-radius)); --start-angle: 180deg; animation-delay: -6s; }
.dot-4 { transform: translate(-50%, -50%) rotate(270deg) translateX(var(--orbit-radius)); --start-angle: 270deg; animation-delay: -9s; }

/* Orbit animation - only runs when .why-visual has .orbiting class */
.why-visual.orbiting .why-orbit-dot {
  opacity: 1;
  animation: orbitDot 12s linear infinite;
}

@keyframes orbitDot { 
  from { transform: translate(-50%, -50%) rotate(var(--start-angle)) translateX(var(--orbit-radius)) rotate(calc(var(--start-angle) * -1)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 360deg)) translateX(var(--orbit-radius)) rotate(calc((var(--start-angle) + 360deg) * -1)); }
}

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.wi-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.why-item h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.why-item p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.process-section { background: var(--dark-surface); }
.process-timeline {
  display: flex; flex-wrap: wrap; gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.process-step {
  flex: 1 1 160px;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,212,255,0.08);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition);
}
.process-step:hover .ps-num { color: rgba(0,212,255,0.4); }
.ps-body h5 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.ps-body p { font-size: 13px; color: var(--text-secondary); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 70%),
              var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.cta-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-sub { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 2.5rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 70px 0 30px;
}
.footer-desc { font-size: 13.5px; color: var(--text-muted); max-width: 280px; line-height: 1.8; }
.footer-heading { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 18px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 13.5px; color: var(--text-muted); }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  margin-top: 10px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--text-muted);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-img-wrap {
  position: relative;
  width: 360px; height: 400px;
  margin: auto;
}
.about-img-bg {
  position: absolute; inset: 20px 20px 0 0;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.10);
  border-radius: var(--radius-lg);
}
.about-img-card {
  position: absolute;
  inset: 0 0 20px 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.aic-row { display: flex; align-items: center; gap: 16px; }
.aic-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.aic-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.aic-lbl { font-size: 12px; color: var(--text-muted); }
.about-float-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #060d1f;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* MVV CARDS */
.mvv-section { background: var(--dark-surface); }
.mvv-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
}
.mvv-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-5px); }
.mvv-featured {
  background: linear-gradient(145deg, rgba(0,212,255,0.06), var(--dark-card));
  border-color: rgba(0,212,255,0.25);
}
.mvv-icon {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 22px;
}
.mvv-card h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.mvv-card p { color: var(--text-secondary); font-size: 14.5px; }
.values-list { list-style: none; padding: 0; margin: 0; }
.values-list li { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 8px; }
.values-list .fa-check-circle { color: var(--gold); margin-right: 8px; }

/* PILLAR CARDS */
.pillar-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.pillar-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-4px); }
.pillar-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(0,212,255,0.05);
  line-height: 1;
  transition: var(--transition);
}
.pillar-card:hover .pillar-num { color: rgba(0,212,255,0.10); }
.pi-icon {
  width: 48px; height: 48px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 18px;
}
.pillar-card h5 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.pillar-card p { font-size: 13.5px; color: var(--text-secondary); margin: 0; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
  margin: 0 5%;
}
.benefit-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--gold);
  font-size: 13px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 10px;
}
.feature-tile {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  height: 100%;
  transition: var(--transition);
}
.feature-tile:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.feature-tile i { font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; display: block; }
.feature-tile h6 { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.feature-tile ul { padding-left: 16px; margin: 0; }
.feature-tile ul li { font-size: 12.5px; color: var(--text-secondary); margin-bottom: 4px; }

.tax-list-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.tlc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 15px; color: var(--text-secondary);
  transition: var(--transition);
}
.tlc-item:last-child { border-bottom: none; }
.tlc-item:hover { color: var(--text-primary); padding-left: 6px; }
.tlc-item .fa-check-circle { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.vat-mini-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
  font-size: 13.5px; color: var(--text-secondary);
}
.vat-mini-card:hover { border-color: rgba(0,212,255,0.2); color: var(--text-primary); transform: translateX(4px); }
.vat-mini-card i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

.payroll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pg-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.pg-item:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-4px); }
.pg-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.pg-item h6 { font-size: 12.5px; color: var(--text-secondary); margin: 0; line-height: 1.4; }
.pg-highlight {
  background: linear-gradient(145deg, rgba(0,212,255,0.1), var(--dark-card));
  border-color: rgba(201,168,76,0.3);
}
.pg-highlight h6 { color: var(--gold); }

/* =============================================
   INDUSTRIES PAGE
   ============================================= */
.industry-block {
  padding: 60px 0;
}
.ind-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}
.ind-icon-wrap { text-align: center; padding: 20px; }
.ind-icon {
  width: 80px; height: 80px;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.ind-icon.ind-orange { background: rgba(255,150,50,0.1); border-color: rgba(255,150,50,0.3); color: #ff9632; }
.ind-icon.ind-blue { background: rgba(80,150,255,0.1); border-color: rgba(80,150,255,0.3); color: #5096ff; }
.ind-icon.ind-red { background: rgba(255,80,80,0.1); border-color: rgba(255,80,80,0.3); color: #ff5050; }
.ind-icon.ind-purple { background: rgba(160,80,255,0.1); border-color: rgba(160,80,255,0.3); color: #a050ff; }
.ind-icon.ind-teal { background: rgba(50,200,180,0.1); border-color: rgba(50,200,180,0.3); color: #32c8b4; }
.industry-block:hover .ind-icon { transform: scale(1.05) rotate(5deg); }
.ind-icon-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 10px; }
.ind-icon-wrap p { font-size: 14px; color: var(--text-secondary); }
.ind-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ind-feat {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.ind-feat:hover { border-color: rgba(0,212,255,0.2); color: var(--text-primary); }
.ind-feat .fa-check { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-panel {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
}
.contact-info-panel h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); }
.ci-item { display: flex; gap: 16px; margin-bottom: 28px; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.ci-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.ci-val { font-size: 14px; color: var(--text-primary); }
.ci-socials { display: flex; gap: 10px; }
.ci-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.ci-socials a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); }
.form-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 6px; font-weight: 500; }
.bco-input {
  background: var(--dark-surface) !important;
  border: 1px solid var(--dark-border) !important;
  color: var(--text-primary) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14.5px !important;
  transition: var(--transition) !important;
}
.bco-input:focus {
  border-color: rgba(0,212,255,0.4) !important;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.06) !important;
  background: var(--dark-card) !important;
  outline: none !important;
}
.bco-input::placeholder { color: var(--text-muted) !important; }
.bco-input option { background: var(--dark-surface); }
.form-success-msg {
  text-align: center;
  padding: 60px 20px;
}
.form-success-msg .fa-circle-check { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.form-success-msg h5 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.form-success-msg p { color: var(--text-secondary); }

.quick-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.quick-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); }
.quick-card i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.quick-card h5 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.quick-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .hero-section { padding-top: 80px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; }
  .process-timeline::before { display: none; }
  .payroll-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-features-grid { grid-template-columns: 1fr; }
  .about-img-wrap { width: 100%; max-width: 340px; height: 360px; }
  .hero-actions { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .stat-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
  .contact-info-panel { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .payroll-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
}
/* =============================================
   TEAL THEME OVERRIDES & ENHANCEMENTS
   ============================================= */

/* Teal gradient on hero grid overlay */
.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px) !important;
}

/* Rethemed CTA grid */
.cta-grid-overlay {
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px) !important;
}

/* CTA section teal glow instead of gold */
.cta-section {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
              var(--dark-surface) !important;
}

/* Teal orb colours */
.orb-1 {
  background: radial-gradient(circle, rgba(0,212,255,0.10) 0%, transparent 70%) !important;
}
.orb-2 {
  background: radial-gradient(circle, rgba(0,153,255,0.07) 0%, transparent 70%) !important;
}

/* Nav scrolled - light glass for light theme */
#mainNav.scrolled {
  background: rgba(255,255,255,0.95) !important;
  border-bottom-color: rgba(0,153,204,0.15) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* Mobile nav collapse */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(0,153,204,0.15) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
  }
}

/* Scrollbar teal */
::-webkit-scrollbar-thumb { background: #0099cc !important; }

/* Process timeline line */
.process-timeline::before {
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent) !important;
}

/* Stat strip teal hover glow */
.stat-item::before {
  background: rgba(0,212,255,0.05) !important;
}

/* Light theme - hero sections use main styles above */

/* Scroll line teal */
.scroll-line {
  background: linear-gradient(to bottom, #00d4ff, transparent) !important;
}

/* About float badge - teal gradient instead of gold */
.about-float-badge {
  background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
  color: #060d1f !important;
  box-shadow: 0 8px 24px rgba(0,212,255,0.3) !important;
}

/* Why center icon teal */
.why-center-icon {
  background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
  color: #060d1f !important;
  box-shadow: 0 0 40px rgba(0,212,255,0.3) !important;
}

/* About hero visual center */
.ahv-center {
  background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
  color: #060d1f !important;
  box-shadow: 0 0 50px rgba(0,212,255,0.35) !important;
}

/* Industries center */
.ihv-center {
  background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
  color: #060d1f !important;
  box-shadow: 0 0 40px rgba(0,212,255,0.3) !important;
}

/* Service card top border on hover */
.service-card::before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent) !important;
}

/* Services page center orb */
.shv-center-orb {
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%) !important;
  border: 1px dashed rgba(0,212,255,0.2) !important;
}

/* AHV rings */
.ahv-ring { border: 1px dashed rgba(0,212,255,0.12) !important; }
.ahv-ring-2 { border-color: rgba(0,212,255,0.09) !important; }
.ahv-ring-3 { border-color: rgba(0,212,255,0.07) !important; }

/* Industries orbit */
.ihv-orbit { border: 1px dashed rgba(0,212,255,0.12) !important; }

/* Why rings */
.why-ring { border: 1px dashed rgba(0,212,255,0.14) !important; }

/* Hero deco circle */
.hero-circle-deco { border: 1px dashed rgba(0,212,255,0.12) !important; }

/* Pillar num ghost */
.pillar-num { color: rgba(0,212,255,0.06) !important; }
.pillar-card:hover .pillar-num { color: rgba(0,212,255,0.18) !important; }

/* Process step number ghost */
.ps-num { color: rgba(0,212,255,0.10) !important; }
.process-step:hover .ps-num { color: rgba(0,212,255,0.35) !important; }

/* Button: solid teal */
.btn-gold {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%) !important;
  color: #060d1f !important;
  box-shadow: 0 4px 20px rgba(0,212,255,0.25) !important;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #5ee7ff 0%, #00d4ff 100%) !important;
  color: #060d1f !important;
  box-shadow: 0 8px 30px rgba(0,212,255,0.4) !important;
}

/* Outline button teal */
.btn-outline-gold {
  color: #00d4ff !important;
  border-color: #00d4ff !important;
}
.btn-outline-gold:hover {
  background: rgba(0,212,255,0.08) !important;
  color: #5ee7ff !important;
  border-color: #5ee7ff !important;
}

/* PG highlight teal */
.pg-highlight {
  background: linear-gradient(145deg, rgba(0,212,255,0.08), var(--dark-card)) !important;
  border-color: rgba(0,212,255,0.25) !important;
}
.pg-highlight h6 { color: #00d4ff !important; }

/* MVV featured card teal */
.mvv-featured {
  background: linear-gradient(145deg, rgba(0,212,255,0.07), var(--dark-card)) !important;
  border-color: rgba(0,212,255,0.2) !important;
}

/* Footer links hover */
.footer-links a:hover { color: #00d4ff !important; }
.footer-socials a:hover { border-color: #00d4ff !important; color: #00d4ff !important; }

/* Section dividers */
.service-divider, .ind-sep {
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.12), transparent) !important;
}

/* Form focus teal */
.bco-input:focus {
  border-color: rgba(0,212,255,0.4) !important;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08) !important;
}

/* Form success icon teal */
.form-success-msg .fa-circle-check { color: #00d4ff !important; }

/* Contact icon teal */
.ci-socials a:hover { border-color: #00d4ff !important; color: #00d4ff !important; }

/* Industry feature check */
.ind-feat .fa-check { color: #00d4ff !important; }

/* Values list check */
.values-list .fa-check-circle { color: #00d4ff !important; }

/* TLC item check */
.tlc-item .fa-check-circle { color: #00d4ff !important; }

/* Benefit badge teal */
.benefit-badge {
  background: rgba(0,212,255,0.06) !important;
  border: 1px solid rgba(0,212,255,0.2) !important;
  color: #00d4ff !important;
}

/* Stat num teal */
.stat-num { color: #00d4ff !important; }