/* ═══════════════════════════════════════
   IKSATECH — Professional Dark Theme
   Deep Space Tech — Modern & Premium
═══════════════════════════════════════ */

:root {
  /* ── Backgrounds — Corporate Light System ── */
  --bg:        #ffffff;      /* fond principal — blanc */
  --bg-light:  #f7f8fa;     /* sections alternées — gris très clair */
  --bg-card:   #ffffff;     /* cartes — blanc */
  --bg-darker: #f1f3f5;     /* zones d'accentuation gris moyen */
  --bg-glass:  rgba(255,255,255,0.85); /* glassmorphism clair */
  --bg-navy:   #0b1426;     /* fond sombre pour hero et footer */

  /* ── Textes ── */
  --ink:       #0b1426;     /* marine profond pour titres */
  --ink-soft:  #334155;     /* charcoal / ardoise sombre pour texte de corps */
  --ink-faint: #64748b;     /* ardoise moyenne pour petits textes et légendes */

  /* ── Accent Principal — Bleu B2B Corporate ── */
  --accent:       #0066ff;    /* bleu moderne type IBM/Accenture */
  --accent-light: #4d94ff;    /* bleu clair pour surbrillance */
  --accent-glow:  rgba(0,102,255,0.06); /* lueur bleue très discrète */
  --accent-deep:  #0044cc;    /* bleu marine accentué */

  /* ── Gold Premium (re-mappé vers le bleu pour compatibilité des styles existants) ── */
  --gold:       #0066ff;
  --gold-light: #4d94ff;
  --gold-glow:  rgba(0,102,255,0.05);

  /* ── Lignes & Bordures ── */
  --line:       #e2e8f0;    /* bordures gris clair standard B2B */
  --line-hover: #cbd5e1;    /* bordures survolées */

  /* ── Gradients ── */
  --grad-hero: linear-gradient(135deg, #0b1426 0%, #111d33 60%, #1b2d4a 100%); /* gradient marine de l'hero */
  --grad-card: linear-gradient(145deg, #ffffff, #f8fafc);
  --grad-accent: linear-gradient(135deg, #0066ff, #0044cc);

  --white: #ffffff;
}

/* ── Accessibilité : focus clavier visible (n'apparaît qu'au clavier, aucun impact visuel à la souris) ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Amélioration globale ── */


body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── SPLASH INTRO ─── */
body.splash-active { overflow: hidden; }

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1426;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.splash-screen.is-exiting .splash-content {
  animation: splash-content-out 0.65s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  position: relative;
  text-align: center;
}

.splash-content::before {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, rgba(0,102,255,0.06) 35%, transparent 70%);
  pointer-events: none;
  animation: splash-glow-breathe 2.4s ease-in-out infinite;
}

.splash-text {
  position: relative;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(42px, 11vw, 110px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.splash-letter {
  display: inline-block;
  background: linear-gradient(135deg, #00d2ff 0%, #0066ff 50%, #0044cc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0,102,255,0.35));
  animation: splash-letter-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.splash-text.is-complete .splash-letter {
  animation: splash-letter-shimmer 0.9s ease-in-out;
}

.splash-text.is-complete .splash-letter:nth-child(odd) {
  animation-delay: 0.05s;
}

.splash-cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  font-weight: 300;
  text-shadow: 0 0 12px rgba(0,102,255,0.6);
  animation: splash-blink 0.75s step-end infinite;
}

.splash-cursor.is-done { opacity: 0; animation: none; }

@keyframes splash-blink {
  50% { opacity: 0; }
}

@keyframes splash-letter-in {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.45) rotateX(70deg);
    filter: drop-shadow(0 0 0 transparent);
  }
  55% {
    opacity: 1;
    transform: translateY(-6px) scale(1.12);
    filter: drop-shadow(0 0 22px rgba(240,199,94,0.85));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: drop-shadow(0 0 14px rgba(212,175,55,0.45));
  }
}

@keyframes splash-letter-shimmer {
  0%, 100% {
    background-position: 0% center;
    filter: drop-shadow(0 0 14px rgba(212,175,55,0.45));
  }
  50% {
    background-position: 100% center;
    filter: drop-shadow(0 0 26px rgba(240,199,94,0.95));
  }
}

@keyframes splash-glow-breathe {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes splash-content-out {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(6px);
  }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── TYPOGRAPHY ─── */
.eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: var(--ink); }
.section-sub { font-size: 17px; color: var(--ink-soft); margin-top: 14px; max-width: 540px; }
.lead { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; text-align: justify; }
.body-text { font-size: 16px; line-height: 1.8; color: var(--ink-faint); margin-top: 16px; text-align: justify; }
.section { padding: 110px 0; position: relative; z-index: 60; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-sub { margin: 14px auto 0; }


/* ═══════════ NAVBAR ═══════════ */
.nav-logo-img {
  height: 64px; width: auto;
  object-fit: contain; transition: all .3s ease;
}
.nav-logo-img:hover { opacity: .85; }

.navbar:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}
.navbar.scrolled .nav-logo-img {
  height: 48px;
}


.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 14px 32px;
}

/* Nav links container — pill style */
.nav-links {
  display: flex; gap: 4px; list-style: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 4px;
}
.navbar.scrolled .nav-links {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  transition: all .2s;
  display: block;
  white-space: nowrap;
}
.navbar.scrolled .nav-links a {
  color: var(--ink-soft);
}
.nav-links a:hover { color: #ffffff; }
.navbar.scrolled .nav-links a:hover { color: var(--ink); }

/* Active state */
.nav-links a.active {
  color: var(--accent);
  background: rgba(0, 102, 255, 0.08);
}

/* Tubelight effect on active */
.nav-links a.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
  box-shadow:
    0 0 8px rgba(0, 102, 255, 0.8),
    0 0 16px rgba(0, 102, 255, 0.4),
    0 0 30px rgba(0, 102, 255, 0.2);
  animation: tubeOn .3s ease forwards;
}

/* Glow halo */
.nav-links a.active::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 14px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: tubeOn .3s ease forwards;
}

@keyframes tubeOn {
  from { opacity: 0; transform: translateX(-50%) scaleX(0.3); }
  to   { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

.nav-cta {
  background: var(--accent); color: #0a0805;
  border: none; padding: 10px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.navbar:not(.scrolled) .nav-burger span { background: #ffffff; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #050505 40%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.hero-bigtext {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  perspective: 1200px;
  pointer-events: none;
}

.hero-bigtext img {

  width: clamp(320px, 52vw, 680px);
  height: auto;
  display: block;
  transform-style: preserve-3d;
  will-change: transform, filter;
  --rx: 0deg;
  --ry: 0deg;
  transform: translateZ(30px) rotateX(var(--rx)) rotateY(var(--ry));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,100% {
    translate: 0 0;
    filter: drop-shadow(0 15px 40px rgba(0,102,255,0.25)) drop-shadow(0 0 25px rgba(0,210,255,0.15));
  }
  50% {
    translate: 0 -14px;
    filter: drop-shadow(0 30px 55px rgba(0,102,255,0.35)) drop-shadow(0 0 40px rgba(0,210,255,0.25));
  }
}
.hero-corner-tl { position: absolute; top: 100px; left: 48px; z-index: 10; font-size: 36px; color: var(--ink); opacity: .4; }
.hero-corner-tr { position: absolute; top: 108px; right: 48px; z-index: 10; display: flex; gap: 3px; align-items: flex-end; }
.hero-corner-tr span { width: 3px; background: var(--accent); opacity: .5; }
.hero-exp-tag { position: absolute; bottom: 200px; right: 48px; z-index: 10; font-family: 'Space Grotesk'; font-size: 13px; letter-spacing: 2px; color: var(--ink-soft); }
.hero-subtitle {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; text-align: center; width: 90%; max-width: 850px;
}
.hero-subtitle h2 {
  font-size: clamp(16px, 2.2vw, 24px); line-height: 1.5; letter-spacing: 0.5px;
  color: #ffffff; font-weight: 500; margin-bottom: 20px;
}
.hero-subtitle p {
  font-size: 14px; color: var(--accent-light); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 36px;
}
.hero-btn { background: var(--accent); color: #ffffff; border: none; padding: 14px 32px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .3s; }
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,102,255,0.25); }

/* ═══════════ ABOUT ═══════════ */

.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; text-align: center; transition: transform .3s; }
.stat-box:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.35); }
.stat-num, .stat-num-text { display: block; font-size: 44px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-num-text { font-size: 38px; }
.stat-label { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 8px; letter-spacing: 1px; }

/* ═══════════ SERVICES ═══════════ */
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 22px; padding: 38px; transition: all .35s ease; overflow: hidden;
}

.service-num { position: absolute; top: 28px; right: 34px; font-family: 'Space Grotesk'; font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.05); }
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; color: var(--ink); }
.service-card ul { list-style: none; }
.service-card li { font-size: 15px; color: var(--ink-soft); padding: 7px 0 7px 22px; position: relative; }
.service-card li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); }

/* ═══════════ PRODUCTS ═══════════ */
.products { background: var(--bg-darker); color: #fff; }
.products .section-title { color: #fff; }
.products .eyebrow { color: var(--accent); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 22px; padding: 36px; transition: all .35s ease;
}
.product-card:hover { background: #1a1408; transform: translateY(-6px); border-color: rgba(212,175,55,0.35); }
.product-badge { display: inline-block; font-family: 'Space Grotesk'; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--gold); border: 1px solid rgba(200,160,77,0.4); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.product-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.product-card p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 22px; text-align: justify; }
.product-link { color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 600; }

/* ═══════════ WHY ═══════════ */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 32px 22px; border-radius: 18px; transition: all .3s; border: 1px solid transparent; }
.why-card:hover { background: var(--bg-card); transform: translateY(-5px); border-color: var(--line); }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.why-icon svg { width: 38px; height: 38px; stroke-width: 1.5; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); text-align: justify; }

