/* ═══════════════════════════════════════════
   ALFA TECH INDIA — styles.css
   Font: Outfit (Google Fonts)
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:   #0a1f44;
  --blue:   #1246a0;
  --sky:    #1e6fd9;
  --aqua:   #0ea5e9;
  --gold:   #f59e0b;
  --gold2:  #fbbf24;
  --bg:     #f0f5fc;
  --white:  #ffffff;
  --text:   #1a2540;
  --muted:  #5a6a88;
  --border: #dce5f5;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(10,31,68,.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  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(--bg); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30,111,217,.10);
  box-shadow: 0 2px 20px rgba(10,31,68,.07);
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(10,31,68,.13);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--navy);
}
.nav-logo img {
  width: 44px; height: 44px; object-fit: contain;
  background: transparent; border-radius: 10px; padding: 6px; filter: invert(1);
}
.nav-logo span { font-size: .6rem; font-weight: 500; color: var(--muted); display: block; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--muted);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--sky); }
.nav-cta {
  background: var(--sky) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 9px !important;
  box-shadow: 0 4px 14px rgba(30,111,217,.35) !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px) !important; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: white; padding: 20px 5%; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 6px;
  box-shadow: 0 8px 30px rgba(10,31,68,.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: 10px; font-size: .9rem;
  font-weight: 500; color: var(--text); transition: all .2s;
}
.mobile-nav a:hover { background: var(--bg); color: var(--sky); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridMove 25s linear infinite;
}
@keyframes gridMove { to { background-position: 56px 56px; } }

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: orbFloat 10s ease-in-out infinite; pointer-events: none;
}
.hero-orb-1 { width: 550px; height: 550px; background: rgba(30,111,217,.15); top: -150px; left: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(245,158,11,.08); bottom: -80px; right: -80px; animation-delay: -4s; }
.hero-orb-3 { width: 280px; height: 280px; background: rgba(14,165,233,.12); top: 40%; left: 55%; animation-delay: -7s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-50px); } }

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
  position: absolute; width: 3px; height: 3px;
  background: rgba(255,255,255,.4); border-radius: 50%;
  animation: particleUp linear infinite;
}
@keyframes particleUp { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-100vh); opacity: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3);
  color: var(--gold2); font-size: .72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 18px; border-radius: 100px; margin-bottom: 22px;
  animation: fadeUp .8s ease .1s both;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 18px;
  animation: fadeUp .8s ease .3s both;
}
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero p {
  font-size: 1rem; color: rgba(255,255,255,.65);
  font-weight: 300; line-height: 1.85; margin-bottom: 38px;
  animation: fadeUp .8s ease .5s both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s ease .7s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: #fff; padding: 13px 34px; border-radius: 10px;
  font-weight: 600; font-size: .9rem;
  box-shadow: 0 8px 24px rgba(30,111,217,.4);
  transition: all .25s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30,111,217,.5); }
.btn-outline {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; padding: 13px 34px; border-radius: 10px;
  font-weight: 500; font-size: .9rem;
  backdrop-filter: blur(8px); transition: all .25s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.35); font-size: .68rem; letter-spacing: 2px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ══════════════════════════════
   3D HERO EXTRAS
══════════════════════════════ */
.hero-content {
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.08);
  animation: ringFloat ease-in-out infinite;
  pointer-events: none;
}
.hero-ring::before {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%; border: 1px solid rgba(30,111,217,.15);
}
@keyframes ringFloat {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); opacity:.4; }
  33% { transform: translateY(-18px) rotate(120deg) scale(1.05); opacity:.7; }
  66% { transform: translateY(10px) rotate(240deg) scale(.96); opacity:.3; }
}
.hero-dot-float {
  position: absolute; width: 5px; height: 5px;
  background: var(--gold2); border-radius: 50%;
  animation: dotBounce 4s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(251,191,36,.5);
}
@keyframes dotBounce {
  0%,100% { transform: translateY(0) scale(1); opacity:.6; }
  50% { transform: translateY(-30px) scale(1.4); opacity:1; }
}
.hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.15), 0 4px 8px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.15);
  animation: fadeUp .8s ease .3s both, textFloat 6s ease-in-out 1.2s infinite;
}
@keyframes textFloat {
  0%,100% { text-shadow: 0 1px 0 rgba(255,255,255,.15), 0 4px 8px rgba(0,0,0,.3); }
  50% { text-shadow: 0 2px 0 rgba(255,255,255,.2), 0 12px 24px rgba(0,0,0,.4), 0 0 60px rgba(30,111,217,.15); }
}
.hero-badge {
  animation: fadeUp .8s ease .1s both, badgePulse 3s ease-in-out 1s infinite !important;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 10px rgba(245,158,11,.2); }
  50% { box-shadow: 0 0 30px rgba(245,158,11,.5), 0 0 60px rgba(245,158,11,.15); }
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.btn-primary { position: relative; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03) !important; box-shadow: 0 16px 40px rgba(30,111,217,.55) !important; }
.btn-outline:hover { transform: translateY(-3px) scale(1.03) !important; }

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--navy); padding: 50px 5%;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,111,217,.12), transparent);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.stat-card {
  text-align: center; padding: 28px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  transition: all .3s;
}
.stat-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--gold2); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 400; }

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.section { padding: 90px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-bg-white { background: var(--white); }
.section-bg-light { background: var(--bg); }
.section-bg-navy { background: var(--navy); }

.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,111,217,.08), rgba(245,158,11,.08));
  border: 1px solid rgba(30,111,217,.18);
  color: var(--sky); font-size: .72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.section-title em { font-style: normal; color: var(--sky); }
