:root {
  --blue: #1a3a8f;
  --royal: #1e4fd8;
  --accent: #2563eb;
  --light-blue: #3b82f6;
  --dark-blue: #1e40af;
  --bg: #ffffff;
  --bg2: #f4f8ff;
  --bg3: #eef3ff;
  --surface: #ffffff;
  --card: #ffffff;
  --border: #e2e8f0;
  --border2: #dbeafe;
  --text: #0f172a;
  --text2: #1e293b;
  --muted: #64748b;
  --muted2: #94a3b8;
  --gold: #22d3ee;
  --gold2: #6366f1;
  --gradient: linear-gradient(135deg, #1e4fd8 0%, #2563eb 50%, #3b82f6 100%);
  --gradient-gold: linear-gradient(135deg, #06b6d4 0%, #2563eb 60%, #6366f1 100%);
  --gradient-soft: linear-gradient(135deg, rgba(30,79,216,0.08) 0%, rgba(59,130,246,0.04) 100%);
  --shadow-sm: 0 1px 4px rgba(30,79,216,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(30,79,216,0.1), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(30,79,216,0.15), 0 4px 12px rgba(0,0,0,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.3; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 3rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 20px rgba(30,79,216,0.06);
}
nav.scrolled {
  padding: 0.65rem 3rem;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(30,79,216,0.1);
}

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; z-index: 1001; }
.logo-hex {
  width: 40px; height: 40px;
  background: var(--gradient);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: white;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.logo:hover .logo-hex { transform: rotate(30deg); }
.logo-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--text); letter-spacing: 2px;
}

.nav-pill {
  background: rgba(241,245,249,0.9);
  border: 1px solid rgba(203,213,225,0.7);
  border-radius: 100px;
  padding: 0.3rem 0.4rem;
  display: flex; align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 1.1rem; border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; display: block;
}
.nav-links a:hover { color: var(--accent); background: rgba(37,99,235,0.07); }
.nav-links a.active {
  color: white;
  background: var(--gradient);
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
}

.nav-cta-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--gradient); color: white;
  padding: 0.55rem 1.25rem; border-radius: 100px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  box-shadow: 0 3px 14px rgba(37,99,235,0.35);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap; z-index: 1001;
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.45); opacity: 0.95; }
.nav-cta-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-cta-btn:hover svg { transform: translateX(2px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 1001;
  background: transparent; border: none; outline: none;
  position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); transition: all 0.3s ease; transform-origin: center;
  border-radius: 2px;
}

.page { display: none; }
.page.active { display: block; }

#home {
  position: relative; overflow: hidden;
  background: #0c1a42;
  min-height: 100vh;
}

.hero-bg-anim { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob1 { width: 500px; height: 500px; background: #1e4fd8; top: -100px; left: -100px; animation-delay: 0s; }
.blob2 { width: 400px; height: 400px; background: #7c3aed; top: 50%; right: -80px; animation-delay: -3s; }
.blob3 { width: 300px; height: 300px; background: #0891b2; bottom: -80px; left: 40%; animation-delay: -5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(0.97); }
}

.hero-orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(34,211,238,0.18);
  animation: orbitSpin linear infinite;
}
.o1 { width: 620px; height: 620px; top: 8%; right: -10%; animation-duration: 60s; }
.o2 { width: 380px; height: 380px; bottom: -8%; right: 18%; animation-duration: 40s; animation-direction: reverse; border-color: rgba(99,102,241,0.18); }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; position: relative; z-index: 2;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3rem 5rem 5rem;
}

.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 3rem 5rem 2rem;
}

