/* Typography & Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
 :root {
  /* Fresh blue + grey palette */
  --bg: #f7f8fb;          /* soft background */
  --text: #0b1220;        /* deep ink */
  --muted: #64748b;       /* slate */
  --border: #e5e7eb;      /* light grey */
  --primary: #0ea5e9;     /* sky-500 */
  --primary-700: #0284c7; /* sky-600 */
  --primary-50: #ecfeff;  /* cyan-50 */
  --surface: #ffffff;     /* cards */
  --shadow: 0 12px 32px rgba(2, 6, 23, 0.10);
  --radius: 14px;
}

/* Dark theme tokens */
.dark {
  --bg: #0b1220;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --border: #1f2937;
  --primary: #38bdf8;
  --primary-700: #0ea5e9;
  --primary-50: rgba(56, 189, 248, 0.12);
  --surface: #0f172a;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

html { scroll-behavior: smooth; }

.container { 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* Header */
.site-header { 
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  z-index: 50; 
  background: rgba(255,255,255,0.8); 
  backdrop-filter: saturate(160%) blur(14px); 
  border-bottom: 1px solid transparent; 
  transition: transform .3s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  transform: translateY(0);
  overflow: hidden;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

body {
  padding-top: 64px; /* Account for fixed header */
}

.dark .site-header { background: rgba(15,23,42,0.7); }

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.02) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.01) 0%, transparent 60%);
  z-index: -1;
  animation: headerFloat 60s ease-in-out infinite;
}

@keyframes headerFloat {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(2px); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-header.scrolled { background: rgba(255,255,255,0.9); box-shadow: 0 8px 30px rgba(2,6,23,0.06); border-color: var(--border); }
.brand { font-weight: 800; color: var(--text); text-decoration: none; font-size: 20px; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; }
.site-nav ul { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; align-items: center; }
.site-nav a, .site-nav button { color: var(--text); text-decoration: none; font-weight: 500; background: none; border: 0; padding: 8px 12px; border-radius: 8px; transition: all 0.2s ease; }
.site-nav a:not(.btn):hover, .site-nav button:hover { background: var(--surface); transform: translateY(-1px); }
.site-nav li a:not(.btn) { font-size: 15px; }
/* Link underline animation */
.site-nav a:not(.btn) { position: relative; }
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(168,85,247,0.9));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
/* Ensure button text stays white on hover */
.site-nav .btn.primary { color: #fff !important; }
.site-nav .btn.primary:hover { color: #fff !important; }
.has-submenu { position: relative; }
.submenu-toggle { display: flex; align-items: center; gap: 6px; }
.submenu { display: none; position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px; z-index: 100; }
.submenu.cols { display: none; width: 760px; grid-template-columns: repeat(3, 1fr); gap: 6px 14px; padding: 16px; }
.submenu a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); }
.submenu a:hover { background: var(--primary-50); color: var(--primary); }
.submenu .group { padding: 8px 10px; color: var(--text); font-weight: 700; margin-top: 8px; }
.submenu .divider { height: 1px; background: var(--border); margin: 6px 0; }
.has-submenu.open > .submenu, .has-submenu.open > .submenu.cols { display: grid; }
.has-submenu.open > .submenu:not(.cols) { display: block; }