/* ═══════════ INDUSTRIES ═══════════ */
.industries { background: var(--bg-light); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card { background: var(--bg-card); border: 1px solid var(--line); border-top-width: 3px; border-radius: 20px; padding: 28px 28px 32px; transition: transform .3s, box-shadow .3s; overflow: visible; position: relative; }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }

.industry-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform .3s;
}
.industry-icon img { width: 100%; height: 100%; object-fit: contain; }
.industry-card:hover .industry-icon { transform: scale(1.06); }

.ind-icon-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: ind-icon-float 6.5s ease-in-out infinite;
  will-change: transform;
}

.ind-icon-base {
  position: absolute;
  width: 68%;
  height: 68%;
  left: 16%;
  top: 30%;
  border-radius: 14%;
  background: linear-gradient(145deg, rgba(212,175,55,0.22), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.32);
  transform: rotateX(68deg) rotateZ(45deg) translateZ(-24px);
  box-shadow: 0 22px 34px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
}

.ind-icon-base--diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border-radius: 0;
  animation: ind-diamond-spin 12s linear infinite;
}

.ind-icon-base--round {
  border-radius: 50%;
  transform: rotateX(72deg) translateZ(-20px);
}

.ind-icon-base--shelf {
  width: 78%;
  height: 22%;
  top: 58%;
  left: 11%;
  border-radius: 6px;
  transform: rotateX(78deg) translateZ(-8px);
}

.ind-icon-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(36px);
  color: rgba(240,199,94,0.95);
  filter: drop-shadow(0 6px 18px rgba(212,175,55,0.45));
}

.ind-icon-core svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.45;
}

/* ── Factory: isometric stack + smoke ── */
.ind-icon-stack {
  position: absolute;
  top: 18%;
  right: 14%;
  transform: translateZ(12px) rotateX(55deg) rotateZ(-30deg);
  display: flex;
  gap: 4px;
}

.ind-icon-stack span {
  display: block;
  width: 12px;
  height: 18px;
  background: linear-gradient(180deg, rgba(240,199,94,0.7), rgba(156,122,31,0.5));
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 2px;
  animation: ind-stack-pulse 2.4s ease-in-out infinite;
}

.ind-icon-stack span:nth-child(2) { height: 24px; animation-delay: 0.3s; }
.ind-icon-stack span:nth-child(3) { height: 15px; animation-delay: 0.6s; }

.ind-icon-smoke span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240,199,94,0.25);
  filter: blur(2px);
  transform: translateZ(48px);
}

.ind-icon-smoke span:first-child {
  top: 8%;
  right: 22%;
  animation: ind-smoke-rise 3s ease-out infinite;
}

.ind-icon-smoke span:last-child {
  top: 12%;
  right: 30%;
  animation: ind-smoke-rise 3s ease-out infinite 1.2s;
}

.ind-icon-3d--factory .ind-icon-core {
  animation: ind-factory-bob 3.5s ease-in-out infinite;
}

/* ── Finance: prism + sparks ── */
.ind-icon-prism {
  position: absolute;
  inset: 22%;
  clip-path: polygon(50% 0%, 95% 35%, 75% 100%, 25% 100%, 5% 35%);
  background: linear-gradient(160deg, rgba(245,215,110,0.35), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.35);
  transform: translateZ(8px) rotateY(20deg);
  animation: ind-prism-tilt 4s ease-in-out infinite;
}

.ind-icon-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #f5d76e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(240,199,94,0.9);
  transform: translateZ(52px);
}

.ind-icon-3d--finance .ind-icon-spark:nth-of-type(1) {
  top: 14%; left: 18%;
  animation: ind-spark-float 2.8s ease-in-out infinite;
}

.ind-icon-3d--finance .ind-icon-spark:nth-of-type(2) {
  top: 28%; right: 12%;
  animation: ind-spark-float 3.2s ease-in-out infinite 0.6s;
}

.ind-icon-3d--finance .ind-icon-spark:nth-of-type(3) {
  bottom: 22%; left: 28%;
  animation: ind-spark-float 2.6s ease-in-out infinite 1.1s;
}

/* ── Health: pulse rings + ECG ── */
.ind-icon-pulse-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px solid rgba(240,199,94,0.4);
  transform: translateZ(4px);
  animation: ind-health-pulse 2.2s ease-out infinite;
}

.ind-icon-pulse-ring--2 {
  animation-delay: 1.1s;
}

.ind-icon-ecg {
  position: absolute;
  bottom: 22%;
  left: 10%;
  width: 80%;
  height: 18px;
  transform: translateZ(28px);
  background:
    linear-gradient(90deg, transparent 0%, transparent 18%, rgba(240,199,94,0.9) 18%, rgba(240,199,94,0.9) 20%, transparent 20%, transparent 38%, rgba(240,199,94,0.9) 38%, rgba(240,199,94,0.9) 42%, transparent 42%, transparent 58%, rgba(240,199,94,0.9) 58%, rgba(240,199,94,0.9) 59%, transparent 59%, transparent 72%, rgba(240,199,94,0.9) 72%, rgba(240,199,94,0.9) 78%, transparent 78%);
  mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  animation: ind-ecg-scroll 1.8s linear infinite;
  opacity: 0.85;
}

.ind-icon-3d--health .ind-icon-core {
  animation: ind-heartbeat 1.6s ease-in-out infinite;
}

/* ── Retail: shelf + floating box + tags ── */
.ind-icon-float-box {
  position: absolute;
  top: 20%;
  right: 16%;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(240,199,94,0.55), rgba(156,122,31,0.35));
  border: 1px solid rgba(212,175,55,0.5);
  transform: translateZ(44px);
  animation: ind-box-float 3s ease-in-out infinite;
  box-shadow: 0 8px 16px rgba(0,0,0,0.35);
}

.ind-icon-tag {
  position: absolute;
  width: 14px;
  height: 8px;
  border-radius: 2px;
  background: rgba(212,175,55,0.55);
  transform: translateZ(50px) rotate(-12deg);
  top: 16%;
  left: 12%;
  animation: ind-tag-sway 2.5s ease-in-out infinite;
}

.ind-icon-tag--2 {
  top: 32%;
  right: 10%;
  left: auto;
  animation-delay: 0.8s;
  transform: translateZ(46px) rotate(10deg);
}

/* ── Logistics: 3D road + route ── */
.ind-icon-road {
  position: absolute;
  width: 88%;
  height: 34%;
  left: 6%;
  bottom: 8%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(30,30,30,0.9), rgba(10,10,10,0.95));
  border: 1px solid rgba(212,175,55,0.25);
  transform: rotateX(72deg) translateZ(-10px);
  box-shadow: 0 16px 24px rgba(0,0,0,0.5);
}

.ind-icon-route-line {
  position: absolute;
  width: 70%;
  height: 3px;
  left: 15%;
  bottom: 28%;
  background: repeating-linear-gradient(90deg, rgba(240,199,94,0.85) 0 10px, transparent 10px 18px);
  transform: rotateX(72deg) translateZ(6px);
  animation: ind-route-move 1.2s linear infinite;
}

.ind-icon-pin {
  position: absolute;
  top: 10%;
  right: 18%;
  width: 10px;
  height: 10px;
  background: #f0c75e;
  border-radius: 50% 50% 50% 0;
  transform: translateZ(40px) rotate(-45deg);
  box-shadow: 0 0 12px rgba(240,199,94,0.8);
  animation: ind-pin-drop 2.8s ease-in-out infinite;
}

.ind-icon-3d--logistics .ind-icon-core {
  animation: ind-truck-drive 2.4s ease-in-out infinite;
}

/* ── SME: rising blocks ── */
.ind-icon-block {
  position: absolute;
  bottom: 28%;
  background: linear-gradient(180deg, rgba(240,199,94,0.5), rgba(156,122,31,0.35));
  border: 1px solid rgba(212,175,55,0.4);
  transform-style: preserve-3d;
}

.ind-icon-block--1 {
  left: 22%;
  width: 18px;
  height: 22px;
  transform: translateZ(10px);
  animation: ind-block-rise 3s ease-in-out infinite;
}

.ind-icon-block--2 {
  left: 42%;
  width: 16px;
  height: 30px;
  transform: translateZ(18px);
  animation: ind-block-rise 3s ease-in-out infinite 0.4s;
}

.ind-icon-block--3 {
  left: 58%;
  width: 14px;
  height: 18px;
  transform: translateZ(8px);
  animation: ind-block-rise 3s ease-in-out infinite 0.8s;
}

.ind-icon-3d--sme .ind-icon-core {
  animation: ind-building-glow 3.2s ease-in-out infinite;
}





@keyframes ind-icon-float {
  0%, 100% { transform: rotateY(-10deg) rotateX(12deg) translateY(0); }
  50%       { transform: rotateY(10deg) rotateX(-8deg) translateY(-8px); }
}

@keyframes ind-diamond-spin {
  from { transform: rotateX(68deg) rotateZ(45deg) translateZ(-24px) rotateZ(0deg); }
  to   { transform: rotateX(68deg) rotateZ(45deg) translateZ(-24px) rotateZ(360deg); }
}

@keyframes ind-stack-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%       { transform: translateY(-4px); opacity: 1; }
}

@keyframes ind-smoke-rise {
  0%   { transform: translateZ(48px) translateY(0) scale(0.6); opacity: 0.7; }
  100% { transform: translateZ(58px) translateY(-28px) scale(1.4); opacity: 0; }
}

@keyframes ind-factory-bob {
  0%, 100% { transform: translateZ(36px) translateY(0); }
  50%       { transform: translateZ(44px) translateY(-5px); }
}

@keyframes ind-prism-tilt {
  0%, 100% { transform: translateZ(8px) rotateY(-18deg); }
  50%       { transform: translateZ(16px) rotateY(18deg); }
}

@keyframes ind-spark-float {
  0%, 100% { transform: translateZ(52px) translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateZ(60px) translateY(-10px) scale(1.3); opacity: 0.6; }
}