.hero-img-frame {
  position: relative; width: 100%; max-width: 520px;
  border-radius: 24px; overflow: visible;
}
.hero-img-frame::before {
  content: ''; position: absolute; inset: -14px; z-index: -1;
  background: conic-gradient(from 0deg, #06b6d4, #2563eb, #6366f1, #06b6d4);
  border-radius: 30px; opacity: 0.55; filter: blur(18px);
  animation: orbitSpin 10s linear infinite;
}
.hero-img-frame img {
  width: 100%; height: 480px; object-fit: cover; object-position: center top;
  border-radius: 20px; display: block;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

.badge-floating {
  position: absolute; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
  animation: badgePop 0.6s ease both, badgeFloat 4s ease-in-out infinite 1.6s;
}
.badge-floating svg { color: var(--accent); flex-shrink: 0; }
.badge-tl { top: -12px; left: -16px; animation-delay: 0.8s, 1.6s; }
.badge-br { bottom: -12px; right: -16px; animation-delay: 1s, 1.6s; }
@keyframes badgePop { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-bottom: 1.75rem;
  animation: fadeDown 0.6s ease forwards; font-weight: 500; width: fit-content;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #22d3ee; box-shadow: 0 0 0 0 rgba(34,211,238,0.6); animation: pulse 2s infinite, ringPulse 2s infinite; }
@keyframes ringPulse { 0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.5); } 70% { box-shadow: 0 0 0 7px rgba(34,211,238,0); } 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); } }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 1.5rem; color: #ffffff;
  animation: fadeUp 0.7s 0.1s ease both;
  text-transform: uppercase;
}
.hero-title .gradient-text {
  background: linear-gradient(100deg, #22d3ee 0%, #3b82f6 35%, #818cf8 60%, #22d3ee 100%);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
  position: relative;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 460px;
  line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

.btn-primary {
  background: var(--gradient-gold); background-size: 200% auto; color: white;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s, background-position 0.5s; display: inline-flex;
  align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.5); background-position: right center; }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline-blue {
  background: transparent; color: var(--accent);
  padding: 0.6rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  border: 1.5px solid var(--border2);
  transition: border-color 0.2s, background 0.2s, color 0.2s; display: inline-block;
  white-space: nowrap;
}
.btn-outline-blue:hover { background: var(--accent); color: white; border-color: var(--accent); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; background: linear-gradient(135deg,#22d3ee,#818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; letter-spacing: 0.3px; }

.services-strip-wrap {
  background: #ffffff; border-bottom: 1px solid var(--border);
  position: relative; z-index: 2; overflow: hidden;
}
.strip-bg-anim { position: absolute; inset: 0; z-index: 0; }
.strip-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.14; animation: blobFloat 9s ease-in-out infinite; }
.sb1 { width: 480px; height: 480px; background: #2563eb; top: -150px; left: -120px; }
.sb2 { width: 420px; height: 420px; background: #6366f1; bottom: -160px; right: -100px; animation-delay: -4s; }
.sb3 { width: 320px; height: 320px; background: #06b6d4; top: 10%; right: 8%; animation-delay: -2s; }
.sb4 { width: 280px; height: 280px; background: #818cf8; bottom: 5%; left: 12%; animation-delay: -6s; }
.sb5 { width: 240px; height: 240px; background: #2563eb; top: 45%; left: 42%; animation-delay: -3s; opacity: 0.1; }
.sb6 { width: 200px; height: 200px; background: #6366f1; top: 60%; right: 30%; animation-delay: -7s; opacity: 0.1; }
.strip-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 50px 50px, 50px 50px; }
}
.strip-particle { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(37,99,235,0.4); animation: ctaFloat 6s ease-in-out infinite; }
.strip-particle.sp1 { top: 14%; left: 18%; animation-delay: 0s; }
.strip-particle.sp2 { top: 75%; left: 30%; animation-delay: -2s; background: rgba(99,102,241,0.4); }
.strip-particle.sp3 { top: 22%; right: 20%; animation-delay: -3.5s; background: rgba(6,182,212,0.45); }
.strip-particle.sp4 { top: 68%; right: 12%; animation-delay: -1.2s; }

.services-strip-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; position: relative; z-index: 2; }
.strip-label {
  text-align: center; font-size: 0.78rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); font-weight: 700;
  margin-bottom: 1rem;
}
.strip-title {
  text-align: center; font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800;
  color: var(--text); letter-spacing: -0.5px; line-height: 1.2;
  margin-bottom: 3.5rem;
}
.animated-gradient-text {
  background: linear-gradient(100deg, #22d3ee 0%, #3b82f6 35%, #a78bfa 65%, #22d3ee 100%);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

.floating-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.float-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem 1.75rem;
  transition: transform 0.35s, border-color 0.3s, box-shadow 0.35s, background 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.float-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,0.35), rgba(99,102,241,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
}
.float-card:hover::after { opacity: 1; }
.float-card:hover { transform: translateY(-8px); border-color: var(--border2); box-shadow: var(--shadow-lg); }
.float-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; color: var(--accent);
  transition: transform 0.3s, background 0.3s;
}
.float-card:hover .float-icon { transform: scale(1.1) rotate(-6deg); background: rgba(37,99,235,0.14); }
.float-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.float-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

.section-blue-bg {
  background: linear-gradient(135deg, #0c1a42 0%, #1e3a8a 50%, #1e4fd8 100%);
  position: relative; overflow: hidden;
  padding: 6rem 0;
}
.blue-bg-shapes { position: absolute; inset: 0; z-index: 0; }
.bg-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.c1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.c2 { width: 300px; height: 300px; bottom: -100px; left: 5%; }

.about-preview-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-img-col { position: relative; }
.about-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.about-img-wrap img {
  width: 100%; height: 460px; object-fit: cover; display: block;
  border-radius: 20px;
}
.about-exp-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-radius: 14px; padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.exp-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.exp-text { font-size: 0.78rem; color: var(--muted); margin-top: 2px; display: block; }

.about-text-col {}
.section-label-white { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; display: block; margin-bottom: 0.75rem; }
.white-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 1rem; letter-spacing: -0.5px; }
.gold-text {
  background: linear-gradient(135deg, #22d3ee 0%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.white-desc { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }

.white-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.wv-item {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1rem; display: flex; gap: 0.75rem; align-items: flex-start;
  transition: background 0.2s;
}
.wv-item:hover { background: rgba(255,255,255,0.11); }
.wv-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: #22d3ee;
}
.wv-item strong { font-size: 0.88rem; color: #fff; display: block; margin-bottom: 0.2rem; }
.wv-item p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

.btn-gold {
  display: inline-block; background: var(--gradient-gold); background-size: 200% auto; color: white;
  padding: 0.85rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background-position 0.5s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.55); background-position: right center; }

.section-lightblue-bg {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; padding: 0 0 5rem;
}
.lightblue-bg-shapes { position: absolute; inset: 0; z-index: 0; }
.lb-shape {
  position: absolute; border-radius: 50%;
  background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.08);
}
.s1 { width: 400px; height: 400px; top: -80px; right: -80px; }
.s2 { width: 250px; height: 250px; bottom: 0; left: 10%; }

#projectsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.home-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.img-proj-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.img-proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.img-proj-thumb { position: relative; height: 220px; overflow: hidden; }
.img-proj-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.img-proj-card:hover .img-proj-thumb img { transform: scale(1.06); }
.img-proj-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,60,0.95) 0%, rgba(10,20,60,0.6) 60%, transparent 100%);
  padding: 1.5rem 1.25rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.img-proj-card:hover .img-proj-overlay { transform: translateY(0); }
.img-proj-overlay h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.img-proj-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

#projectsGrid .img-proj-overlay {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(10,20,60,0.9) 0%, transparent 100%);
}

.tag-white {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.3) !important;
  color: #fff !important;
}