/* Hero */
.hero { 
  position: relative;
  background: 
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.dark .hero { 
  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,0.14) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(167,139,250,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
    linear-gradient(45deg, transparent 49%, rgba(14, 165, 233, 0.02) 50%, transparent 51%);
  background-size: 100px 100px, 200px 200px;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-inner { 
  position: relative;
  z-index: 1;
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 28px; 
  padding: 84px 0; 
}

.hero h1 { 
  font-size: 52px; 
  line-height: 1.06; 
  margin: 0 0 12px; 
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { color: var(--muted); margin: 0 0 24px; font-size: 18px; max-width: 600px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
/* Hero visual decorative blob */
.hero-visual {
  position: relative;
  width: 100%; height: 280px;
  border-radius: 24px;
  background: radial-gradient(120px 160px at 30% 40%, rgba(14,165,233,0.35), transparent 60%),
              radial-gradient(160px 120px at 70% 60%, rgba(168,85,247,0.25), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  border: 1px solid rgba(14,165,233,0.25);
  box-shadow: 0 30px 80px rgba(14,165,233,0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark .hero-visual {
  background: radial-gradient(120px 160px at 30% 40%, rgba(56,189,248,0.35), transparent 60%),
              radial-gradient(160px 120px at 70% 60%, rgba(167,139,250,0.28), transparent 60%),
              linear-gradient(180deg, rgba(15,23,42,0.9), rgba(2,6,23,0.6));
  border-color: rgba(56,189,248,0.25);
  box-shadow: 0 30px 80px rgba(2,6,23,0.6);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: -50% -20% -20% -50%;
  background: conic-gradient(from 0deg, transparent, rgba(14,165,233,0.25), transparent 30%, rgba(168,85,247,0.2), transparent 60%);
  filter: blur(30px);
  animation: swirl 18s linear infinite;
}
@keyframes swirl { to { transform: rotate(360deg); } }

.hero-visual-text {
  position: relative;
  z-index: 10;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(168,85,247,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(14,165,233,0.2);
  filter: drop-shadow(0 2px 8px rgba(14,165,233,0.15));
}
.dark .hero-visual-text {
  background: linear-gradient(135deg, rgba(56,189,248,0.95) 0%, rgba(167,139,250,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 12px 24px; 
  border-radius: 10px; 
  text-decoration: none; 
  font-weight: 600; 
  transition: all .3s ease; 
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15px;
  min-height: 44px; /* Touch-friendly size */
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn.primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-700)); 
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.btn.primary:hover { 
  filter: brightness(1.1); 
  box-shadow: 0 6px 24px rgba(14,165,233,0.4);
  transform: translateY(-2px);
}
.btn.outline { 
  background: transparent; 
  color: var(--text); 
  border-color: rgba(14,165,233,0.3);
}
.btn.outline:hover { 
  background: rgba(14,165,233,0.05); 
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(14,165,233,0.15);
  transform: translateY(-2px);
}
/* Theme toggle button */
.theme-toggle { background: transparent; border: 1px solid var(--border); border-radius: 999px; padding: 6px 10px; color: var(--text); }
.theme-toggle:hover { background: var(--surface); }

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: ripple .6s linear; background: rgba(255,255,255,0.6);
  pointer-events: none; mix-blend-mode: screen;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Logos */
.section { padding: 56px 0; }
.section h2 { margin: 0 0 20px; font-size: 28px; }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo { background: #fff; border: 1px dashed var(--border); height: 64px; border-radius: 12px; display: grid; place-items: center; color: var(--muted); }

/* Process */
.process .lead { color: var(--muted); margin-bottom: 20px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.step h3 { margin-top: 0; margin-bottom: 8px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); }
.step:hover { transform: translateY(-2px); transition: transform .15s ease; }

/* Circular process layout */
.process-circular { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; }
.radial { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1/1; margin: 0 auto; }

/* Enhanced rings with gradients */
.ring { 
  position: absolute; 
  inset: 0; 
  border-radius: 50%; 
  border: 2px solid rgba(14,165,233,0.15);
  background: radial-gradient(circle at center, transparent 60%, rgba(14,165,233,0.02) 100%);
}
.ring.r2 { inset: 40px; border-color: rgba(14,165,233,0.12); }
.ring.r3 { inset: 80px; border-color: rgba(14,165,233,0.08); }

/* Enhanced nodes with better styling */
.node { 
  position: absolute; 
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 3px solid rgba(14,165,233,0.3);
  display: grid; 
  place-items: center; 
  box-shadow: 0 8px 32px rgba(14,165,233,0.2), 0 0 0 1px rgba(255,255,255,0.8) inset;
  z-index: 10;
}
.node .icon { font-size: 32px; filter: drop-shadow(0 2px 8px rgba(14,165,233,0.3)); }

.radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.85) 0%, rgba(236,254,255,0.55) 100%);
  border: 1px solid rgba(14,165,233,0.22);
  box-shadow: 0 12px 36px rgba(14,165,233,0.16), inset 0 0 0 1px rgba(255,255,255,0.8);
  text-align: center;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.radial-center .center-caption {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-700);
}
.radial-center p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dark .radial-center {
  background: radial-gradient(circle at 50% 50%, rgba(15,23,42,0.85) 0%, rgba(14,165,233,0.15) 100%);
  border-color: rgba(56,189,248,0.25);
  box-shadow: 0 12px 36px rgba(2,6,23,0.45), inset 0 0 0 1px rgba(15,23,42,0.4);
}
.dark .radial-center .center-caption { color: rgba(56,189,248,0.95); }
.dark .radial-center p { color: rgba(226,232,240,0.75); }

.node-text {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  width: 140px;
  line-height: 1.4;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(14,165,233,0.12);
}
.dark .node-text { color: var(--primary-50); text-shadow: none; }

.n1 .node-text {
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}
.n2 .node-text {
  bottom: 45%;
  left: calc(100% + 16px);
  transform: translateY(50%);
  text-align: left;
}
.n3 .node-text {
  top: calc(100% + 12px);
  left: calc(100% + 16px);
  text-align: left;
}
.n4 .node-text {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}
.n5 .node-text {
  top: calc(100% + 12px);
  right: calc(100% + 16px);
  text-align: right;
}
.n6 .node-text {
  bottom: 45%;
  right: calc(100% + 16px);
  transform: translateY(50%);
  text-align: right;
}

/* node positions around circle */
.n1 { top: -10px; left: 50%; transform: translateX(-50%); }
.n2 { top: 15%; right: 5%; }
.n3 { bottom: 15%; right: 5%; }
.n4 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.n5 { bottom: 15%; left: 5%; }
.n6 { top: 15%; left: 5%; }

.cards { display: flex; flex-direction: column; gap: 14px; }
.step-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 14px 16px; box-shadow: var(--shadow); }
.step-card h3 { margin: 0 0 6px; font-size: 16px; color: var(--text); }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Enhanced process section with modern tech background */
.process { 
  position: relative; 
  overflow: hidden;
  background: 
    radial-gradient(ellipse at top left, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.04) 0%, transparent 60%),
    linear-gradient(45deg, transparent 49%, rgba(14, 165, 233, 0.02) 50%, transparent 51%);
  background-size: 300px 300px, 400px 400px, 100px 100px;
  animation: processFloat 25s ease-in-out infinite;
  z-index: 0;
}

@keyframes processFloat {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(-5px) translateY(10px); }
  75% { transform: translateX(5px) translateY(-3px); }
}

.process .container { position: relative; z-index: 1; }
.process .container h2, .process .container .lead { color: var(--text); }
.process .cards .step-card { 
  background: rgba(255, 255, 255, 0.9); 
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process .cards .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.process .cards .step-card h3 { 
  color: var(--primary); 
  text-transform: uppercase; 
  font-weight: 800; 
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.process .cards .step-card::before { /* arrow pointer */
  content: ""; 
  position: absolute; 
  left: -12px; 
  top: 24px; 
  border-width: 8px 12px 8px 0; 
  border-style: solid; 
  border-color: transparent rgba(14, 165, 233, 0.3) transparent transparent; 
}

.process .cards .step-card::after {
  content: ""; 
  position: absolute; 
  left: -10px; 
  top: 24px; 
  border-width: 8px 12px 8px 0; 
  border-style: solid; 
  border-color: transparent rgba(255, 255, 255, 0.9) transparent transparent; 
}

/* Connected and attractive process enhancements */
.radial::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(14,165,233,0.1), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

/* Animated rotating rings */
.ring { 
  border-style: solid; 
  opacity: 0.8;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring.r2 { animation-delay: 0.5s; }
.ring.r3 { animation-delay: 1s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.01); }
}

.ring::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(14,165,233,0.08);
  animation: orbitDash 20s linear infinite;
}
@keyframes orbitDash { to { transform: rotate(360deg); } }

/* Node hover effects */
.node { 
  transition: all .3s ease;
  animation: nodePulse 2s ease-in-out infinite;
}
.node:hover { 
  transform: scale(1.1) !important; 
  box-shadow: 0 12px 48px rgba(14,165,233,0.35), 0 0 0 2px rgba(255,255,255,1) inset;
  border-color: rgba(14,165,233,0.6);
}

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(14,165,233,0.2), 0 0 0 1px rgba(255,255,255,0.8) inset; }
  50% { box-shadow: 0 10px 40px rgba(14,165,233,0.3), 0 0 0 1px rgba(255,255,255,0.8) inset; }
}

/* Perfect circular connectors - visible lines connecting all nodes */
.node::after { 
  content: ""; 
  position: absolute; 
  width: 70px; 
  height: 3px; 
  background: linear-gradient(90deg, rgba(14,165,233,0.4), rgba(14,165,233,0.1));
  z-index: -1;
  border-radius: 2px;
}

/* Position connectors for each node to create perfect circular flow */
.n1::after { 
  width: 3px; 
  height: 90px; 
  left: 50%; 
  top: 100%; 
  transform: translateX(-50%) rotate(30deg);
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(14,165,233,0.4), rgba(14,165,233,0.1));
}

.n2::after { 
  width: 90px; 
  left: 50%; 
  top: 50%; 
  transform: translateY(-50%) rotate(60deg);
  transform-origin: left center;
}

.n3::after { 
  width: 90px; 
  left: 50%; 
  top: 50%; 
  transform: translateY(-50%) rotate(120deg);
  transform-origin: left center;
}

.n4::after { 
  width: 3px; 
  height: 90px; 
  left: 50%; 
  bottom: 100%; 
  transform: translateX(-50%) rotate(30deg);
  transform-origin: bottom center;
  background: linear-gradient(0deg, rgba(14,165,233,0.4), rgba(14,165,233,0.1));
}

.n5::after { 
  width: 90px; 
  right: 50%; 
  top: 50%; 
  transform: translateY(-50%) rotate(-120deg);
  transform-origin: right center;
  background: linear-gradient(90deg, rgba(14,165,233,0.1), rgba(14,165,233,0.4));
}

.n6::after { 
  width: 90px; 
  right: 50%; 
  top: 50%; 
  transform: translateY(-50%) rotate(-60deg);
  transform-origin: right center;
  background: linear-gradient(90deg, rgba(14,165,233,0.1), rgba(14,165,233,0.4));
}

/* Prominent orange connector dots with glow and pulse animation */
.node::before { 
  content: ""; 
  position: absolute; 
  width: 14px; 
  height: 14px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
  box-shadow: 
    0 0 0 5px rgba(251,146,60,0.2),
    0 0 20px rgba(251,146,60,0.4),
    0 4px 12px rgba(251,146,60,0.3);
  z-index: 15;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 0 0 5px rgba(251,146,60,0.2),
      0 0 20px rgba(251,146,60,0.4),
      0 4px 12px rgba(251,146,60,0.3);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 
      0 0 0 8px rgba(251,146,60,0.3),
      0 0 30px rgba(251,146,60,0.6),
      0 4px 16px rgba(251,146,60,0.5);
  }
}