@keyframes ind-health-pulse {
  0%   { transform: translateZ(4px) scale(0.75); opacity: 0.9; }
  70%  { transform: translateZ(4px) scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes ind-ecg-scroll {
  from { mask-position: 0 0; -webkit-mask-position: 0 0; }
  to   { mask-position: 60px 0; -webkit-mask-position: 60px 0; }
}

@keyframes ind-heartbeat {
  0%, 100% { transform: translateZ(36px) scale(1); }
  15%       { transform: translateZ(42px) scale(1.12); }
  30%       { transform: translateZ(36px) scale(1); }
  45%       { transform: translateZ(40px) scale(1.08); }
}

@keyframes ind-box-float {
  0%, 100% { transform: translateZ(44px) translateY(0) rotateY(0deg); }
  50%       { transform: translateZ(52px) translateY(-12px) rotateY(25deg); }
}

@keyframes ind-tag-sway {
  0%, 100% { transform: translateZ(50px) rotate(-12deg); }
  50%       { transform: translateZ(54px) rotate(6deg) translateY(-4px); }
}

@keyframes ind-route-move {
  from { background-position: 0 0; }
  to   { background-position: 36px 0; }
}

@keyframes ind-pin-drop {
  0%, 100% { transform: translateZ(40px) rotate(-45deg) translateY(0); }
  50%       { transform: translateZ(48px) rotate(-45deg) translateY(6px); }
}

@keyframes ind-truck-drive {
  0%, 100% { transform: translateZ(36px) translateX(0); }
  50%       { transform: translateZ(42px) translateX(6px); }
}

@keyframes ind-block-rise {
  0%, 100% { transform: translateZ(var(--bz, 10px)) translateY(0); }
  50%       { transform: translateZ(calc(var(--bz, 10px) + 8px)) translateY(-6px); }
}

.ind-icon-block--1 { --bz: 10px; }
.ind-icon-block--2 { --bz: 18px; }
.ind-icon-block--3 { --bz: 8px; }

@keyframes ind-building-glow {
  0%, 100% { filter: drop-shadow(0 6px 18px rgba(212,175,55,0.4)); }
  50%       { filter: drop-shadow(0 10px 28px rgba(240,199,94,0.75)); }
}

.industry-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.industry-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); text-align: left; }

/* ═══════════ EXPERTISE HEADER ═══════════ */
.expertise-eyebrow { position: relative; display: inline-block; padding-top: 16px; }
.expertise-eyebrow::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 3px; border-radius: 2px;
  background: var(--accent);
}
.expertise-gradient-text {
  color: var(--accent) !important;
}

/* ═══════════ EXPERTISE CARDS ═══════════ */
.industry-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 16px; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.industry-tags span { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }

.industry-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; text-decoration: none; margin-top: 14px; }
.industry-link span { transition: transform .2s; }
.industry-link:hover span { transform: translateX(4px); }

.industries-grid .industry-card { border-top-width: 3px !important; border-top-color: var(--accent) !important; }

.industry-num, .industry-link { color: var(--accent); }

.industry-tags span { background: rgba(0,102,255,.08); color: var(--accent); }

/* ═══════════ CERTIF ═══════════ */
.cert-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 20px 0 40px; }
.cert-frame {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cert-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}
.cert-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.cert-verify-link span { transition: transform .2s; }
.cert-verify-link:hover span { transform: translateX(4px); }
.certif { background: var(--bg); }
.certif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.certif-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px; padding: 40px; text-align: center; }
.ibm-logo { font-family: 'Space Grotesk'; font-size: 40px; font-weight: 700; letter-spacing: 4px; color: var(--ink); display: block; margin-bottom: 24px; }
.certif-card h4 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.certif-card > p { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; }
.certif-issued { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ═══════════ CLIENTS ═══════════ */

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--bg-darker); }
.contact .section-title { color: #fff; }
.contact .eyebrow { color: var(--accent); }
.contact .container { position: relative; z-index: 2; }
.cc-card { position: relative; z-index: 2; }

/* ─── ContactCard ─── */


   







.cc-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cc-info-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }


.cc-whatsapp-row { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px; }
.cc-whatsapp-btn { display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-size:13px; font-weight:700; color:#fff; background:#25D366; padding:9px 16px; border-radius:100px; transition:all .2s; }
.cc-whatsapp-btn:hover { background:#1ebe57; transform:translateY(-2px); }







.cc-field .cc-req { color:#f0c75e; }
.cc-field .cc-optional { font-weight:400; text-transform:none; letter-spacing:0; color:rgba(255,255,255,0.3); }
.cc-field input, .cc-field textarea, .cc-field select { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:10px; padding:11px 14px; font-family:'Inter',sans-serif; font-size:14px; color:#fff; outline:none; transition:border-color .2s; width:100%; }

.cc-field input:focus, .cc-field textarea:focus, .cc-field select:focus { border-color:rgba(212,175,55,0.4); }

.cc-field select { appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat:no-repeat; background-position:right 14px center; padding-right:34px; }
.cc-field select option { background:#12100b; color:#fff; }



/* ─── Map ─── */
.contact-map {
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  /* ← بلا max-width — كيتبع الـ container */
}.map-header { display:flex; align-items:center; gap:14px; padding:18px 24px; background:rgba(10,10,10,0.9); border-bottom:1px solid rgba(255,255,255,0.06); }
.map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.map-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.map-title { font-size:14px; font-weight:700; color:#fff; margin-bottom:2px; }
.map-sub { font-size:12px; color:rgba(255,255,255,0.45); }
.map-open-btn { margin-left:auto; text-decoration:none; font-size:12px; font-weight:700; color:#f0c75e; border:1px solid rgba(240,199,94,0.25); padding:7px 14px; border-radius:100px; transition:all .2s; white-space:nowrap; flex-shrink:0; }

.map-frame { height:220px; position:relative; filter:invert(90%) hue-rotate(180deg); transition:filter .4s ease; }
.map-frame:hover { filter:invert(0%) hue-rotate(0deg); }

/* ─── Responsive ─── */
@media(max-width:900px) { .cc-card { grid-template-columns:1fr; } .cc-right { border-left:none; border-top:1px solid rgba(255,255,255,0.06); } .cc-left { padding:32px 24px; } .cc-right { padding:28px 24px; } }
@media(max-width:560px) { .cc-info-grid { grid-template-columns:1fr; } .cc-span2 { grid-column:span 1; } }
/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--bg-darker); color: #fff; padding: 60px 0 28px; position: relative; z-index: 60; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo .logo-circle { border-color: var(--accent); color: var(--accent); }
.footer-brand .nav-logo .logo-name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col h3 { font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: 1px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color .2s; }

.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); transition: all .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg, .footer-social i { width: 15px; height: 15px; }
@media (max-width: 560px) { .footer-bottom { justify-content: center; text-align: center; } }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: rgba(10, 15, 30, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 16px;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    font-size: 15px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }
  .navbar.scrolled .nav-links a {
    color: var(--ink-soft) !important;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
  }
  .navbar.scrolled .nav-links a:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--ink) !important;
  }
  .nav-links a.active {
    color: var(--accent) !important;
    background: rgba(0, 102, 255, 0.08);
  }
  .nav-links a.active::before,
  .nav-links a.active::after {
    display: none !important;
  }
  .nav-cta { display: none; }
  .nav-burger { display: flex; z-index: 101; }
  
  /* Burger Animation */
  .nav-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-grid, .certif-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .products-grid, .why-grid, .industries-grid, .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-bigtext { font-size: 80px; letter-spacing: -3px; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .navbar { padding: 12px 16px; }
  .navbar.scrolled { padding: 10px 16px; }
}
@media (max-width: 560px) {
  .services-grid, .products-grid, .why-grid, .industries-grid, .footer-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   ENHANCED ANIMATIONS (all sections)
═══════════════════════════════════════ */

/* Staggered reveal */
.reveal { transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }

/* Card content above 3D effects layer */
.services-grid, .products-grid, .industries-grid, .why-grid,
.services .section-head, .products .section-head,
.industries .section-head, .why .section-head { position: relative; z-index: 2; }

/* Glowing border on hover */
.service-card, .product-card, .industry-card, .stat-box, .client-logo, .certif-card {
  position: relative;
}
.service-card::after, .product-card::after, .industry-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; background: linear-gradient(135deg, rgba(212,175,55,0.4), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.service-card:hover::after, .product-card:hover::after, .industry-card:hover::after { opacity: 1; }

/* Icon float on card hover */
.service-icon,
.industry-icon,
.why-icon,
.team-pole-icon,
.event-thumb {
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card:hover .service-icon,
.why-card:hover .why-icon,
.team-pole:hover .team-pole-icon,
.event-card:hover .event-thumb { transform: translateY(-6px) scale(1.12); }

/* Animated gradient text on titles */
.section-title { background: linear-gradient(120deg, #f8fafc 20%, #f0c75e 50%, #d4af37 70%, #f8fafc 90%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shineText 6s linear infinite; }
@keyframes shineText { to { background-position: 200% center; } }

/* Pulsing accent dots */
.eyebrow::before { content: '● '; color: var(--accent); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Stat number glow */
.stat-num, .stat-num-text { text-shadow: 0 0 24px rgba(212,175,55,0.4); }

/* Button shimmer */
.hero-btn, .contact-form button, .nav-cta { position: relative; overflow: hidden; }
.hero-btn::before, .contact-form button::before, .nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left .6s ease;
}
.hero-btn:hover::before, .contact-form button:hover::before, .nav-cta:hover::before { left: 100%; }

/* Float animation for badges */
.product-badge { animation: floatBadge 3s ease-in-out infinite; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* Client logos subtle pulse on view */


/* Smooth scale-in for cards when revealed */
.reveal.visible .service-card,
.reveal.visible .product-card,
.reveal.visible .industry-card { animation: cardIn .6s cubic-bezier(.16,1,.3,1) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════
   LAMP / GLOW EFFECT (Hero)
═══════════════════════════════════════ */
.lamp {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 60%; z-index: 2; pointer-events: none;
  display: flex; align-items: flex-start; justify-content: center;
  isolation: isolate;
}

/* Left cone */


@keyframes lampWidthL { from { width: 15rem; opacity: .4; } to { width: 30rem; opacity: 1; } }
@keyframes lampWidthR { from { width: 15rem; opacity: .4; } to { width: 30rem; opacity: 1; } }

/* Top glowing line */

@keyframes lampLine { from { width: 15rem; opacity: .5; } to { width: 30rem; opacity: 1; } }

/* Central glow ball */
.lamp-glow {
  position: absolute; top: 10rem; width: 28rem; height: 9rem;
  background: rgba(212,175,55,0.5); border-radius: 50%;
  filter: blur(60px); opacity: .8;
  animation: lampPulse 4s ease-in-out infinite;
}
@keyframes lampPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: .9; transform: scale(1.08); } }

/* Soft haze under the line */
.lamp-haze {
  position: absolute; top: 8rem; width: 16rem; height: 9rem;
  background: rgba(244,217,137,0.4); border-radius: 50%;
  filter: blur(50px);
  animation: lampHaze 1s ease-out .3s both;
}
@keyframes lampHaze { from { width: 8rem; } to { width: 16rem; } }

/* Make bigtext sit above lamp glow */
.hero-bigtext { z-index: 4; }
.hero-subtitle { z-index: 10; }

/* ═══════════════════════════════════════
   LAMP OVERRIDE — FULL PAGE SIZE
═══════════════════════════════════════ */
.lamp {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 100vh; z-index: 2; pointer-events: none;
  display: flex; align-items: flex-start; justify-content: center;
}

/* Cones — full width */
.lamp-cone {
  position: absolute; top: 0;
  height: 100vh;
  width: 60vw;
  right: 50%;
  background-image: conic-gradient(from 65deg at center top, rgba(240,199,94,0.45), transparent, transparent);
  animation: lampWidthLG 1.4s ease-out .15s both;
}
.lamp-right {
  right: auto; left: 50%;
  background-image: conic-gradient(from 295deg at center top, transparent, transparent, rgba(240,199,94,0.45));
  animation: lampWidthRG 1.4s ease-out .15s both;
}
@keyframes lampWidthLG { from { width: 20vw; opacity: .3; } to { width: 60vw; opacity: 1; } }
@keyframes lampWidthRG { from { width: 20vw; opacity: .3; } to { width: 60vw; opacity: 1; } }

/* Top line — full width */
.lamp-line {
  position: absolute; top: 0; height: 2px;
  width: 80vw;
  background: linear-gradient(90deg, transparent 0%, #f0c75e 30%, #f4d989 50%, #f0c75e 70%, transparent 100%);
  box-shadow: 0 0 30px 4px rgba(240,199,94,0.7), 0 0 80px 10px rgba(212,175,55,0.35);
  animation: lampLineFull 1.4s ease-out .15s both;
}
@keyframes lampLineFull { from { width: 20vw; opacity: .4; } to { width: 80vw; opacity: 1; } }

/* Central glow — huge */
.lamp-glow {
  position: absolute; top: -4rem;
  width: 60vw; height: 30vh;
  background: radial-gradient(ellipse at center top, rgba(240,199,94,0.55) 0%, rgba(156,122,31,0.25) 40%, transparent 70%);
  filter: blur(40px);
  animation: lampPulseFull 4s ease-in-out infinite;
}
@keyframes lampPulseFull {
  0%,100% { opacity: .7; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.06); }
}

/* Haze — full width soft floor */
.lamp-haze {
  position: absolute; top: 0;
  width: 50vw; height: 50vh;
  background: radial-gradient(ellipse at top, rgba(244,217,137,0.18) 0%, transparent 65%);
  filter: blur(30px);
  animation: lampHazeFull 1.4s ease-out .3s both;
}
@keyframes lampHazeFull { from { width: 20vw; opacity: 0; } to { width: 50vw; opacity: 1; } }

/* ═══════════════════════════════════════
   FOOTER HOVER TEXT EFFECT
═══════════════════════════════════════ */
.footer { position: relative; overflow: hidden; }

.footer-hover-text {
  position: relative; z-index: 2;
  width: 100%; height: 200px;
  margin-top: -60px; margin-bottom: -50px;
  cursor: pointer;
}
.footer-svg { overflow: visible; }

/* Draw animation on load */
.ft-draw {
  animation: ftDraw 4s ease-in-out forwards;
}
@keyframes ftDraw {
  from { stroke-dashoffset: 3000; opacity: 0.6; }
  to   { stroke-dashoffset: 0;    opacity: 1; }
}

/* Footer background gradient (like the React component) */
.footer-bg-grad {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(125% 125% at 50% 10%, rgba(15,15,17,0.4) 50%, rgba(240,199,94,0.15) 100%);
  pointer-events: none;
}

/* Ensure footer content is above bg */
.footer-inner, .footer-hover-text, .footer-bottom { position: relative; z-index: 2; }

/* ═══════════════════════════════════════
   SERVICES CAROUSEL
═══════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.carousel-track.dragging { cursor: grabbing; transition: none; }

/* Cards */
.svc-card {
  min-width: calc(33.333% - 16px);
  height: 440px;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(240,199,94,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  border-radius: inherit;
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 32px 60px rgba(0,0,0,0.5); }

.svc-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  color: rgba(240,199,94,0.6);
  letter-spacing: 2px;
}
.svc-ico {
  font-size: 48px;
  margin: auto 0;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.4));
}
.svc-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.svc-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* Arrows */
.carousel-next, .carousel-prev {
  position: absolute;
  bottom: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(240,199,94,0.08);
  color: #f0c75e;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  z-index: 5;
}
.carousel-next { right: 0; }
.carousel-prev { right: 60px; }
.carousel-next:hover, .carousel-prev:hover {
  background: rgba(240,199,94,0.2);
  border-color: rgba(240,199,94,0.6);
  transform: scale(1.08);
}
.carousel-next:disabled, .carousel-prev:disabled { opacity: .3; cursor: default; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  display: flex;
  gap: 8px;
}
.cdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all .3s;
  cursor: pointer;
}
.cdot.active {
  background: #f0c75e;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .svc-card { min-width: calc(50% - 12px); }
}
@media (max-width: 560px) {
  .svc-card { min-width: 85%; height: 380px; }
}

/* ═══════════════════════════════════════
   SERVICES CARDS v2 (style service-card)
═══════════════════════════════════════ */
.svc2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc2-card {
  position: relative;
  min-height: 200px;
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  cursor: pointer;
}
.svc2-card:hover {
  transform: scale(1.025);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}

/* Color variants */
.svc2-blue  { background: linear-gradient(135deg, #0c0a05, #9c7a1f); }
.svc2-dark  { background: linear-gradient(135deg, #050505, #121212); }
.svc2-navy  { background: linear-gradient(135deg, #0a0a0a, #2a2110); }
.svc2-deep  { background: linear-gradient(135deg, #0a0a0a, #1f1605); }

/* Content */
.svc2-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%; justify-content: space-between;
}
.svc2-card h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2;
  max-width: 55%;
}

/* Link */
.svc2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 24px;
  transition: color .2s;
}

.svc2-arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.svc2-link:hover .svc2-arrow { transform: translateX(6px); }

/* Big decorative icon — 3D stage */
.svc2-img {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: clamp(130px, 16vw, 170px);
  height: clamp(130px, 16vw, 170px);
  perspective: 900px;
  z-index: 1;
  pointer-events: none;
}

.svc-icon-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: svc-icon-float 5s ease-in-out infinite;
  will-change: transform;
}

.svc-icon-shadow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 55%;
  height: 12%;
  transform: translateX(-50%) rotateX(80deg);
  background: radial-gradient(ellipse, rgba(212,175,55,0.35) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0.7;
}

.svc-icon-disc {
  position: absolute;
  inset: 18%;
  border-radius: 24%;
  background: linear-gradient(145deg, rgba(240,199,94,0.22), rgba(212,175,55,0.06));
  border: 1px solid rgba(212,175,55,0.28);
  transform: translateZ(-28px) rotateX(62deg);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}

.svc-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.32);
  transform-style: preserve-3d;
  box-shadow: 0 0 18px rgba(212,175,55,0.12);
}

.svc-icon-ring--1 {
  inset: 2%;
  animation: svc-ring-spin 9s linear infinite;
}

.svc-icon-ring--2 {
  inset: 14%;
  transform: rotateX(72deg);
  animation: svc-ring-spin-rev 6s linear infinite;
  border-style: dashed;
  opacity: 0.75;
}

.svc-icon-ring--pulse {
  inset: 0;
  border-color: rgba(240,199,94,0.45);
  animation: svc-ring-pulse 2.4s ease-out infinite;
}

.svc-icon-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(42px);
  color: rgba(240,199,94,0.95);
  filter: drop-shadow(0 8px 24px rgba(212,175,55,0.45));
  animation: svc-core-pulse 3s ease-in-out infinite;
}

.svc-icon-core svg {
  width: clamp(52px, 7vw, 72px);
  height: clamp(52px, 7vw, 72px);
  stroke-width: 1.15;
}

/* ── Web & Mobile ── */
.svc-icon-3d--web .svc-icon-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0c75e;
  box-shadow: 0 0 12px rgba(240,199,94,0.9);
  transform: translateZ(55px);
}

.svc-icon-3d--web .svc-icon-particle:nth-child(6) {
  top: 12%; left: 20%;
  animation: svc-orbit-a 4s linear infinite;
}
.svc-icon-3d--web .svc-icon-particle:nth-child(7) {
  top: 70%; right: 18%;
  animation: svc-orbit-b 5.5s linear infinite;
}
.svc-icon-3d--web .svc-icon-particle:nth-child(8) {
  bottom: 18%; left: 55%;
  animation: svc-orbit-c 3.8s linear infinite;
}

/* ── AI ── */
.svc-icon-3d--ai .svc-icon-neural {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,199,94,0.18) 0%, transparent 68%);
  transform: translateZ(8px);
  animation: svc-neural-breathe 2.8s ease-in-out infinite;
}

.svc-icon-3d--ai .svc-icon-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 14px rgba(212,175,55,0.8);
  transform: translateZ(60px);
}

.svc-icon-3d--ai .svc-icon-node:nth-child(7)  { top: 8%;  left: 50%; animation: svc-node-orbit 5s linear infinite; }
.svc-icon-3d--ai .svc-icon-node:nth-child(8)  { top: 50%; right: 6%; animation: svc-node-orbit 5s linear infinite -1.25s; }
.svc-icon-3d--ai .svc-icon-node:nth-child(9)  { bottom: 10%; left: 50%; animation: svc-node-orbit 5s linear infinite -2.5s; }
.svc-icon-3d--ai .svc-icon-node:nth-child(10) { top: 50%; left: 6%;  animation: svc-node-orbit 5s linear infinite -3.75s; }

.svc-icon-3d--ai .svc-icon-core {
  animation: svc-core-pulse 2.2s ease-in-out infinite, svc-ai-tilt 4s ease-in-out infinite;
}

/* ── Transformation ── */
.svc-icon-gear {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,175,55,0.55);
  transform-style: preserve-3d;
}

.svc-icon-gear svg {
  width: clamp(28px, 4vw, 38px);
  height: clamp(28px, 4vw, 38px);
  stroke-width: 1;
}

.svc-icon-gear--back {
  top: 6%;
  right: 10%;
  transform: translateZ(18px);
  animation: svc-gear-spin 10s linear infinite reverse;
  opacity: 0.7;
}

.svc-icon-gear--front {
  bottom: 8%;
  left: 8%;
  transform: translateZ(52px);
  animation: svc-gear-spin-front 7s linear infinite;
  color: rgba(240,199,94,0.85);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

.svc-icon-3d--transform .svc-icon-core {
  animation: svc-core-pulse 3s ease-in-out infinite, svc-transform-wobble 6s ease-in-out infinite;
}

/* ── Security ── */
.svc-icon-hex {
  position: absolute;
  inset: 10%;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: linear-gradient(160deg, rgba(212,175,55,0.14), rgba(212,175,55,0.03));
  border: 1px solid rgba(212,175,55,0.2);
  transform: translateZ(-12px) rotateX(18deg);
  animation: svc-hex-spin 14s linear infinite;
}

.svc-icon-scan {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
  transform: translateZ(20px);
  mask: radial-gradient(circle, black 55%, transparent 56%);
}

.svc-icon-scan::after {
  content: '';
  position: absolute;
  inset: -50% -20%;
  background: linear-gradient(180deg, transparent 40%, rgba(240,199,94,0.55) 50%, transparent 60%);
  animation: svc-scan-sweep 2.8s ease-in-out infinite;
}

.svc-icon-3d--security .svc-icon-core {
  animation: svc-core-pulse 2.6s ease-in-out infinite, svc-shield-bob 4.5s ease-in-out infinite;
}

/* Hover on card */




/* Keyframes */
@keyframes svc-icon-float {
  0%, 100% { transform: rotateY(-14deg) rotateX(10deg) translateY(0); }
  50%       { transform: rotateY(14deg) rotateX(-6deg) translateY(-10px); }
}

@keyframes svc-ring-spin {
  from { transform: rotateZ(0deg) rotateX(65deg); }
  to   { transform: rotateZ(360deg) rotateX(65deg); }
}

@keyframes svc-ring-spin-rev {
  from { transform: rotateX(72deg) rotateZ(360deg); }
  to   { transform: rotateX(72deg) rotateZ(0deg); }
}

@keyframes svc-ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes svc-core-pulse {
  0%, 100% { filter: drop-shadow(0 8px 24px rgba(212,175,55,0.4)); }
  50%       { filter: drop-shadow(0 12px 32px rgba(240,199,94,0.75)); }
}

@keyframes svc-orbit-a {
  0%   { transform: translateZ(55px) rotate(0deg) translateX(38px) rotate(0deg); }
  100% { transform: translateZ(55px) rotate(360deg) translateX(38px) rotate(-360deg); }
}

@keyframes svc-orbit-b {
  0%   { transform: translateZ(48px) rotate(0deg) translateX(32px) rotate(0deg); }
  100% { transform: translateZ(48px) rotate(-360deg) translateX(32px) rotate(360deg); }
}

@keyframes svc-orbit-c {
  0%   { transform: translateZ(62px) rotate(0deg) translateX(28px) rotate(0deg); }
  100% { transform: translateZ(62px) rotate(360deg) translateX(28px) rotate(-360deg); }
}

@keyframes svc-neural-breathe {
  0%, 100% { transform: translateZ(8px) scale(0.92); opacity: 0.6; }
  50%       { transform: translateZ(18px) scale(1.08); opacity: 1; }
}

@keyframes svc-node-orbit {
  0%   { transform: translateZ(60px) rotate(0deg) translateX(46px) rotate(0deg) scale(1); }
  50%  { transform: translateZ(72px) rotate(180deg) translateX(46px) rotate(-180deg) scale(1.25); }
  100% { transform: translateZ(60px) rotate(360deg) translateX(46px) rotate(-360deg) scale(1); }
}

@keyframes svc-ai-tilt {
  0%, 100% { transform: translateZ(42px) rotateY(0deg); }
  50%       { transform: translateZ(50px) rotateY(18deg); }
}

@keyframes svc-gear-spin {
  from { transform: translateZ(18px) rotate(0deg); }
  to   { transform: translateZ(18px) rotate(360deg); }
}

@keyframes svc-gear-spin-front {
  from { transform: translateZ(52px) rotate(0deg); }
  to   { transform: translateZ(52px) rotate(360deg); }
}

@keyframes svc-transform-wobble {
  0%, 100% { transform: translateZ(42px) rotate(0deg); }
  25%       { transform: translateZ(48px) rotate(-8deg); }
  75%       { transform: translateZ(48px) rotate(8deg); }
}

@keyframes svc-hex-spin {
  from { transform: translateZ(-12px) rotateX(18deg) rotateZ(0deg); }
  to   { transform: translateZ(-12px) rotateX(18deg) rotateZ(360deg); }
}

@keyframes svc-scan-sweep {
  0%   { transform: translateY(-60%) rotate(0deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(60%) rotate(0deg); opacity: 0; }
}

@keyframes svc-shield-bob {
  0%, 100% { transform: translateZ(42px) translateY(0); }
  50%       { transform: translateZ(52px) translateY(-6px); }
}

@media (max-width: 640px) {
  .svc2-img {
    width: clamp(110px, 28vw, 140px);
    height: clamp(110px, 28vw, 140px);
    bottom: 4px;
    right: 4px;
  }
}

/* Overlay gradient */
.svc2-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.15), transparent);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .svc2-grid { grid-template-columns: 1fr; }
  .svc2-card h3 { max-width: 60%; }
}