.services-anim-wrap { position: relative; overflow: hidden; }
.services-bg-anim { position: absolute; inset: -2rem; z-index: 0; pointer-events: none; }
.serv-ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(37,99,235,0.14); animation: orbitSpin linear infinite; }
.serv-ring.r1 { width: 420px; height: 420px; top: -80px; right: -60px; animation-duration: 50s; }
.serv-ring.r2 { width: 260px; height: 260px; bottom: -40px; left: 4%; animation-duration: 34s; animation-direction: reverse; border-color: rgba(99,102,241,0.16); }
.serv-shape { position: absolute; opacity: 0.5; animation: servDrift 9s ease-in-out infinite; }
.serv-shape.sq {
  width: 26px; height: 26px; border: 2px solid rgba(37,99,235,0.25);
  border-radius: 6px; transform: rotate(20deg);
}
.serv-shape.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(99,102,241,0.3); }
.serv-shape.tri {
  width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-bottom: 20px solid rgba(6,182,212,0.22);
}
.serv-shape.plus { width: 18px; height: 18px; }
.serv-shape.plus::before, .serv-shape.plus::after {
  content: ''; position: absolute; background: rgba(37,99,235,0.22);
}
.serv-shape.plus::before { width: 18px; height: 2px; top: 8px; left: 0; }
.serv-shape.plus::after { width: 2px; height: 18px; left: 8px; top: 0; }

.shape1 { top: 4%; left: 6%; animation-delay: 0s; }
.shape2 { top: 10%; right: 10%; animation-delay: -1.5s; }
.shape3 { top: 22%; left: 16%; animation-delay: -3s; }
.shape4 { top: 28%; right: 22%; animation-delay: -4.5s; }
.shape5 { top: 38%; left: 38%; animation-delay: -2.2s; }
.shape6 { top: 34%; left: 4%; animation-delay: -6s; }
.shape7 { top: 30%; right: 4%; animation-delay: -5s; }
.shape8 { top: 46%; left: 60%; animation-delay: -3.8s; }
.shape9 { top: 52%; left: 8%; animation-delay: -1s; }
.shape10 { top: 50%; right: 30%; animation-delay: -4s; }
.shape11 { top: 58%; right: 8%; animation-delay: -2.6s; }
.shape12 { top: 64%; left: 24%; animation-delay: -5.5s; }
.shape13 { top: 70%; left: 50%; animation-delay: -3.2s; }
.shape14 { top: 75%; right: 16%; animation-delay: -1.8s; }
.shape15 { top: 80%; left: 10%; animation-delay: -4.8s; }
.shape16 { top: 86%; right: 38%; animation-delay: -2.4s; }

@keyframes servDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(10px,-16px) rotate(8deg); }
  50% { transform: translate(-8px,-6px) rotate(-6deg); }
  75% { transform: translate(6px,10px) rotate(4deg); }
}

.testi-anim-wrap { position: relative; overflow: hidden; }
.testi-bg-anim { position: absolute; inset: -2rem; z-index: 0; pointer-events: none; }
.testi-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1; animation: blobFloat 11s ease-in-out infinite; }
.testi-blob.t1 { width: 460px; height: 460px; background: #2563eb; top: -100px; left: -100px; }
.testi-blob.t2 { width: 360px; height: 360px; background: #06b6d4; bottom: -80px; right: -60px; animation-delay: -4s; }

.testi-controls { display: flex; gap: 0.6rem; }
.testi-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid var(--border); color: var(--accent);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.testi-arrow:hover { background: var(--gradient); color: white; border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow); }

.testi-slider { overflow: hidden; }
.testi-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.65,0,0.35,1);
}
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 0.88rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0; }
.testi-author strong { font-size: 0.88rem; color: var(--text); display: block; font-weight: 600; }
.testi-author span { font-size: 0.75rem; color: var(--muted); }

.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; position: relative; z-index: 2; }
.testi-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--border2);
  border: none; cursor: pointer; transition: all 0.25s; padding: 0;
}
.testi-dot.active { background: var(--gradient); width: 26px; border-radius: 100px; }

.cta-banner {
  background: var(--gradient); border-radius: 24px; padding: 0;
  box-shadow: 0 12px 40px rgba(37,99,235,0.3);
  position: relative; overflow: hidden;
}
.cta-bg-anim { position: absolute; inset: 0; z-index: 0; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; animation: blobFloat 6s ease-in-out infinite; }
.cta-content { position: relative; z-index: 1; padding: 4rem 3.5rem; text-align: center; }
.cb1 { width: 300px; height: 300px; background: #7c3aed; top: -80px; left: -80px; }
.cb2 { width: 250px; height: 250px; background: #0891b2; bottom: -60px; right: -60px; animation-delay: -3s; }
.cta-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.cta-particle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); animation: ctaFloat 5s ease-in-out infinite; }
.cta-particle.p1 { top: 18%; left: 12%; animation-delay: 0s; }
.cta-particle.p2 { top: 70%; left: 22%; animation-delay: -1.5s; }
.cta-particle.p3 { top: 25%; right: 16%; animation-delay: -3s; }
.cta-particle.p4 { top: 65%; right: 10%; animation-delay: -2s; }
@keyframes ctaFloat { 0%,100% { transform: translateY(0) scale(1); opacity: 0.5; } 50% { transform: translateY(-18px) scale(1.4); opacity: 1; } }

.cta-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1.25rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: #fff;
  animation: ctaIconPulse 2.4s ease-in-out infinite;
}
@keyframes ctaIconPulse { 0%,100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.08) rotate(8deg); } }