/* Position dots on each node */
.n1::before { top: -7px; left: 50%; transform: translateX(-50%); }
.n2::before { right: -7px; top: 20%; }
.n3::before { right: 10%; bottom: 20%; }
.n4::before { bottom: -7px; left: 50%; transform: translateX(-50%); }
.n5::before { left: 10%; bottom: 20%; }
.n6::before { left: -7px; top: 20%; }

/* Central hub connector - adds a center point */
.radial::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(99,102,241,0.15));
  border: 2px solid rgba(14,165,233,0.3);
  transform: translate(-50%, -50%);
  box-shadow: 
    0 0 0 8px rgba(14,165,233,0.08),
    0 0 30px rgba(14,165,233,0.2);
  z-index: 5;
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 
      0 0 0 8px rgba(14,165,233,0.08),
      0 0 30px rgba(14,165,233,0.2);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
      0 0 0 12px rgba(14,165,233,0.12),
      0 0 40px rgba(14,165,233,0.3);
  }
}

/* Blogs */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; background: var(--surface); box-shadow: var(--shadow); }
.blog-card .pill { display: inline-block; background: var(--primary-50); color: var(--primary); border: 1px solid var(--primary); border-radius: 999px; padding: 4px 10px; font-size: 12px; margin-bottom: 12px; }
.blog-card h3 { margin: 0 0 10px; font-size: 18px; }
.blog-card .more { text-decoration: none; color: var(--primary); font-weight: 600; }
.blog-card:hover { transform: translateY(-2px); transition: transform .15s ease; }