/* ═══════════════════════════════════════
   HISTORIQUE — TIMELINE
═══════════════════════════════════════ */
.history { background: var(--bg-light); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 28px; border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 48px; padding-left: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -45px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg-light), 0 0 14px rgba(212,175,55,0.5);
}
.timeline-year { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.timeline-content h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.timeline-content p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); text-align: justify; }
.clients { background: var(--bg-light); }
.clients-head { text-align: center; }
.clients-divider { display: block; width: 46px; height: 3px; border-radius: 2px; background: var(--accent); margin: 18px auto 0; }

.clients-marquee {
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  width: max-content;
  gap: 60px;
  padding-right: 60px;
  animation: clientsScroll 28s linear infinite;
}
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}
@keyframes clientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.client-logo {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.client-logo:hover {
  transform: translateY(-3px);
}
.client-logo img {
  width: auto;
  height: 46px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter .3s ease, transform .3s ease;
}
.client-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
/* ═══════════════════════════════════════
   PROJETS RÉALISÉS
═══════════════════════════════════════ */
.projects { background: var(--bg); }
.projects-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.projects-grid .project-card { flex: 1 1 calc(33.333% - 22px); min-width: 280px; max-width: calc(33.333% - 22px); }
.project-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px; padding: 30px; transition: all .3s; position: relative; }
.project-card:hover { transform: translateY(-5px); border-color: rgba(0,102,255,0.3); box-shadow: 0 24px 50px rgba(0,0,0,0.06); }
.project-tag { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); background: rgba(0,102,255,0.08); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.project-card h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.project-card p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); text-align: left; }

/* ═══════════════════════════════════════
   NOTRE ÉQUIPE
═══════════════════════════════════════ */
.team { background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-pole { background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: 30px 20px; text-align: center; transition: all .3s; }
.team-pole:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.35); }
.team-pole-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.team-pole-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.team-pole h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.team-pole h3 span { font-size: 12px; font-weight: 500; color: var(--ink-soft); }

/* ═══════════════════════════════════════
   NOS DIRIGEANTS
═══════════════════════════════════════ */
.leaders { background: var(--bg); }
.leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leader-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px; padding: 36px 24px; text-align: center; transition: all .3s; }
.leader-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.35); }
.leader-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--accent); background: linear-gradient(135deg, rgba(240,199,94,0.18), rgba(240,199,94,0.04)); border: 1px solid rgba(240,199,94,0.35); }
.leader-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.leader-role { font-size: 13px; color: var(--ink-soft); letter-spacing: .3px; }

/* ═══════════════════════════════════════
   ÉVÉNEMENTS & PARTICIPATIONS
═══════════════════════════════════════ */
.events { background: var(--bg-light); }

/* ── Events v2 — Horizontal Cards ── */
.ev2-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ev2-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.02);
  position: relative;
  height: 260px;
}

.ev2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.4), transparent);
  opacity: .55;
  transition: opacity .35s ease;
  z-index: 2;
}

.ev2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,102,255,0.08);
  border-color: var(--accent);
}

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