.section-title.white { color: #fff; }
.section-sub {
  color: var(--muted); font-size: .9rem; line-height: 1.75;
  max-width: 500px; margin: 0 auto;
}
.section-sub.white { color: rgba(255,255,255,.6); }
.divider {
  width: 48px; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--sky));
  border-radius: 2px; margin: 16px auto 0;
}

/* ══════════════════════════════
   ABOUT SECTION (Homepage)
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.about-text p {
  color: var(--muted); font-size: .92rem;
  line-height: 1.9; margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: var(--bg); border-radius: 12px; border: 1px solid var(--border);
  transition: all .25s;
}
.about-feat:hover {
  background: var(--white); transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(10,31,68,.08);
}
.feat-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 12px rgba(30,111,217,.22);
}
.feat-title { font-weight: 600; font-size: .87rem; color: var(--navy); margin-bottom: 2px; }
.feat-desc { font-size: .77rem; color: var(--muted); }

/* ══════════════════════════════
   PRODUCTS GRID
══════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s; cursor: pointer;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(10,31,68,.13);
  border-color: var(--sky);
}
.product-img {
  height: 200px; overflow: hidden; background: #f0f5fc;
  display: flex; align-items: center; justify-content: center;
}
.product-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: none;
  transform: scale(0.95);
}
.product-card:hover .product-img img { transform: none; }
.product-body { padding: 20px 22px 24px; }
.product-cat {
  font-size: .68rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sky); margin-bottom: 6px;
}
.product-name { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.product-desc { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.product-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: .78rem; font-weight: 600;
  color: var(--sky); transition: gap .2s;
}
.product-link:hover { gap: 9px; }

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 34px 28px;
  text-align: center; transition: all .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sky), var(--gold));
  transform: scaleX(0); transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(10,31,68,.11); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 66px; height: 66px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(30,111,217,.1), rgba(30,111,217,.05));
  border: 1px solid rgba(30,111,217,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin: 0 auto 18px;
}
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: .82rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════
   PROCESS STEPS
══════════════════════════════ */
.steps-wrap {
  background: var(--navy); padding: 90px 5%; position: relative; overflow: hidden;
}
.steps-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,111,217,.1), transparent);
}
.steps-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, var(--sky), var(--gold2), var(--sky));
  background-size: 200% 100%; animation: lineFlow 3s linear infinite; z-index: 0;
}
@keyframes lineFlow { 0% { background-position: 0%; } 100% { background-position: 200%; } }
.step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border: 3px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(30,111,217,.4);
  transition: transform .3s;
}
.step:hover .step-num { transform: scale(1.1); }
.step h4 { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step p { font-size: .74rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px; transition: all .3s; position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 22px;
  font-size: 5rem; color: rgba(30,111,217,.07); font-family: Georgia, serif; line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,31,68,.10); }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; }
