:root {
  --bg:       #05050d;
  --bg2:      #09091a;
  --bg3:      #0d0d20;
  --card:     rgba(255,255,255,0.025);
  --card-h:   rgba(255,255,255,0.05);
  --border:   rgba(255,255,255,0.065);
  --border2:  rgba(255,255,255,0.12);
  --a1:       #6366f1;
  --a2:       #06b6d4;
  --a3:       #8b5cf6;
  --a4:       #f59e0b;
  --grad:     linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad2:    linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradt:    linear-gradient(135deg, #818cf8, #67e8f9);
  --glow1:    rgba(99,102,241,0.4);
  --glow2:    rgba(6,182,212,0.3);
  --text:     #f1f5f9;
  --text2:    #94a3b8;
  --text3:    #3d4a5c;
  --shadow:   0 28px 70px rgba(0,0,0,0.7);
  --shad-sm:  0 8px 28px rgba(0,0,0,0.45);
  --r:        18px;
  --rsm:      12px;
  --rxs:      8px;
  --trans:    0.35s cubic-bezier(0.4,0,0.2,1);
  --transf:   0.18s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--a1); border-radius: 4px; }
::selection { background: rgba(99,102,241,0.35); }

/* ============================================================
   DOT GRID
   ============================================================ */
.dot-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--a1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(99,102,241,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.hovering {
  width: 58px; height: 58px;
  background: rgba(99,102,241,0.08);
  border-color: var(--a1);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.section-pad { padding: 110px 0; }

.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.gradient-text {
  background: var(--gradt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a2);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 1rem;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--glow1); color: #fff; }
.btn-glow:hover::before { transform: translateX(120%); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--border2);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--a1);
  color: var(--a1);
  background: rgba(99,102,241,0.07);
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  background:
    radial-gradient(ellipse 100% 70% at 65% 10%, rgba(99,102,241,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 5% 85%, rgba(6,182,212,0.06) 0%, transparent 50%),
    var(--bg);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.65;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-row { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.22);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--a2);
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.5; }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
}

.typewriter-wrap {
  display: block;
  min-height: 1.3em;
  margin-top: 6px;
}
#typewriter {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 800;
  background: var(--gradt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tw-cursor {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: var(--a2);
  -webkit-text-fill-color: var(--a2);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--trans);
}
.feature-tag i { color: var(--a2); font-size: 0.68rem; }
.feature-tag:hover { border-color: var(--a1); color: var(--text); background: rgba(99,102,241,0.07); }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── Hero Visual (Globe + Floating Cards) ── */
.hero-visual {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.globe-wrap {
  position: relative;
  width: 160px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.22);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbit-spin linear infinite;
}
.o1 { width: 240px; height: 240px; animation-duration: 13s; }
.o2 { width: 310px; height: 310px; animation-duration: 20s; animation-direction: reverse; border-color: rgba(6,182,212,0.18); }
.o3 { width: 390px; height: 390px; animation-duration: 28s; border-color: rgba(139,92,246,0.12); }
@keyframes orbit-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad);
  top: -4.5px;
  left: calc(50% - 4.5px);
  box-shadow: 0 0 12px var(--glow1);
}

