/* ============================================
   فضاء الأبعاد — Design System
   Modern, geospatial-inspired, motion-considered
   ============================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;

  &[lang="ar"] {
    direction: rtl;
  }
}

body {
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "IBMPlexArabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  background-image:
    radial-gradient(1200px 600px at 100% -10%, rgba(36, 84, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(0, 229, 166, 0.05), transparent 60%);
  background-attachment: fixed;

  &.stop-scrolling {
    overflow: hidden;
  }

  &::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
}

h1,
h2,
h3,
h4,
h5,
p {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font: inherit;
  background: transparent;
  border: 0;
  color: inherit;

  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
  }
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

[role="button"],
button {
  cursor: pointer;
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "IBMPlexArabic";
  src: url("../fonts/IBMPlexArabic-Regular-CaL-RFjP.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBMPlexArabic";
  src: url("../fonts/IBMPlexArabic-SemiBold-DwG7-SCK.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBMPlexArabic";
  src: url("../fonts/IBMPlexArabic-Bold-D3Ic9NfS.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Color: deep cinematic */
  --bg: #04060c;
  --bg-elev: #0a0e1a;
  --bg-elev-2: #11162a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);

  --primary: #2454ff;
  --primary-glow: rgba(36, 84, 255, 0.45);
  --accent: #00e5a6;
  --accent-glow: rgba(0, 229, 166, 0.35);
  --cyan: #6ad8ff;

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.52);
  --text-dim: rgba(255, 255, 255, 0.38);

  /* Legacy aliases (kept so existing markup still works) */
  --mainColor: var(--primary);
  --mainColorLight: var(--accent);
  --mainColorDark: #060912;
  --white: var(--text);
  --gray: var(--text-muted);
  --grayLight: var(--text-soft);
  --onBody: var(--bg-elev);
  --BodyBg: var(--bg);
  --inputStroke: var(--line);
  --inputBG: var(--surface);
  --inputHint: var(--text-dim);

  /* Motion — Emil's strong custom curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Durations — under 300ms for UI */
  --d-xs: 120ms;
  --d-sm: 180ms;
  --d-md: 240ms;
  --d-lg: 360ms;
  --d-xl: 600ms;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Layout */
  --container: 1280px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