.testi-text {
  font-size: .85rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .86rem; color: var(--navy); }
.testi-role { font-size: .74rem; color: var(--muted); }

/* ══════════════════════════════
   SERVICE AREAS
══════════════════════════════ */
.service-wrap {
  background: var(--navy); padding: 90px 5%; position: relative;
}
.service-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,111,217,.2), transparent 60%);
}
.service-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.states-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-top: 40px;
}
.state-pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 9px 14px;
  text-align: center; color: rgba(255,255,255,.7);
  font-size: .78rem; font-weight: 500; transition: all .25s;
}
.state-pill:hover { background: rgba(30,111,217,.3); border-color: rgba(30,111,217,.5); color: #fff; transform: scale(1.05); }
.state-pill.highlight { background: rgba(30,111,217,.2); border-color: rgba(30,111,217,.4); color: var(--gold2); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(10,31,68,.07); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; gap: 14px; user-select: none;
}
.faq-q span { font-size: .9rem; font-weight: 600; color: var(--navy); }
.faq-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center;
  justify-content: center; color: var(--sky); font-size: .75rem;
  flex-shrink: 0; transition: all .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--sky); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { padding: 0 22px 18px; font-size: .84rem; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--sky) 100%);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.05), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(245,158,11,.08), transparent 50%);
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800; color: #fff; margin-bottom: 14px;
}
.cta-banner h2 em { font-style: normal; color: var(--gold2); }
.cta-banner p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 34px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--navy); padding: 13px 34px;
  border-radius: 10px; font-weight: 700; font-size: .9rem; transition: all .25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-outline-white {
  background: transparent; border: 2px solid rgba(255,255,255,.4);
  color: #fff; padding: 13px 34px; border-radius: 10px;
  font-weight: 600; font-size: .9rem; transition: all .25s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.contact-card {
  background: var(--white); border-radius: 20px; padding: 38px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card .sub { color: var(--muted); font-size: .84rem; line-height: 1.6; margin-bottom: 24px; }
.c-items { display: flex; flex-direction: column; gap: 12px; }
.c-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: var(--bg);
  border-radius: 12px; border: 1px solid var(--border);
}
.c-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 10px rgba(30,111,217,.22);
}
.c-label { font-size: .69rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.c-val { font-size: .9rem; font-weight: 600; color: var(--navy); margin-top: 1px; }
.c-val a { color: var(--sky); }
.c-val a:hover { text-decoration: underline; }
.map-box {
  min-height: 230px; border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  border: 1px solid rgba(30,111,217,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; margin-top: 22px;
}
.map-box .map-icon { font-size: 2.4rem; }
.map-box p { color: var(--sky); font-size: .84rem; font-weight: 500; }
.map-box a { color: var(--sky); font-size: .78rem; border-bottom: 1px solid rgba(30,111,217,.4); padding-bottom: 1px; }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Outfit', sans-serif;
  font-size: .87rem; color: var(--text);
  background: var(--bg); outline: none; transition: all .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky); background: #fff;
  box-shadow: 0 0 0 3px rgba(30,111,217,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: #fff; border: none; padding: 13px 36px;
  border-radius: 10px; font-family: 'Outfit', sans-serif;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 24px rgba(30,111,217,.35);
  transition: all .25s; margin-top: 4px; width: fit-content;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30,111,217,.45); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--navy); position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,111,217,.09), transparent 55%, rgba(245,158,11,.04));
}
.footer-body {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 5% 38px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; position: relative; z-index: 1;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-brand-logo img {
  width: 48px; height: 48px; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18); border-radius: 12px;
  padding: 7px; object-fit: contain;
}
.footer-brand-logo .ft1 { font-size: .94rem; font-weight: 800; color: #fff; display: block; }
.footer-brand-logo .ft2 { font-size: .6rem; color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .79rem; line-height: 1.85; margin-bottom: 22px; }
.social-row { display: flex; gap: 9px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .84rem; transition: all .22s;
}
.social-btn:hover { background: var(--sky); border-color: var(--sky); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  color: #fff; font-size: .76rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,.4); font-size: .79rem;
  transition: all .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold2); font-weight: 700; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.fc-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.fc-ico { font-size: .9rem; margin-top: 1px; min-width: 18px; }
.fc-txt { color: rgba(255,255,255,.4); font-size: .77rem; line-height: 1.65; }
.fc-txt a { color: rgba(255,255,255,.55); }
.fc-txt a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 18px 5% 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; position: relative; z-index: 1;
}
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .74rem; }
.ft-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  color: var(--gold2); font-size: .69rem; padding: 4px 12px; border-radius: 100px;
}

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, #060e22 0%, #0a1f44 40%, #0d2e6e 70%, #1246a0 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 5% 60px; position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-top: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--gold2); }
.page-hero p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 500px; margin: 12px auto 0; line-height: 1.75; }