.globe-core {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(6,182,212,0.09));
  border: 2px solid rgba(99,102,241,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--a1);
  box-shadow: 0 0 50px rgba(99,102,241,0.18), inset 0 0 40px rgba(99,102,241,0.06);
  animation: globe-pulse 3.5s ease infinite;
  position: relative;
  z-index: 3;
}
@keyframes globe-pulse {
  0%,100% { box-shadow: 0 0 50px rgba(99,102,241,0.18), inset 0 0 40px rgba(99,102,241,0.06); }
  50%      { box-shadow: 0 0 80px rgba(99,102,241,0.38), inset 0 0 50px rgba(99,102,241,0.12); }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: var(--rsm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  z-index: 6;
}
.floating-card i, .floating-card .tc-badge { font-size: 1.35rem; }
.tc-badge { font-weight: 800; font-size: 1rem !important; }

.fc1 { top: 32px;  left: 0;    animation: float1 5.5s ease-in-out infinite; }
.fc2 { top: 54px;  right: -10px; animation: float2 6.5s ease-in-out infinite; }
.fc3 { bottom: 108px; left: -10px; animation: float1 7s ease-in-out infinite reverse; }
.fc4 { bottom: 56px; right: 4px;  animation: float2 5.8s ease-in-out infinite reverse; }

@keyframes float1 {
  0%,100% { transform: translateY(0px)   rotate(-1.2deg); }
  50%      { transform: translateY(-15px) rotate(1.2deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(-7px)  rotate(1deg); }
  50%      { transform: translateY(9px)  rotate(-1deg); }
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.42;
  color: var(--text2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-track { width: 2px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.scroll-thumb { width: 100%; height: 18px; background: var(--grad); border-radius: 2px; animation: scroll-anim 2s ease infinite; }
@keyframes scroll-anim {
  0%   { transform: translateY(-18px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(52px);  opacity: 0; }
}

/* ============================================================
   STATS / TRUST BAR
   ============================================================ */
.stats-section {
  padding: 0;
  margin-top: -55px;
  position: relative;
  z-index: 6;
}
.stats-bar { padding: 40px 36px; }

.stat-item {
  padding: 22px 16px;
  transition: var(--trans);
}
.stats-bar .row > .col:not(:last-child) .stat-item {
  border-right: 1px solid var(--border);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  background: var(--gradt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-lbl { font-size: 0.8rem; color: var(--text2); font-weight: 500; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(99,102,241,0.025);
  margin-top: 70px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 35s linear infinite;
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.m-item i { color: var(--a1); font-size: 0.45rem; }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--bg2); }

.focus-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.15);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--rxs);
  transition: var(--trans);
}
.focus-pill i { color: var(--a1); }
.focus-pill:hover { background: rgba(99,102,241,0.15); border-color: var(--a1); }

/* Code Editor */
.code-editor {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
  background: #0c0c1e;
}
.code-topbar {
  background: #13132b;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.code-dots { display: flex; gap: 7px; }
.cd { width: 13px; height: 13px; border-radius: 50%; }
.cd.red    { background: #ff5f57; }
.cd.yellow { background: #febc2e; }
.cd.green  { background: #28c840; }
.code-fname { font-size: 0.78rem; color: #4a5568; font-family: 'Fira Code', 'Courier New', monospace; }

.code-body { padding: 28px 30px; }
.code-body pre {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.87rem;
  line-height: 1.9;
  white-space: pre;
  overflow-x: auto;
}
.c-cmt  { color: #4a5568; }
.c-kw   { color: #c084fc; }
.c-fn   { color: #67e8f9; }
.c-var  { color: #a5f3fc; }
.c-str  { color: #86efac; }
.c-br   { color: #e2e8f0; }

/* Typing animation on code */
.code-body pre .c-str {
  position: relative;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--bg); }

.srv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 34px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
}
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--trans);
  z-index: 0;
}
.srv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 22px 55px rgba(99,102,241,0.14);
}
.srv-card:hover::before { opacity: 0.045; }
.srv-card > * { position: relative; z-index: 1; }

.srv-arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--a1);
  transition: var(--trans);
  opacity: 0;
  transform: translateX(-10px);
  z-index: 2;
}
.srv-card:hover .srv-arrow { opacity: 1; transform: translateX(0); }

.srv-icon {
  width: 58px; height: 58px;
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  transition: var(--trans);
}
.srv-card:hover .srv-icon { transform: scale(1.1) rotate(-4deg); }

.ic-blue   { background: rgba(99,102,241,0.12);  color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.ic-orange { background: rgba(249,115,22,0.12);   color: #fb923c; border: 1px solid rgba(249,115,22,0.2); }
.ic-purple { background: rgba(168,85,247,0.12);   color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.ic-green  { background: rgba(34,197,94,0.12);    color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.ic-cyan   { background: rgba(6,182,212,0.12);    color: #22d3ee; border: 1px solid rgba(6,182,212,0.2); }
.ic-pink   { background: rgba(236,72,153,0.12);   color: #f472b6; border: 1px solid rgba(236,72,153,0.2); }
.ic-yellow { background: rgba(234,179,8,0.12);    color: #facc15; border: 1px solid rgba(234,179,8,0.2); }
.ic-red    { background: rgba(239,68,68,0.12);    color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

.srv-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.srv-card p { font-size: 0.87rem; color: var(--text2); line-height: 1.68; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--bg2); }

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.28);
  box-shadow: 0 18px 45px rgba(99,102,241,0.1);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--rxs);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px var(--glow1);
  transition: var(--trans);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-5deg); }
.why-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.why-card p { font-size: 0.87rem; color: var(--text2); line-height: 1.68; }

/* ============================================================
   TECHNOLOGIES
   ============================================================ */
.tech-section { background: var(--bg3); }

.tab-btn {
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text2);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--trans);
  cursor: pointer;
}
.tab-btn:hover { color: var(--text); border-color: var(--border2); }
.tab-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 22px var(--glow1);
}

.tab-pane { display: none; animation: fadeInUp 0.42s ease; }
.tab-pane.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tech-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rsm);
  padding: 26px 12px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.tech-badge:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shad-sm);
}
.tb-icon {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}
.tech-badge > span { font-size: 0.78rem; font-weight: 600; color: var(--text2); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--bg); }

.ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rsm);
  padding: 28px 16px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.ind-item:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.28);
  box-shadow: 0 12px 32px rgba(99,102,241,0.1);
}
.ind-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(99,102,241,0.09);
  border: 1px solid rgba(99,102,241,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--a1);
  transition: var(--trans);
}
.ind-item:hover .ind-icon { background: var(--grad); color: #fff; border-color: transparent; }
.ind-item span { font-size: 0.84rem; font-weight: 600; color: var(--text2); transition: var(--trans); }
.ind-item:hover span { color: var(--text); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--bg2); }

