/* ===================================================
   CODE CORE GLOBAL HITECH SOLUTIONS — ENTERPRISE CSS
   =================================================== */

/* ——— RESET & BASE ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light theme */
  --primary: #0056D2;
  --primary-dark: #0041A8;
  --secondary: #0A84FF;
  --accent: #3B6EA8;
  --bg: #FFFFFF;
  --section-bg: #F5F8FC;
  --card-bg: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #5F6368;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,86,210,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,86,210,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 60px rgba(0,86,210,.12), 0 8px 20px rgba(0,0,0,.08);
  --nav-bg: transparent;
  --nav-scrolled: rgba(255,255,255,.96);
  --nav-border: rgba(229,231,235,.0);
  --nav-border-scrolled: rgba(229,231,235,1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
  font-size: 16px;
}

.dark {
  --bg: #0F172A;
  --section-bg: #1E293B;
  --card-bg: #243447;
  --text: #F8FAFC;
  --text-secondary: #CBD5E1;
  --border: #334155;
  --nav-scrolled: rgba(15,23,42,.97);
  --shadow: 0 4px 16px rgba(0,0,0,.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.4);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
blockquote { font-style: normal; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }

/* ——— SECTION HEADERS ——— */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,86,210,.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,86,210,.15);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,.1); }

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,86,210,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(0,86,210,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--nav-scrolled);
  border-color: var(--nav-border-scrolled);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  background: transparent;
}

.theme-toggle:hover {
  background: var(--section-bg);
  color: var(--primary);
}

.nav-cta { font-size: 13px; padding: 10px 20px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

#rippleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.dark #rippleCanvas { opacity: 0.25; }

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,86,210,.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(10,132,255,.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.dark .hero-bg-gradient {
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,86,210,.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(10,132,255,.08) 0%, transparent 60%);
}

.hero-floating-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.float-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,86,210,.06) 0%, transparent 70%);
  top: -10%; right: 5%;
  animation-delay: 0s;
}
.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(10,132,255,.05) 0%, transparent 70%);
  bottom: 10%; left: -5%;
  animation-delay: 2s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,110,168,.06) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation-delay: 4s;
}
.shape-4 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,86,210,.04) 0%, transparent 70%);
  top: 20%; left: 20%;
  animation-delay: 6s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,86,210,.06);
  border: 1px solid rgba(0,86,210,.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease forwards;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.headline-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}

.stat-card:first-child { padding-left: 0; }
.stat-card:last-child { padding-right: 0; }

.stat-value-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease forwards;
  opacity: 0;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--primary);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— TRUST SECTION ——— */
.trust-section { background: var(--section-bg); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Entrance animation state */
.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              opacity 0.6s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.93);
}

.trust-card.trust-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Shimmer sweep on hover */
.trust-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transition: left 0.5s ease;
  pointer-events: none;
}

.trust-card:hover::after { left: 160%; }

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,86,210,.25);
}

.trust-card:hover::before { opacity: 1; }

.trust-card-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
}

.trust-card-featured::before { display: none; }
.trust-card-featured::after {
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
}
.trust-card-featured .trust-icon { color: rgba(255,255,255,.85); }
.trust-card-featured .trust-value { color: #fff; }
.trust-card-featured .trust-label { color: rgba(255,255,255,.82); }
.trust-card-featured:hover { transform: translateY(-6px) scale(1.04); box-shadow: 0 16px 48px rgba(0,86,210,.4); }

/* Icon wrapper with pulse ring */
.trust-icon {
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  position: relative;
}

.trust-icon-inner {
  position: relative;
  width: 56px; height: 56px;
  background: rgba(0,86,210,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease;
}

.trust-card-featured .trust-icon-inner {
  background: rgba(255,255,255,.18);
}

.trust-card:hover .trust-icon-inner {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(0,86,210,.14);
}

.trust-card-featured:hover .trust-icon-inner {
  background: rgba(255,255,255,.28);
}

/* Ping ring */
.trust-icon-inner::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,86,210,.25);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.trust-card:hover .trust-icon-inner::after {
  opacity: 1;
  transform: scale(1);
}

.trust-card-featured:hover .trust-icon-inner::after {
  border-color: rgba(255,255,255,.4);
}

/* Pulsing ring animation for featured card */
.trust-card-featured .trust-icon-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  animation: trustPing 2.4s ease-in-out infinite;
}