.about-full p { color: var(--muted); font-size: .92rem; line-height: 1.9; margin-bottom: 18px; }
.cert-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.cert-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  background: var(--bg); border-radius: 12px; border: 1px solid var(--border);
  font-size: .86rem; color: var(--text); line-height: 1.55;
}
.cert-item::before { content: '✓'; color: var(--sky); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.strength-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 10px; }
.strength-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  transition: all .25s;
}
.strength-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,31,68,.08); border-color: var(--sky); }
.strength-card h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.strength-card p { font-size: .78rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   PRODUCTS PAGE
══════════════════════════════ */
.products-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 38px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 9px; border: 1.5px solid var(--border);
  background: transparent; color: var(--muted);
  font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--sky); color: var(--sky); }
.filter-btn.active {
  background: var(--sky); color: #fff; border-color: var(--sky);
  box-shadow: 0 4px 14px rgba(30,111,217,.3);
}

/* ══════════════════════════════
   TRUST BADGES
══════════════════════════════ */
.trust-section {
  background: linear-gradient(135deg, #f6f9ff, #eef3ff);
  padding: 56px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-badges {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 36px;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 24px;
  box-shadow: 0 2px 12px rgba(10,31,68,.05); transition: all .25s;
}
.trust-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(10,31,68,.10); border-color: var(--sky); }
.badge-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.badge-t1 { font-size: .86rem; font-weight: 700; color: var(--navy); }
.badge-t2 { font-size: .73rem; color: var(--muted); }

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .65s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-30px); transition: all .65s cubic-bezier(.4,0,.2,1); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(30px); transition: all .65s cubic-bezier(.4,0,.2,1); }
.reveal-r.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; } .d6 { transition-delay: .42s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .stats-grid,
  .why-grid,
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .steps-grid::before { display: none; }
  .states-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-body { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 5% 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .testi-grid, .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

.why-sticky-section {
  background: #ffffff;
  position: relative;
}

.sticky-container {
  display: flex;
  min-height: 100vh;
  gap: 50px;
  padding: 0 8%;
}

/* Left Side Sticky Logic */
.left-content {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 3.5rem;
  margin: 20px 0;
  line-height: 1.1;
}

.section-title em {
  color: #2563eb;
  font-style: normal;
}

/* Right Side Scroll Logic */
.right-scroll {
  flex: 1.2;
  padding: 100px 0;
}

.perspective-wrapper {
  perspective: 1000px; /* Essential for 3D effect */
}

.feature-item {
  background: #f8fafc;
  padding: 50px;
  border-radius: 40px;
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* High-End 3D Animation on Scroll */
.reveal-3d {
  opacity: 0;
  transform: rotateX(25deg) translateY(100px) translateZ(-50px);
}

.reveal-3d.active {
  opacity: 1;
  transform: rotateX(0) translateY(0) translateZ(0);
}

.feature-item:hover {
  background: #ffffff;
  transform: scale(1.05) rotateY(-5deg);
  box-shadow: 20px 20px 60px rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
}

.icon-3d {
  font-size: 50px;
  background: white;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateZ(30px); /* Lifts icon off the card */
}

.info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Mouse Scroll Animation */
.scroll-indicator {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #94a3b8;
}

.mouse {
  width: 20px;
  height: 35px;
  border: 2px solid #94a3b8;
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: #2563eb;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 20px; }
}

/* Responsive */
@media (max-width: 992px) {
  .sticky-container { flex-direction: column; }
  .left-content { height: auto; position: relative; padding-top: 50px; }
  .right-scroll { padding-top: 20px; }
}