/* ---------- Typography ---------- */
.fs-display {
  font-size: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.fs-h1,
.fs-res-60 {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.fs-h2,
.fs-res-44 {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.fs-h3,
.fs-res-36 {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.fs-h4,
.fs-res-24 {
  font-size: clamp(1.125rem, 0.95rem + 0.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.fs-res-20 {
  font-size: clamp(1rem, 0.92rem + 0.3vw, 1.25rem);
  font-weight: 600;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-16,
.fs-res-16 {
  font-size: 1rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-12 {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.line-relaxed {
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text);
}

.text-gray {
  color: var(--text-muted);
}

.text-gray-85 {
  color: var(--text);
  opacity: 0.92;
}

.text-grayLight {
  color: var(--text-soft);
}

.text-mainColor {
  color: var(--primary);
}

.text-mainColorLight {
  color: var(--accent);
}

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrab,
.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.grid-col-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.w-full {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.h-full {
  height: 100%;
}

.h-1 {
  height: 1px;
}

.h-38 {
  height: 56px;
}

.pos-rel {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.z-9999 {
  z-index: 9999;
}

.z-1 {
  z-index: 1;
}

.gap-4 {
  gap: 8px;
}

.gap-5 {
  gap: 12px;
}

.gap-8 {
  gap: 16px;
}

.gap-10 {
  gap: 24px;
}

.gap-12 {
  gap: 32px;
}

.gap-14 {
  gap: 48px;
}

.p-12 {
  padding: 32px;
}

.pb-6 {
  padding-bottom: 12px;
}

.px-6 {
  padding-inline: 14px;
}

.px-12 {
  padding-inline: 24px;
}

.py-3 {
  padding-block: 8px;
}

.py-4 {
  padding-block: 12px;
}

.py-5 {
  padding-block: 12px;
}

.py-8 {
  padding-block: 20px;
}

.py-14 {
  padding-block: 48px;
}

.mt-4 {
  margin-top: 16px;
}

.my-8 {
  margin-block: 20px;
}

.mb-8 {
  margin-bottom: 20px;
}

.border-1 {
  border-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-inputStroke {
  border-color: var(--line);
}

.bg-onBody {
  background-color: var(--bg-elev);
}

.round-lg {
  border-radius: var(--r-lg);
}

.round-full {
  border-radius: var(--r-full);
}

@media (min-width: 576px) {
  .sm\:d-none {
    display: none !important;
  }

  .sm\:d-block {
    display: block;
  }

  .Sm\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .lg\:d-none {
    display: none !important;
  }

  .lg\:d-flex {
    display: flex;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:gap-14 {
    gap: 48px;
  }

  .lg\:fs-16 {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .container {
    padding-inline: 18px;
  }
}

/* ---------- Icons ---------- */
.icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  fill: currentColor;
  flex-shrink: 0;

  &.large {
    width: 28px;
    height: 28px;
  }

  &.small {
    width: 18px;
    height: 18px;
  }

  &.CustomSize {
    width: var(--width);
    height: var(--width);

    @media (max-width: 991px) {
      --width: 32px !important;
    }

    &.smallSize {
      @media (max-width: 767px) {
        --width: 24px !important;
      }
    }
  }
}

menu,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================
   INTRO ANIMATION (overhauled — quick & elegant)
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  z-index: 99999;
  background: var(--bg);
  display: grid;
  place-items: center;
  overflow: hidden;

  .wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    width: 100%;
    height: 100%;

    .introBar {
      background: linear-gradient(180deg, var(--bg-elev-2) 0%, var(--bg) 100%);
      width: 12.5%;
      height: 100%;
      display: block;
      border-inline-end: 1px solid rgba(255, 255, 255, 0.02);
    }
  }

  .logos {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    .mainLogo {
      position: relative;
      filter: brightness(0) invert(1);
    }

    img {
      opacity: 0;
      max-width: 160px;
      filter: brightness(0) invert(1);
    }

    .flyFav {
      position: absolute;
      width: 48px;
      height: 48px;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      filter: brightness(0) invert(1);
    }

    p {
      opacity: 0;
      color: var(--white);
      letter-spacing: 0.2em;
      font-size: 12px;
      text-transform: uppercase;
    }
  }
}

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  position: relative;
  width: 100%;
  z-index: 100;

  &.scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    animation: navSticky var(--d-md) var(--ease-out) forwards;

    nav {
      margin-top: 12px;
      background: rgba(6, 9, 18, 0.85);
    }
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 18px auto 0;
    padding: 10px 16px 10px 22px;
    background: rgba(10, 14, 26, 0.55);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--line);
    border-radius: var(--r-full);

    &>a img {
      height: 36px;
      width: auto;
    }

    ul#navMenu {
      display: flex;
      align-items: center;
      gap: 4px;

      li {
        a.navLink {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 8px 16px;
          color: var(--text-soft);
          font-size: 0.9375rem;
          font-weight: 500;
          border-radius: var(--r-full);
          transition: color var(--d-sm) var(--ease-out), background-color var(--d-sm) var(--ease-out);
          position: relative;
          white-space: nowrap;

          &::before {
            content: "";
            width: 0;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
            opacity: 0;
            transition: width var(--d-sm) var(--ease-out), opacity var(--d-sm) var(--ease-out);
          }

          &:hover {
            color: var(--text);
            background: var(--surface);
          }

          &[aria-current="page"] {
            color: var(--text);
            background: var(--surface-strong);

            &::before {
              width: 4px;
              opacity: 1;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 991px) {
  header nav {
    margin: 12px 14px 0;
    padding: 8px 12px 8px 14px;
  }

  header nav ul#navMenu {
    position: fixed;
    inset-inline-start: -100%;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    width: min(85%, 340px);
    height: 100svh;
    padding: 100px 22px 28px;
    background: rgba(6, 9, 18, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-inline-end: 1px solid var(--line);
    transition: inset-inline-start var(--d-md) var(--ease-out);
    z-index: 9998;
    gap: 6px;

    &.open {
      inset-inline-start: 0;
    }
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li a.navLink {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.0625rem;
    border-radius: var(--r-md);
    justify-content: flex-start;

    &[aria-current="page"] {
      background: linear-gradient(135deg, rgba(36, 84, 255, 0.15), rgba(0, 229, 166, 0.1));
      border: 1px solid rgba(0, 229, 166, 0.25);

      &::before {
        width: 6px;
        height: 6px;
      }
    }
  }
}

@keyframes navSticky {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

/* ---------- Buttons ---------- */
.btnHalf {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: transform var(--d-xs) var(--ease-out),
    background-color var(--d-sm) var(--ease-out),
    border-color var(--d-sm) var(--ease-out),
    color var(--d-sm) var(--ease-out),
    box-shadow var(--d-sm) var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;

  &:active {
    transform: scale(0.97);
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 100%, rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity var(--d-md) var(--ease-out);
    z-index: -1;
  }

  &:hover::before {
    opacity: 1;
  }

  &.Filled {
    background: var(--primary);
    color: var(--text);
    box-shadow: 0 8px 30px -10px var(--primary-glow);

    &:hover {
      background: #3060ff;
      box-shadow: 0 12px 40px -10px var(--primary-glow);
    }
  }

  &.reverseFilled {
    background: var(--accent);
    color: #042118;
    box-shadow: 0 8px 30px -10px var(--accent-glow);

    &:hover {
      background: #1aebb3;
      box-shadow: 0 14px 44px -10px var(--accent-glow);
    }
  }

  &.isBorder {
    background: var(--surface);
    border-color: var(--line-strong);
    color: var(--text);

    &:hover {
      background: var(--surface-strong);
      border-color: var(--accent);
      color: var(--accent);
    }
  }
}

/* hamburger */
.SwitchBtn {
  width: 44px;
  height: 44px;
  padding: 0 !important;
  display: grid;
  place-items: center;
  position: relative;

  span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--d-md) var(--ease-out), opacity var(--d-sm) var(--ease-out), top var(--d-md) var(--ease-out);

    &:nth-child(1) {
      top: 16px;
    }

    &:nth-child(2) {
      top: 21px;
    }

    &:nth-child(3) {
      top: 26px;
    }
  }

  &.close span {
    &:nth-child(1) {
      top: 21px;
      transform: rotate(45deg);
    }

    &:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }

    &:nth-child(3) {
      top: 21px;
      transform: rotate(-45deg);
    }
  }
}

/* ---------- Section base ---------- */
section:not(.Hero, .intro, .infinityScroll, .concatUs_page) {
  padding-block: clamp(64px, 6vw, 120px);
  position: relative;
}

/* ---------- Main heading block ---------- */
.mainHeading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  color: var(--text);

  &.center {
    align-items: center;
    text-align: center;
  }

  &>span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    color: var(--accent);
    background: rgba(0, 229, 166, 0.08);
    border: 1px solid rgba(0, 229, 166, 0.25);
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;

    &::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--accent);
      animation: pulse 2s var(--ease-in-out) infinite;
    }
  }

  h2 {
    color: var(--text);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ============================================
   HERO
   ============================================ */
.Hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  padding-block: 80px;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(800px 400px at 50% 100%, rgba(36, 84, 255, 0.18), transparent 60%),
      radial-gradient(600px 300px at 50% 50%, rgba(0, 229, 166, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .container {
    z-index: 2;
  }

  .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: min(820px, 100%);
    margin-inline: auto;
    padding-block-end: 80px;

    h1 {
      font-size: clamp(2rem, 1.4rem + 2.6vw, 3.75rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.015em;
    }

    p {
      font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    .text-mainColorLight {
      background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
  }

  /* Hero radar scan */
  .Col-wrapper {
    position: absolute;
    inset: auto 0 0 0;
    height: 60svh;
    display: flex;
    align-items: end;
    z-index: 0;
    opacity: 0.5;

    .bar {
      flex: 1;
      background: linear-gradient(180deg, transparent 0%, var(--primary) 60%, var(--accent) 100%);
      display: block;
      border-radius: 2px 2px 0 0;
      margin-inline: 1px;

      &:nth-child(1) {
        height: 100%;
      }

      &:nth-child(2) {
        height: 80%;
      }

      &:nth-child(3) {
        height: 60%;
      }

      &:nth-child(4) {
        height: 40%;
      }

      &:nth-child(5) {
        height: 20%;
      }

      &:nth-child(6) {
        height: 12%;
      }

      &:nth-child(7) {
        height: 20%;
      }

      &:nth-child(8) {
        height: 40%;
      }

      &:nth-child(9) {
        height: 60%;
      }

      &:nth-child(10) {
        height: 80%;
      }

      &:nth-child(11) {
        height: 100%;
      }
    }
  }

  /* Hero coordinate grid corners */
  .corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid var(--line-strong);
    z-index: 1;
    opacity: 0.8;

    &.tl {
      top: 24px;
      inset-inline-start: 24px;
      border-inline-end: 0;
      border-block-end: 0;
    }

    &.tr {
      top: 24px;
      inset-inline-end: 24px;
      border-inline-start: 0;
      border-block-end: 0;
    }

    &.bl {
      bottom: 24px;
      inset-inline-start: 24px;
      border-inline-end: 0;
      border-block-start: 0;
    }

    &.br {
      bottom: 24px;
      inset-inline-end: 24px;
      border-inline-start: 0;
      border-block-start: 0;
    }
  }

  /* Hero stats strip (new content section) */
  .heroStats {
    position: absolute;
    inset-inline: 0;
    bottom: 32px;
    display: flex;
    justify-content: center;
    gap: clamp(24px, 5vw, 64px);
    flex-wrap: wrap;
    z-index: 3;

    .stat {
      text-align: center;

      .num {
        font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.01em;
        line-height: 1;

        span {
          color: var(--accent);
        }
      }

      .label {
        display: block;
        margin-top: 8px;
        font-size: 0.8125rem;
        color: var(--text-soft);
      }
    }
  }
}

@media (max-width: 587px) {
  .Hero .Col-wrapper .bar:nth-child(1),
  .Hero .Col-wrapper .bar:nth-child(2),
  .Hero .Col-wrapper .bar:nth-child(10),
  .Hero .Col-wrapper .bar:nth-child(11) {
    display: none;
  }
}

@media (max-width: 767px) {
  .Hero .corner {
    display: none;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.aboutUs {
  .container {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    flex-wrap: wrap;
  }

  .content {
    flex: 1;
    min-width: 280px;

    .des {
      color: var(--text-muted);
      font-size: 1.0625rem;
      line-height: 1.85;
      max-width: 60ch;
    }
  }

  figure {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: 10%;
      background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
      filter: blur(60px);
      z-index: 0;
    }

    img {
      width: 80%;
      max-width: 480px;
      position: relative;
      z-index: 1;
    }
  }
}

@media (max-width: 991px) {
  .aboutUs .container {
    flex-direction: column;
  }
}

/* ============================================
   INFINITY SCROLL (partners marquee)
   ============================================ */
.infinityScroll {
  background: linear-gradient(90deg, var(--bg-elev-2), var(--bg-elev) 50%, var(--bg-elev-2));
  border-block: 1px solid var(--line);
  padding-block: 28px;
  overflow: hidden;
  direction: ltr;
  position: relative;

  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  &::before {
    inset-inline-start: 0;
    background: linear-gradient(90deg, var(--bg-elev-2), transparent);
  }

  &::after {
    inset-inline-end: 0;
    background: linear-gradient(-90deg, var(--bg-elev-2), transparent);
  }

  .wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    will-change: transform;

    .content {
      direction: rtl;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;

      img {
        height: 40px;
        width: auto;
        opacity: 0.9;
      }

      h2 {
        font-size: 1.125rem;
        color: var(--text-muted);
        font-weight: 500;
      }

      &::after {
        content: "◆";
        color: var(--accent);
        margin-inline-start: 24px;
        font-size: 1.5rem;
      }
    }
  }
}

/* ============================================
   SOLUTIONS (bento card grid)
   ============================================ */
.Solutions {
  position: relative;

  .container.d-grid {
    gap: 16px !important;
  }

  .card {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px;
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--d-md) var(--ease-out),
      border-color var(--d-md) var(--ease-out),
      background var(--d-md) var(--ease-out);
    isolation: isolate;

    &::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      inset-block-start: -140px;
      inset-inline-end: -140px;
      background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
      filter: blur(40px);
      opacity: 0;
      transition: opacity var(--d-lg) var(--ease-out);
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.04));
      opacity: 0;
      transition: opacity var(--d-md) var(--ease-out);
      pointer-events: none;
    }

    svg {
      transition: transform var(--d-md) var(--ease-spring), color var(--d-md) var(--ease-out);
      color: var(--accent);
    }

    h3 {
      color: var(--text);
      margin-bottom: 6px;
      font-size: 1.125rem;
      font-weight: 700;
    }

    p {
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.7;
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .Solutions .card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 166, 0.3);

    &::before {
      opacity: 1;
    }

    &::after {
      opacity: 1;
    }

    svg {
      transform: scale(1.05);
      color: var(--accent);
    }
  }
}

/* ============================================
   CASES — swiper / grid
   ============================================ */
.cases {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);

  .sectionHead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;

    .mainHeading {
      margin-bottom: 0;
    }
  }

  .swiperButton {
    display: flex;
    align-items: center;
    gap: 12px;

    .swiper-button-next,
    .swiper-button-prev {
      position: relative;
      inset: auto !important;
      width: 52px;
      height: 52px;
      border: 1px solid var(--line-strong);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--surface);
      cursor: pointer;
      transition: transform var(--d-xs) var(--ease-out),
        border-color var(--d-sm) var(--ease-out),
        background var(--d-sm) var(--ease-out);
      margin: 0 !important;

      &::after {
        display: none;
      }

      svg {
        color: var(--text);
        transition: color var(--d-sm) var(--ease-out);
      }

      &:active {
        transform: scale(0.95);
      }
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .cases .swiperButton .swiper-button-next:hover,
  .cases .swiperButton .swiper-button-prev:hover {
    border-color: var(--accent);
    background: rgba(0, 229, 166, 0.1);

    svg {
      color: var(--accent);
    }
  }
}

.cases .caseCard,
.Cases_page .caseCard {
  position: relative;
  height: 460px;
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100% !important;
  transition: transform var(--d-md) var(--ease-out), filter var(--d-md) var(--ease-out), opacity var(--d-md) var(--ease-out);
  isolation: isolate;

  figure {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--r-md);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--d-xl) var(--ease-out);
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(4, 6, 12, 0) 30%, rgba(4, 6, 12, 0.9) 100%);
      z-index: 1;
      transition: opacity var(--d-md) var(--ease-out);
    }
  }

  .content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 24px;
    z-index: 2;
    display: grid;
    gap: 8px;
    transition: transform var(--d-md) var(--ease-out);

    h4 {
      color: var(--text);
      font-weight: 700;
      font-size: 1.25rem;
    }

    p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    ul {
      display: grid;
      gap: 6px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height var(--d-lg) var(--ease-out), opacity var(--d-md) var(--ease-out), margin-top var(--d-md) var(--ease-out);

      li {
        position: relative;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
        padding-inline-start: 18px;

        &::before {
          content: "";
          position: absolute;
          inset-inline-start: 0;
          top: 9px;
          width: 6px;
          height: 6px;
          background: var(--accent);
          border-radius: 50%;
          box-shadow: 0 0 8px var(--accent);
        }
      }
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .cases .caseCard:hover figure img,
  .Cases_page .caseCard:hover figure img {
    transform: scale(1.05);
  }

  .cases .caseCard:hover .content ul,
  .Cases_page .caseCard:hover .content ul {
    max-height: 200px;
    opacity: 1;
    margin-top: 6px;
  }

  .cases .swiper-wrapper:hover .caseCard:not(:hover) {
    filter: grayscale(0.5);
    opacity: 0.7;
  }
}

.Cases_page {
  background: var(--bg);
}

/* ============================================
   CONTACT (CTA section)
   ============================================ */
.contact {
  position: relative;
  overflow: hidden;

  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 480px;
    aspect-ratio: 1;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
  }

  &::before {
    background: rgba(0, 229, 166, 0.18);
    inset-block-start: -100px;
    inset-inline-start: -100px;
  }

  &::after {
    background: rgba(36, 84, 255, 0.18);
    inset-block-end: -100px;
    inset-inline-end: -100px;
  }

  .content {
    text-align: center;
    display: grid;
    gap: 24px;
    place-items: center;
    width: min(720px, 100%);
    margin-inline: auto;

    .iconContainer {
      display: grid;
      place-items: center;
      width: 64px;
      aspect-ratio: 1;
      background: rgba(0, 229, 166, 0.1);
      border: 1px solid rgba(0, 229, 166, 0.4);
      border-radius: var(--r-md);
      color: var(--accent);
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: -8px;
        border: 1px solid rgba(0, 229, 166, 0.2);
        border-radius: calc(var(--r-md) + 8px);
        animation: pulseRing 2s var(--ease-in-out) infinite;
      }
    }

    h3 {
      line-height: 1.15;
      font-size: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
    }

    p {
      color: var(--text-muted);
      max-width: 540px;
    }
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.Partners {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);

  .content {
    width: 100%;

    p {
      width: min(720px, 100%);
      margin-inline: auto;
    }
  }

  .partLogos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-block: 48px;
    flex-wrap: wrap;

    img {
      height: 180px;
      max-width: 100%;
      object-fit: contain;
    }

    svg {
      color: var(--text-soft);
      opacity: 0.6;
    }
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.Breadcrumb {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
  padding-block: 80px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 200px at 50% 100%, var(--primary-glow), transparent 70%);
    opacity: 0.5;
  }

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

  h2 {
    color: var(--text);
    font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    padding-block: 0;
  }

  ul {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.9375rem;

    a {
      color: var(--accent);
      transition: color var(--d-sm) var(--ease-out);

      &:hover {
        color: var(--text);
      }
    }

    svg {
      color: var(--text-soft);
    }
  }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */
.concatUs_page {
  padding-block: 80px;

  .content,
  form {
    padding: 32px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
  }

  .content {
    padding: 32px;

    .head {
      h3 {
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 8px;
      }

      p {
        color: var(--text-muted);
      }
    }

    .concatLinks {
      display: grid;
      gap: 16px;
      margin-block: 28px;

      li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        transition: border-color var(--d-sm) var(--ease-out), background var(--d-sm) var(--ease-out);
        margin-bottom: 0 !important;

        &:hover {
          border-color: var(--accent);
          background: var(--surface-strong);
        }

        .iconContainer {
          display: grid;
          place-items: center;
          width: 44px;
          height: 44px;
          background: var(--primary);
          border-radius: 50%;
          color: var(--text);
          flex-shrink: 0;
        }

        a {
          color: var(--text);
        }
      }
    }

    .socialLinks {
      display: flex;
      align-items: center;
      gap: 16px;

      a {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--text);
        transition: transform var(--d-xs) var(--ease-out), border-color var(--d-sm) var(--ease-out), color var(--d-sm) var(--ease-out);

        &:hover {
          border-color: var(--accent);
          color: var(--accent);
          transform: translateY(-2px);
        }

        &:active {
          transform: scale(0.95);
        }
      }

      svg {
        color: currentColor;
        width: 20px;
        height: 20px;
      }
    }
  }

  form {
    .head {
      h3 {
        color: var(--text);
      }

      p {
        color: var(--text-muted);
      }
    }

    .formGroup {
      display: grid;
      gap: 6px;
      width: 100%;
      margin-bottom: 16px;

      label {
        color: var(--text-muted);
        font-size: 0.875rem;
        padding-inline: 4px;
      }

      input,
      textarea {
        width: 100%;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: 14px 18px;
        color: var(--text);
        font-size: 0.9375rem;
        transition: border-color var(--d-sm) var(--ease-out), background var(--d-sm) var(--ease-out);
        outline: none;

        &::placeholder {
          color: var(--text-dim);
        }

        &:focus {
          border-color: var(--accent);
          background: var(--surface-strong);
          box-shadow: 0 0 0 4px rgba(0, 229, 166, 0.1);
        }
      }

      input {
        height: 52px;
        border-radius: var(--r-full);
      }

      textarea {
        min-height: 160px;
        padding-block: 16px;
        resize: vertical;
      }
    }
  }
}

