/* ================================================================
   ALPHABRAIN CONSULTING PVT LTD
   Futuristic Corporate HR-Tech Website
   Theme: Deep Navy · Metallic Gold · White · Dark Gradients
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Brand Colors ── */
  --navy-900: #050c1a;
  --navy-800: #091428;
  --navy-700: #0d1f3c;
  --navy-600: #122950;
  --navy-500: #1a3a6e;
  --navy-400: #1e4d8c;
  --gold-500: #c9922a;
  --gold-400: #d4a843;
  --gold-300: #e0be6e;
  --gold-200: #ecd49a;
  --gold-100: #f6ecd0;
  --gold-glow: rgba(201,146,42,0.35);
  --gold-glow-sm: rgba(201,146,42,0.15);

  /* ── UI Tones ── */
  --white: #ffffff;
  --off-white: #f8f9fb;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,146,42,0.18);
  --glass-border-bright: rgba(201,146,42,0.45);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.35);
  --text-dark: #0d1f3c;

  /* ── Effects ── */
  --shadow-gold: 0 0 30px rgba(201,146,42,0.2), 0 8px 32px rgba(0,0,0,0.4);
  --shadow-navy: 0 8px 40px rgba(5,12,26,0.6);
  --glow-gold: 0 0 20px rgba(201,146,42,0.4), 0 0 60px rgba(201,146,42,0.15);
  --glow-navy: 0 0 30px rgba(13,31,60,0.8);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-900);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-800); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-300); }

/* ── SELECTION ── */
::selection { background: var(--gold-500); color: var(--navy-900); }

/* ================================================================
   GLOBAL TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold-400); }
.section-title .gold-gradient {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}
.text-center { text-align: center; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

/* ================================================================
   AI GRID BACKGROUND PATTERN
   ================================================================ */
.ai-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ai-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,146,42,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ================================================================
   FLOATING ORBS
   ================================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.orb-gold { background: radial-gradient(circle, rgba(201,146,42,0.25) 0%, transparent 70%); }
.orb-navy { background: radial-gradient(circle, rgba(30,77,140,0.4) 0%, transparent 70%); }
@keyframes orb-drift {
  0% { transform: translateY(0) translateX(0) scale(1); }
  100% { transform: translateY(-40px) translateX(20px) scale(1.1); }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-400) 100%);
  background-size: 200% 100%;
  color: var(--navy-900);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--gold-400);
  box-shadow: 0 0 20px var(--gold-glow-sm);
  transform: translateY(-2px);
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy-500), var(--navy-400));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5,12,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo-name span { color: var(--gold-400); }
.nav-logo-sub {
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 9px 16px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 1.5px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--glass);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px var(--gold-glow);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--glow-gold) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hamburger:hover { border-color: var(--gold-400); }
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(5,12,26,0.85);
  backdrop-filter: blur(8px);
}
.mobile-nav.open { display: flex; align-items: flex-start; justify-content: flex-end; }
.mobile-nav-panel {
  width: min(320px, 88vw);
  height: 100%;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-left: 1px solid var(--glass-border);
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-logo { margin-bottom: 2.5rem; }
.mobile-logo img { height: 48px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 2rem; }
.mobile-nav-links a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-links a:hover { color: var(--gold-400); background: var(--glass); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
}
.hero-line-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-300), var(--gold-500), transparent);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border-bright);
  border-radius: 50px;
  background: rgba(201,146,42,0.06);
  backdrop-filter: blur(10px);
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px var(--gold-400);
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 8px var(--gold-400);}
  50%{opacity:0.6;transform:scale(1.5);box-shadow:0 0 16px var(--gold-400);}
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-500) 50%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-metrics {
  display: flex;
  gap: 36px;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,146,42,0.15);
}
.hmetric {}
.hmetric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hmetric-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }

/* Hero Right: Floating Dashboard */
.hero-visual { position: relative; height: 520px; }
.hero-dashboard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-main {
  width: 340px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.dash-main::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.dash-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 1px;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-row:last-child { border-bottom: none; }
.dash-label { font-size: 0.78rem; color: var(--text-secondary); }
.dash-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
}
.dash-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 0 12px;
  overflow: hidden;
}
.dash-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  animation: bar-fill 2s ease forwards;
}
@keyframes bar-fill { from{width:0} }

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-navy);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-anim 3.5s ease-in-out infinite;
}
.float-card:nth-child(2) { top: 30px; right: -30px; animation-delay: 0s; }
.float-card:nth-child(3) { bottom: 60px; left: -40px; animation-delay: 1.5s; }
.float-card:nth-child(4) { top: 50%; right: -50px; animation-delay: 0.8s; }
@keyframes float-anim {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.float-text strong { display: block; font-size: 0.8rem; color: var(--white); font-family:'Space Grotesk',sans-serif; }
.float-text span { font-size: 0.7rem; color: var(--text-muted); }

/* ================================================================
   GLASS CARD
   ================================================================ */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: var(--glass-border-bright);
  box-shadow: 0 0 30px rgba(201,146,42,0.12), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-6px);
}