.cta-banner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; margin-bottom: 1rem; color: white; }
.cta-shimmer {
  background: linear-gradient(100deg, #ffffff 30%, #bae6fd 45%, #ffffff 60%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 3.5s ease-in-out infinite;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.btn-white { background: white; color: var(--accent); padding: 0.85rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost-white {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cta-trust-row { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; }
.cta-trust-row span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.cta-trust-row svg { color: #22d3ee; flex-shrink: 0; }

.page-header { padding: 8rem 4rem 4rem; text-align: center; position: relative; }
.page-header-blue {
  background: linear-gradient(135deg, #0c1a42 0%, #1e3a8a 60%, #1e4fd8 100%);
  overflow: hidden;
}
.ph-blobs { position: absolute; inset: 0; z-index: 0; }
.ph-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.25; animation: blobFloat 8s ease-in-out infinite; }
.pb1 { width: 400px; height: 400px; background: #7c3aed; top: -100px; right: -100px; animation-delay: 0s; }
.pb2 { width: 300px; height: 300px; background: #0891b2; bottom: -80px; left: 10%; animation-delay: -4s; }
.ph-content { position: relative; z-index: 1; }
.page-header .eyebrow { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; font-weight: 600; }
.page-header-blue h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; color: #fff; }
.page-header-blue p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.white-gold-text {
  background: linear-gradient(135deg, #22d3ee 0%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blue-text {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-inner { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.section-label { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 1rem; color: var(--text); }
.section-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 500px; }
.section-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.home-section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem 5rem; }

.about-story-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 0;
}
.about-img-side { position: relative; }
.about-img-side img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 20px; display: block;
  box-shadow: var(--shadow-lg);
}
.about-img-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.95); border-radius: 10px; padding: 0.6rem 1rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text); box-shadow: var(--shadow);
}
.about-text-side {}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm);
}
.value-item:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.value-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.value-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--text2); }
.value-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.about-stats-banner {
  margin-top: 4rem; border-radius: 20px; overflow: hidden;
}
.asb-inner {
  background: linear-gradient(135deg, #1e4fd8, #2563eb, #3b82f6);
  position: relative; border-radius: 20px; padding: 3rem 2rem; overflow: hidden;
}
.asb-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.2; animation: blobFloat 7s ease-in-out infinite; }
.ab1 { width: 300px; height: 300px; background: #7c3aed; top: -80px; left: -80px; }
.ab2 { width: 200px; height: 200px; background: #0891b2; bottom: -50px; right: 15%; animation-delay: -3s; }
.asb-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.asb-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; color: #22d3ee; line-height: 1; }
.asb-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; }

.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem 1rem 1.25rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img-wrap {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.75rem;
  border: 3px solid var(--accent); box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text2); }
.team-card p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; margin-bottom: 0.75rem; }
.team-social { display: flex; justify-content: center; gap: 0.5rem; }
.team-social a { width: 28px; height: 28px; border-radius: 6px; background: var(--bg2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: all 0.2s; }
.team-social a:hover { background: var(--accent); border-color: var(--accent); color: white; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: rgba(255,255,255,0.86); border: 1px solid var(--border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 16px; padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--accent); transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(37,99,235,0.14); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.tag { font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 100px; background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.15); color: var(--accent); font-weight: 500; }

.process-blue-strip {
  margin-top: 4rem; border-radius: 24px; padding: 4rem 3rem;
  background: linear-gradient(135deg, #0c1a42 0%, #1e3a8a 60%, #1e4fd8 100%);
  position: relative; overflow: hidden;
}
.pbs-blobs { position: absolute; inset: 0; z-index: 0; }
.pbs-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.2; animation: blobFloat 8s ease-in-out infinite; }
.b1 { width: 300px; height: 300px; background: #7c3aed; top: -80px; left: -80px; }
.b2 { width: 250px; height: 250px; background: #0891b2; bottom: -60px; right: 5%; animation-delay: -4s; }

.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-row::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.process-step { text-align: center; padding: 1rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 1rem; position: relative; z-index: 1; color: white;
}
.process-step h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; color: white; }
.process-step p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.contact-map-strip {
  position: relative; height: 260px; overflow: hidden;
}
.contact-map-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.6);
}
.cms-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 2rem 4rem;
}
.cms-badge {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 0.75rem 1.25rem;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow);
}
.cms-badge svg { color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm);
}
.info-card:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.info-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--text2); }
.info-card p { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.contact-form { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
label { font-size: 0.82rem; font-weight: 500; color: var(--text2); }
input, textarea, select {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; resize: none; outline: none;
}
input::placeholder, textarea::placeholder { color: var(--muted2); }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); background: white; }
select option { background: white; color: var(--text); }
textarea { height: 110px; }
.submit-btn { width: 100%; background: var(--gradient); color: white; border: none; padding: 0.9rem; border-radius: 10px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(37,99,235,0.35); }
.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.form-success { display: none; text-align: center; padding: 2rem; color: #059669; font-weight: 600; }

.proj-filter { background: white; border: 1px solid var(--border); color: var(--muted); padding: 0.45rem 1.1rem; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.proj-filter:hover { border-color: var(--border2); color: var(--accent); }
.proj-filter.active { background: var(--gradient); border-color: transparent; color: white; font-weight: 600; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.proj-card.hidden { display: none; }

footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3rem 4rem 1.5rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.5px; color: var(--text); }
.footer-col p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-links li { font-size: 0.82rem; color: var(--muted); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.78rem; color: var(--muted2); }
.socials { display: flex; gap: 0.75rem; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: white; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; text-decoration: none; color: var(--muted); transition: all 0.2s; box-shadow: var(--shadow-sm); }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: white; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s 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; }

/* ══════════════════════════
   ABOUT PAGE — NEW PROMINENT ANIMATED HEADER BACKGROUND
══════════════════════════ */
.about-hero-anim-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.about-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,211,238,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,0.35) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(37,99,235,0.4) 0%, transparent 50%);
  filter: blur(40px);
  animation: auroraDrift 14s ease-in-out infinite;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33% { transform: translate(4%,-3%) rotate(6deg) scale(1.08); }
  66% { transform: translate(-3%,4%) rotate(-5deg) scale(0.96); }
}
.about-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  animation: gridDrift 16s linear infinite;
}
.about-orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.14); animation: orbitSpin linear infinite; }
.about-orbit-ring.aor1 { width: 480px; height: 480px; top: -120px; right: -80px; animation-duration: 45s; }
.about-orbit-ring.aor2 { width: 320px; height: 320px; bottom: -100px; left: -60px; animation-duration: 30s; animation-direction: reverse; border-color: rgba(34,211,238,0.16); }
.about-float-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); animation: ctaFloat 6s ease-in-out infinite; }
.afp1 { width: 5px; height: 5px; top: 18%; left: 15%; animation-delay: 0s; }
.afp2 { width: 7px; height: 7px; top: 65%; left: 28%; animation-delay: -2s; background: rgba(34,211,238,0.7); }
.afp3 { width: 4px; height: 4px; top: 30%; right: 20%; animation-delay: -3.5s; }
.afp4 { width: 6px; height: 6px; top: 70%; right: 14%; animation-delay: -1.2s; background: rgba(129,140,248,0.7); }
.afp5 { width: 5px; height: 5px; top: 45%; left: 50%; animation-delay: -4.5s; }