/* Contact */
.contact {
  position: relative;
  background: 
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 60%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.03) 0%, transparent 70%),
    linear-gradient(45deg, transparent 49%, rgba(14, 165, 233, 0.02) 50%, transparent 51%);
  background-size: 300px 300px, 80px 80px;
  animation: contactFloat 35s ease-in-out infinite;
  z-index: 0;
}

@keyframes contactFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.3deg); }
  66% { transform: translateY(5px) rotate(-0.2deg); }
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 12px 0 0; color: var(--muted); }
.contact-form { 
  border: 1px solid rgba(14, 165, 233, 0.2); 
  border-radius: var(--radius); 
  padding: 24px; 
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(168, 85, 247, 0.8));
  border-radius: var(--radius) var(--radius) 0 0;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-weight: 600; font-size: 14px; color: var(--text); }
.field input, .field select, .field textarea { 
  border: 1px solid rgba(14, 165, 233, 0.2); 
  border-radius: 10px; 
  padding: 12px 16px; 
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  font: inherit; 
  color: var(--text);
  transition: all 0.3s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.form-note { color: var(--muted); font-size: 12px; margin: 8px 0 0; }

/* Footer */
.site-footer { 
  border-top: 1px solid var(--border); 
  background: 
    radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.02) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.dark .site-footer { 
  background:
    radial-gradient(circle at 50% 0%, rgba(56,189,248,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 40%, rgba(14,165,233,0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 60%, rgba(167,139,250,0.08) 0%, transparent 60%);
  z-index: 0;
  opacity: 0.9;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.enhanced-footer {
  color: rgba(15,23,42,0.78);
}

.enhanced-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  padding: 48px 0 36px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(15,23,42,0.68);
  line-height: 1.7;
}

.footer-logo {
  display: inline-flex;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: none;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  text-decoration: none;
  color: rgba(15,23,42,0.65);
  font-size: 15px;
}

.footer-column a:hover {
  color: #0ea5e9;
}

.footer-contact a {
  font-weight: 700;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(148,163,184,0.25);
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.footer-locations h5 {
  margin: 0 0 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
}

.footer-locations p {
  margin: 0;
  color: rgba(15,23,42,0.7);
  line-height: 1.6;
}

.footer-bottom.enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: rgba(15,23,42,0.65);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148,163,184,0.4);
  display: grid;
  place-items: center;
  color: rgba(15,23,42,0.65);
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

@media (max-width: 900px) {
  .enhanced-footer .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .footer-locations {
    grid-template-columns: 1fr;
  }
  .footer-bottom.enhanced {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(2,6,23,0.5); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 200; }
.modal[aria-hidden="false"] { display: flex; }
.modal-content { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); width: 100%; max-width: 520px; padding: 20px; box-shadow: var(--shadow); }
.modal-close { position: absolute; right: 18px; top: 18px; border: 0; background: transparent; font-size: 22px; }

/* Services */
.services {
  position: relative;
  background: 
    radial-gradient(circle at 70% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.dark .services {
  background:
    radial-gradient(circle at 70% 20%, rgba(167,139,250,0.08) 0%, transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(56,189,248,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 70%),
    linear-gradient(90deg, transparent 48%, rgba(14, 165, 233, 0.01) 50%, transparent 52%);
  background-size: 200px 200px, 50px 50px;
  animation: servicesFloat 30s ease-in-out infinite;
  z-index: 0;
}

@keyframes servicesFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(0.5deg); }
}

.services .container {
  position: relative;
  z-index: 1;
}

/* Service Details Page Styles */
.service-detail-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-header h2 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: var(--text);
}

.service-icon {
  display: inline-block;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-detail-card h3 {
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--primary);
  font-weight: 600;
}

.service-detail-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* Services Hero Showcase */
.services-hero {
  padding: 80px 0 60px;
  position: relative;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(14,165,233,0.12), transparent 60%),
    radial-gradient(circle at 70% 85%, rgba(167,139,250,0.12), transparent 65%);
  opacity: 0.9;
}
.services-hero .container {
  position: relative;
  z-index: 1;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.services-hero-media {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(56,189,248,0.12));
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(14,165,233,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-hero-media::before {
  content: "";
  position: absolute;
  inset: -25% -10% 45% -30%;
  background: radial-gradient(circle at 25% 35%, rgba(58,132,247,0.55), transparent 60%);
  opacity: 0.7;
}
.services-hero-media::after {
  content: "";
  position: absolute;
  inset: 40% -35% -35% 35%;
  background: radial-gradient(circle at 70% 70%, rgba(168,85,247,0.45), transparent 60%);
  opacity: 0.65;
}
.services-hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(9px);
  border-radius: 24px;
  padding: 36px;
  max-width: 90%;
  box-shadow: 0 25px 60px rgba(15,23,42,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(14,165,233,0.12);
  color: rgba(14,165,233,0.9);
}
.services-hero-card h1 {
  margin: 6px 0 0;
  font-size: 32px;
  color: #0f172a;
  line-height: 1.25;
}
.services-hero-card p {
  margin: 0;
  color: rgba(30,41,59,0.75);
  line-height: 1.7;
  font-size: 16px;
}
.services-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(15,23,42,0.7);
  font-size: 14px;
}
.services-hero-highlights span {
  font-weight: 800;
  color: #0ea5e9;
  margin-right: 6px;
}

.services-hero-features h2 {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
}
.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.services-feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(14,165,233,0.12);
  box-shadow: 0 18px 36px rgba(14,165,233,0.12);
}
.services-feature-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
}
.services-feature-item p {
  margin: 0;
  color: rgba(15,23,42,0.68);
  line-height: 1.6;
  font-size: 14px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.85), rgba(99,102,241,0.85));
  color: #fff;
  box-shadow: 0 12px 26px rgba(14,165,233,0.25);
  font-size: 20px;
}