@keyframes trustPing {
  0% { transform: scale(0.85); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

.trust-value {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-value { transform: scale(1.06); }

.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ——— ABOUT ——— */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pillar:hover {
  border-color: rgba(0,86,210,.2);
  transform: translateX(4px);
}

.pillar-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.pillar span {
  font-size: 13px;
  color: var(--text-secondary);
}

.about-visual {
  position: relative;
  height: 420px;
}

.about-visual-inner { position: relative; height: 100%; }

.about-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  animation: floatCard 6s ease-in-out infinite;
}

.about-card-main {
  display: flex;
  align-items: center;
  gap: 16px;
  top: 40px; left: 0; right: 0;
  animation-delay: 0s;
}

.about-logo { border-radius: 12px; object-fit: contain; }

.about-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-card-text strong { font-size: 14px; font-weight: 600; }
.about-card-text span { font-size: 12px; color: var(--text-secondary); }

.about-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  bottom: 60px; right: 20px;
  animation-delay: 1.5s;
}

.about-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.about-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  bottom: 60px; left: 20px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  animation-delay: 3s;
}

.about-floating-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,86,210,.2);
  animation: rotateSlow 20s linear infinite;
  pointer-events: none;
}

.ring-1 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring-2 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  border-color: rgba(10,132,255,.12);
}

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

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ——— JOURNEY / TIMELINE ——— */
.journey-section { background: var(--section-bg); }

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-progress {
  width: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  height: 0%;
  transition: height 0.8s ease;
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 64px;
  position: relative;
}

.timeline-item-right { justify-content: flex-end; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--section-bg), 0 4px 16px rgba(0,86,210,.3);
}

.timeline-dot span {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.timeline-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px var(--section-bg), 0 4px 20px rgba(0,86,210,.4), 0 0 30px rgba(0,86,210,.2);
}

.timeline-dot-future {
  background: var(--card-bg);
  border: 2px solid var(--border);
}
.timeline-dot-future span { color: var(--text-secondary); font-size: 14px; }

.timeline-card {
  width: 44%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  margin-right: auto;
  margin-left: 0;
}

.timeline-item-right .timeline-card {
  margin-left: auto;
  margin-right: 0;
}

.timeline-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(0,86,210,.2);
}

.timeline-card-active {
  border-color: rgba(0,86,210,.25);
  box-shadow: var(--shadow-lg);
}

.timeline-card-future {
  opacity: 0.8;
  background: repeating-linear-gradient(
    45deg,
    var(--card-bg),
    var(--card-bg) 10px,
    var(--section-bg) 10px,
    var(--section-bg) 11px
  );
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ——— VISION & MISSION ——— */
.vm-section { background: var(--bg); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.vm-vision::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.vm-mission::before { background: linear-gradient(90deg, var(--secondary), #7c3aed); }

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vm-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(0,86,210,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-mission .vm-icon {
  background: rgba(10,132,255,.08);
  color: var(--secondary);
}

.vm-label {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.vm-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ——— INDUSTRIES ——— */
.industries-section { background: var(--section-bg); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              opacity 0.65s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
}

.industry-card.industry-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animated gradient border on hover */
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,86,210,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Bottom glow bar */
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,86,210,.28);
}

.industry-card:hover::before { opacity: 1; }
.industry-card:hover::after { transform: scaleX(1); }

/* Icon with animated background circle */
.industry-icon {
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,86,210,.07);
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.industry-card:hover .industry-icon::before { transform: scale(1.3); }

.industry-icon svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease;
}

.industry-card:hover .industry-icon svg {
  transform: scale(1.18) rotate(-6deg);
  color: var(--secondary);
}

.industry-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-name { color: var(--primary); }

.industry-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.industry-arrow {
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
}

.industry-card:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ——— PROCESS ——— */
.process-section { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 52px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-number {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  background: rgba(0,86,210,.08);
  border: 2px solid rgba(0,86,210,.15);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.process-step:hover .process-number {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1);
}

.process-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  width: 100%;
  transition: all var(--transition);
}

.process-step:hover .process-content {
  border-color: rgba(0,86,210,.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.process-icon {
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ——— WHY CHOOSE US ——— */
.why-section { background: var(--section-bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,86,210,.15);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  color: var(--primary);
  margin-bottom: 20px;
  background: rgba(0,86,210,.07);
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ——— CLIENT TESTIMONIALS ——— */
.testimonials-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(0,86,210,.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(10,132,255,.04) 0%, transparent 55%);
}

/* ——— MARQUEE CAROUSEL ——— */
@keyframes tmarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tcarousel {
  position: relative;
  overflow: hidden;
  /* soft fade on both edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.tcarousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tmarquee 22s linear infinite;
  will-change: transform;
}

/* pause on hover or when prefers-reduced-motion */
.tcarousel:hover .tcarousel-track,
.tcarousel:focus-within .tcarousel-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .tcarousel-track { animation: none; }
}

.tcard {
  width: 400px;
  flex-shrink: 0;
}

.tcard-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tcard-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0,86,210,.03) 0%, transparent 60%);
  pointer-events: none;
}

.tcard:hover .tcard-inner {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0,86,210,.22);
}

.tcard-featured .tcard-inner {
  background: linear-gradient(150deg, var(--card-bg) 0%, rgba(0,86,210,.05) 100%);
  border-color: rgba(0,86,210,.28);
  box-shadow: var(--shadow-lg);
}

.tcard-featured:hover .tcard-inner {
  border-color: rgba(0,86,210,.45);
  box-shadow: 0 24px 64px rgba(0,86,210,.16), 0 8px 24px rgba(0,0,0,.08);
}

.dark .tcard-featured .tcard-inner {
  background: linear-gradient(150deg, var(--card-bg) 0%, rgba(0,86,210,.08) 100%);
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tcard-quote-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.tcard-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.tcard-quote {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--text-secondary);
  flex: 1;
  font-style: italic;
}

.tcard-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tcard-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.tcard-benefits li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.tcard-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,86,210,.15), rgba(10,132,255,.25));
  border: 2px solid rgba(0,86,210,.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.tcard-avatar-featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
}