.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgba(34,211,238,0.85);
  animation: typing 1.8s steps(22, end) forwards, blinkCaret 0.75s step-end infinite;
  max-width: 0;
}
@keyframes typing { from { max-width: 0; } to { max-width: 100%; } }
@keyframes blinkCaret { 0%, 100% { border-color: rgba(34,211,238,0.85); } 50% { border-color: transparent; } }

.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordPop 0.6s ease forwards;
}

@keyframes wordPop { to { opacity: 1; transform: translateY(0); } }

.eyebrow-shimmer {
  position: relative; overflow: hidden;
  background: linear-gradient(100deg, rgba(34,211,238,0.6) 20%, rgba(255,255,255,0.95) 40%, rgba(34,211,238,0.6) 60%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.leader-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; max-width: 720px; }
.leader-card {
  background: white; border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem 1.5rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.leader-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.leader-card:hover::before { transform: scaleX(1); }
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leader-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.5rem; color: white;
  box-shadow: 0 8px 22px rgba(37,99,235,0.3);
}
.leader-card h4 { font-size: 1rem; font-weight: 700; color: var(--text2); }
.leader-card p { font-size: 0.82rem; color: var(--muted); margin-top: 3px; margin-bottom: 0.9rem; font-weight: 500; }
.leader-social { display: flex; justify-content: center; gap: 0.5rem; }
.leader-social a { width: 30px; height: 30px; border-radius: 8px; background: var(--bg2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: all 0.2s; }
.leader-social a:hover { background: var(--accent); border-color: var(--accent); color: white; }

@media (max-width: 600px) {
  .leader-row { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .home-projects-grid { grid-template-columns: 1fr 1fr; }
  #projectsGrid { grid-template-columns: 1fr 1fr; }
  .floating-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc((100% - 1.5rem) / 2); min-width: calc((100% - 1.5rem) / 2); }
  .about-preview-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-split { grid-template-columns: 1fr; gap: 2rem; }
  .asb-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  nav { padding: 0.85rem 1.25rem; }
  nav.scrolled { padding: 0.65rem 1.25rem; }
  .nav-pill { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; z-index: 997; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-right { padding: 0 1.5rem 3rem; display: block; }
  
  .hero-img-frame img { height: 260px; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  .floating-cards { grid-template-columns: 1fr; }
  .about-preview-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap img { height: 280px; }
  .white-values { grid-template-columns: 1fr; }
  .home-projects-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; min-width: 100%; }
  .about-story-split { grid-template-columns: 1fr; }
  .about-img-side img { height: 260px; }
  .asb-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-row::before { display: none; }
  #projectsGrid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 2rem 1.25rem 1rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-header { padding: 6rem 1.25rem 2rem; }
  .section-inner { padding: 2.5rem 1.25rem; }
  .home-section-wrap { padding: 0 1.25rem 3.5rem; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .contact-map-strip { height: 180px; }
  .cms-overlay { padding: 1rem 1.25rem; }
  .process-blue-strip { padding: 3rem 1.5rem; }
  .cta-content { padding: 2.5rem 1.5rem; }
  .section-blue-bg { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .asb-stats { grid-template-columns: 1fr 1fr; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(160deg, #0c1a42 0%, #1e3a8a 60%, #1a2e70 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu .nav-links {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; list-style: none; width: 100%; max-width: 320px;
}
.mobile-menu .nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 0.8rem 2rem; border-radius: 16px;
  display: block; width: 100%; text-align: center;
  background: none; text-decoration: none;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.5px;
}
.mobile-menu .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.mobile-menu .nav-links a.active {
  color: #22d3ee;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
}

.mobile-menu-cta {
  margin-top: 2.5rem; width: 100%; max-width: 320px;
}
.mobile-menu-cta a {
  display: block; text-align: center;
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  color: white; padding: 1rem 2rem; border-radius: 14px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-menu-cta a:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,0.5); }

.mobile-menu-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.7);
  font-size: 1.1rem; font-weight: 300;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.16); color: white; }

nav.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
nav.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

@media (max-width: 900px) and (min-width: 641px) {
  .nav-pill { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════
   ABOUT PAGE — MISSION, VISION, WHY-US, TIMELINE, INDUSTRIES, CERTS
══════════════════════════ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
  background: white; border: 1px solid var(--border); border-radius: 18px;
  padding: 2.25rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
}
.mv-card::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px;
  border-radius: 50%; background: rgba(37,99,235,0.06);
  transition: transform 0.4s ease;
}
.mv-card:hover::before { transform: scale(1.3); }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.1rem;
  background: rgba(37,99,235,0.09); border: 1px solid rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  position: relative; z-index: 1;
}
.mv-icon-alt { background: rgba(6,182,212,0.09); border-color: rgba(6,182,212,0.18); color: #0891b2; }
.mv-tag { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 700; display: block; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.mv-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; line-height: 1.35; position: relative; z-index: 1; }
.mv-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }

.whyus-banner { margin-top: 4.5rem; }
.whyus-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.whyus-stat {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem 1.25rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.whyus-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.whyus-icon {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 0.9rem;
  background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.whyus-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 0.4rem; }
.whyus-label { font-size: 0.78rem; color: var(--muted); }

/* Timeline */
.timeline-wrap { position: relative; padding: 1rem 0 0.5rem; }
.timeline-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; position: relative; z-index: 1; }
.timeline-line {
  position: absolute; top: 8px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--border2), var(--accent), var(--border2));
  background-size: 200% auto;
  animation: gradientShift 5s ease-in-out infinite;
}
.timeline-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.5rem; }
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%; background: white;
  border: 3px solid var(--accent); margin-bottom: 1.25rem; position: relative; z-index: 2;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.timeline-dot-current {
  background: var(--accent); animation: ringPulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}