@media (max-width: 1100px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }
  .services-hero-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .services-hero {
    padding: 64px 0 48px;
  }
  .services-hero-card {
    padding: 28px;
  }
  .services-hero-card h1 {
    font-size: 26px;
  }
  .services-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-hero-card {
    padding: 24px;
  }
  .services-hero-card h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-detail-header h2 {
    font-size: 2rem;
  }
  
  .service-detail-card {
    padding: 24px;
  }
  
  .service-detail-card h3 {
    font-size: 1.3rem;
  }
}

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { 
  border: 1px solid rgba(14, 165, 233, 0.2); 
  border-radius: var(--radius); 
  padding: 20px; 
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
  display: flex; 
  flex-direction: column; 
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card h3 { 
  margin: 0; 
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}
.service-card p { margin: 0; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card a { 
  margin-top: auto; 
  align-self: flex-start;
  text-align: center;
}
@media (max-width: 760px) {
  .service-card a {
    align-self: stretch;
  }
}
.service-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

/* Highlighted service card */
.service-card.accent {
  background: linear-gradient(180deg, rgba(236, 254, 255, 0.85), rgba(255,255,255,0.9));
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 14px 44px rgba(14,165,233,0.18);
}
.dark .service-card.accent {
  background: linear-gradient(180deg, rgba(56,189,248,0.12), rgba(15,23,42,0.9));
  border-color: rgba(56,189,248,0.4);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Page-specific backgrounds */
body {
  background: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.02) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  min-height: 100vh;
}
.dark body {
  background:
    radial-gradient(circle at 10% 20%, rgba(56,189,248,0.06) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(167,139,250,0.05) 0%, transparent 55%),
    linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
}

/* About, Services, Contact page backgrounds */
main.section {
  position: relative;
  background: 
    radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.02) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(1px);
  border-radius: 0 0 24px 24px;
  margin: 0 0 20px 0;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.05);
}

main.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.01) 0%, transparent 70%),
    linear-gradient(45deg, transparent 49%, rgba(14, 165, 233, 0.005) 50%, transparent 51%);
  background-size: 400px 400px, 100px 100px;
  animation: pageFloat 40s ease-in-out infinite;
  z-index: 0;
}

@keyframes pageFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(0.2deg); }
}

main.section .container {
  position: relative;
  z-index: 1;
}

/* Enhanced blog section */
.blogs {
  position: relative;
  background: 
    radial-gradient(circle at 60% 30%, rgba(168, 85, 247, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.blogs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 70%),
    linear-gradient(90deg, transparent 48%, rgba(14, 165, 233, 0.01) 50%, transparent 52%);
  background-size: 250px 250px, 60px 60px;
  animation: blogsFloat 45s ease-in-out infinite;
  z-index: 0;
}

@keyframes blogsFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.02) rotate(0.3deg); }
}

.blogs .container {
  position: relative;
  z-index: 1;
}

.blogs .blog-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
  transition: all 0.3s ease;
}

.blogs .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.3);
}

/* Logo section enhancement */
.logos {
  position: relative;
  background: 
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.02) 0%, transparent 70%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.01) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.01) 0%, transparent 60%);
  background-size: 200px 200px, 300px 300px;
  animation: logosFloat 50s ease-in-out infinite;
  z-index: 0;
}

@keyframes logosFloat {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(5px) translateY(-3px); }
  50% { transform: translateX(-3px) translateY(5px); }
  75% { transform: translateX(3px) translateY(-2px); }
}

.logos .container {
  position: relative;
  z-index: 1;
}

.logos .logo {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.logos .logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
}

/* Performance optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero h1 { font-size: 44px; }
  .hero-inner { padding: 64px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-circular { grid-template-columns: 1fr; }
  .radial-center { width: 180px; height: 180px; }
  
  /* Placement process responsive */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Hero adjustments */
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-visual-text { font-size: 64px; }
  
  /* Buttons stack better */
  .actions { flex-wrap: wrap; }
  .btn { padding: 10px 20px; font-size: 14px; }
  
  /* Process diagram adjustments */
  .radial { max-width: 400px; }
  .node { width: 70px; height: 70px; }
  .node .icon { font-size: 28px; }
  
  /* Reduce animation complexity on tablet */
  .hero::before,
  .process::before,
  .services::before,
  .contact::before,
  .blogs::before,
  .logos::before,
  .site-header::before,
  .site-footer::before,
  main.section::before {
    animation-duration: 120s;
  }
}