/* ============================================
   FEATURES / Stats / Process — new modern sections
   ============================================ */
.statsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;

  .stat {
    position: relative;
    padding: 28px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out);

    &::before {
      content: "";
      position: absolute;
      top: 0;
      inset-inline-start: 0;
      width: 4px;
      height: 0;
      background: var(--accent);
      transition: height var(--d-lg) var(--ease-out);
    }

    .num {
      font-size: clamp(2rem, 1.5rem + 1.6vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1;
      background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .label {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-top: 8px;
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .statsGrid .stat:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);

    &::before {
      height: 100%;
    }
  }
}

/* Process timeline */
.processList {
  display: grid;
  gap: 16px;
}

.processStep {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: start;
  transition: transform var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out);

  .stepNum {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: rgba(36, 84, 255, 0.1);
    border: 1px solid rgba(36, 84, 255, 0.4);
    border-radius: 12px;
    color: var(--cyan);
    font-weight: 700;
    font-size: 1.125rem;
    font-feature-settings: "tnum";
  }

  h4 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.125rem;
  }

  p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .processStep:hover {
    transform: translateX(4px);
    border-color: var(--line-strong);
  }

  html[lang="ar"] .processStep:hover {
    transform: translateX(-4px);
  }
}

/* Feature row (about) */
.featureGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;

  .feature {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);

    .ic {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      background: rgba(0, 229, 166, 0.1);
      border-radius: 10px;
      color: var(--accent);
      flex-shrink: 0;
    }

    h5 {
      color: var(--text);
      font-weight: 600;
      font-size: 0.9375rem;
      margin-bottom: 4px;
    }

    p {
      color: var(--text-muted);
      font-size: 0.8125rem;
      line-height: 1.6;
    }
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  padding-block: 64px 0;
  position: relative;

  .container>.d-grid {
    gap: 48px;
  }

  .footerAbout {
    img {
      height: 80px;
      width: auto;
    }

    p {
      color: var(--text-muted);
      max-width: 320px;
      margin-block: 20px;
      line-height: 1.7;
    }
  }

  .footerLinks {
    h4 {
      color: var(--text);
      margin-bottom: 20px;
      font-weight: 600;
      font-size: 1.0625rem;
    }

    ul {
      display: grid;
      gap: 4px;
    }

    li {
      padding-block: 6px;

      a {
        color: var(--text-soft);
        transition: color var(--d-sm) var(--ease-out), transform var(--d-sm) var(--ease-out);
        display: inline-block;

        &:hover {
          color: var(--accent);
        }
      }
    }
  }

  html[lang="ar"] .footerLinks li a:hover {
    transform: translateX(-4px);
  }

  .copyRight {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-block: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    p {
      color: var(--text-soft);
      font-size: 0.875rem;
    }

    a {
      color: var(--text-soft);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color var(--d-sm) var(--ease-out);
      font-size: 0.875rem;

      &:hover {
        color: var(--accent);
      }

      img {
        width: 24px;
        height: 24px;
      }
    }

    .Year {
      color: var(--text-soft);
      font-size: 0.875rem;
      font-feature-settings: "tnum";
    }
  }
}