.timeline-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.25rem 1rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.timeline-card-current { border-color: var(--border2); background: linear-gradient(180deg, rgba(37,99,235,0.05), white); }
.timeline-year { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--accent); display: block; margin-bottom: 0.4rem; }
.timeline-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text2); margin-bottom: 0.35rem; }
.timeline-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* Industries */
.industries-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.industry-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: white; border: 1px solid var(--border); border-radius: 100px;
  padding: 0.75rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.industry-chip:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow); border-color: var(--border2); background: var(--bg2); }
.industry-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.industry-chip span { font-size: 0.85rem; font-weight: 600; color: var(--text2); }

/* Certification strip */
.cert-strip {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; padding: 1.75rem; border-radius: 16px;
  background: var(--bg2); border: 1px solid var(--border);
}
.cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--text2); }
.cert-item svg { color: var(--accent); flex-shrink: 0; }

.leader-row { grid-template-columns: repeat(3, 1fr); max-width: 900px; }

@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .whyus-stats { grid-template-columns: 1fr 1fr; }
  .timeline-row { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-line { display: none; }
  .leader-row { grid-template-columns: 1fr 1fr; }
  .cert-strip { justify-content: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  .whyus-stats { grid-template-columns: 1fr 1fr; }
  .leader-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════
   SERVICES PAGE — STATS STRIP, ANIMATED BG, WHY-US, MARQUEE, FAQ
══════════════════════════ */
.svc-stats-strip {
  background: linear-gradient(135deg, #0c1a42 0%, #1e3a8a 60%, #1e4fd8 100%);
  padding: 2.25rem 2rem; position: relative; overflow: hidden;
}
.svc-stats-inner {
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.svc-stat { display: flex; flex-direction: column; align-items: center; }
.svc-stat-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 0.6rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: #22d3ee;
}
.svc-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.svc-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.35rem; }

.whyus-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.whyus-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; transition: transform 0.35s, box-shadow 0.35s, border-color 0.3s;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.whyus-card::before {
  content: ''; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px;
  border-radius: 50%; background: rgba(37,99,235,0.05); transition: transform 0.4s ease;
}
.whyus-card:hover::before { transform: scale(1.4); }
.whyus-card:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.whyus-card-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 1rem;
  background: rgba(37,99,235,0.09); border: 1px solid rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  position: relative; z-index: 1; transition: transform 0.3s;
}
.whyus-card:hover .whyus-card-icon { transform: rotate(8deg) scale(1.08); }
.whyus-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.whyus-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }

/* Tech marquee */
.tech-marquee-wrap { margin-top: 5rem; }
.tech-marquee {
  overflow: hidden; position: relative; padding: 0.5rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.tech-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.tech-marquee:hover .tech-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tech-chip {
  flex-shrink: 0; background: white; border: 1px solid var(--border);
  border-radius: 100px; padding: 0.65rem 1.5rem; font-size: 0.85rem;
  font-weight: 600; color: var(--text2); box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.tech-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Process animated connector */
.process-row-animated::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite;
}
.process-step { transition: transform 0.3s; }
.process-step:hover { transform: translateY(-4px); }
.process-step:hover .step-num { background: rgba(34,211,238,0.22); border-color: rgba(34,211,238,0.5); transform: scale(1.06); }
.step-num { transition: transform 0.3s, background 0.3s, border-color 0.3s; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; cursor: pointer; font-size: 0.92rem; font-weight: 600; color: var(--text2);
}
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(37,99,235,0.08);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(135deg); background: var(--accent); color: white; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.4rem 1.25rem; }
.faq-a p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 900px) {
  .svc-stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .whyus-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-stats-inner { grid-template-columns: 1fr 1fr; }
}
/* ══════════════════════════
   PROJECTS PAGE — HERO ANIMATED BG, STATS STRIP, GRID BG, META BAR, CASE SPOTLIGHT, PROCESS ROW
══════════════════════════ */

/* Hero header background animation (page-header ke andar) */
.proj-hero-anim-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.proj-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 25% 25%, rgba(6,182,212,0.35) 0%, transparent 45%),
    radial-gradient(circle at 75% 30%, rgba(124,58,237,0.3) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(37,99,235,0.4) 0%, transparent 50%);
  filter: blur(40px);
  animation: auroraDrift 14s ease-in-out infinite;
}
.proj-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  animation: gridDrift 16s linear infinite;
}
.proj-orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.14); animation: orbitSpin linear infinite; }
.proj-orbit-ring.por1 { width: 460px; height: 460px; top: -110px; left: -70px; animation-duration: 48s; }
.proj-orbit-ring.por2 { width: 300px; height: 300px; bottom: -90px; right: -50px; animation-duration: 32s; animation-direction: reverse; border-color: rgba(6,182,212,0.16); }
.proj-float-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); animation: ctaFloat 6s ease-in-out infinite; }
.pfp1 { width: 5px; height: 5px; top: 20%; left: 18%; animation-delay: 0s; }
.pfp2 { width: 7px; height: 7px; top: 60%; left: 30%; animation-delay: -2s; background: rgba(6,182,212,0.7); }
.pfp3 { width: 4px; height: 4px; top: 28%; right: 22%; animation-delay: -3.5s; }
.pfp4 { width: 6px; height: 6px; top: 72%; right: 16%; animation-delay: -1.2s; background: rgba(124,58,237,0.7); }
.pfp5 { width: 5px; height: 5px; top: 48%; left: 55%; animation-delay: -4.5s; }