@media (max-width: 760px) {
  /* Header and Navigation */
  .node-text { display: none; }
  .radial-center {
    width: 160px;
    height: 160px;
    padding: 12px;
  }
  .radial-center .center-caption { font-size: 16px; }
  .radial-center p { font-size: 11px; }
  .header-inner { height: 56px; }
  .nav-toggle { display: inline-block; }
  .site-nav { position: fixed; inset: 56px 0 0 0; background: #fff; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease; border-top: 1px solid var(--border); z-index: 100; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 10px 16px 24px; gap: 6px; }
  
  /* Make nav buttons full width and more touch-friendly on mobile */
  .site-nav .btn { 
    width: 100%; 
    justify-content: center;
    min-height: 48px;
    margin: 4px 0;
  }
  
  .site-nav a { 
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
  }
  
  .submenu, .submenu.cols { position: static; width: 100%; display: none; border: 0; box-shadow: none; padding: 0; }
  .has-submenu.open > .submenu, .has-submenu.open > .submenu.cols { display: block; }
  
  /* Hero Section */
  .hero h1 { font-size: 32px; line-height: 1.2; }
  .hero p { font-size: 15px; }
  .hero-inner { padding: 48px 0; }
  .hero-visual-text { font-size: 48px; }
  .actions { flex-direction: column; width: 100%; }
  .actions .btn { width: 100%; justify-content: center; }
  
  /* Buttons - Full width on mobile */
  .btn { 
    padding: 14px 24px; 
    font-size: 15px;
    width: auto;
    min-height: 48px; /* Larger touch target on mobile */
  }
  
  /* Sections spacing */
  .section { padding: 40px 0; }
  .section h2 { font-size: 24px; margin-bottom: 16px; }
  .lead { font-size: 15px; }
  
  /* Grids - Stack on mobile */
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Process Circular - Better mobile layout */
  .radial { 
    max-width: 320px; 
    margin: 0 auto 32px;
  }
  .node { width: 60px; height: 60px; }
  .node .icon { font-size: 24px; }
  .node::before { width: 12px; height: 12px; }
  
  /* Hide complex connectors on mobile for cleaner look */
  .node::after { display: none; }
  .radial::before { width: 24px; height: 24px; }
  
  /* Step cards - Remove arrows on mobile */
  .process .cards .step-card::before, 
  .process .cards .step-card::after { display: none; }
  .step-card { padding: 16px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 13px; }
  
  /* Placement tiles - Better mobile spacing */
  .step-tile { padding: 20px 16px 18px; }
  .step-tile h3 { font-size: 16px; }
  .step-tile p { font-size: 13px; }
  .step-tile .emoji { width: 50px; height: 50px; font-size: 24px; }
  
  /* Service cards */
  .service-card { padding: 18px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 14px; }
  .service-card .btn { width: 100%; margin-top: 12px; }
  
  /* Contact form */
  .contact-form { padding: 20px; }
  .contact-form .btn { width: 100%; }
  
  /* Footer */
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .policies { justify-content: center; }
  
  /* Scroll to top button - Better positioning */
  .scroll-top { right: 12px; bottom: 12px; width: 48px; height: 48px; }
  
  /* Modal - Better mobile display */
  .modal { padding: 16px; }
  .modal-content { padding: 24px 20px; }
}
/* Scroll-to-top button */
.scroll-top { position: fixed; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); box-shadow: var(--shadow); display: grid; place-items: center; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 150; }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }


/* Placement process section */
.placement-process {
  position: relative;
  background:
    radial-gradient(circle at 20% 80%, rgba(14,165,233,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.dark .placement-process {
  background:
    radial-gradient(circle at 20% 80%, rgba(56,189,248,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(167,139,250,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-tile { 
  position: relative;
  border: 2px solid rgba(14,165,233,0.2); 
  border-radius: var(--radius); 
  padding: 24px 20px 20px; 
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.1);
  transition: all .3s ease;
  overflow: hidden;
}

/* Accent gradient line on top */
.step-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(99,102,241,0.8), rgba(168,85,247,0.7));
}

.dark .step-tile { background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(11,18,32,0.85) 100%); }

.step-tile:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 48px rgba(14,165,233,0.2);
  border-color: rgba(14,165,233,0.4);
}

.step-tile h3 { 
  margin: 12px 0 8px; 
  font-size: 17px; 
  color: var(--text); 
  font-weight: 700;
  line-height: 1.4;
}

.step-tile p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 14px; 
  line-height: 1.6;
}

.step-tile .emoji { 
  width: 56px; 
  height: 56px; 
  border-radius: 999px; 
  display: grid; 
  place-items: center; 
  background: linear-gradient(135deg, rgba(14,165,233,0.15) 0%, rgba(99,102,241,0.1) 100%);
  border: 2px solid rgba(14,165,233,0.3);
  box-shadow: 0 8px 24px rgba(14,165,233,0.15);
  font-size: 28px;
  transition: all .3s ease;
}

.step-tile:hover .emoji {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(14,165,233,0.25);
}

@media (max-width: 1000px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Extra small devices - Perfect mobile experience */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; margin-bottom: 20px; }
  .hero-inner { padding: 36px 0; }
  .hero-visual-text { font-size: 36px; }
  .radial-center {
    width: 140px;
    height: 140px;
    padding: 10px;
  }
  .radial-center .center-caption { font-size: 14px; }
  .radial-center p { font-size: 10px; }
  
  /* Buttons */
  .btn { font-size: 14px; padding: 12px 20px; }
  
  /* Sections */
  .section { padding: 32px 0; }
  .section h2 { font-size: 22px; }
  
  /* Logo grid */
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Process diagram - Smaller on tiny screens */
  .radial { max-width: 280px; }
  .node { width: 54px; height: 54px; border-width: 2px; }
  .node .icon { font-size: 22px; }
  .ring { border-width: 1px; }
  
  /* Step cards and tiles */
  .step-card, .step-tile { padding: 14px; }
  .step-card h3, .step-tile h3 { font-size: 14px; }
  .step-card p, .step-tile p { font-size: 12px; }
  .step-tile .emoji { width: 44px; height: 44px; font-size: 20px; }
  
  /* Brand name */
  .brand { font-size: 18px; }
  
  /* Footer */
  .footer-grid { gap: 24px; }
  .site-footer h4 { font-size: 16px; }
  .site-footer { font-size: 14px; }
}