/* ============================================
   WHY US
   ============================================ */
.whyUsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.whyCard {
  display: grid;
  gap: 14px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--d-md) var(--ease-out), background var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out);

  .whyNum {
    position: absolute;
    top: 12px;
    inset-inline-end: 18px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    font-feature-settings: "tnum";
    line-height: 1;
    pointer-events: none;
  }

  .whyIcon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 166, 0.1);
    border: 1px solid rgba(0, 229, 166, 0.3);
    border-radius: 10px;
    color: var(--accent);
  }

  h4 {
    color: var(--text);
    font-weight: 700;
    font-size: 1.0625rem;
  }

  p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
  }
}

@media (hover: hover) and (pointer: fine) {
  .whyCard:hover {
    background: var(--surface-strong);
    border-color: var(--line-strong);
    transform: translateY(-3px);

    .whyNum {
      color: rgba(0, 229, 166, 0.08);
    }
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.testimonialCard {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  gap: 20px;
  transition: transform var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out);

  .quoteMark {
    font-family: serif;
    font-size: 4rem;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.3;
  }

  blockquote {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
  }

  .author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: grid;
      place-items: center;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .name {
      color: var(--text);
      font-weight: 600;
      font-size: 0.9375rem;
    }

    .role {
      color: var(--text-soft);
      font-size: 0.8125rem;
    }
  }

  .metric {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 229, 166, 0.1);
    border: 1px solid rgba(0, 229, 166, 0.25);
    border-radius: var(--r-full);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
  }
}