/* Quick-stats strip background shapes */
.proj-stats-strip { position: relative; }
.pss-anim { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pss-shape { position: absolute; opacity: 0.5; animation: servDrift 9s ease-in-out infinite; }
.pss-shape.sq { width: 24px; height: 24px; border: 2px solid rgba(255,255,255,0.18); border-radius: 6px; transform: rotate(20deg); }
.pss-shape.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(34,211,238,0.35); }
.pss-shape.tri { width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 18px solid rgba(129,140,248,0.28); }
.pss-shape.plus { width: 16px; height: 16px; }
.pss-shape.plus::before, .pss-shape.plus::after { content: ''; position: absolute; background: rgba(255,255,255,0.2); }
.pss-shape.plus::before { width: 16px; height: 2px; top: 7px; left: 0; }
.pss-shape.plus::after { width: 2px; height: 16px; left: 7px; top: 0; }
.pss-s1 { top: 15%; left: 8%; animation-delay: 0s; }
.pss-s2 { top: 65%; left: 22%; animation-delay: -2.5s; }
.pss-s3 { top: 25%; right: 15%; animation-delay: -4s; }
.pss-s4 { top: 60%; right: 8%; animation-delay: -1.5s; }

/* Projects grid section background */
.projects-anim-wrap { position: relative; overflow: hidden; }
.projects-bg-anim { position: absolute; inset: -2rem; z-index: 0; pointer-events: none; }
.proj-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1; animation: blobFloat 10s ease-in-out infinite; }
.proj-blob.pjb1 { width: 440px; height: 440px; background: #2563eb; top: -120px; right: -100px; }
.proj-blob.pjb2 { width: 360px; height: 360px; background: #06b6d4; bottom: -100px; left: -80px; animation-delay: -4s; }
.proj-ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(37,99,235,0.13); animation: orbitSpin linear infinite; }
.proj-ring.pjr1 { width: 380px; height: 380px; top: 5%; left: 3%; animation-duration: 46s; }
.proj-ring.pjr2 { width: 240px; height: 240px; bottom: 8%; right: 6%; animation-duration: 30s; animation-direction: reverse; border-color: rgba(99,102,241,0.15); }
.proj-shape { position: absolute; opacity: 0.5; animation: servDrift 9s ease-in-out infinite; }
.proj-shape.sq { width: 24px; height: 24px; border: 2px solid rgba(37,99,235,0.22); border-radius: 6px; transform: rotate(18deg); }
.proj-shape.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(99,102,241,0.28); }
.proj-shape.tri { width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 18px solid rgba(6,182,212,0.2); }
.proj-shape.plus { width: 16px; height: 16px; }
.proj-shape.plus::before, .proj-shape.plus::after { content: ''; position: absolute; background: rgba(37,99,235,0.2); }
.proj-shape.plus::before { width: 16px; height: 2px; top: 7px; left: 0; }
.proj-shape.plus::after { width: 2px; height: 16px; left: 7px; top: 0; }
.pjshape1 { top: 6%; left: 10%; animation-delay: 0s; }
.pjshape2 { top: 14%; right: 12%; animation-delay: -1.5s; }
.pjshape3 { top: 35%; left: 4%; animation-delay: -3s; }
.pjshape4 { top: 42%; right: 6%; animation-delay: -4.5s; }
.pjshape5 { top: 60%; left: 14%; animation-delay: -2.2s; }
.pjshape6 { top: 68%; right: 18%; animation-delay: -6s; }
.pjshape7 { top: 85%; left: 30%; animation-delay: -3.8s; }
.pjshape8 { top: 90%; right: 30%; animation-delay: -1s; }

/* Meta bar under each project thumb */
.proj-meta-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; border-top: 1px solid var(--border);
  background: white;
}
.proj-meta-bar span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; color: var(--muted); font-weight: 500;
}
.proj-meta-bar svg { color: var(--accent); flex-shrink: 0; }

/* Case study spotlight */
.case-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  margin-top: 5rem; background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cs-anim { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cs-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.08; animation: blobFloat 9s ease-in-out infinite; }
.cs-blob.csb1 { width: 320px; height: 320px; background: #2563eb; top: -100px; right: -80px; }
.cs-blob.csb2 { width: 260px; height: 260px; background: #7c3aed; bottom: -80px; left: -60px; animation-delay: -3s; }
.cs-media { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.cs-media img { width: 100%; height: 340px; object-fit: cover; display: block; }
.cs-media-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10,20,60,0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.5rem 0.9rem; border-radius: 100px;
  display: flex; align-items: center; gap: 0.4rem;
}
.cs-media-tag svg { color: #22d3ee; }
.cs-text { position: relative; z-index: 1; }
.cs-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0; }
.cs-result {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 0.75rem; text-align: center;
}
.cs-result strong {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: var(--accent); margin-bottom: 0.2rem;
}
.cs-result span { font-size: 0.72rem; color: var(--muted); }

/* Compact delivery process row */
.proj-process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; }
.proj-process-step {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem 1.25rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm);
}
.proj-process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pps-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(37,99,235,0.08); border: 2px solid rgba(37,99,235,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1rem;
  margin: 0 auto 0.9rem; color: var(--accent);
}
.proj-process-step h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text2); }
.proj-process-step p { font-size: 0.76rem; color: var(--muted); line-height: 1.5; }