/* Image side (left) */
.ev2-img {
  flex: 0 0 340px;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.ev2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s ease;
}

.ev2-card:hover .ev2-img img {
  transform: scale(1.06);
}

/* Text side (right) */
.ev2-body {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.ev2-tag {
  display: inline-block;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(37,99,235,0.08);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ev2-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.ev2-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
}

.ev2-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 4px;
}

.ev2-date svg {
  width: 15px;
  height: 15px;
}

/* Alternating image side on even cards */
.ev2-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* ── Events v2 Responsive ── */
@media (max-width: 900px) {
  .ev2-img {
    flex: 0 0 260px;
  }
  .ev2-body {
    padding: 28px 28px;
  }
  .ev2-body h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .ev2-card,
  .ev2-card:nth-child(even) {
    flex-direction: column;
    height: auto;
  }
  .ev2-img {
    flex: none;
    height: 220px;
    min-height: unset;
  }
  .ev2-body {
    padding: 24px 22px;
  }
  .ev2-body h3 {
    font-size: 19px;
  }
  .ev2-body p {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════
   GALERIE — scroll-cards parallax stack
═══════════════════════════════════════ */
.gallery { background: var(--bg); padding-bottom: 110px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: var(--bg-card);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
  border-color: var(--accent);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 38, 0.75) 0%, rgba(11, 20, 38, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 1;
}

.gallery-label {
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — NOUVELLES SECTIONS
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card { flex: 1 1 calc(50% - 22px); max-width: calc(50% - 22px); }
}
@media (max-width: 560px) {
  .events-grid, .team-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card { flex: 1 1 100%; max-width: 100%; }
  .timeline { padding-left: 20px; }
  .timeline-item { padding-left: 28px; }
  .timeline-item::before { left: -33px; }
}

/* ═══════════════════════════════════════
   CONTACT CARD STYLE
═══════════════════════════════════════ */
.cc-card{position:relative;display:grid;grid-template-columns:1.4fr 1fr;border:1px solid rgba(255,255,255,0.08);border-radius:20px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,0.4);}
.cc-plus{position:absolute;font-size:22px;font-weight:300;color:rgba(212,175,55,0.5);line-height:1;z-index:5;}
.cc-tl{top:-12px;left:-10px;}.cc-tr{top:-12px;right:-10px;}.cc-bl{bottom:-12px;left:-10px;}.cc-br{bottom:-12px;right:-10px;}
.cc-left{padding:48px;background:rgba(10,10,10,0.85);display:flex;flex-direction:column;gap:28px;}
.cc-title{font-size:clamp(24px,3vw,38px);font-weight:800;line-height:1.15;letter-spacing:-1px;color:#fff;}
.cc-desc{font-size:14px;line-height:1.7;color:rgba(255,255,255,0.5);max-width:440px;}
.cc-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.cc-info-item{display:flex;align-items:center;gap:12px;padding:14px;background:rgba(240,199,94,0.05);border:1px solid rgba(240,199,94,0.1);border-radius:12px;transition:border-color .25s;}
.cc-info-item:hover{border-color:rgba(212,175,55,0.35);}
.cc-span2{grid-column:span 2;}
.cc-info-label{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-bottom:3px;}
.cc-info-val{font-size:13px;font-weight:600;color:rgba(255,255,255,0.85);}
.cc-social{display:flex;gap:10px;flex-wrap:wrap;}
.cc-social-btn{text-decoration:none;font-size:12px;font-weight:600;color:#f0c75e;border:1px solid rgba(240,199,94,0.25);padding:6px 14px;border-radius:100px;transition:all .2s;}

.cc-right{background:rgba(255,255,255,0.02);border-left:1px solid rgba(255,255,255,0.06);padding:40px 36px;display:flex;align-items:center;}
.cc-form{width:100%;display:flex;flex-direction:column;gap:16px;}
.cc-field{display:flex;flex-direction:column;gap:6px;}
.cc-field label{font-size:12px;font-weight:600;letter-spacing:.5px;color:rgba(255,255,255,0.45);}
.cc-field input,.cc-field textarea{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:11px 14px;font-family:'Inter',sans-serif;font-size:14px;color:#fff;outline:none;transition:border-color .2s;width:100%;}
.cc-field input::placeholder,.cc-field textarea::placeholder{color:rgba(255,255,255,0.25);}
.cc-field input:focus,.cc-field textarea:focus{border-color:rgba(212,175,55,0.4);}
.cc-field textarea{min-height:90px;resize:vertical;}
.cc-submit{background:#f0c75e;color:#0a0805;border:none;padding:14px;border-radius:10px;font-size:14px;font-weight:700;cursor:pointer;width:100%;transition:all .3s;position:relative;overflow:hidden;}
.cc-submit:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(212,175,55,0.35);}
@media(max-width:900px){.cc-card{grid-template-columns:1fr;}.cc-right{border-left:none;border-top:1px solid rgba(255,255,255,0.06);}.cc-left{padding:32px 24px;}.cc-right{padding:28px 24px;}}
@media(max-width:560px){.cc-info-grid{grid-template-columns:1fr;}.cc-span2{grid-column:span 1;}}

/* ═══════════════════════════════════════
   PROFESSIONAL UPGRADES — Light & Navy Premium B2B
═══════════════════════════════════════ */

/* Cards — premium white card + blue outline accent */
.product-card, .why-card, .industry-card, .project-card, .event-card, .leader-card, .team-pole {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  backdrop-filter: none !important;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01), 0 20px 40px rgba(0, 0, 0, 0.02) !important;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease !important;
}
.product-card:hover, .why-card:hover, .industry-card:hover,
.project-card:hover, .event-card:hover, .leader-card:hover, .team-pole:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.06) !important;
  transform: translateY(-5px) !important;
}

/* Thin blue hairline along the top edge of every card — signature "designer" detail */
.product-card::before, .why-card::before, .industry-card::before,
.project-card::before, .event-card::before, .service-card::before {
  content: '';
  position: absolute; top: 0; left: 18px; right: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.4), transparent);
  opacity: .55; transition: opacity .35s ease;
}
.product-card:hover::before, .why-card:hover::before, .industry-card:hover::before,
.project-card:hover::before, .event-card:hover::before, .service-card:hover::before {
  opacity: 1;
}

/* Service cards — align with the premium card language */
.service-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.02) !important;
}
.service-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.06) !important;
  transform: translateY(-6px) !important;
}

/* Ensure text visibility in sections that originally had black backgrounds */
.products, .contact {
  color: var(--ink-soft) !important;
}
.products .section-title, .contact .section-title {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}
.products .section-sub, .contact .section-sub {
  color: var(--ink-faint) !important;
}
.product-card h3 {
  color: var(--ink) !important;
}
.product-card p {
  color: var(--ink-soft) !important;
}

/* Glowing border hover effects in light theme */
.service-card::after, .product-card::after, .industry-card::after,
.why-card::after, .project-card::after, .event-card::after,
.leader-card::after, .team-pole::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), transparent 50%) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
  z-index: 3;
}
.service-card:hover::after, .product-card:hover::after, .industry-card:hover::after,
.why-card:hover::after, .project-card:hover::after, .event-card:hover::after,
.leader-card:hover::after, .team-pole:hover::after {
  opacity: 1 !important;
}

/* Stat boxes upgrade */
.stat-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
}
.stat-box:hover {
  border-color: var(--accent) !important;
}
.stat-num, .stat-num-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Eyebrow — blue accent */
.eyebrow {
  color: var(--accent) !important;
  letter-spacing: 4px;
}
.eyebrow::before {
  color: var(--accent) !important;
}

/* Nav links — upgrade */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Section alternation subtle */
.about, .products, .why, .certif, .clients, .team, .events, .contact {
  background: var(--bg) !important;
}
.history, .services, .industries, .projects, .leaders, .gallery {
  background: var(--bg-light) !important;
}

/* Hero upgrade */
.hero {
  background: var(--grad-hero) !important;
}

/* Product badge — corporate blue */
.product-badge {
  color: var(--accent) !important;
  border-color: rgba(0, 102, 255, 0.25) !important;
  background: rgba(0, 102, 255, 0.05) !important;
}

/* Timeline dot */
.timeline-item::before {
  background: #ffffff !important;
  border: 2px solid var(--accent) !important;
  box-shadow: 0 0 0 4px var(--bg-light), 0 0 8px rgba(0, 102, 255, 0.25) !important;
}

/* Client logo hover */
.client-logo:hover {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Footer aurora — upgrade */
.footer-aurora {
  background: radial-gradient(circle,
    rgba(0, 102, 255, 0.06) 0%,
    rgba(0, 68, 204, 0.03) 40%,
    transparent 70%
  ) !important;
}

/* Primary buttons — refined blue finish with white text */
.hero-btn, .nav-cta, .cc-submit {
  background: var(--accent) !important;
  color: #ffffff !important;
}
.hero-btn:hover, .nav-cta:hover, .cc-submit:hover {
  background: var(--accent-deep) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.15) !important;
}

/* Selection color */
::selection {
  background: rgba(0, 102, 255, 0.15);
  color: var(--ink);
}

/* Section titles corporate solid color */
.section-title {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  background: none !important;
  text-shadow: none !important;
}


/* Contact layout details card styling */
.cc-card {
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03) !important;
  background: #ffffff !important;
}
.cc-left {
  background: #0b1426 !important;
  color: #ffffff !important;
}
.cc-right {
  background: #ffffff !important;
  border-left: 1px solid #e2e8f0 !important;
}
.cc-field label {
  color: var(--ink-soft) !important;
}
.cc-field input, .cc-field textarea {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--ink) !important;
}
.cc-field input::placeholder, .cc-field textarea::placeholder {
  color: var(--ink-faint) !important;
}
.cc-field input:focus, .cc-field textarea:focus {
  border-color: var(--accent) !important;
}
.cc-field input:focus-visible, .cc-field textarea:focus-visible, .cc-field select:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 1px;
}
.cc-social-btn {
  color: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.cc-social-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}