@media (hover: hover) and (pointer: fine) {
  .testimonialCard:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
  }
}

/* ============================================
   CERTIFICATIONS / TRUST BAR
   ============================================ */
.certsBar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.certItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background var(--d-sm) var(--ease-out);

  &:hover {
    background: var(--surface);
  }

  .certIcon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: rgba(36, 84, 255, 0.1);
    border: 1px solid rgba(36, 84, 255, 0.3);
    border-radius: 10px;
    color: var(--cyan);
    flex-shrink: 0;
  }

  .certText {
    display: grid;
    gap: 2px;

    .certName {
      color: var(--text);
      font-weight: 600;
      font-size: 0.875rem;
    }

    .certDesc {
      color: var(--text-soft);
      font-size: 0.75rem;
    }
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faqList {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faqItem {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--d-sm) var(--ease-out), background var(--d-sm) var(--ease-out);

  &:hover {
    border-color: var(--line-strong);
  }

  &[data-open="true"] {
    border-color: rgba(0, 229, 166, 0.3);
    background: var(--bg-elev-2);

    .faqQuestion {
      color: var(--accent);

      .faqIcon {
        transform: rotate(45deg);
        background: var(--accent);
        color: #042118;
        border-color: var(--accent);
      }
    }

    .faqAnswer {
      grid-template-rows: 1fr;
    }
  }

  .faqQuestion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: start;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--d-sm) var(--ease-out);

    .faqIcon {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 1rem;
      font-weight: 400;
      flex-shrink: 0;
      transition: transform var(--d-md) var(--ease-out), background var(--d-sm) var(--ease-out), color var(--d-sm) var(--ease-out);
    }
  }

  .faqAnswer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--d-md) var(--ease-out);

    &>div {
      overflow: hidden;
    }

    p {
      padding: 0 24px 22px;
      color: var(--text-muted);
      line-height: 1.75;
      font-size: 0.9375rem;
    }
  }
}