/* Improve touch targets and accessibility */
@media (hover: none) and (pointer: coarse) {
  /* Touch device optimizations */
  .btn { min-height: 48px; padding: 14px 24px; }
  .node { cursor: default; }
  .service-card, .step-tile, .step-card { cursor: default; }
  
  /* Disable hover effects on touch devices */
  .node:hover, .service-card:hover, .step-tile:hover, .step-card:hover {
    transform: none;
  }
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .service-card, .step-tile, .step-card, .node {
  -webkit-tap-highlight-color: rgba(14, 165, 233, 0.1);
}

/* Landscape orientation optimizations */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-inner { padding: 40px 0; }
  .section { padding: 36px 0; }
  .radial { max-width: 300px; }
}

/* Portfolio Page Styles */

/* Statistics Section */
.stats-section {
  background: 
    radial-gradient(circle at 30% 50%, rgba(14,165,233,0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(99,102,241,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
  border: 2px solid rgba(14,165,233,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(99,102,241,0.8));
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(14,165,233,0.2);
  border-color: rgba(14,165,233,0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), rgba(99,102,241,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
  background: 
    radial-gradient(circle at 20% 80%, rgba(168,85,247,0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(14,165,233,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
  border: 2px solid rgba(14,165,233,0.15);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
}

.testimonial-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(99,102,241,0.8));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}

.testimonial-header .info {
  flex: 1;
}

.testimonial-header h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-header .role {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-50);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.company-name {
  color: var(--primary);
}

.year {
  color: var(--muted);
}

.testimonial-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  font-style: italic;
}

/* Larger logo grid for portfolio */
.logo-grid-large {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.logo-grid-large .logo {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
  transition: all 0.3s ease;
  height: 80px;
  font-size: 14px;
  font-weight: 600;
}

.logo-grid-large .logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

/* CTA Section */
.cta-section {
  background: 
    radial-gradient(circle at 50% 50%, rgba(14,165,233,0.1) 0%, transparent 70%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.04) 0%, transparent 60%);
  animation: ctaFloat 20s ease-in-out infinite;
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 0;
}

/* Responsive Portfolio Styles */
@media (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .logo-grid-large {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 32px 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .logo-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .logo-grid-large .logo {
    height: 70px;
    font-size: 12px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  
  .testimonial-header h3 {
    font-size: 16px;
  }
  
  .logo-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
}

/* Contact Page - Two Column Layout */
.contact-page-main {
  min-height: 80vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

.contact-page-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-page-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-page-form::before {
  content: "";
  position: absolute;
  inset: -120px -80px 60px -60px;
  background: radial-gradient(circle at 20% 20%, rgba(14,165,233,0.2), transparent 65%);
  opacity: 0.7;
}

.contact-page-form::after {
  content: "";
  position: absolute;
  inset: 40px -140px -140px 120px;
  background: radial-gradient(circle at 70% 70%, rgba(99,102,241,0.18), transparent 60%);
  opacity: 0.6;
}

.contact-page-form > * {
  position: relative;
  z-index: 1;
}

.contact-page-form h1,
.contact-page-form h2 {
  font-size: 30px;
  margin: 0 0 12px;
  color: #0f172a;
  font-weight: 800;
}

.form-lead {
  font-size: 15px;
  color: rgba(15,23,42,0.7);
  margin: 0 0 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #1f2937;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  transition: all 0.25s ease;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
  background: #ffffff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: auto;
  padding: 14px 42px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 14px 35px rgba(14,165,233,0.25);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14,165,233,0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

.privacy-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(55,65,81,0.7);
  text-align: left;
}

.contact-details-panel {
  position: relative;
  border-radius: 18px;
  padding: 44px 38px;
  background: linear-gradient(160deg, rgba(14,165,233,0.1), rgba(99,102,241,0.16));
  border: 1px solid rgba(14,165,233,0.2);
  box-shadow: 0 20px 48px rgba(15,23,42,0.18);
  overflow: hidden;
}

.contact-details-panel::before {
  content: "";
  position: absolute;
  inset: -140px -80px 60px -120px;
  background: radial-gradient(circle at 25% 20%, rgba(14,165,233,0.35), transparent 65%);
  opacity: 0.65;
}

.contact-details-panel::after {
  content: "";
  position: absolute;
  inset: 80px -160px -160px 40px;
  background: radial-gradient(circle at 70% 70%, rgba(167,139,250,0.28), transparent 60%);
  opacity: 0.6;
}

.contact-details-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(14,165,233,0.9);
}

.contact-details-panel h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.contact-details-panel h3 {
  margin: -12px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #1d4ed8;
}

.contact-details-lead {
  margin: 4px 0 0;
  color: rgba(15,23,42,0.74);
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(14,165,233,0.12);
  box-shadow: 0 16px 36px rgba(14,165,233,0.18);
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(14,165,233,0.95), rgba(99,102,241,0.9));
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(14,165,233,0.35);
}

.detail-icon.phone {
  background: linear-gradient(140deg, rgba(14,165,233,0.95), rgba(2,132,199,0.92));
}

.detail-icon.email {
  background: linear-gradient(140deg, rgba(99,102,241,0.95), rgba(168,85,247,0.9));
}

.detail-icon.address {
  background: linear-gradient(140deg, rgba(14,116,144,0.95), rgba(14,165,233,0.9));
}

.detail-icon.whatsapp {
  background: linear-gradient(140deg, rgba(34,197,94,0.95), rgba(22,163,74,0.9));
}

.detail-label {
  margin: 0 0 4px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.56);
}

.detail-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}

.detail-value:hover {
  color: #0ea5e9;
}

.detail-value.alt-email {
  font-size: 15px;
  font-weight: 600;
  color: rgba(15,23,42,0.7);
}
.detail-value.alt-email:hover {
  color: #0ea5e9;
}

.contact-detail-note {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(14,165,233,0.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.contact-detail-note p {
  margin: 0;
  font-size: 14px;
  color: rgba(15,23,42,0.7);
}

/* Responsive Contact Page */
@media (max-width: 1000px) {
  .contact-page-main { padding: 48px 0; }
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-details-panel,
  .contact-page-form {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .contact-page-main { padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-page-form,
  .contact-details-panel { padding: 26px; }
  .submit-btn { width: 100%; }
}

@media (max-width: 480px) {
  .contact-page-form,
  .contact-details-panel { padding: 22px; }
  .form-field label { font-size: 13px; }
  .form-field input,
  .form-field select,
  .form-field textarea { padding: 10px 14px; font-size: 14px; }
}

/* Companies Section - Infinite Horizontal Scroll */
.companies-section {
  background: 
    radial-gradient(circle at 50% 50%, rgba(14,165,233,0.03) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

.companies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.02) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.02) 0%, transparent 60%);
  z-index: 0;
}

.companies-section .container {
  position: relative;
  z-index: 1;
}

.companies-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.companies-section .lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
}

/* Infinite Scrolling Slider */
.companies-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.companies-track {
  display: flex;
  gap: 24px;
  animation: scrollCompanies 60s linear infinite;
  width: fit-content;
}

.companies-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCompanies {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.7;
}

.company-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(14,165,233,0.05) 0%, 
    rgba(99,102,241,0.05) 50%, 
    rgba(168,85,247,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.company-logo:hover::before {
  opacity: 1;
}

.company-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.2);
}

/* Logo text styling - will be replaced with images */
.company-logo {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* For actual logo images - add this structure in HTML:
   <div class="company-logo">
     <img src="/assets/images/logos/company-name.svg" alt="Company Name" style="max-width: 100%; max-height: 100%; object-fit: contain;">
   </div>
*/

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Add subtle animation to logos */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.company-logo {
  animation: logoFloat 3s ease-in-out infinite;
}

.company-logo:nth-child(2n) {
  animation-delay: 0.5s;
}

.company-logo:nth-child(3n) {
  animation-delay: 1s;
}

/* Responsive */
@media (max-width: 760px) {
  body {
    padding-top: 56px;
  }
  
  .companies-section {
    padding: 40px 0;
  }
  
  .companies-section .lead {
    margin-bottom: 32px;
  }
  
  .companies-track {
    gap: 16px;
    animation-duration: 50s;
  }
  
  .company-logo {
    width: 150px;
    height: 85px;
    font-size: 12px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .companies-section {
    padding: 32px 0;
  }
  
  .companies-track {
    gap: 12px;
    animation-duration: 40s;
  }
  
  .company-logo {
    width: 130px;
    height: 75px;
    font-size: 11px;
    padding: 12px;
  }
}

/* ============================================
   CLIENTS SECTION - INFINITE HORIZONTAL SCROLL
   ============================================ */

.clients-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.clients-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  width: 100%;
}

.clients-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #2c3e50;
}

.clients-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

.clients-scroll-track {
  display: flex;
  gap: 80px;
  animation: scroll-logos-one-by-one 36s steps(14, end) infinite;
  will-change: transform;
}

.clients-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos-one-by-one {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (160px + 80px) * 14));
  }
}