.proc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.proc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.28);
  box-shadow: 0 18px 45px rgba(99,102,241,0.1);
}

.proc-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: 14px; right: 18px;
  background: var(--gradt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  line-height: 1;
  transition: opacity var(--trans), transform var(--trans);
}
.proc-card:hover .proc-num { opacity: 0.28; transform: scale(1.06); }

.proc-icon {
  width: 54px; height: 54px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--rxs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--a1);
  margin-bottom: 18px;
  transition: var(--trans);
}
.proc-card:hover .proc-icon { background: var(--grad); border-color: transparent; color: #fff; }
.proc-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.proc-card p { font-size: 0.87rem; color: var(--text2); line-height: 1.68; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { background: var(--bg); }

.port-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  height: 100%;
  transition: var(--trans);
}
.port-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(99,102,241,0.22);
}

.port-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.port-emoji { font-size: 4.5rem; transition: transform 0.4s ease; }
.port-card:hover .port-emoji { transform: scale(1.12); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,20,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.38s ease;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--grad);
  padding: 10px 26px;
  border-radius: 100px;
  transition: transform 0.25s ease;
}
.port-overlay a:hover { transform: scale(1.05); }

.port-body { padding: 26px; }
.port-cat {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--a2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.port-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.port-body p { font-size: 0.85rem; color: var(--text2); line-height: 1.65; margin-bottom: 16px; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.port-tags span {
  font-size: 0.73rem;
  font-weight: 500;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.16);
  color: #818cf8;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg2); }

.testi-slider { position: relative; overflow: hidden; border-radius: var(--r); }
.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-slide { min-width: 100%; padding: 4px; }

.testi-card {
  padding: 44px 40px;
  border-radius: var(--r);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 18px; left: 28px;
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: var(--a1);
  opacity: 0.18;
  line-height: 1;
}

.testi-stars { color: #facc15; font-size: 1.05rem; margin-bottom: 22px; letter-spacing: 4px; }
.testi-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 30px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; color: var(--text); }
.author-role { font-size: 0.79rem; color: var(--text2); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}
.ctrl-btn:hover { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 4px 16px var(--glow1); }

.testi-dots { display: flex; align-items: center; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--border2);
  cursor: pointer;
  transition: var(--trans);
}
.t-dot.active { width: 30px; background: var(--grad); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--rsm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--card);
}
.faq-item.open {
  border-color: rgba(99,102,241,0.32);
  box-shadow: 0 6px 25px rgba(99,102,241,0.08);
}