/* ============================================
   OVERLAY
   ============================================ */
.overLay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--d-md) var(--ease-out);
  z-index: 9997;
  background: rgba(4, 6, 12, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  &.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================
   SWIPER
   ============================================ */
.swiper {
  width: 100%;
  height: 100%;

  .swiper-slide {
    height: auto;
  }
}

@media (max-width: 576px) {
  .swiper .swiper-slide {
    max-width: 100vw;
    width: 100% !important;
  }
}

/* ============================================
   SCROLL REVEAL (CSS-based, GSAP-enhanced)
   ============================================ */
.fadeIn {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--d-xl) var(--ease-out), transform var(--d-xl) var(--ease-out);

  &.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.imgUpDown,
.imgDownUp {
  will-change: transform, opacity, clip-path;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industriesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.industryCard {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out), background var(--d-md) var(--ease-out);
  isolation: isolate;

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: inset-inline-start;
    transition: transform var(--d-md) var(--ease-out);
  }

  .industryIcon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(36, 84, 255, 0.15), rgba(0, 229, 166, 0.1));
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--accent);
  }

  h4 {
    color: var(--text);
    font-weight: 700;
    font-size: 1.0625rem;
  }

  p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .industryArrow {
    position: absolute;
    bottom: 20px;
    inset-inline-end: 20px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: transform var(--d-md) var(--ease-out), opacity var(--d-md) var(--ease-out);
  }
}