.client-logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: visible;
}

.client-logo-item .company-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 0.95;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.client-logo-item:hover .company-logo-img {
  opacity: 1;
  filter: saturate(1.2);
  transform: scale(1.08);
}

/* Responsive adjustments - SCROLLING */
@media (max-width: 1200px) {
  .clients-scroll-track {
    gap: 70px;
  }
  
  .client-logo-item {
    width: 140px;
    height: 90px;
  }
}

@media (max-width: 992px) {
  .clients-title {
    font-size: 1.5rem;
    margin-bottom: 50px;
  }
  
  .clients-scroll-track {
    gap: 60px;
    animation: scroll-logos-one-by-one-tablet 28s steps(14, end) infinite;
  }
  
  .client-logo-item {
    width: 130px;
    height: 85px;
  }
  
  .client-logo-item .company-logo-img {
    max-width: 100%;
    max-height: 100%;
  }
}

@keyframes scroll-logos-one-by-one-tablet {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (130px + 60px) * 14));
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-title {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  
  .clients-scroll-track {
    gap: 50px;
    animation: scroll-logos-one-by-one-mobile 24s steps(14, end) infinite;
  }
  
  .client-logo-item {
    width: 110px;
    height: 75px;
    padding: 15px;
  }
  
  .client-logo-item .company-logo-img {
    max-width: 100%;
    max-height: 100%;
  }
}

@keyframes scroll-logos-one-by-one-mobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (110px + 50px) * 14));
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 50px 0;
  }
  
  .clients-title {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
  
  .clients-title::after {
    width: 60px;
    height: 2px;
  }
  
  .clients-scroll-track {
    gap: 40px;
    animation: scroll-logos-one-by-one-small 20s steps(14, end) infinite;
  }
  
  .client-logo-item {
    width: 100px;
    height: 70px;
    padding: 12px;
  }
  
  .client-logo-item .company-logo-img {
    max-width: 100%;
    max-height: 100%;
  }
}

@keyframes scroll-logos-one-by-one-small {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (100px + 40px) * 14));
  }
}