.faq-q {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  transition: color 0.25s ease;
  user-select: none;
  gap: 16px;
}
.faq-q:hover { color: var(--a1); }

.faq-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--a1);
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-ico {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.72;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.cta-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.07;
  pointer-events: none;
}
.g1 { width: 550px; height: 550px; background: var(--a1); top: -120px; left: -80px; }
.g2 { width: 450px; height: 450px; background: var(--a2); bottom: -90px; right: -70px; }
.cta-inner { position: relative; z-index: 2; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: var(--a1);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg3); }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px;
  border-radius: var(--rxs);
  background: rgba(99,102,241,0.09);
  border: 1px solid rgba(99,102,241,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--a1);
  flex-shrink: 0;
  transition: var(--trans);
}
.ci-item:hover .ci-icon { background: var(--grad); color: #fff; border-color: transparent; }
.ci-item strong { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text2); }
.ci-item p { font-size: 0.9rem; color: var(--text); margin: 0; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--trans);
  cursor: pointer;
}
.soc-btn:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 18px var(--glow1); }

/* Contact Form Box */
.contact-form-box { padding: 42px; }
.contact-form-box h3 { font-family: 'Syne', sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--text); }

.frm-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.frm-ctrl {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--rxs);
  color: var(--text);
  padding: 14px 18px;
  font-size: 0.92rem;
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
}
.frm-ctrl::placeholder { color: #2e3a4d; }
.frm-ctrl:focus {
  border-color: var(--a1);
  background: rgba(99,102,241,0.04);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.14);
}
.frm-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 46px;
  cursor: pointer;
}
.frm-select option { background: #0d0d1e; color: var(--text); }
textarea.frm-ctrl { resize: vertical; min-height: 130px; }

.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 32px; border-radius: var(--rxs); transition: var(--trans), background 0.3s ease; }

/* ============================================================
   SEO STRIP
   ============================================================ */
.seo-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.seo-strip p { font-size: 0.78rem; color: var(--text3); line-height: 1.65; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 75px 0; }
  .hero-section { padding: 110px 0 70px; min-height: auto; }
  .hero-visual { display: none !important; }
  .stats-section { margin-top: 36px; }
  .stats-bar { padding: 28px 20px; }
  .stats-bar .row > .col:not(:last-child) .stat-item { border-right: none; }
  .stats-bar .row > .col:not(:nth-child(5)):not(:nth-child(4)) .stat-item { border-right: 1px solid var(--border); }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .sec-title { font-size: 1.85rem; }
  .hero-title { font-size: 2.1rem; }
  #typewriter, .tw-cursor { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-glow, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .stats-bar .row > .col .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar .row > .col:last-child .stat-item { border-bottom: none; }
  .testi-card { padding: 28px 24px; }
  .contact-form-box { padding: 24px 20px; }
  .cta-section { padding: 80px 0; }
  .proc-num { font-size: 3rem; }
}

@media (max-width: 479px) {
  .hero-title { font-size: 1.75rem; }
  .hero-badge { font-size: 0.75rem; padding: 7px 14px; }
  .srv-card, .why-card, .proc-card { padding: 26px 20px; }
  .contact-form-box { padding: 20px 16px; }
}