.cc-info-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.cc-info-val {
  color: #ffffff !important;
}
.cc-info-label {
  color: rgba(255, 255, 255, 0.45) !important;
}
.cc-title {
  color: #ffffff !important;
}
.cc-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Map light-theme styling */
.contact-map {
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03) !important;
}
.map-header {
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
.map-title {
  color: var(--ink) !important;
}
.map-sub {
  color: var(--ink-soft) !important;
}
.map-open-btn {
  color: var(--accent) !important;
  border: 1px solid rgba(0, 102, 255, 0.2) !important;
  background: transparent !important;
}
.map-open-btn:hover {
  background: rgba(0, 102, 255, 0.05) !important;
  border-color: var(--accent) !important;
}
.map-frame {
  filter: none !important;
}

/* Service cards v2 styling adjustments for Light B2B */
.svc2-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
}
.svc2-card:hover {
  box-shadow: 0 16px 36px rgba(0, 102, 255, 0.05) !important;
}
.svc2-card h3 {
  color: var(--ink) !important;
}
.svc2-link {
  color: var(--ink-soft) !important;
}
.svc2-link:hover {
  color: var(--accent) !important;
}
.svc2-blue, .svc2-dark, .svc2-navy, .svc2-deep {
  background: #ffffff !important;
}

/* 3D Icons color mapping for light theme */
.svc-icon-disc {
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.12), rgba(0, 102, 255, 0.03)) !important;
  border: 1px solid rgba(0, 102, 255, 0.22) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
.svc-icon-ring {
  border-color: rgba(0, 102, 255, 0.22) !important;
  box-shadow: 0 0 18px rgba(0, 102, 255, 0.08) !important;
}
.svc-icon-ring--pulse {
  border-color: rgba(0, 102, 255, 0.3) !important;
}
.svc-icon-core {
  color: var(--accent) !important;
  filter: drop-shadow(0 8px 24px rgba(0, 102, 255, 0.2)) !important;
}
.svc-icon-3d--web .svc-icon-particle {
  background: var(--accent) !important;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.5) !important;
}
.svc-icon-3d--ai .svc-icon-neural {
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 68%) !important;
}
.svc-icon-3d--ai .svc-icon-node {
  background: var(--accent) !important;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.5) !important;
}
.svc-icon-gear--front {
  color: var(--accent) !important;
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.25)) !important;
}
.svc-icon-gear--back {
  color: rgba(0, 102, 255, 0.25) !important;
}
.svc-icon-hex {
  background: linear-gradient(160deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.02)) !important;
  border-color: rgba(0, 102, 255, 0.15) !important;
}
.svc-icon-scan::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 102, 255, 0.4) 50%, transparent 60%) !important;
}
.svc2-card:hover .svc-icon-3d {
  filter: drop-shadow(0 0 28px rgba(0, 102, 255, 0.35)) !important;
}
.svc2-card:hover .svc-icon-core svg {
  stroke: var(--accent) !important;
}

/* Industry 3D Icons color mapping for light theme */
.ind-icon-base {
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.12), rgba(0, 102, 255, 0.03)) !important;
  border: 1px solid rgba(0, 102, 255, 0.22) !important;
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
.ind-icon-core {
  color: var(--accent) !important;
  filter: drop-shadow(0 6px 18px rgba(0, 102, 255, 0.2)) !important;
}
.ind-icon-stack span {
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.65), rgba(0, 68, 204, 0.45)) !important;
  border: 1px solid rgba(0, 102, 255, 0.3) !important;
}
.ind-icon-smoke span {
  background: rgba(0, 102, 255, 0.15) !important;
}
.ind-icon-prism {
  background: linear-gradient(160deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.05)) !important;
  border-color: rgba(0, 102, 255, 0.2) !important;
}
.ind-icon-spark {
  background: var(--accent) !important;
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.5) !important;
}
.ind-icon-pulse-ring {
  border-color: rgba(0, 102, 255, 0.25) !important;
}
.ind-icon-ecg {
  background: linear-gradient(90deg, transparent 0%, transparent 18%, var(--accent) 18%, var(--accent) 20%, transparent 20%, transparent 38%, var(--accent) 38%, var(--accent) 42%, transparent 42%, transparent 58%, var(--accent) 58%, var(--accent) 59%, transparent 59%, transparent 72%, var(--accent) 72%, var(--accent) 78%, transparent 78%) !important;
}
.ind-icon-float-box {
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.4), rgba(0, 68, 204, 0.25)) !important;
  border-color: rgba(0, 102, 255, 0.3) !important;
}
.ind-icon-tag {
  background: rgba(0, 102, 255, 0.35) !important;
}
.ind-icon-road {
  background: linear-gradient(180deg, #e2e8f0, #cbd5e1) !important;
  border-color: rgba(0, 102, 255, 0.15) !important;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.03) !important;
}
.ind-icon-route-line {
  background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 18px) !important;
}
.ind-icon-pin {
  background: var(--accent) !important;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.4) !important;
}
.ind-icon-block {
  background: linear-gradient(180deg, rgba(0, 102, 255, 0.4), rgba(0, 68, 204, 0.25)) !important;
  border-color: rgba(0, 102, 255, 0.25) !important;
}
.industry-card:hover .ind-icon-3d {
  filter: drop-shadow(0 0 22px rgba(0, 102, 255, 0.35)) !important;
}
.industry-card:hover .ind-icon-core svg {
  stroke: var(--accent) !important;
}

/* Footer gradient override to retain Dark Navy aesthetic */
.footer {
  background: #0b1426 !important;
  color: rgba(255,255,255,0.7) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bg-grad {
  background: radial-gradient(125% 125% at 50% 10%, rgba(11,20,38,0.95) 50%, rgba(0,102,255,0.1) 100%) !important;
}
.footer-col h3 {
  color: #ffffff !important;
}
.footer-col a {
  color: rgba(255,255,255,0.6) !important;
}
.footer-col a:hover {
  color: #ffffff !important;
}
.footer-bottom {
  color: rgba(255,255,255,0.45) !important;
}
.footer-brand p {
  color: rgba(255,255,255,0.55) !important;
}

/* Body texts default styling for corporate contrast */
body {
  color: var(--ink-soft);
}
.lead {
  color: var(--ink-soft) !important;
}
.body-text {
  color: var(--ink-faint) !important;
}
p.section-sub {
  color: var(--ink-faint) !important;
}

/* ==========================================================
   PRODUCTS SHOWCASE
========================================================== */

.products{
    padding:120px 0;
    background:#fff;
}

.products .container{
    max-width:1400px;
}

.products .section-head{
    text-align:center;
    margin-bottom:70px;
}

.products .section-subtitle{
    max-width:700px;
    margin:20px auto 0;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

.products-showcase{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}


/* ==========================================================
   CARD
========================================================== */

.project-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:26px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

}

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    padding:1px;

    background:linear-gradient(
    135deg,
    rgba(37,99,235,.25),
    rgba(0,191,255,.15),
    transparent);

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 35px 70px rgba(37,99,235,.15);

}


/* ==========================================================
   IMAGE
========================================================== */

.project-image{

    height:170px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px;

    background:#f8fafc;

    overflow:hidden;

    border-radius:16px;

}

.project-iframe-wrap{

    position:relative;

    padding:0;

    cursor:pointer;

}

.project-iframe-wrap::before{

    content:"";

    position:absolute;

    top:10px;

    left:10px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:0 0 0 3px rgba(34,197,94,.25);

    z-index:2;

    animation:liveDotPulse 1.8s infinite;

}

@keyframes liveDotPulse{

    0%,100%{ opacity:1; }

    50%{ opacity:.35; }

}

.project-iframe-wrap iframe{

    position:absolute;

    top:0;

    left:0;

    width:340%;

    height:340%;

    border:none;

    transform:scale(.294);

    transform-origin:0 0;

    pointer-events:none;

    background:#fff;

}

.project-expand{

    position:absolute;

    inset:0;

    z-index:3;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    background:rgba(15,23,42,.55);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:.3px;

    opacity:0;

    transition:opacity .25s ease;

    text-decoration:none;

}

.project-image-text.project-expand,
a.project-image-text{

    text-decoration:none;

}

.project-iframe-wrap:hover .project-expand,
a.project-image-text:hover .project-expand{

    opacity:1;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.6s;

    border-radius:20px;

}

.project-card:hover img{

    transform:scale(1.06);

}


/* ==========================================================
   CONTENT
========================================================== */

.project-content{

    padding:22px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.project-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#eff6ff;

    color:#2563eb;

    padding:6px 14px;

    border-radius:999px;

    font-size:.68rem;

    font-weight:700;

    letter-spacing:.6px;

    text-transform:uppercase;

}

.project-content h3{

    margin:14px 0 10px;

    font-size:19px;

    color:#111827;

    line-height:1.25;

}

.project-content p{

    color:#6b7280;

    line-height:1.6;

    font-size:13.5px;

}


/* ==========================================================
   TAGS
========================================================== */

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:6px;

    margin:14px 0;

}

.project-tags span{

    background:#f8fafc;

    border:1px solid #e5e7eb;

    color:#374151;

    padding:5px 10px;

    border-radius:999px;

    font-size:11.5px;

    transition:.3s;

}

.project-tags span:hover{

    background:#2563eb;

    color:#fff;

    border-color:#2563eb;

}


/* ==========================================================
   LINK
========================================================== */

.project-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:auto;

    padding-top:6px;

    color:#2563eb;

    text-decoration:none;

    font-weight:700;

    font-size:13px;

    transition:.3s;

}

.project-link span{

    transition:.3s;

}

.project-link:hover{

    color:#1d4ed8;

}