/* ================================================================
   SECTION DIVIDER
   ================================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-bright), transparent);
  margin: 0;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-bright));
}
.section-divider::after { background: linear-gradient(90deg, var(--glass-border-bright), transparent); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold-400);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold-400);
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  position: relative;
}
.service-card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(201,146,42,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-color: transparent;
  box-shadow: 0 0 20px var(--gold-glow);
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.service-card-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  font-family: 'Poppins', sans-serif;
}

/* ================================================================
   WHY CHOOSE
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 24px;
  text-align: center;
}
.why-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.why-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* ================================================================
   INDUSTRIES
   ================================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
}
.industry-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: rgba(201,146,42,0.07);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.4rem;
  transition: var(--transition);
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, rgba(201,146,42,0.2), rgba(201,146,42,0.05));
  border-color: var(--gold-400);
  box-shadow: 0 0 24px var(--gold-glow-sm);
  transform: scale(1.08);
}
.industry-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ================================================================
   PROCESS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.process-step { padding: 0 20px; text-align: center; }
.process-num-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.4rem;
}
.process-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,146,42,0.08);
  border: 1px solid var(--glass-border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover .process-num {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--glow-gold);
}
.process-step h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--text-secondary); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .cur { color: var(--gold-400); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
}
.about-main-card {
  position: absolute;
  inset: 20px 20px 20px 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.about-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.about-logo-large { width: 160px; height: 160px; object-fit: contain; }
.about-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-align: center;
}
.about-est-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: var(--glow-gold);
  border: 3px solid var(--navy-800);
}
.est-year { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.est-label { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.about-content {}
.about-content p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 1rem; font-size: 0.97rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.5rem 0; }
.about-pill {
  padding: 7px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  background: rgba(201,146,42,0.06);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  padding: 36px 28px;
  position: relative;
}
.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0.5;
}
.mv-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.mv-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--gold-400); margin-bottom: 0.8rem; }
.mv-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 30px 22px;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(201,146,42,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 0 16px var(--gold-glow);
}
.value-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.contact-info-title { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.cc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cc-item:hover { border-color: var(--glass-border-bright); background: rgba(201,146,42,0.04); }
.cc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--navy-900);
}
.cc-text h4 { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Poppins', sans-serif; }
.cc-text p, .cc-text a { font-size: 0.95rem; font-weight: 600; color: var(--white); text-decoration: none; display: block; line-height: 1.5; }
.cc-text a:hover { color: var(--gold-400); }

.contact-form-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  outline: none;
  backdrop-filter: blur(10px);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--navy-800); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  background: rgba(201,146,42,0.04);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display:none; background:rgba(201,146,42,0.1); border:1px solid var(--gold-400); color:var(--gold-300); border-radius:10px; padding:14px 18px; font-size:0.9rem; margin-bottom:1rem; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-gold);
  height: 400px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-overlay-card {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(5,12,26,0.9);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}
.map-overlay-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--gold-400); margin-bottom: 4px; }
.map-overlay-card p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.footer-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-logo img { height: 54px; }
.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.fsoc:hover { background: rgba(201,146,42,0.1); border-color: var(--gold-400); color: var(--gold-400); }
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.fci-icon { color: var(--gold-400); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.fci-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.fci-text a { color: var(--text-muted); text-decoration: none; }
.fci-text a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-400); }
.footer-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.footer-pills span {
  padding: 4px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-muted);
}

/* ================================================================
   WA FLOAT
   ================================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.12); }
@keyframes wa-pulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5)}
  50%{box-shadow:0 8px 32px rgba(37,211,102,0.75)}
}

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

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1100px){
  .hero-body{grid-template-columns:1fr;gap:50px;padding:120px 0 70px;}
  .hero-visual{display:none;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .about-grid{grid-template-columns:1fr;gap:50px;}
  .about-visual{height:320px;}
  .footer-main{grid-template-columns:1fr 1fr;gap:40px;}
  .industry-grid{grid-template-columns:repeat(2,1fr);}
  .process-grid{grid-template-columns:repeat(2,1fr);}
  .process-grid::before{display:none;}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .mission-vision-grid{grid-template-columns:1fr;}
}
@media(max-width:900px){
  .nav-links,.nav-cta-wrap{display:none;}
  .hamburger{display:flex;}
  .mobile-nav{display:block;}
  section{padding:72px 0;}
  .contact-layout{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .container{padding:0 20px;}
  .hero h1{font-size:2.4rem;}
  .hero-metrics{flex-wrap:wrap;gap:20px;}
  .services-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .industry-grid{grid-template-columns:repeat(2,1fr);}
  .footer-main{grid-template-columns:1fr;gap:32px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .form-row{grid-template-columns:1fr;}
  .contact-form-box{padding:28px 22px;}
  .values-grid{grid-template-columns:1fr 1fr;}
  .cta-btns{flex-direction:column;align-items:center;}
  .hero-btns{flex-direction:column;align-items:flex-start;}
}
@media(max-width:400px){
  .why-grid{grid-template-columns:1fr;}
  .industry-grid{grid-template-columns:1fr;}
}