html[lang="ar"] .industryCard .industryArrow {
  transform: translateX(6px) scaleX(-1);
}

@media (hover: hover) and (pointer: fine) {
  .industryCard:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: var(--bg-elev-2);

    &::after {
      transform: scaleX(1);
    }

    .industryArrow {
      transform: translateX(0);
      opacity: 1;
    }
  }

  html[lang="ar"] .industryCard:hover .industryArrow {
    transform: translateX(0) scaleX(-1);
  }
}

/* ============================================
   TECH STACK
   ============================================ */
.techGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.techCard {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: start;
  transition: transform var(--d-md) var(--ease-out), border-color var(--d-md) var(--ease-out);
  display: grid;
  gap: 12px;

  .badge {
    display: inline-flex;
    align-self: start;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    background: rgba(106, 216, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(106, 216, 255, 0.3);
    border-radius: var(--r-full);
  }

  h4 {
    color: var(--text);
    font-weight: 700;
    font-size: 1.125rem;
  }

  p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .techList {
    display: grid;
    gap: 6px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);

    li {
      position: relative;
      padding-inline-start: 18px;
      color: var(--text-soft);
      font-size: 0.8125rem;

      &::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 8px;
        width: 4px;
        height: 4px;
        background: var(--cyan);
        border-radius: 50%;
      }
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .techCard:hover {
    transform: translateY(-4px);
    border-color: rgba(106, 216, 255, 0.4);
  }
}

/* ============================================
   ACCESSIBILITY — reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fadeIn {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {

  body::before,
  .Hero .Col-wrapper,
  .infinityScroll,
  .intro {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}



.appLogo{
  height: 48px;
  padding: 4px;
  padding-inline-start: 12px;
  img{
    height: 100%;
    filter: brightness(0) invert(1);
  }
}