.project-link:hover span{

    transform:translateX(6px);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

.products-showcase{

grid-template-columns:repeat(2,1fr);

gap:28px;

}

.project-image{

height:240px;

}

.project-content{

padding:30px;

}

.project-content h3{

font-size:26px;

margin:18px 0 12px;

}

.project-content p{

font-size:15px;

line-height:1.75;

}

.project-tags{

gap:10px;

margin:22px 0;

}

.project-tags span{

font-size:13px;

padding:8px 14px;

}

.project-link{

font-size:14px;

}

.project-image-text{

height:240px;

}

.automation-label{

font-size:26px;

}

}


@media(max-width:768px){

.products{

padding:80px 0;

}

.project-image{

height:220px;

}

.project-content{

padding:28px;

}

.project-content h3{

font-size:24px;

}

}


@media(max-width:576px){

.products-showcase{

grid-template-columns:1fr;

gap:25px;

}

.project-image{

height:200px;

}

.project-content{

padding:22px;

}

.project-content h3{

font-size:22px;

}

.project-tags{

gap:8px;

}

.project-tags span{

font-size:12px;

padding:7px 12px;

}

.project-link{

font-size:14px;

}

}

/* ==========================
   IA COVER
========================== */

.project-image-text{

    background:#f8fafc;

    padding:14px;

    display:flex;

    flex-shrink:0;

    align-items:center;

    justify-content:center;

    height:170px;

    border-radius:16px;

}

a.project-image-text{

    color:inherit;

    cursor:pointer;

}

a.project-image{

    color:inherit;

    text-decoration:none;

    cursor:pointer;

}

.automation-cover{

    text-align:center;

    max-width:100%;

}

.automation-label{

    display:inline-block;

    background:#f6ebe4;

    color:#0f2f63;

    font-size:15px;

    font-weight:800;

    line-height:1.3;

    text-transform:uppercase;

    padding:3px 8px;

    margin-bottom:4px;

}

.automation-cover p{

    margin-top:28px;

    font-size:20px;

    line-height:1.6;

    color:#19345d;

    font-weight:500;

}

/* ==========================
   DEMO MODAL (live, agrandi)
========================== */

.demo-modal{

    position:fixed;

    inset:0;

    z-index:9999;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:opacity .25s ease, visibility .25s ease;

}

.demo-modal.is-open{

    opacity:1;

    visibility:visible;

}

.demo-modal-backdrop{

    position:absolute;

    inset:0;

    background:rgba(10,10,15,.75);

    backdrop-filter:blur(4px);

}

.demo-modal-box{

    position:relative;

    width:min(1200px,92vw);

    height:min(800px,88vh);

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

    transform:scale(.96);

    transition:transform .25s ease;

}

.demo-modal.is-open .demo-modal-box{

    transform:scale(1);

}

.demo-modal-bar{

    flex-shrink:0;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 16px;

    background:#111827;

}

.demo-modal-dot{

    width:9px;

    height:9px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:0 0 0 3px rgba(34,197,94,.25);

    flex-shrink:0;

    animation:liveDotPulse 1.8s infinite;

}

.demo-modal-title{

    flex:1;

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.demo-modal-close{

    background:rgba(255,255,255,.08);

    border:none;

    color:#fff;

    width:30px;

    height:30px;

    border-radius:8px;

    font-size:15px;

    cursor:pointer;

    transition:background .2s;

}

.demo-modal-close:hover{

    background:rgba(255,255,255,.18);

}

.demo-modal-box iframe{

    flex:1;

    width:100%;

    border:none;

}

@media(max-width:768px){

    .demo-modal-box{

        width:100vw;

        height:100vh;

        border-radius:0;

    }

}

@media(max-width:768px){

.automation-label{

font-size:30px;

}

.automation-cover p{

font-size:17px;

}

}

/* ==========================================
   COMPANY STORY
========================================== */

.company-story-section{
    padding:120px 0;
    position:relative;
    background:#ffffff;
}

.company-story-container{
    width:min(1150px,90%);
    margin:auto;
}

.company-story-header{
    text-align:center;
    margin-bottom:70px;
}

.company-story-eyebrow{
    color:#2563eb;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.company-story-title{
    font-size:clamp(42px,5vw,72px);
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.company-story-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.company-story-card{
    background:transparent;
    border:none;
    border-radius:0;
    padding:0;
    box-shadow:none;
    position:relative;
    overflow:visible;
    display:flex;
    gap:60px;
    align-items:center;
}

.company-story-card::before{
    display:none;
}

.company-story-left{
    flex:1.2;
    min-width:0;
}

.company-story-right{
    flex:1;
    min-width:0;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    height:480px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.company-story-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:16px;
}

.company-story-badge{
    display:none;
}

.company-story-content{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.company-story-content p{
  text-align: justify;
    text-justify: inter-word;
    font-size:16.5px;
    line-height:1.8;
    color:#475569;
    margin:0;
}

.brand-highlight{
    color:#0f5496;
    font-weight:700;
}

.company-story-content strong{
    color:#0f172a;
}

.company-story-content strong.brand-highlight {
    color:#0f5496;
}

/* Blockquote style from screenshot */
.company-story-quote {
    background:#dceaf7;
    border-left:4px solid #0d4073;
    padding:24px 28px;
    margin:10px 0;
    border-radius:0 12px 12px 0;
}

.company-story-quote blockquote {
    font-size:16.5px;
    font-style:italic;
    line-height:1.7;
    color:#1e293b;
    margin:0 0 10px 0;
    font-weight:500;
}

.company-story-quote cite {
    font-size:13.5px;
    color:#64748b;
    font-style:normal;
    display:block;
    font-weight:500;
}

@media(max-width:768px){

.company-story-card{
    flex-direction:column;
    padding:0;
    gap:40px;
}

.company-story-right{
    width:100%;
    height:300px;
}

.company-story-content p{
    font-size:15.5px;
    line-height:1.75;
}

.company-story-title{
    font-size:36px;
}

}

/*=========================================
        EXECUTIVES SECTION
=========================================*/

.executives-section{

    padding:120px 0;

}

.executives-container{

    max-width:950px;
    margin:auto;

}

.executives-header{

    text-align:center;
    margin-bottom:70px;

}

.executives-eyebrow{

    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;

}

.executives-title{

    font-size:clamp(42px,5vw,72px);
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;

}

.executives-subtitle{

    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;

}

/*=======================*/

.executives-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 50px;
}

.executive-card{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15,23,42,.02);
    transition: .35s;
}

.executive-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15,23,42,.06);
}

.executive-top{
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/*=======================*/

.executive-image{
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.executive-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/*=======================*/

.executive-header-info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.executive-header-info h3{
    font-size: 21px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.executive-position{
    font-size: 15px;
    font-weight: 600;
    color: #5598d9;
    margin: 0;
}

/*=======================*/

.executive-quote{
    font-size: 15.5px;
    line-height: 1.6;
    font-style: italic;
    color: #475569;
    width: 100%;
}

/*=======================*/

@media(max-width:900px){

.executives-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.executive-card {
    width: 100%;
    max-width: 450px;
}

}

/*==================================
 HERO V2
==================================*/

.hero-v2{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    background:#08111F;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-v2-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.55;
    z-index:0;

    animation:heroZoom 20s ease-in-out infinite alternate;
}

.hero-v2-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(5,15,35,.45),
            rgba(5,15,35,.55)
        );

    z-index:1;
}

.hero-v2-container{
    position:relative;
    z-index:2;
    width:min(1350px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding-top:130px;
}

.hero-v2-content{
   max-width: 100%; /* هادي باش ياخد العرض كامل */
    width: 100%;
}

/* Badge */

.hero-v2-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(37,99,235,.15);
    color:#4EA1FF;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

/* Title */

.hero-v2-title{
   font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;

    width: 1400px;
    max-width: none;
}

.hero-v2-title .blue{
    color:#3B82F6;
}

/* Paragraph */

.hero-v2-text{
    color:#C7D2FE;
    font-size:18px;
    line-height:1.8;
    max-width:620px;
    margin-bottom:20px;
    text-align:justify;
}

/* Button */

.hero-v2-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 38px;
    border-radius:14px;
    background:#2563EB;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.35s;
}

.hero-v2-btn:hover{
    background:#1D4ED8;
    transform:translateY(-4px);
}

.hero-v2-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:10px;
    margin-bottom: 40px;
}

.hero-v2-btn--outline{
    background:transparent;
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
    backdrop-filter:blur(6px);
}

.hero-v2-btn--outline:hover{
    background:rgba(255,255,255,.12);
    border-color:#fff;
    transform:translateY(-4px);
}

/* Image */

.hero-v2-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-v2-image img{
    width:100%;
    max-width:700px;
    filter:drop-shadow(0 0 60px rgba(59,130,246,.45));
}

/*==================================
 CLIENTS
==================================*/

.hero-v2-clients{
    position:relative;
    z-index:2;
    width:min(1300px,92%);
    margin:60px auto 40px;
    text-align:center;
}

.hero-v2-clients h3{
    color:#fff;
    font-size:22px;
    margin-bottom:35px;
}

.hero-v2-clients h3::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#2563EB;
    border-radius:999px;
    margin:14px auto 0;
}

.hero-v2-logos{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.hero-v2-logos img{
    width:100%;
    height:95px;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
    padding:20px;
    transition:.35s;
}

.hero-v2-logos img:hover{
    transform:translateY(-8px);
}

/*==================================
 RESPONSIVE
==================================*/

@media (max-width:1000px){

.hero-v2-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-v2-content{
    margin:auto;
}

.hero-v2-title{
    font-size:48px;
    width: 100% !important;
}

.hero-v2-text{
    font-size:18px;
}

.hero-v2-image{
    margin-top:40px;
}

.hero-v2-logos{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width: 768px) {
  .hero-v2-title {
    font-size: clamp(24px, 7.5vw, 36px);
    margin-bottom: 20px;
  }
  .hero-v2-title br,
  .hero-v2-text br {
    display: none !important;
  }
  .hero-v2-text {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
  }
  .hero-v2-buttons{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }
  .hero-v2-btn{
    padding:14px 28px;
    font-size:15px;
    width:100%;
    max-width:300px;
    text-align:center;
  }
}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}