/* Responsive */
@media (max-width: 900px) {
  .case-spotlight { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem; }
  .cs-media img { height: 240px; }
  .cs-results { grid-template-columns: 1fr 1fr; }
  .proj-process-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cs-results { grid-template-columns: 1fr; }
  .proj-process-row { grid-template-columns: 1fr; }
  .proj-meta-bar { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}
/* ══════════════════════════
   CONTACT PAGE — HERO ANIM, STATS STRIP, GRID BG, CONNECT/TRUST CARDS
══════════════════════════ */
.ctc-hero-anim-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ctc-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(37,99,235,0.35) 0%, transparent 45%),
    radial-gradient(circle at 75% 35%, rgba(6,182,212,0.3) 0%, transparent 45%),
    radial-gradient(circle at 45% 85%, rgba(124,58,237,0.35) 0%, transparent 50%);
  filter: blur(40px);
  animation: auroraDrift 14s ease-in-out infinite;
}
.ctc-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  animation: gridDrift 16s linear infinite;
}
.ctc-orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.14); animation: orbitSpin linear infinite; }
.ctc-orbit-ring.cor1 { width: 440px; height: 440px; top: -100px; right: -70px; animation-duration: 44s; }
.ctc-orbit-ring.cor2 { width: 290px; height: 290px; bottom: -90px; left: -50px; animation-duration: 28s; animation-direction: reverse; border-color: rgba(34,211,238,0.16); }
.ctc-float-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); animation: ctaFloat 6s ease-in-out infinite; }
.cfp1 { width: 5px; height: 5px; top: 22%; left: 20%; animation-delay: 0s; }
.cfp2 { width: 7px; height: 7px; top: 62%; left: 32%; animation-delay: -2s; background: rgba(34,211,238,0.7); }
.cfp3 { width: 4px; height: 4px; top: 30%; right: 18%; animation-delay: -3.5s; }
.cfp4 { width: 6px; height: 6px; top: 68%; right: 14%; animation-delay: -1.2s; background: rgba(124,58,237,0.7); }
.cfp5 { width: 5px; height: 5px; top: 46%; left: 52%; animation-delay: -4.5s; }

.ctc-stats-strip { position: relative; }
.ctc-stats-anim { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ctc-stat-shape { position: absolute; opacity: 0.5; animation: servDrift 9s ease-in-out infinite; }
.ctc-stat-shape.sq { width: 24px; height: 24px; border: 2px solid rgba(255,255,255,0.18); border-radius: 6px; transform: rotate(18deg); }
.ctc-stat-shape.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(34,211,238,0.35); }
.ctc-stat-shape.tri { width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 18px solid rgba(129,140,248,0.28); }
.ctc-stat-shape.plus { width: 16px; height: 16px; }
.ctc-stat-shape.plus::before, .ctc-stat-shape.plus::after { content: ''; position: absolute; background: rgba(255,255,255,0.2); }
.ctc-stat-shape.plus::before { width: 16px; height: 2px; top: 7px; left: 0; }
.ctc-stat-shape.plus::after { width: 2px; height: 16px; left: 7px; top: 0; }
.css1 { top: 18%; left: 10%; animation-delay: 0s; }
.css2 { top: 60%; left: 24%; animation-delay: -2.5s; }
.css3 { top: 28%; right: 12%; animation-delay: -4s; }
.css4 { top: 65%; right: 6%; animation-delay: -1.5s; }

.ctc-anim-wrap { position: relative; overflow: hidden; }
.ctc-bg-anim { position: absolute; inset: -2rem; z-index: 0; pointer-events: none; }
.ctc-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1; animation: blobFloat 10s ease-in-out infinite; }
.ctc-blob.ctb1 { width: 420px; height: 420px; background: #2563eb; top: -110px; left: -90px; }
.ctc-blob.ctb2 { width: 340px; height: 340px; background: #7c3aed; bottom: -90px; right: -70px; animation-delay: -4s; }
.ctc-ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(37,99,235,0.13); animation: orbitSpin linear infinite; }
.ctc-ring.ctr1 { width: 360px; height: 360px; top: 8%; right: 4%; animation-duration: 44s; }
.ctc-ring.ctr2 { width: 220px; height: 220px; bottom: 10%; left: 5%; animation-duration: 28s; animation-direction: reverse; border-color: rgba(6,182,212,0.15); }
.ctc-shape { position: absolute; opacity: 0.5; animation: servDrift 9s ease-in-out infinite; }
.ctc-shape.sq { width: 22px; height: 22px; border: 2px solid rgba(37,99,235,0.2); border-radius: 6px; transform: rotate(16deg); }
.ctc-shape.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(124,58,237,0.25); }
.ctc-shape.tri { width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 17px solid rgba(6,182,212,0.2); }
.ctc-shape.plus { width: 15px; height: 15px; }
.ctc-shape.plus::before, .ctc-shape.plus::after { content: ''; position: absolute; background: rgba(37,99,235,0.2); }
.ctc-shape.plus::before { width: 15px; height: 2px; top: 6.5px; left: 0; }
.ctc-shape.plus::after { width: 2px; height: 15px; left: 6.5px; top: 0; }
.ctshape1 { top: 8%; left: 6%; animation-delay: 0s; }
.ctshape2 { top: 18%; right: 8%; animation-delay: -1.5s; }
.ctshape3 { top: 40%; left: 2%; animation-delay: -3s; }
.ctshape4 { top: 55%; right: 4%; animation-delay: -4.5s; }
.ctshape5 { top: 78%; left: 10%; animation-delay: -2.2s; }
.ctshape6 { top: 85%; right: 14%; animation-delay: -6s; }

/* Connect / socials card */
.ctc-connect-card {
  margin-top: 1.5rem; background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
}
.ctc-connect-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--text2); margin-bottom: 0.85rem; }
.ctc-social-row { display: flex; gap: 0.6rem; }

/* Trust mini list */
.ctc-trust-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ctc-trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}
.ctc-trust-item svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .ctc-connect-card { margin-top: 1.25rem; }
}
/* ══════════════════════════
   HOME PAGE — FAQ SECTION BACKGROUND
══════════════════════════ */
.home-faq-wrap { position: relative; overflow: hidden; }
.home-faq-anim { position: absolute; inset: -1rem; z-index: 0; pointer-events: none; }
.hfaq-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.08; animation: blobFloat 10s ease-in-out infinite; }
.hfaq-blob.hfb1 { width: 340px; height: 340px; background: #2563eb; top: -60px; left: -80px; }
.hfaq-blob.hfb2 { width: 280px; height: 280px; background: #06b6d4; bottom: -60px; right: -60px; animation-delay: -4s; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}
.logo-img{
  height:70px;
  width:200px;
  display:block;
  border-radius:8px;
  object-fit:contain;
}
.footer-logo-img{
  height:70px;
  width:200px;
  display:block;
  border-radius:8px;
  object-fit:contain;
}
@media (max-width:768px){
  .logo-img{height:36px;}
}