:root {
  /* Dark Theme (default) */
  --bg:       #05050d;
  --bg2:      #09091a;
  --bg3:      #0d0d20;
  --card:     rgba(255,255,255,0.025);
  --card-h:   rgba(255,255,255,0.05);
  --border:   rgba(255,255,255,0.065);
  --border2:  rgba(255,255,255,0.12);
  --text:     #f1f5f9;
  --text2:    #94a3b8;
  --text3:    #3d4a5c;
  --shadow:   0 28px 70px rgba(0,0,0,0.7);
  --shad-sm:  0 8px 28px rgba(0,0,0,0.45);
  --a1:       #6366f1;
  --a2:       #06b6d4;
  --a3:       #8b5cf6;
  --a4:       #f59e0b;
  --grad:     linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad2:    linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradt:    linear-gradient(135deg, #818cf8, #67e8f9);
  --glow1:    rgba(99,102,241,0.4);
  --glow2:    rgba(6,182,212,0.3);
  --r:        18px;
  --rsm:      12px;
  --rxs:      8px;
  --trans:    0.35s cubic-bezier(0.4,0,0.2,1);
  --transf:   0.18s ease;
}

/* Light Theme Overrides */
body.light-theme {
  --bg:       #f8fafc;
  --bg2:      #f1f5f9;
  --bg3:      #eef2ff;
  --card:     rgba(0,0,0,0.02);
  --card-h:   rgba(0,0,0,0.04);
  --border:   rgba(0,0,0,0.08);
  --border2:  rgba(0,0,0,0.15);
  --text:     #0f172a;
  --text2:    #334155;
  --text3:    #475569;
  --shadow:   0 28px 70px rgba(0,0,0,0.08);
  --shad-sm:  0 8px 28px rgba(0,0,0,0.05);
  --glow1:    rgba(99,102,241,0.2);
  --glow2:    rgba(6,182,212,0.15);
}

/* Ensure gradient-text works in both themes */
body.light-theme .gradient-text {
  background: linear-gradient(135deg, #4f46e5, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
}

body.light-theme .code-editor {
  background: #fefefe;
  border-color: rgba(0,0,0,0.1);
}

body.light-theme .code-topbar {
  background: #e2e8f0;
}

body.light-theme .code-body pre {
  color: #1e293b;
}

body.light-theme .c-cmt  { color: #64748b; }
body.light-theme .c-kw   { color: #7c3aed; }
body.light-theme .c-fn   { color: #0d9488; }
body.light-theme .c-var  { color: #2563eb; }
body.light-theme .c-str  { color: #16a34a; }
body.light-theme .c-br   { color: #334155; }

body.light-theme .stat-num,
body.light-theme .proc-num {
  background: linear-gradient(135deg, #4f46e5, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
}

body.light-theme .btn-ghost {
  color: #1e293b;
  border-color: rgba(0,0,0,0.2);
}

body.light-theme .btn-ghost:hover {
  color: #4f46e5;
  border-color: #4f46e5;
}

body.light-theme .hero-badge,
body.light-theme .eyebrow {
  background: rgba(79,70,229,0.08);
  border-color: rgba(79,70,229,0.2);
  color: #4f46e5;
}

body.light-theme .feature-tag,
body.light-theme .srv-card,
body.light-theme .why-card,
body.light-theme .proc-card,
body.light-theme .port-card,
body.light-theme .tech-badge,
body.light-theme .ind-item {
  background: white;
  border-color: rgba(0,0,0,0.08);
}

body.light-theme .glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border-color: rgba(0,0,0,0.06);
}

body.light-theme .contact-form-box {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
}

body.light-theme .frm-ctrl {
  background: #f1f5f9;
  border-color: rgba(0,0,0,0.1);
  color: #0f172a;
}

body.light-theme .frm-ctrl:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
}

body.light-theme .dot-grid {
  background-image: radial-gradient(circle, rgba(79,70,229,0.1) 1px, transparent 1px);
}

body.light-theme .marquee-wrap {
  background: rgba(79,70,229,0.03);
  border-color: rgba(0,0,0,0.08);
}

body.light-theme .testi-card::before {
  color: #4f46e5;
  opacity: 0.2;
}

body.light-theme .faq-item {
  background: white;
}

body.light-theme .faq-q {
  color: #0f172a;
}

/* Preserve gradient buttons */
body.light-theme .btn-glow {
  background: linear-gradient(135deg, #4f46e5, #0891b2);
  color: white;
}

body.light-theme .soc-btn,
body.light-theme .ctrl-btn {
  background: white;
  border-color: rgba(0,0,0,0.1);
  color: #334155;
}

body.light-theme .soc-btn:hover,
body.light-theme .ctrl-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #0891b2);
  color: white;
}



/* ============================================================
   SERVICES PAGE UNIQUE STYLES (svc-* prefix)
   No conflict with homepage style.css
   ============================================================ */

:root {
  --svc-bg: #05050d;
  --svc-bg2: #09091a;
  --svc-bg3: #0d0d20;
  --svc-card: rgba(255, 255, 255, 0.025);
  --svc-border: rgba(255, 255, 255, 0.065);
  --svc-border2: rgba(255, 255, 255, 0.12);
  --svc-text: #f1f5f9;
  --svc-text2: #94a3b8;
  --svc-text3: #3d4a5c;
  --svc-a1: #6366f1;
  --svc-a2: #06b6d4;
  --svc-a3: #8b5cf6;
  --svc-grad: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --svc-gradt: linear-gradient(135deg, #818cf8, #67e8f9);
  --svc-glow1: rgba(99, 102, 241, 0.4);
  --svc-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  --svc-r: 18px;
  --svc-rsm: 12px;
  --svc-rxs: 8px;
  --svc-trans: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.svc-body {
  font-family: 'DM Sans', sans-serif;
  background: var(--svc-bg);
  color: var(--svc-text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Light theme overrides */
body.svc-body.light-theme {
  --svc-bg: #f8fafc;
  --svc-bg2: #f1f5f9;
  --svc-bg3: #eef2ff;
  --svc-card: rgba(0, 0, 0, 0.02);
  --svc-border: rgba(0, 0, 0, 0.08);
  --svc-text: #0f172a;
  --svc-text2: #334155;
  --svc-a1: #4f46e5;
  --svc-a2: #0891b2;
  --svc-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

/* ========== UTILITIES ========== */
.svc-container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
}

.svc-section-pad {
  padding: 100px 0;
}

.svc-gradient-text {
  background: var(--svc-gradt);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-a2);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.svc-center-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.svc-sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 14px;
  color: var(--svc-text);
}

.svc-sec-sub {
  font-size: 1rem;
  color: var(--svc-text2);
  max-width: 560px;
  line-height: 1.75;
}

/* ========== CUSTOM CURSOR ========== */
.svc-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--svc-a1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
.svc-cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}
.svc-cursor-ring.hovering {
  width: 58px;
  height: 58px;
  background: rgba(99, 102, 241, 0.08);
  border-color: var(--svc-a1);
}
@media (hover: none) {
  .svc-cursor-dot, .svc-cursor-ring { display: none; }
}

/* ========== DOT GRID ========== */
.svc-dot-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}

/* ========== THEME TOGGLE ========== */
.svc-theme-toggle-fixed {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
body.svc-body.light-theme .svc-theme-toggle-fixed {
  background: rgba(240, 240, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ========== HERO SECTION ========== */
.svc-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 0 90px;
  background: radial-gradient(ellipse 100% 70% at 65% 10%, rgba(99, 102, 241, 0.09) 0%, transparent 55%), var(--svc-bg);
}
#svc-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  pointer-events: none;
}
.svc-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.22);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.svc-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--svc-a2);
  animation: svc-pulse-dot 1.8s ease infinite;
}
@keyframes svc-pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
.svc-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-hero-subtitle {
  font-size: 1.05rem;
  color: var(--svc-text2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  line-height: 1.7;
}
.svc-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.svc-btn-glow, .svc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--svc-trans);
  cursor: pointer;
}
.svc-btn-glow {
  background: var(--svc-grad);
  color: #fff;
}
.svc-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--svc-glow1);
}
.svc-btn-ghost {
  background: transparent;
  border: 1px solid var(--svc-border2);
  color: var(--svc-text);
}
.svc-btn-ghost:hover {
  border-color: var(--svc-a1);
  color: var(--svc-a1);
  background: rgba(99, 102, 241, 0.07);
}
.svc-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.42;
}
.svc-scroll-track {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.svc-scroll-thumb {
  width: 100%;
  height: 18px;
  background: var(--svc-grad);
  animation: svc-scrollAnim 2s ease infinite;
}
@keyframes svc-scrollAnim {
  0% { transform: translateY(-18px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(52px); opacity: 0; }
}

/* ========== SERVICE CARDS GRID ========== */
.svc-services-grid {
  margin-top: 40px;
}
.svc-service-card {
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: var(--svc-r);
  padding: 30px 28px;
  height: 100%;
  transition: var(--svc-trans);
}
.svc-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 22px 55px rgba(99, 102, 241, 0.14);
}
.svc-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--svc-rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.svc-icon-blue { background: rgba(99, 102, 241, 0.12); color: #818cf8; }
.svc-icon-orange { background: rgba(249, 115, 22, 0.12); color: #fb923c; }
.svc-icon-purple { background: rgba(168, 85, 247, 0.12); color: #c084fc; }
.svc-icon-green { background: rgba(34, 197, 94, 0.12); color: #4ade80; }
.svc-icon-cyan { background: rgba(6, 182, 212, 0.12); color: #22d3ee; }
.svc-icon-pink { background: rgba(236, 72, 153, 0.12); color: #f472b6; }
.svc-icon-yellow { background: rgba(234, 179, 8, 0.12); color: #facc15; }
.svc-icon-red { background: rgba(239, 68, 68, 0.12); color: #f87171; }
.svc-icon-indigo { background: rgba(79, 70, 229, 0.12); color: #a5b4fc; }
.svc-icon-teal { background: rgba(20, 184, 166, 0.12); color: #5eead4; }
.svc-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--svc-text);
}
.svc-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.svc-service-list li {
  font-size: 0.87rem;
  color: var(--svc-text2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-service-list li i {
  color: var(--svc-a2);
  font-size: 0.75rem;
  width: 18px;
}
.svc-card-footer {
  font-size: 0.82rem;
  color: var(--svc-a1);
  border-top: 1px dashed var(--svc-border);
  padding-top: 14px;
  margin-top: 8px;
}

/* ========== WHY CHOOSE US ========== */
.svc-why-section {
  background: var(--svc-bg2);
}
.svc-why-card {
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: var(--svc-r);
  padding: 32px 24px;
  height: 100%;
  transition: var(--svc-trans);
  text-align: center;
}
.svc-why-card:hover {
  transform: translateY(-5px);
  border-color: var(--svc-a1);
}
.svc-why-icon {
  width: 60px;
  height: 60px;
  background: var(--svc-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 22px var(--svc-glow1);
}
.svc-why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-why-card p {
  font-size: 0.88rem;
  color: var(--svc-text2);
}

/* ========== INDUSTRIES ========== */
.svc-industries-section {
  background: var(--svc-bg3);
}
.svc-industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.svc-ind-badge {
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--svc-text2);
  transition: var(--svc-trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-ind-badge i {
  color: var(--svc-a2);
}
.svc-ind-badge:hover {
  transform: translateY(-3px);
  border-color: var(--svc-a1);
  color: var(--svc-text);
}

/* ========== CTA SECTION ========== */
.svc-cta-section {
  background: var(--svc-bg2);
  padding: 100px 0;
  text-align: center;
}
.svc-cta-badge {
  display: inline-flex;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ========== SEO STRIP ========== */
.svc-seo-strip {
  background: var(--svc-bg);
  border-top: 1px solid var(--svc-border);
  padding: 22px 0;
}
.svc-seo-strip p {
  font-size: 0.78rem;
  color: var(--svc-text3);
  margin: 0;
  text-align: center;
}

/* ========== SCROLL REVEAL ========== */
.svc-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.svc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-reveal-d1 { transition-delay: 0.1s; }
.svc-reveal-d2 { transition-delay: 0.2s; }
.svc-reveal-d3 { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .svc-section-pad { padding: 60px 0; }
  .svc-hero-title { font-size: 2rem; }
  .svc-service-card { padding: 24px 20px; }
  .svc-theme-toggle-fixed { top: 16px; right: 16px; padding: 8px 14px; }
}

.about-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(99,102,241,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(6,182,212,0.06) 0%, transparent 55%),
                        var(--bg);
            overflow: hidden;
        }
        .about-hero .hero-badge {
            margin-bottom: 20px;
        }
        .about-hero-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        /* Mission & Vision Cards */
        .mission-card, .vision-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 40px 32px;
            height: 100%;
            transition: var(--trans);
            text-align: center;
        }
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-8px);
            border-color: rgba(99,102,241,0.35);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .mission-icon, .vision-icon {
            width: 70px;
            height: 70px;
            background: var(--grad);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin: 0 auto 24px;
            box-shadow: 0 10px 25px var(--glow1);
        }
        .mission-card h3, .vision-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .mission-card p, .vision-card p {
            color: var(--text2);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Team Section */
        .team-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 30px 24px 28px;
            text-align: center;
            transition: var(--trans);
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-8px);
            border-color: rgba(99,102,241,0.4);
            box-shadow: 0 18px 35px rgba(0,0,0,0.15);
        }
        .team-img {
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, #6366f1, #06b6d4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            font-family: 'Syne', sans-serif;
        }
        .team-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .team-role {
            font-size: 0.8rem;
            color: var(--a2);
            font-weight: 600;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }
        .team-bio {
            font-size: 0.85rem;
            color: var(--text2);
            margin-bottom: 18px;
        }
        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(99,102,241,0.1);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text2);
            transition: var(--trans);
        }
        .team-social a:hover {
            background: var(--grad);
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
        }

        /* Timeline (Milestones) */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--grad);
            opacity: 0.4;
        }
        .timeline-item {
            position: relative;
            padding-left: 70px;
            margin-bottom: 48px;
        }
        .timeline-dot {
            position: absolute;
            left: 18px;
            top: 8px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--grad);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 3px rgba(99,102,241,0.3);
            z-index: 2;
        }
        .timeline-year {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--a1);
            margin-bottom: 8px;
        }
        .timeline-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .timeline-text {
            font-size: 0.9rem;
            color: var(--text2);
            line-height: 1.65;
        }

        /* Values Grid */
        .value-item {
            text-align: center;
            padding: 28px 20px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--rsm);
            transition: var(--trans);
            height: 100%;
        }
        .value-item:hover {
            transform: translateY(-5px);
            border-color: var(--a1);
        }
        .value-icon {
            font-size: 2.2rem;
            color: var(--a2);
            margin-bottom: 18px;
        }
        .value-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .value-item p {
            font-size: 0.85rem;
            color: var(--text2);
        }

        /* Stats row (about page specific) */
        .about-stats {
            background: var(--bg2);
            border-radius: var(--r);
            padding: 40px;
            margin: 40px 0;
        }
        .about-stat-item {
            text-align: center;
            border-right: 1px solid var(--border);
        }
        .about-stat-item:last-child {
            border-right: none;
        }
        .about-stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            background: var(--gradt);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .about-stat-label {
            font-size: 0.8rem;
            color: var(--text2);
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .timeline::before { left: 20px; }
            .timeline-item { padding-left: 55px; }
            .timeline-dot { left: 8px; width: 22px; height: 22px; }
            .about-stats { padding: 20px; }
            .about-stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
            .about-stat-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        }