.tcard-client {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tcard-client strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.tcard-client span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ——— CTA SECTION ——— */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0041A8 0%, #0056D2 50%, #0A84FF 100%);
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge-pill {
  display: inline-flex;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ——— CONTACT ——— */
.contact-section { background: var(--section-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-brand img { border-radius: 12px; object-fit: contain; }

.contact-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-brand strong { font-size: 16px; font-weight: 700; }
.contact-brand span { font-size: 13px; color: var(--text-secondary); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(0,86,210,.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-item span, .contact-item a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  display: block;
}

.contact-item a:hover { color: var(--primary); }

/* ——— FORM ——— */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group label span { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--section-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.7; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,210,.1);
  background: var(--card-bg);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.08);
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  font-weight: 500;
  min-height: 16px;
  display: block;
  line-height: 1.3;
}

.msg-counter-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-top: -2px;
}

.msg-counter {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.3s;
  flex-shrink: 0;
}
.msg-counter.counter-ok { color: #16a34a; }

/* Button spinner */
.btn-spinner {
  display: none;
  align-items: center;
  gap: 8px;
}
.spin-svg {
  animation: spinIcon 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spinIcon { to { transform: rotate(360deg); } }

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235F6368' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ——— MAP ——— */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.map-header-link {
  text-decoration: none;
  justify-content: space-between;
  transition: background 0.2s ease;
  cursor: pointer;
}
.map-header-link:hover { background: var(--primary-subtle, rgba(0,86,210,0.06)); }
.map-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-open-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.map-header-link:hover .map-open-link { opacity: 1; }
.map-header svg { color: var(--primary); flex-shrink: 0; }

.map-container iframe { display: block; }

/* ——— FOOTER ——— */
.footer { background: #0F172A; color: #F8FAFC; }

.dark .footer { background: #070E1A; }

.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img { border-radius: 8px; object-fit: contain; }

.footer-brand strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.footer-brand span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  font-style: italic;
}

.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-mini a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-contact-mini a:hover { color: var(--secondary); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom { padding: 24px 0; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ——— ENQUIRY MODALS ——— */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.enquiry-modal.open {
  display: flex;
  animation: modalFadeIn 0.32s ease forwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.enquiry-modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  animation: modalSlideUp 0.34s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes modalSlideUp {
  from { transform: translateY(32px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.eqm-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(22,163,74,.1);
  border: 2px solid rgba(22,163,74,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* Animated checkmark */
.eqm-checkmark {
  width: 42px;
  height: 42px;
}
.eqm-circle {
  stroke: #16a34a;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-linecap: round;
  animation: eqmCircle 0.6s ease forwards 0.15s;
}
.eqm-check {
  stroke: #16a34a;
  stroke-width: 2.5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: eqmCheck 0.35s ease forwards 0.65s;
}
@keyframes eqmCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes eqmCheck {
  to { stroke-dashoffset: 0; }
}

.eqm-err-icon {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
  color: #EF4444;
}

.enquiry-modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.enquiry-modal-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.eqm-contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.eqm-contact-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.eqm-contact-links a:hover { text-decoration: underline; }

.eqm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.eqm-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.eqm-contact-row:hover { opacity: 0.75; }
.eqm-contact-row svg { flex-shrink: 0; color: var(--text-secondary); }

.eqm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.eqm-actions .btn { min-width: 140px; }

/* ——— TOAST ——— */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  max-width: 360px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.success { background: #16a34a; color: #fff; }
.toast.error { background: #dc2626; color: #fff; }

/* ——— SCROLL REVEAL ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— RESPONSIVE ——— */
/* ——— GLOBAL NETWORK SECTION ——— */
.network-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.network-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,86,210,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(10,132,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.network-header {
  padding-top: 96px;
  padding-bottom: 40px;
}
.network-badge {
  background: rgba(0,86,210,0.08);
  border-color: rgba(0,86,210,0.22);
  color: #0056D2;
}
.network-title {
  color: var(--text-primary);
}
.network-subtitle {
  color: var(--text-secondary);
}
.network-canvas-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#networkCanvas {
  display: block;
  width: 100%;
  height: auto;
}
.network-tooltip {
  display: none;
  position: absolute;
  background: rgba(6,15,35,0.92);
  border: 1px solid rgba(0,132,255,0.4);
  border-radius: 10px;
  padding: 10px 14px;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  box-shadow: 0 4px 24px rgba(0,86,210,0.25);
}
.network-tooltip strong {
  display: block;
  color: #d0e4ff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}
.network-tooltip span {
  display: block;
  color: rgba(160,195,255,0.7);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-connector { display: none; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .vm-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .tcard { width: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-card { width: 46%; }
  .timeline-item { flex-direction: row; }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--nav-scrolled);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .stat-card { padding: 0 16px; min-width: 40%; }
  .stat-divider { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tcard { width: 300px; }
  .tcarousel-track { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .timeline-line { left: 24px; }
  .timeline-dot { left: 24px; transform: none; }
  .timeline-card { width: calc(100% - 80px); margin-left: 80px !important; margin-right: 0 !important; }
  .timeline-item { flex-direction: row; justify-content: flex-start; }
  .timeline-item-right { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .vm-card { padding: 28px 24px; }
}

/* ——— MAGNETIC BUTTONS ——— */
.magnetic-btn { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, background 0.3s ease; }

/* =============================================
   SOCIAL MEDIA INTEGRATION
   ============================================= */

/* --- NAV SOCIAL BAR --- */
.nav-social-bar {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 0 16px;
  border-left: 1px solid rgba(100,116,139,0.18);
  border-right: 1px solid rgba(100,116,139,0.18);
  height: 32px;
}
.dark .nav-social-bar {
  border-left-color: rgba(255,255,255,0.1);
  border-right-color: rgba(255,255,255,0.1);
}
.nav-social-link {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
  text-decoration: none;
}
.dark .nav-social-link { color: rgba(255,255,255,0.4); }
.nav-social-link:hover { transform: scale(1.2); }
.nav-social-link.nav-instagram:hover { color: #E1306C; background: rgba(225,48,108,0.1); }
.nav-social-link.nav-facebook:hover  { color: #1877F2; background: rgba(24,119,242,0.1); }
.nav-social-link.nav-youtube:hover   { color: #FF0000; background: rgba(255,0,0,0.1); }
.nav-social-link.nav-x:hover         { color: #0f172a; background: rgba(0,0,0,0.08); }
.dark .nav-social-link.nav-x:hover   { color: #fff; background: rgba(255,255,255,0.1); }
.nav-social-link.nav-threads:hover   { color: #101010; background: rgba(0,0,0,0.08); }
.dark .nav-social-link.nav-threads:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-social-link.nav-whatsapp:hover  { color: #25D366; background: rgba(37,211,102,0.1); }
@media (max-width: 1200px) { .nav-social-bar { display: none; } }

/* --- FOOTER SOCIAL HUB --- */
.footer-social-hub {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
}
.footer-social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.footer-social-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.footer-social-item:hover { color: #fff; transform: translateY(-6px); }
.footer-social-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: all 0.3s ease;
}
.footer-social-item:hover .footer-social-icon-wrap { border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.footer-social-item.fi-instagram:hover .footer-social-icon-wrap { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-social-item.fi-facebook:hover .footer-social-icon-wrap  { background: #1877F2; }
.footer-social-item.fi-youtube:hover  .footer-social-icon-wrap  { background: #FF0000; }
.footer-social-item.fi-x:hover        .footer-social-icon-wrap  { background: #14171A; }
.footer-social-item.fi-threads:hover  .footer-social-icon-wrap  { background: #101010; }
.footer-social-item.fi-whatsapp:hover .footer-social-icon-wrap  { background: #25D366; }
.footer-social-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* --- FLOATING SOCIAL DOCK --- */
.social-floating-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(110%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 7px;
  background: rgba(10,15,30,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px 0 0 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-right: none;
  transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.3);
}
.social-floating-dock.dock-visible {
  transform: translateY(-50%) translateX(0);
}
.dock-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
}
.dock-item:hover { color: #fff; transform: scale(1.18) translateX(-3px); }
.dock-item.di-instagram:hover { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.dock-item.di-facebook:hover  { background: #1877F2; }
.dock-item.di-youtube:hover   { background: #FF0000; }
.dock-item.di-x:hover         { background: rgba(255,255,255,0.12); }
.dock-item.di-threads:hover   { background: rgba(255,255,255,0.1); }
.dock-item.di-whatsapp:hover  { background: #25D366; }
.dock-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,15,30,0.96);
  color: #fff;
  padding: 4px 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  letter-spacing: 0.03em;
}
.dock-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10,15,30,0.96);
}
.dock-item:hover .dock-tooltip { opacity: 1; }

/* Mobile: bottom dock */
@media (max-width: 768px) {
  .social-floating-dock {
    right: 0; left: 0; top: auto; bottom: 0;
    transform: translateY(110%);
    flex-direction: row;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255,255,255,0.09);
    border-bottom: none;
    padding: 10px 12px 14px;
    gap: 6px;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
  }
  .social-floating-dock.dock-visible { transform: translateY(0); }
  .dock-item:hover { transform: scale(1.18) translateY(-3px); }
  .dock-tooltip { display: none; }
}

/* =====================================================
   DIGITAL ECOSYSTEM SECTION
   ===================================================== */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f0fc 40%, #eef4ff 70%, #f5f8ff 100%);
  padding-bottom: 0;
}

.eco-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Section header */
.eco-header { position: relative; z-index: 2; padding-top: 80px; }
.eco-badge  { background: rgba(0,100,255,.08) !important; border-color: rgba(0,100,255,.2) !important; color: #0055cc !important; }
.eco-title  { color: #0a1a3a !important; }
.eco-subtitle { color: #4a5a7a !important; }

/* ══════════════════════════════════════════
   ORBITAL SYSTEM
   ══════════════════════════════════════════ */

.orbit-system {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  /* height driven by aspect ratio so it's always a square */
  aspect-ratio: 1 / 1;
  /* clamp to sensible sizes */
  height: min(680px, 90vw);
  max-height: 680px;
}

/* ── Central Hub ── */
.orbit-hub {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.orbit-hub-core {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #ddeeff);
  border: 2.5px solid rgba(0,100,255,.28);
  box-shadow:
    0 0 0 8px rgba(0,100,255,.06),
    0 0 0 18px rgba(0,100,255,.03),
    0 12px 40px rgba(0,80,200,.18),
    inset 0 2px 0 rgba(255,255,255,.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  pointer-events: auto;
  cursor: default;
  animation: hubBreath 4s ease-in-out infinite;
}
@keyframes hubBreath {
  0%,100% { box-shadow: 0 0 0 8px rgba(0,100,255,.06), 0 0 0 18px rgba(0,100,255,.03), 0 12px 40px rgba(0,80,200,.18), inset 0 2px 0 rgba(255,255,255,.95); }
  50%      { box-shadow: 0 0 0 12px rgba(0,100,255,.10), 0 0 0 26px rgba(0,100,255,.05), 0 16px 48px rgba(0,80,200,.24), inset 0 2px 0 rgba(255,255,255,.95); }
}

.orbit-hub-core img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

.orbit-hub-label {
  font-size: 9px;
  font-weight: 800;
  color: #0a2060;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Ambient glow behind hub */
.orbit-hub-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,255,.16) 0%, rgba(0,80,200,.06) 55%, transparent 75%);
  animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Decorative inner rings on hub */
.orbit-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,100,255,.18);
  pointer-events: none;
}
.orh-r1 { width: 160px; height: 160px; animation: spinCW 12s linear infinite; }
.orh-r2 { width: 190px; height: 190px; border-style: solid; border-color: rgba(0,80,200,.09); animation: spinCCW 18s linear infinite; }

/* Pulse rings emitted from hub */
.orbit-hub-pulse {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,130,255,.4);
  pointer-events: none;
  animation: hubPulse 3s ease-out infinite;
}
.orbit-hub-pulse.p1 { width: 130px; height: 130px; animation-delay: 0s; }
.orbit-hub-pulse.p2 { width: 130px; height: 130px; animation-delay: 1.5s; }
@keyframes hubPulse {
  0%   { transform: scale(1); opacity: .85; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Orbit Tracks (decorative rings) ── */
.orbit-track {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ot-inner {
  width: 52%;
  height: 52%;
  border: 1px dashed rgba(0,100,255,.18);
  animation: spinCW 22s linear infinite;
}
.ot-outer {
  width: 86%;
  height: 86%;
  border: 1px solid rgba(0,60,160,.11);
  animation: spinCCW 34s linear infinite;
}
@keyframes spinCW  { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spinCCW { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* ── Orbit Nodes (JS-positioned absolutely in orbit-system) ── */
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  /* JS sets left/top via transform: translate(cx+x-50%, cy+y-50%) */
  z-index: 5;
}

.orbit-node img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2.5px solid rgba(0,100,255,.25);
  box-shadow: 0 4px 16px rgba(0,80,200,.15), 0 1px 4px rgba(0,0,0,.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  display: block;
  flex-shrink: 0;
}
.orbit-node:hover img {
  border-color: rgba(0,160,255,.65);
  box-shadow: 0 0 24px rgba(0,120,255,.35), 0 6px 20px rgba(0,80,200,.22);
  transform: scale(1.2);
}

.on-edu img {
  border-color: rgba(16,120,80,.3);
  box-shadow: 0 4px 16px rgba(10,80,50,.14);
}
.on-edu:hover img {
  border-color: rgba(20,180,90,.65);
  box-shadow: 0 0 22px rgba(20,160,80,.32);
  transform: scale(1.2);
}

.orbit-node span {
  font-size: 8.5px;
  font-weight: 700;
  color: #1a3060;
  text-align: center;
  line-height: 1.2;
  max-width: 66px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(255,255,255,.95);
  pointer-events: none;
  letter-spacing: 0.02em;
}
.on-edu span { color: #0a4030; }

/* ── Tooltip ── */
.orbit-tooltip {
  position: absolute;
  z-index: 30;
  background: rgba(10,20,50,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e8f0ff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.orbit-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Partner logo marquee strip ── */
.eco-logo-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 32px 0 48px;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  border-top: 1px solid rgba(0,80,200,.1);
  background: rgba(255,255,255,.6);
}
.eco-logo-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: logoScroll 28s linear infinite;
  width: max-content;
}
.eco-logo-item {
  width: 72px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,100,255,.12);
  padding: 6px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,60,180,.07);
}
.eco-logo-item:hover {
  background: #f0f6ff;
  border-color: rgba(0,120,255,.3);
  box-shadow: 0 4px 16px rgba(0,80,200,.14);
}
.eco-logo-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%) brightness(0.95);
  transition: filter 0.3s;
}
.eco-logo-item:hover img { filter: grayscale(0%) brightness(1); }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .orbit-system { max-width: 98vw; height: min(520px, 92vw); }
  .orbit-hub-core { width: 100px; height: 100px; }
  .orbit-hub-core img { width: 52px; height: 52px; }
  .orbit-hub-glow { width: 160px; height: 160px; }
  .orh-r1 { width: 120px; height: 120px; }
  .orh-r2 { width: 145px; height: 145px; }
  .orbit-node img { width: 42px; height: 42px; }
  .orbit-node span { font-size: 7.5px; max-width: 50px; }
  .eco-header { padding-top: 60px; }
}
@media (max-width: 480px) {
  .orbit-system { height: min(400px, 96vw); }
  .orbit-hub-core { width: 80px; height: 80px; }
  .orbit-hub-core img { width: 42px; height: 42px; }
  .orbit-hub-label { font-size: 7px; }
  .orbit-node img { width: 34px; height: 34px; }
  .orbit-node span { display: none; }
}

/* ============================================================
   RESEARCH & DEVELOPMENT SECTION
   ============================================================ */
/* ===================================================
   R&D SECTION — MODERN REDESIGN
   =================================================== */

.rnd-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f4fc 0%, #e8eef8 40%, #f5f8ff 100%);
}
.dark .rnd-section {
  background: linear-gradient(160deg, #0a0f1e 0%, #0d1526 40%, #091020 100%);
}

.rnd-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rnd-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,86,210,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,86,210,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

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

/* ── Header ── */
.rnd-badge { gap: 10px; }

.rnd-badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: rndDotPulse 2.2s ease-in-out infinite;
}
@keyframes rndDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0,86,210,.45); }
  50%       { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 0 7px rgba(0,86,210,0); }
}

.rnd-title-accent {
  background: linear-gradient(135deg, #0056D2 0%, #00BFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rnd-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  font-style: italic;
}

.rnd-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Domain Cards ── */
.rnd-domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 64px 0 0;
}

.rnd-domain-card {
  position: relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,86,210,.13);
  border-radius: var(--radius-xl);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
  transition:
    transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.45s ease,
    border-color 0.3s;
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  cursor: default;
}
.dark .rnd-domain-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(0,86,210,.17);
  box-shadow: 0 4px 28px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.rnd-domain-card.rnd-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.65s ease var(--dc-delay,0ms),
    transform 0.75s cubic-bezier(0.34,1.56,0.64,1) var(--dc-delay,0ms),
    box-shadow 0.45s ease,
    border-color 0.3s;
}
.rnd-domain-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 28px 64px rgba(0,86,210,.16), 0 4px 24px rgba(0,0,0,.08);
  border-color: rgba(0,86,210,.26);
}

/* Animated gradient top-border */
.rnd-domain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0056D2, #00BFFF, #0056D2);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.35s;
  animation: rndSlide 2.8s linear infinite;
}
.rnd-domain-card:hover::before,
.rnd-domain-featured::before { opacity: 1; }
@keyframes rndSlide {
  0%   { background-position: 0% 50%;   }
  100% { background-position: 200% 50%; }
}

/* Shine sweep */
.rnd-domain-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.18) 50%, transparent 62%);
  transition: left 0.58s ease;
  pointer-events: none;
}
.rnd-domain-card:hover::after { left: 160%; }

/* Ambient glow blob */
.rnd-dc-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,86,210,.07) 0%, transparent 70%);
  top: -70px; right: -70px;
  pointer-events: none;
  transition: opacity 0.4s;
}
.rnd-dc-glow-feat {
  background: radial-gradient(circle, rgba(0,132,255,.14) 0%, transparent 70%);
  width: 260px; height: 260px;
  top: -80px; right: -80px;
}
.rnd-domain-card:hover .rnd-dc-glow { opacity: 1.8; }

/* Featured card */
.rnd-domain-featured {
  background: linear-gradient(150deg, rgba(0,86,210,.09) 0%, rgba(0,212,255,.05) 100%);
  border-color: rgba(0,86,210,.28);
  box-shadow: 0 8px 36px rgba(0,86,210,.13), inset 0 1px 0 rgba(255,255,255,.7);
}
.dark .rnd-domain-featured {
  background: linear-gradient(150deg, rgba(0,86,210,.16) 0%, rgba(0,212,255,.08) 100%);
  border-color: rgba(0,86,210,.32);
}
.rnd-domain-featured:hover {
  box-shadow: 0 32px 72px rgba(0,86,210,.22), 0 4px 24px rgba(0,0,0,.08);
}

.rnd-dc-feat-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: linear-gradient(135deg, #0056D2, #0A84FF);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,86,210,.35);
}

.rnd-dc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
  user-select: none;
}

.rnd-dc-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,86,210,.12), rgba(0,212,255,.08));
  border: 1px solid rgba(0,86,210,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
.rnd-domain-card:hover .rnd-dc-icon {
  background: linear-gradient(135deg, rgba(0,86,210,.22), rgba(0,212,255,.16));
  box-shadow: 0 0 28px rgba(0,86,210,.28);
  transform: scale(1.12) rotate(-6deg);
}

.rnd-dc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.rnd-dc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}

.rnd-dc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.rnd-dc-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,86,210,.08);
  border: 1px solid rgba(0,86,210,.14);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: .02em;
  transition: background 0.25s, border-color 0.25s;
}
.rnd-domain-card:hover .rnd-dc-tags span {
  background: rgba(0,86,210,.13);
  border-color: rgba(0,86,210,.24);
}

/* ── Metrics Bar ── */
.rnd-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  margin: 52px 0 0;
  box-shadow: var(--shadow);
  gap: 0;
}

.rnd-metric-item {
  flex: 1;
  text-align: center;
  padding: 0 28px;
}

.rnd-metric-val {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.rnd-metric-val span:last-child {
  font-size: 28px;
  font-weight: 700;
}

.rnd-metric-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .02em;
}

.rnd-metric-sep {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Innovation Pipeline ── */
.rnd-pipeline-wrap {
  margin: 80px 0 0;
  text-align: center;
}

.rnd-pipeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 56px;
}

/* Outer scroll wrapper for mobile */
.rnd-pipeline-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.rnd-pipeline-scroll::-webkit-scrollbar { display: none; }

.rnd-pipeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 32px;
  min-width: 600px;
}

/* ── Connecting line — JS positions this precisely ── */
.rnd-pipe-track {
  position: absolute;
  height: 2px;
  background: rgba(0,86,210,.13);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}

.rnd-pipe-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: #0056D2;
  border-radius: 2px;
  transition: width 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Each step ── */
.rnd-pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 100px;
  position: relative;
  z-index: 2;
}

/* ── The circle ──
   Start at scale(0.6) opacity(0) — exactly matching the animation's 0% keyframe
   so there is ZERO flash when the animation begins.
── */
.rnd-pipe-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,86,210,.08);
  border: 2px solid rgba(0,86,210,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  color: rgba(0,86,210,.25);
  box-shadow: none;
  opacity: 0;
  transform: scale(0.6);
  /* No transitions on opacity/transform — animation fully controls those */
}
.dark .rnd-pipe-dot {
  background: rgba(0,86,210,.1);
  border-color: rgba(0,86,210,.22);
}

/* ── Lit state: only visual properties — NO opacity/transform (animation owns those) ── */
.rnd-pipe-step.rnd-pipe-lit .rnd-pipe-dot {
  background: #1754d0;
  border-color: #1754d0;
  color: #ffffff;
  box-shadow:
    0 8px 28px rgba(23,84,208,.42),
    0 2px 10px rgba(23,84,208,.22);
}

/* ── Pop entrance animation — added by JS, never removed (forwards keeps final state) ── */
.rnd-pipe-dot.rnd-dot-enter {
  animation: rndDotEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes rndDotEnter {
  0%   { opacity: 0;  transform: scale(0.6);  }   /* matches base — no flash */
  55%  { opacity: 1;  transform: scale(1.18); }
  78%  {              transform: scale(0.94); }
  100% { opacity: 1;  transform: scale(1);    }
}

/* ── Labels ── */
.rnd-pipe-step span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: none;
  user-select: none;
}
.rnd-pipe-step.rnd-pipe-lit span {
  color: #1754d0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease 0.22s, transform 0.45s ease 0.22s, color 0s;
}

/* ── Tech Domain Cards ── */
.rnd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 80px 0 0;
}

.rnd-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,86,210,.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
  transition:
    transform 0.42s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.42s ease,
    border-color 0.3s;
  animation: rndCardFloat 5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.dark .rnd-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(0,86,210,.16);
  box-shadow: 0 4px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}
@keyframes rndCardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Gradient top-border on hover */
.rnd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0056D2, #00BFFF, #0056D2);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.35s;
  animation: rndSlide 2.8s linear infinite;
}
.rnd-card:hover::before { opacity: 1; }

/* Shine sweep */
.rnd-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.14) 50%, transparent 62%);
  transition: left 0.58s ease;
  pointer-events: none;
}
.rnd-card:hover::after { left: 160%; }

.rnd-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 24px 60px rgba(0,86,210,.16), 0 4px 20px rgba(0,0,0,.08);
  border-color: rgba(0,86,210,.22);
  animation-play-state: paused;
}

.rnd-card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,86,210,.1), rgba(0,132,255,.07));
  border: 1px solid rgba(0,86,210,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition:
    background 0.38s,
    box-shadow 0.38s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.rnd-card:hover .rnd-card-icon {
  background: linear-gradient(135deg, rgba(0,86,210,.2), rgba(0,132,255,.14));
  box-shadow: 0 0 24px rgba(0,86,210,.24);
  transform: scale(1.12) rotate(-6deg);
}

.rnd-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.rnd-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Final Statement ── */
.rnd-final {
  position: relative;
  margin: 60px auto 0;
  max-width: 840px;
  text-align: center;
  padding: 40px 52px;
  background: linear-gradient(140deg, rgba(0,86,210,.07), rgba(0,212,255,.04));
  border: 1px solid rgba(0,86,210,.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.rnd-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0056D2, #00BFFF);
  animation: rndSlide 3s linear infinite;
  background-size: 200% 100%;
}
.rnd-final-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,86,210,.07) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.rnd-final p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 0;
  position: relative;
}
.rnd-final p strong { color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .rnd-domains { grid-template-columns: 1fr 1fr; }
  .rnd-domain-featured { grid-column: 1 / -1; }
  .rnd-metrics { padding: 28px 24px; }
  .rnd-metric-item { padding: 0 18px; }
}
@media (max-width: 768px) {
  .rnd-domains { grid-template-columns: 1fr; }
  .rnd-domain-featured { grid-column: auto; }
  .rnd-metrics { flex-wrap: wrap; gap: 28px; padding: 28px 20px; }
  .rnd-metric-sep { display: none; }
  .rnd-metric-item { flex: 0 0 calc(50% - 28px); padding: 0; }
  .rnd-cards { grid-template-columns: 1fr 1fr; }
  .rnd-final { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .rnd-cards { grid-template-columns: 1fr; }
  .rnd-metric-item { flex: 0 0 100%; }
  .rnd-final { padding: 24px 20px; }
}

/* ===================================================
   DARK THEME — ECOSYSTEM SECTION OVERRIDES
   =================================================== */
.dark .ecosystem-section {
  background: linear-gradient(160deg, #0d1b2e 0%, #0f2040 40%, #0a1a30 70%, #0d1525 100%);
}

.dark .eco-badge {
  background: rgba(0,100,255,.14) !important;
  border-color: rgba(0,130,255,.25) !important;
  color: #60a5fa !important;
}

.dark .eco-title  { color: #e2eaff !important; }
.dark .eco-subtitle { color: #94a3b8 !important; }

.dark .orbit-hub-core {
  background: linear-gradient(145deg, #1e3a5f, #0d2d4e);
  border-color: rgba(0,130,255,.45);
  box-shadow:
    0 0 0 8px rgba(0,100,255,.08),
    0 0 0 18px rgba(0,100,255,.04),
    0 12px 40px rgba(0,80,200,.3),
    inset 0 2px 0 rgba(255,255,255,.08);
}

.dark .orbit-hub-label { color: #93c5fd; }

.dark .orbit-node img {
  background: #1e293b;
  border-color: rgba(0,130,255,.35);
  box-shadow: 0 4px 16px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.2);
}

.dark .orbit-node span { color: #bfdbfe; text-shadow: 0 1px 3px rgba(0,0,0,.8); }
.dark .on-edu span    { color: #6ee7b7; }

.dark .eco-logo-strip {
  background: rgba(15,23,42,.6);
  border-top-color: rgba(0,80,200,.2);
}

.dark .eco-logo-item {
  background: #1e293b;
  border-color: rgba(0,100,255,.18);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.dark .eco-logo-item:hover {
  background: #243447;
  border-color: rgba(0,150,255,.4);
  box-shadow: 0 4px 16px rgba(0,80,200,.3);
}

.dark .eco-logo-item img {
  filter: grayscale(20%) brightness(1.1);
}

.dark .eco-logo-item:hover img {
  filter: grayscale(0%) brightness(1.2);
}
