
    :root {
      --bg: #05060b;
      --bg-soft: rgba(255, 255, 255, 0.04);
      --bg-card: rgba(10, 12, 18, 0.55);
      --bg-card-strong: rgba(8, 10, 16, 0.75);

      --text: #ffffff;
      --text-muted: #c0c7d3;

      --primary: #ff1e2d;
      --primary-2: #ff505b;
      --primary-border: rgba(255, 60, 75, 0.28);

      --white-border: rgba(255, 255, 255, 0.12);

      --shadow-red: 0 0 16px rgba(255, 30, 45, 0.18),
                    0 0 40px rgba(255, 30, 45, 0.10);
      --shadow-red-strong: 0 0 22px rgba(255, 30, 45, 0.28),
                           0 0 72px rgba(255, 30, 45, 0.18);

      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 36px;

      --container: 1240px;
      --transition: 0.35s ease;
      --section-space: 100px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Alexandria", sans-serif;
  
      color: var(--text);
      background: #05060b;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,0.04), transparent 18%),
        radial-gradient(circle at 28% 78%, rgba(255, 30, 45, 0.05), transparent 24%),
        radial-gradient(circle at 85% 72%, rgba(255,255,255,0.03), transparent 16%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.08;
      background-image: radial-gradient(rgba(255,255,255,0.9) 0.7px, transparent 0.7px);
      background-size: 180px 180px;
      animation: starDrift 18s linear infinite;
    }

    @keyframes starDrift {
      from { transform: translateY(0); }
      to { transform: translateY(-40px); }
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      color: inherit;
      cursor: pointer;
      font: inherit;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      position: relative;
      z-index: 2;
    }

    .section {
      padding: var(--section-space) 0;
      position: relative;
      z-index: 1;
    }

    .glass {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        var(--bg-card);
      border: 1px solid var(--white-border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    }

    .glow-border {
      position: relative;
      overflow: hidden;
    }

    .glow-border::after {
      content: "";
      position: absolute;
      inset: auto 18% 0 18%;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 30, 45, 0.55),
        transparent
      );
    }

    .section-title {
      font-family: "Alexandria", sans-serif;
      font-size: clamp(2rem, 4vw, 3.8rem);
      text-align: center;
      letter-spacing: 2px;
      color: #ff606a;
      text-shadow: 0 0 18px rgba(255, 30, 45, 0.22);
      margin-bottom: 16px;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto 48px;
      text-align: center;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 1.02rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.985);
      transition: 0.8s ease;
    }

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

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(7, 9, 15, 0.34);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .site-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .nav-logo-wrap {
      width: 110px;
      height: 72px;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: var(--shadow-red);
      animation: logoFloat 5s ease-in-out infinite;
    }

    .nav-logo-wrap::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: conic-gradient(
        from 180deg,
        transparent,
        rgba(255, 30, 45, 0.3),
        transparent,
        rgba(255,255,255,0.08),
        transparent
      );
      animation: logoSpin 7s linear infinite;
    }

    .nav-logo-wrap::after {
      content: "";
      position: absolute;
      inset: 2px;
      border-radius: 16px;
      background: rgba(10, 12, 18, 0.92);
    }

    .nav-logo {
      position: relative;
      z-index: 2;
      width: 88px;
      height: auto;
      max-height: 42px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 0 12px rgba(255, 30, 45, 0.28));
      animation: logoPulse 3.5s ease-in-out infinite;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-title {
      font-family: "Alexandria", sans-serif;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 2px;
      white-space: nowrap;
    }

    .brand-title span {
      color: var(--primary-2);
      text-shadow: 0 0 12px rgba(255, 30, 45, 0.35);
    }

    .brand-slogan {
      color: var(--text-muted);
      font-size: 0.84rem;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    @keyframes logoSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes logoPulse {
      0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 30, 45, 0.22));
      }
      50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 18px rgba(255, 30, 45, 0.42));
      }
    }

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

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .desktop-nav a {
      font-family: "Alexandria", sans-serif;
      font-size: 0.82rem;
      letter-spacing: 1.15px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: var(--transition);
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      border-color: var(--primary-border);
      box-shadow: var(--shadow-red);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      position: relative;
      flex-shrink: 0;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 14px;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: 0.3s ease;
    }

    .menu-toggle span { top: 25px; }
    .menu-toggle::before { top: 18px; }
    .menu-toggle::after { top: 32px; }

    .menu-toggle.active span {
      opacity: 0;
    }

    .menu-toggle.active::before {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 90px 16px auto 16px;
      z-index: 40;
      border-radius: 24px;
      padding: 14px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      transition: 0.35s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 18px;
      border-radius: 16px;
      margin-bottom: 8px;
      font-family: "Alexandria", sans-serif;
      letter-spacing: 1px;
      border: 1px solid transparent;
      transition: var(--transition);
    }

    .mobile-menu a:hover {
      border-color: var(--primary-border);
      background: rgba(255,255,255,0.03);
      box-shadow: var(--shadow-red);
    }

/* HERO */
/* HERO */
.hero,
.hero.section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #05060b;
}


 /* ABOUT - FINAL CLEAN */
/* ABOUT - FINAL CLEAN */
.about-section {
  position: relative;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #05060b;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,11,0.08), rgba(5,6,11,0.28)),
    linear-gradient(90deg, rgba(5,6,11,0.18), rgba(5,6,11,0.08), rgba(5,6,11,0.48));
}

.about-container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-note {
  width: min(540px, 100%);
  margin-left: auto !important;
  margin-right: 70px !important;
  padding: 36px 34px;
  border-radius: 32px;

  background:
    linear-gradient(145deg, rgba(18, 21, 30, 0.78), rgba(7, 9, 15, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 35px rgba(255, 30, 45, 0.08);

  overflow: hidden;
}

.about-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 80, 91, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 35%);
  pointer-events: none;
}

.about-note-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #ff5b66;
  background: rgba(255, 80, 91, 0.08);
  border: 1px solid rgba(255, 80, 91, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-note-title {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #ff505b;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-note-text {
  position: relative;
  z-index: 1;
  color: rgba(230, 235, 245, 0.82);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.about-note-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-container {
    justify-content: center;
  }

  .about-note {
    margin: 0 16px;
  }
}


[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* Disabled old RTL header rule: header direction is fixed at the end of this file. */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lang-track {
  position: relative;
  width: 86px;
  height: 40px;
  padding: 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(255,30,45,0.12);
  overflow: hidden;
}

.lang-option {
  position: relative;
  z-index: 2;
  width: 38px;
  text-align: center;
  font-family: "Alexandria", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  transition: 0.35s ease;
}

.lang-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1e2d, #ff505b);
  box-shadow: 0 0 18px rgba(255,30,45,0.35);
  transition: 0.35s ease;
  z-index: 1;
}

.lang-toggle.is-en .lang-option:first-child,
.lang-toggle.is-ar .lang-option:nth-child(2) {
  color: #fff;
}

.lang-toggle.is-ar .lang-thumb {
  transform: translateX(40px);
}

.lang-toggle:hover .lang-track {
  border-color: rgba(255,80,90,0.38);
}

.lang-toggle:hover .lang-thumb {
  box-shadow: 0 0 26px rgba(255,30,45,0.55);
}



    /* SERVICES */
    .services-experience-section {
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .services-bg-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(
          180deg,
          rgba(5, 6, 11, 0.40) 0%,
          rgba(5, 6, 11, 0.20) 35%,
          rgba(5, 6, 11, 0.24) 70%,
          rgba(5, 6, 11, 0.42) 100%
        ),
        url("/assets/images/clients.png") center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.82);
      transform: scale(1.04);
    }

    .services-experience-section::before,
    .services-experience-section::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 140px;
      z-index: 1;
      pointer-events: none;
    }

    .services-experience-section::before {
      top: 0;
      background: linear-gradient(
        180deg,
        rgba(5, 6, 11, 0.88) 0%,
        rgba(5, 6, 11, 0.34) 55%,
        rgba(5, 6, 11, 0) 100%
      );
    }

    .services-experience-section::after {
      bottom: -1px;
      background: linear-gradient(
        0deg,
        rgba(5, 6, 11, 0.88) 0%,
        rgba(5, 6, 11, 0.34) 55%,
        rgba(5, 6, 11, 0) 100%
      );
    }

    .services-experience-section .container {
      position: relative;
      z-index: 2;
    }

    .services-experience {
      display: grid;
      grid-template-columns: 1fr 150px;
      gap: 22px;
      align-items: stretch;
    }

    .services-stage {
      position: relative;
      min-height: 600px;
      border-radius: 30px;
      overflow: hidden;
      background: rgba(5, 6, 11, 0.20);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .services-preview-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transform: scale(1.02);
      transition: opacity 0.45s ease, transform 0.65s ease;
    }

    .services-stage-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          90deg,
          rgba(6, 8, 14, 0.70) 0%,
          rgba(6, 8, 14, 0.34) 36%,
          rgba(6, 8, 14, 0.18) 58%,
          rgba(6, 8, 14, 0.55) 100%
        ),
        radial-gradient(circle at center, rgba(255, 30, 45, 0.08), transparent 24%);
      pointer-events: none;
    }

    .services-stage-content {
      position: absolute;
      left: 28px;
      bottom: 28px;
      z-index: 2;
      max-width: 520px;
      padding: 22px 22px 18px;
      border-radius: 24px;
      background: rgba(8, 10, 16, 0.34);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: transform 0.45s ease, opacity 0.45s ease;
    }

    .services-stage-content.is-switching {
      opacity: 0.4;
      transform: translateY(8px) scale(0.985);
    }

    .services-stage-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 14px;
      border-radius: 999px;
      margin-bottom: 14px;
      font-family: "Alexandria", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 1px;
      color: var(--text-muted);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
    }

    .services-stage-content h3 {
      font-family: "Alexandria", sans-serif;
      font-size: clamp(1.8rem, 3vw, 3rem);
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .services-stage-content p {
      color: #d4d8e0;
      line-height: 1.8;
      font-size: 1rem;
    }

    .services-nav-wrap {
      display: flex;
      align-items: center;
    }

    .services-nav-viewport {
      height: 680px;
      width: 100%;
      overflow: hidden;
      border-radius: 28px;
      padding: 8px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(10, 12, 18, 0.34);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .services-nav-list {
      height: 100%;
      overflow-y: auto;
      padding-right: 4px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      scrollbar-width: none;
    }

    .services-nav-list::-webkit-scrollbar {
      display: none;
    }

    .service-nav-btn {
      width: 100%;
      min-height: 108px;
      padding: 0;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.02);
      transition: 0.35s ease;
      position: relative;
    }

    .service-nav-btn img {
      width: 100%;
      height: 108px;
      object-fit: cover;
      display: block;
      transition: 0.35s ease;
    }

    .service-nav-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px transparent;
      transition: 0.35s ease;
    }

    .service-nav-btn:hover {
      transform: translateX(-4px) scale(1.01);
      box-shadow: 0 10px 24px rgba(0,0,0,0.24);
    }

    .service-nav-btn:hover img {
      transform: scale(1.04);
    }

    .service-nav-btn.active {
      transform: translateX(-8px) scale(1.02);
      border-color: rgba(255, 80, 80, 0.35);
      box-shadow:
        0 0 20px rgba(255, 30, 45, 0.18),
        0 12px 30px rgba(0,0,0,0.26);
    }

    .service-nav-btn.active::after {
      box-shadow: inset 0 0 0 1px rgba(255, 80, 80, 0.22);
    }

    .service-nav-btn.active img {
      transform: scale(1.05);
    }

    .services-stage.video-switching .services-preview-video {
      opacity: 0.22;
      transform: scale(1.05);
    }

    /* FEATURED */
   .featured-section {
  position: relative;
  padding: 100px 0;
}

.featured-section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 20, 0.75),
      rgba(3, 6, 16, 0.92)
    ),
    url("/assets/images/clients.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: brightness(0.8) contrast(1.05);
}

.featured-header {
  text-align: center;
  margin-bottom: 34px;
}

.featured-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

  

.featured-showcase {
  position: relative;
  width: min(78%, 980px);
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25,25,30,0.9), rgba(15,15,20,0.78));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.featured-video-frame {
  width: 80%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  
}

.featured-video-frame iframe {
  width: 80%;
  height: 80%;
  display: inline-block;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.featured-copy h3 {
  margin: 0 0 10px;
  font-size: 34px;
}

.featured-copy p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 16px;
}

.featured-arrow {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 80, 110, 0.22);
  border-radius: 50%;
  background: rgba(10, 12, 24, 0.78);
  color: #ff5a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.featured-arrow span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.featured-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(255, 70, 90, 0.16);
  border-color: rgba(255, 80, 110, 0.4);
}

@media (max-width: 900px) {
  .featured-layout {
    gap: 14px;
  }

  .featured-showcase {
    width: min(86%, 980px);
    padding: 16px;
    border-radius: 20px;
  }

  .featured-copy h3 {
    font-size: 26px;
  }

  .featured-copy p {
    font-size: 14px;
  }

  .featured-arrow {
    width: 50px;
    height: 50px;
  }

  .featured-arrow span {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .featured-layout {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
  }

  .featured-showcase {
    width: 100%;
  }
}

    /* CLIENTS */
   /* CLIENTS */
.clients-section{
  position:relative;
  overflow:hidden;
  padding:80px 0 !important;
  margin:0 !important;
  background:#05060b;
}

.clients-bg-layer{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(180deg,rgba(5,6,11,.84),rgba(5,6,11,.96)),
    radial-gradient(circle at 20% 20%,rgba(255,30,45,.12),transparent 28%),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,.045),transparent 24%),
    url("/assets/images/clients.png") center / cover no-repeat;
  filter:brightness(.78) contrast(1.08);
  transform:scale(1.04);
}

.clients-section .container{
  position:relative;
  z-index:2;
}

.clients-header{
  text-align:center;
  margin-bottom:34px;
}

.clients-marquee-wrap{
  position:relative;
  width:100%;
  max-width:1120px;
  margin:0 auto;
  overflow:hidden;
  padding:20px 0;
  border-radius:26px;
}

.clients-marquee{
  width:100%;
  overflow:hidden;
}

.clients-marquee-track{
  display:flex;
  align-items:center;
  gap:54px;
  width:max-content;
  animation:clientsLogoMove 28s linear infinite;
  will-change:transform;
}

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

.client-marquee-item{
  flex:0 0 auto;
  min-width:155px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 22px;
  border-radius:22px;
  background:rgba(255,255,255,.032);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:.35s ease;
}

.client-marquee-item img{
  max-width:140px;
  max-height:52px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:.76;
  filter:grayscale(1) brightness(.92);
  transition:.35s ease;
}

.client-marquee-item:hover{
  transform:translateY(-6px);
  border-color:rgba(255,80,91,.28);
  box-shadow:0 18px 42px rgba(0,0,0,.34),0 0 22px rgba(255,30,45,.1);
}

.client-marquee-item:hover img{
  opacity:1;
  filter:grayscale(0) brightness(1.05);
  transform:scale(1.06);
}

.clients-marquee-fade{
  position:absolute;
  top:0;
  bottom:0;
  width:110px;
  z-index:3;
  pointer-events:none;
}

.clients-marquee-fade.left{
  left:0;
  background:linear-gradient(to right,#05060b,transparent);
}

.clients-marquee-fade.right{
  right:0;
  background:linear-gradient(to left,#05060b,transparent);
}

@keyframes clientsLogoMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@media(max-width:768px){
  .clients-section{
    padding:66px 0 !important;
  }

  .clients-marquee-track{
    gap:30px;
    animation-duration:24s;
  }

  .client-marquee-item{
    min-width:126px;
    height:68px;
    padding:12px 18px;
    border-radius:18px;
  }

  .client-marquee-item img{
    max-width:110px;
    max-height:40px;
  }

  .clients-marquee-fade{
    width:50px;
  }
}
    /* CTA */
  .contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 30, 45, 0.12), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(180deg, rgba(5, 6, 11, 0.34), rgba(5, 6, 11, 0.52));
  z-index: 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info-card,
.contact-form {
  border-radius: 30px;
  padding: 28px;
  margin: 50px;
}

.contact-info-card h3,
.contact-form h3 {
  font-family: "Alexandria", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.contact-info-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.contact-info-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-list li {
  display: grid;
  gap: 4px;
  color: #d4d8e0;
}

.contact-info-list li span {
  font-family: "Space Grotesk", sans-serif;
  color: #ff6a75;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.contact-info-list a:hover {
  color: #ff8a93;
}

.contact-map-frame {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  color: #f1f3f7;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  transition: 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #98a2b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 60, 75, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 30, 45, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-submit-btn {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  .contact-map-frame {
    height: 260px;
  }
}

    /* FOOTER */
    .footer-section {
      position: relative;
      overflow: hidden;
      z-index: 1;
      padding: 80px 0 30px;
    }

    .footer-bg-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(
          180deg,
          rgba(5, 6, 11, 0.46) 0%,
          rgba(5, 6, 11, 0.22) 35%,
          rgba(5, 6, 11, 0.30) 70%,
          rgba(5, 6, 11, 0.52) 100%
        ),
        url("/assets/images/about-us.png") center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.80);
      transform: scale(1.04);
    }

    .footer-section::before,
    .footer-section::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 140px;
      z-index: 1;
      pointer-events: none;
    }

    .footer-section::before {
      top: -1px;
      background: linear-gradient(
        180deg,
        rgba(5, 6, 11, 0.88) 0%,
        rgba(5, 6, 11, 0.34) 55%,
        transparent 100%
      );
    }

    .footer-section::after {
      bottom: -1px;
      background: linear-gradient(
        0deg,
        rgba(5, 6, 11, 0.92) 0%,
        rgba(5, 6, 11, 0.45) 55%,
        transparent 100%
      );
    }

    .footer-section .container {
      position: relative;
      z-index: 2;
    }

    .site-footer {
      padding: 0;
      background: transparent;
    }

    .footer-shell {
      border-radius: 34px;
      padding: 38px 32px 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        rgba(8, 10, 16, 0.55);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.28);
      position: relative;
      overflow: hidden;
    }

    .footer-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.03), transparent 18%);
      pointer-events: none;
    }

    .footer-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
      gap: 28px;
      padding-bottom: 26px;
    }

    .footer-brand h3 {
      font-family: "Orbitron", sans-serif;
      font-size: 1.35rem;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 1rem;
      color: #ff5b66;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-description {
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 0.98rem;
      max-width: 420px;
      margin-bottom: 20px;
    }

    .footer-logo-wrap {
      width: 118px;
      height: 78px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.12);
      margin-bottom: 18px;
      overflow: hidden;
    }

    .footer-logo {
      width: 92px;
      height: auto;
      max-height: 44px;
      object-fit: contain;
      display: block;
    }

    .footer-column h4 {
      font-family: "Orbitron", sans-serif;
      font-size: 1rem;
      margin-bottom: 16px;
      letter-spacing: 1px;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .footer-column ul li,
    .footer-column ul li a {
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.7;
      transition: 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ff5b66;
      padding-left: 4px;
    }

    .footer-contact-list span {
      color: #fff;
      font-weight: 600;
    }

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

    .footer-socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      color: #fff;
      font-family: "Orbitron", sans-serif;
      transition: 0.35s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-3px) scale(1.06);
      border-color: rgba(255, 60, 75, 0.28);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.14);
      color: #ff5b66;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      min-width: 180px;
      padding: 14px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 80, 80, 0.35);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.14), rgba(255, 30, 45, 0.06));
      color: #fff;
      font-family: "Orbitron", sans-serif;
      font-size: 0.82rem;
      letter-spacing: 1px;
      transition: 0.35s ease;
      box-shadow: 0 0 16px rgba(255, 30, 45, 0.10);
    }

    .footer-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.16);
    }

    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      color: #9ca5b3;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 980px) {
      .services-experience {
        grid-template-columns: 1fr;
      }

      .services-nav-wrap {
        display: block;
      }

      .services-nav-viewport {
        height: 150px;
      }

      .services-nav-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
      }

      .service-nav-btn {
        min-width: 180px;
        height: 100%;
      }

      .service-nav-btn img {
        height: 100%;
      }

      .services-stage {
        min-height: 520px;
      }

      .services-stage-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
      }

    

     .clients-section {
  position: relative;
  overflow: hidden;
}

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

.clients-header {
  text-align: center;
  margin-bottom: 28px;
}

.clients-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #ff5a6b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}


.clients-grid-wrap,
.clients-grid {
  display: none !important;
}

/* Simple smooth logo slider */

.clients-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: min(88%, 1000px);
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 18px;
}

.clients-marquee {
  overflow: hidden;
  width: 80%;
}

.clients-marquee-track {
  display: flex;
  align-items: center;

  gap: 56px;
  width: max-content;
  animation: clientsSmoothScroll 30s linear infinite;
  will-change: transform;
}

.client-marquee-item {
  flex: 0 0 auto;
  min-width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.client-marquee-item img {
  max-width: 130px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.82;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.client-marquee-item:hover img {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.clients-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-fade.left {
  left: 0;
  background: linear-gradient(to right, #040814 0%, rgba(4, 8, 20, 0) 100%);
}

.clients-marquee-fade.right {
  right: 0;
  background: linear-gradient(to left, #040814 0%, rgba(4, 8, 20, 0) 100%);
}

@keyframes clientsSmoothScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: clientsMarquee 28s linear infinite;
}

.client-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 56px;
}

.client-marquee-item img {
  max-width: 100px;
  max-height: 30px;
}

  .clients-marquee-fade {
    width: 45px;
  }
}

}

   

      .cta-box {
        padding: 50px 20px;
      }
    

    @media (max-width: 820px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        max-width: 320px;
      }

      .section {
        padding: 76px 0;
      }

      .nav-logo-wrap {
        width: 82px;
        height: 62px;
      }

      .nav-logo {
        width: 60px;
        max-height: 36px;
      }

      .brand-title {
        font-size: 0.92rem;
      }

      .brand-slogan {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 720px) {
      .footer-shell {
        padding: 28px 18px 18px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }



:root {
      --bg: #05060b;
      --bg-soft: rgba(255, 255, 255, 0.04);
      --bg-card: rgba(10, 12, 18, 0.58);
      --bg-card-strong: rgba(8, 10, 16, 0.78);
      --text: #ffffff;
      --text-muted: #b8c0cf;
      --primary: #ff1e2d;
      --primary-2: #ff5b66;
      --primary-3: #ff8b93;
      --primary-border: rgba(255, 60, 75, 0.28);
      --white-border: rgba(255, 255, 255, 0.12);
      --shadow-red: 0 0 16px rgba(255, 30, 45, 0.18), 0 0 40px rgba(255, 30, 45, 0.10);
      --shadow-red-strong: 0 0 22px rgba(255, 30, 45, 0.28), 0 0 72px rgba(255, 30, 45, 0.18);
      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1240px;
      --transition: 0.35s ease;
      --section-space: 96px;
      --header-height: 88px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--bg);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
      line-height: 1.6;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,0.04), transparent 18%),
        radial-gradient(circle at 28% 78%, rgba(255, 30, 45, 0.05), transparent 24%),
        radial-gradient(circle at 85% 72%, rgba(255,255,255,0.03), transparent 16%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.08;
      background-image: radial-gradient(rgba(255,255,255,0.9) 0.7px, transparent 0.7px);
      background-size: 180px 180px;
      animation: starDrift 18s linear infinite;
    }

    @keyframes starDrift {
      from { transform: translateY(0); }
      to { transform: translateY(-40px); }
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: none;
      background: none;
      color: inherit;
      cursor: pointer;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      position: relative;
      z-index: 2;
    }

    .section {
      padding: var(--section-space) 0;
      position: relative;
      z-index: 1;
    }

    .glass {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        var(--bg-card);
      border: 1px solid var(--white-border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    }

    .glow-border {
      position: relative;
      overflow: hidden;
    }

    .glow-border::after {
      content: "";
      position: absolute;
      inset: auto 18% 0 18%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 30, 45, 0.55), transparent);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: var(--text-muted);
      font-family: "Sora", sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary-2);
      box-shadow: 0 0 14px rgba(255, 30, 45, 0.5);
    }

    .section-title {
      font-family: "Sora", sans-serif;
      font-size: clamp(2rem, 4vw, 3.6rem);
      line-height: 1.08;
      text-align: center;
      letter-spacing: 0.02em;
      margin: 18px auto 16px;
      max-width: 900px;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 1rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.985);
      transition: 0.8s ease;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      min-height: var(--header-height);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(7, 9, 15, 0.56);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .site-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .nav-logo-wrap {
      width: 104px;
      height: 70px;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: var(--shadow-red);
      animation: logoFloat 5s ease-in-out infinite;
    }

    .nav-logo-wrap::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: conic-gradient(from 180deg, transparent, rgba(255, 30, 45, 0.3), transparent, rgba(255,255,255,0.08), transparent);
      animation: logoSpin 7s linear infinite;
    }

    .nav-logo-wrap::after {
      content: "";
      position: absolute;
      inset: 2px;
      border-radius: 16px;
      background: rgba(10, 12, 18, 0.92);
    }

    .nav-logo,
    .footer-logo {
      position: relative;
      z-index: 2;
      width: 84px;
      height: auto;
      max-height: 42px;
      object-fit: contain;
      filter: drop-shadow(0 0 12px rgba(255, 30, 45, 0.28));
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-title {
      font-family: "Sora", sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .brand-title span {
      color: var(--primary-2);
      text-shadow: 0 0 12px rgba(255, 30, 45, 0.35);
    }

    .brand-slogan {
      color: var(--text-muted);
      font-size: 0.84rem;
      letter-spacing: 0.05em;
      margin-top: 4px;
    }

    @keyframes logoSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

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

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .desktop-nav a {
      font-family: "Sora", sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: var(--transition);
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      border-color: var(--primary-border);
      box-shadow: var(--shadow-red);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      position: relative;
      flex-shrink: 0;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 14px;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: 0.3s ease;
    }

    .menu-toggle span { top: 25px; }
    .menu-toggle::before { top: 18px; }
    .menu-toggle::after { top: 32px; }

    .menu-toggle.active span { opacity: 0; }
    .menu-toggle.active::before { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: calc(var(--header-height) + 8px) 16px auto 16px;
      z-index: 40;
      border-radius: 24px;
      padding: 14px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      transition: 0.35s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 18px;
      border-radius: 16px;
      margin-bottom: 8px;
      font-family: "Sora", sans-serif;
      font-weight: 600;
      letter-spacing: 0.06em;
      border: 1px solid transparent;
      transition: var(--transition);
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      border-color: var(--primary-border);
      background: rgba(255,255,255,0.03);
      box-shadow: var(--shadow-red);
    }

    .contact-hero {
      position: relative;
      min-height: 54vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 80px 0 40px;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5, 6, 11, 0.38), rgba(5, 6, 11, 0.72)),
        radial-gradient(circle at 20% 20%, rgba(255, 30, 45, 0.12), transparent 20%),
        radial-gradient(circle at 80% 25%, rgba(255,255,255,0.04), transparent 18%),
        linear-gradient(120deg, rgba(255, 30, 45, 0.06), transparent 42%);
      z-index: 0;
    }

    .contact-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: end;
    }

    .contact-hero-copy {
      max-width: 720px;
    }

    .contact-hero-copy h1 {
      font-family: "Sora", sans-serif;
      font-size: clamp(2.4rem, 5vw, 5rem);
      line-height: 0.98;
      margin: 18px 0 18px;
      letter-spacing: -0.03em;
    }

    .contact-hero-copy p {
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.9;
      max-width: 620px;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-stat {
      min-width: 150px;
      padding: 18px 18px 16px;
      border-radius: 22px;
    }

    .hero-stat strong {
      display: block;
      font-family: "Sora", sans-serif;
      font-size: 1.2rem;
      margin-bottom: 4px;
      color: #fff;
    }

    .hero-stat span {
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    .hero-panel {
      border-radius: 30px;
      padding: 26px;
      min-height: 100%;
    }

    .hero-panel h3 {
      font-family: "Sora", sans-serif;
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .hero-panel p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .hero-panel-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .hero-panel-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #d7dbe4;
    }

    .hero-panel-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary-2);
      box-shadow: 0 0 12px rgba(255, 30, 45, 0.45);
      flex-shrink: 0;
    }

    .contact-section {
      position: relative;
      overflow: hidden;
      padding-top: 28px;
    }

    .contact-bg-layer {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 18%, rgba(255, 30, 45, 0.12), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04), transparent 18%),
        linear-gradient(180deg, rgba(5, 6, 11, 0.14), rgba(5, 6, 11, 0.52));
      z-index: 0;
    }

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

    .contact-header {
      text-align: center;
      margin-bottom: 34px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-info-card,
    .contact-form {
      border-radius: 30px;
      padding: 30px;
    }

    .contact-info-card h2,
    .contact-form h2 {
      font-family: "Sora", sans-serif;
      font-size: 1.45rem;
      margin-bottom: 14px;
    }

    .contact-info-card p,
    .contact-form p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .contact-info-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-info-list li {
      display: grid;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .contact-info-list li span {
      font-family: "Sora", sans-serif;
      color: var(--primary-3);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-info-list a:hover {
      color: #ff8a93;
    }

    .contact-map-frame {
      height: 320px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

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

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      font-family: "Sora", sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #f1f3f7;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      color: #fff;
      border-radius: 18px;
      padding: 15px 16px;
      outline: none;
      transition: 0.3s ease;
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #98a2b3;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: rgba(255, 60, 75, 0.36);
      box-shadow: 0 0 0 4px rgba(255, 30, 45, 0.08);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 170px;
    }

    .btn {
      min-width: 190px;
      padding: 16px 24px;
      border-radius: 999px;
      font-family: "Sora", sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-primary {
      border: 1px solid rgba(255, 65, 80, 0.5);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.18), rgba(255, 30, 45, 0.08));
      box-shadow: var(--shadow-red);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.03);
    }

    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      transform: skewX(-24deg);
      transition: 0.65s ease;
    }

    .btn:hover::before {
      left: 130%;
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: var(--shadow-red-strong);
    }

    .contact-submit-btn {
      margin-top: 22px;
      width: 100%;
    }

    .footer-section {
      position: relative;
      overflow: hidden;
      z-index: 1;
      padding: 80px 0 30px;
    }

    .footer-bg-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(180deg, rgba(5, 6, 11, 0.46) 0%, rgba(5, 6, 11, 0.22) 35%, rgba(5, 6, 11, 0.30) 70%, rgba(5, 6, 11, 0.52) 100%),
        url("/assets/images/clients.png") center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.80);
      transform: scale(1.04);
    }

    .footer-section .container {
      position: relative;
      z-index: 2;
    }

    .footer-shell {
      border-radius: 34px;
      padding: 38px 32px 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)), rgba(8, 10, 16, 0.55);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.28);
      position: relative;
      overflow: hidden;
    }

    .footer-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%), radial-gradient(circle at 85% 80%, rgba(255,255,255,0.03), transparent 18%);
      pointer-events: none;
    }

    .footer-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
      gap: 28px;
      padding-bottom: 26px;
    }

    .footer-brand h3,
    .footer-column h4 {
      font-family: "Sora", sans-serif;
    }

    .footer-brand h3 {
      font-size: 1.35rem;
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 1rem;
      color: #ff5b66;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-description {
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 0.98rem;
      max-width: 420px;
      margin-bottom: 20px;
    }

    .footer-logo-wrap {
      width: 118px;
      height: 78px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.12);
      margin-bottom: 18px;
      overflow: hidden;
    }

    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 16px;
      letter-spacing: 0.05em;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .footer-column ul li,
    .footer-column ul li a {
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.7;
      transition: 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ff5b66;
      padding-left: 4px;
    }

    .footer-contact-list span {
      color: #fff;
      font-weight: 600;
    }

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

    .footer-socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      color: #fff;
      font-family: "Sora", sans-serif;
      font-size: 0.84rem;
      font-weight: 700;
      transition: 0.35s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-3px) scale(1.06);
      border-color: rgba(255, 60, 75, 0.28);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.14);
      color: #ff5b66;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      min-width: 180px;
      padding: 14px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 80, 80, 0.35);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.14), rgba(255, 30, 45, 0.06));
      color: #fff;
      font-family: "Sora", sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      transition: 0.35s ease;
      box-shadow: 0 0 16px rgba(255, 30, 45, 0.10);
    }

    .footer-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.16);
    }

    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      color: #9ca5b3;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (max-width: 1080px) {
      .contact-hero-grid,
      .contact-layout,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 820px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .section {
        padding: 76px 0;
      }

      .contact-hero {
        min-height: auto;
        padding-top: 48px;
      }

      .nav-logo-wrap {
        width: 86px;
        height: 62px;
      }

      .nav-logo {
        width: 62px;
        max-height: 36px;
      }

      .brand-title {
        font-size: 0.92rem;
      }

      .brand-slogan {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 720px) {
      .footer-shell,
      .contact-info-card,
      .contact-form,
      .hero-panel {
        padding: 50px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .contact-map-frame {
        width: ;
        height: 260px;
      }

      .hero-stat {
        min-width: 0;
      }
    }           






:root {
      --bg: #05060b;
      --bg-card: rgba(10, 12, 18, 0.55);
      --text: #ffffff;
      --text-muted: #c0c7d3;
      --primary: #ff1e2d;
      --primary-2: #ff505b;
      --primary-border: rgba(255, 60, 75, 0.28);
      --white-border: rgba(255, 255, 255, 0.12);
      --shadow-red: 0 0 16px rgba(255, 30, 45, 0.18),
                    0 0 40px rgba(255, 30, 45, 0.10);
      --shadow-red-strong: 0 0 22px rgba(255, 30, 45, 0.28),
                           0 0 72px rgba(255, 30, 45, 0.18);
      --radius-xl: 36px;
      --container: 1240px;
      --transition: 0.35s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }




    body {
      font-family:"Inter","Cairo",sans-serif;
      color: var(--text);
      background: #05060b;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,0.04), transparent 18%),
        radial-gradient(circle at 28% 78%, rgba(255, 30, 45, 0.05), transparent 24%),
        radial-gradient(circle at 85% 72%, rgba(255,255,255,0.03), transparent 16%);
    }

    html[dir="rtl"] body,
html[lang="ar"] body{
  font-family:"Cairo","Inter",sans-serif;
}



html[dir="rtl"] .section-title,
html[dir="rtl"] .brand-title,
html[dir="rtl"] .desktop-nav a,
html[dir="rtl"] .family-kicker,
html[dir="rtl"] .clients-kicker{
  font-family:"Cairo","Inter",sans-serif !important;
  letter-spacing:0 !important;
}

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      position: relative;
      z-index: 2;
    }

    .glass {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        var(--bg-card);
      border: 1px solid var(--white-border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    }

    .glow-border {
      position: relative;
      overflow: hidden;
    }

    .glow-border::after {
      content: "";
      position: absolute;
      inset: auto 18% 0 18%;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 30, 45, 0.55),
        transparent
      );
    }

    .section-title {
      font-family: "Orbitron", sans-serif;
      font-size: clamp(2rem, 4vw, 3.6rem);
      text-align: center;
      letter-spacing: 2px;
      color: #ff606a;
      text-shadow: 0 0 18px rgba(255, 30, 45, 0.22);
      margin-bottom: 16px;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto 40px;
      text-align: center;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(7, 9, 15, 0.34);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .site-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }

    .nav-logo-wrap {
      width: 110px;
      height: 72px;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: var(--shadow-red);
      animation: logoFloat 5s ease-in-out infinite;
    }

    .nav-logo-wrap::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: conic-gradient(
        from 180deg,
        transparent,
        rgba(255, 30, 45, 0.3),
        transparent,
        rgba(255,255,255,0.08),
        transparent
      );
      animation: logoSpin 7s linear infinite;
    }

    .nav-logo-wrap::after {
      content: "";
      position: absolute;
      inset: 2px;
      border-radius: 16px;
      background: rgba(10, 12, 18, 0.92);
    }

    .nav-logo {
      position: relative;
      z-index: 2;
      width: 88px;
      height: auto;
      max-height: 42px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 0 12px rgba(255, 30, 45, 0.28));
      animation: logoPulse 3.5s ease-in-out infinite;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-title {
      font-family: "Orbitron", sans-serif;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 2px;
      white-space: nowrap;
    }

    .brand-title span {
      color: var(--primary-2);
      text-shadow: 0 0 12px rgba(255, 30, 45, 0.35);
    }

    .brand-slogan {
      color: var(--text-muted);
      font-size: 0.84rem;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    @keyframes logoSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes logoPulse {
      0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 30, 45, 0.22));
      }
      50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 18px rgba(255, 30, 45, 0.42));
      }
    }

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

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .desktop-nav a {
      font-family: "Orbitron", sans-serif;
      font-size: 0.82rem;
      letter-spacing: 1.15px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: var(--transition);
      text-decoration: none;
      color: #fff;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      border-color: var(--primary-border);
      box-shadow: var(--shadow-red);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      position: relative;
      flex-shrink: 0;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 14px;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: 0.3s ease;
    }

    .menu-toggle span { top: 25px; }
    .menu-toggle::before { top: 18px; }
    .menu-toggle::after { top: 32px; }

    .menu-toggle.active span {
      opacity: 0;
    }

    .menu-toggle.active::before {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 88px;
      left: 16px;
      right: 16px;
      z-index: 999;
      border-radius: 24px;
      padding: 14px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-12px);
      transition: 0.35s ease;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        rgba(10, 12, 18, 0.88);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 18px;
      border-radius: 16px;
      margin-bottom: 8px;
      font-family: "Orbitron", sans-serif;
      letter-spacing: 1px;
      border: 1px solid transparent;
      transition: var(--transition);
      text-decoration: none;
      color: #fff;
    }

    .mobile-menu a:last-child {
      margin-bottom: 0;
    }

    .mobile-menu a:hover {
      border-color: var(--primary-border);
      background: rgba(255,255,255,0.03);
      box-shadow: var(--shadow-red);
    }

    /* PAGE HERO */
    .portfolio-page-hero {
      position: relative;
      min-height: 44vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .portfolio-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          rgba(5, 6, 11, 0.56) 0%,
          rgba(5, 6, 11, 0.32) 42%,
          rgba(5, 6, 11, 0.54) 100%
        ),
        url("/assets/images/clients.png") center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.82);
      transform: scale(1.04);
      z-index: 0;
    }

    .portfolio-page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at center, rgba(255, 30, 45, 0.08), transparent 32%);
      z-index: 1;
    }

    .portfolio-page-hero .container {
      position: relative;
      z-index: 2;
      padding: 72px 0 54px;
    }

    .portfolio-page-hero h1 {
      font-family: "Orbitron", sans-serif;
      font-size: clamp(2.2rem, 6vw, 4.6rem);
      line-height: 1.04;
      letter-spacing: 2px;
      text-align: center;
      color: #fff;
      margin-bottom: 14px;
    }

    .portfolio-page-hero h1 span {
      color: var(--primary-2);
      text-shadow: 0 0 16px rgba(255, 30, 45, 0.35);
    }

    .portfolio-page-hero p {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    /* PORTFOLIO SECTION */
    .portfolio-section {
      position: relative;
      overflow: hidden;
      z-index: 1;
      padding: 80px 0 90px;
    }

    .portfolio-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          rgba(5, 6, 11, 0.52) 0%,
          rgba(5, 6, 11, 0.28) 40%,
          rgba(5, 6, 11, 0.46) 100%
        ),
        url("/assets/images/clients.png") center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.82);
      transform: scale(1.04);
      z-index: 0;
    }

    .portfolio-section .container {
      position: relative;
      z-index: 2;
    }

    .portfolio-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .stack-path {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .stack-chip {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      font-family: "Orbitron", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1px;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 140px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 80, 80, 0.35);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.14), rgba(255, 30, 45, 0.06));
      color: #fff;
      font-family: "Orbitron", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 1px;
      transition: 0.35s ease;
      box-shadow: 0 0 16px rgba(255, 30, 45, 0.10);
      cursor: pointer;
    }

    .back-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.16);
    }

    .back-btn[hidden] {
      display: none;
    }

    .portfolio-shell {
      border-radius: 34px;
      padding: 24px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }

    .portfolio-card {
      min-height: 220px;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: 0.35s ease;
      cursor: pointer;
      position: relative;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .portfolio-card:hover {
      transform: translateY(-6px) scale(1.01);
      border-color: rgba(255, 60, 75, 0.25);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.12);
    }

    .portfolio-card-cover {
      height: 155px;
      overflow: hidden;
      position: relative;
    }

    .portfolio-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.35s ease;
    }

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

    .portfolio-card-body {
      padding: 18px 18px 20px;
    }

    .portfolio-card-title {
      font-family: "Orbitron", sans-serif;
      font-size: 0.96rem;
      letter-spacing: 1px;
      margin-bottom: 8px;
      color: #fff;
    }

    .portfolio-card-text {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .portfolio-card-type {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(5, 6, 11, 0.58);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-family: "Orbitron", sans-serif;
      font-size: 0.68rem;
      letter-spacing: 1px;
      color: #fff;
    }

    .portfolio-empty {
      text-align: center;
      color: var(--text-muted);
      padding: 60px 20px;
      font-size: 1rem;
      line-height: 1.8;
    }

    .fade-in {
      animation: fadeUp 0.38s ease;
    }

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

    /* MODAL */
    .portfolio-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(4, 5, 10, 0.72);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .portfolio-modal.open {
      display: flex;
    }

    .portfolio-modal-panel {
      width: min(980px, 100%);
      max-height: 92vh;
      overflow: auto;
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
        rgba(8, 10, 16, 0.72);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 24px 80px rgba(0,0,0,0.38);
      position: relative;
    }

    .portfolio-modal-media {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      border-radius: 30px 30px 0 0;
      background: #05060b;
    }

    .portfolio-modal-media img {
      width: 100%;
      min-height: 420px;
      max-height: 72vh;
      object-fit: cover;
      display: block;
    }

    .portfolio-modal-body {
      padding: 26px 24px 28px;
    }

    .portfolio-modal-title {
      font-family: "Orbitron", sans-serif;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .portfolio-modal-desc {
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 1rem;
    }

    .portfolio-modal-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .portfolio-modal-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 160px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 80, 80, 0.35);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.14), rgba(255, 30, 45, 0.06));
      color: #fff;
      font-family: "Orbitron", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 1px;
      transition: 0.35s ease;
      box-shadow: 0 0 16px rgba(255, 30, 45, 0.10);
      cursor: pointer;
    }

    .portfolio-modal-close:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.16);
    }

    .portfolio-modal-tag {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      color: #fff;
      font-family: "Orbitron", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1px;
    }

    /* FOOTER */
    .footer-section {
      position: relative;
      overflow: hidden;
      z-index: 1;
      padding: 80px 0 30px;
    }

    .footer-bg-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(
          180deg,
          rgba(5, 6, 11, 0.46) 0%,
          rgba(5, 6, 11, 0.22) 35%,
          rgba(5, 6, 11, 0.30) 70%,
          rgba(5, 6, 11, 0.52) 100%
        ),
        uurl("/assets/images/clients.png")center center / cover no-repeat;
      filter: saturate(0.95) brightness(0.80);
      transform: scale(1.04);
    }

    .footer-section::before,
    .footer-section::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 140px;
      z-index: 1;
      pointer-events: none;
    }

    .footer-section::before {
      top: -1px;
      background: linear-gradient(
        180deg,
        rgba(5, 6, 11, 0.88) 0%,
        rgba(5, 6, 11, 0.34) 55%,
        transparent 100%
      );
    }

    .footer-section::after {
      bottom: -1px;
      background: linear-gradient(
        0deg,
        rgba(5, 6, 11, 0.92) 0%,
        rgba(5, 6, 11, 0.45) 55%,
        transparent 100%
      );
    }

    .footer-section .container {
      position: relative;
      z-index: 2;
    }

    .site-footer {
      padding: 0;
      background: transparent;
    }

    .footer-shell {
      border-radius: 34px;
      padding: 38px 32px 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        rgba(8, 10, 16, 0.55);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.28);
      position: relative;
      overflow: hidden;
    }

    .footer-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.08), transparent 22%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.03), transparent 18%);
      pointer-events: none;
    }

    .footer-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
      gap: 28px;
      padding-bottom: 26px;
    }

    .footer-brand h3 {
      font-family: "Orbitron", sans-serif;
      font-size: 1.35rem;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 1rem;
      color: #ff5b66;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-description {
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 0.98rem;
      max-width: 420px;
      margin-bottom: 20px;
    }

    .footer-logo-wrap {
      width: 118px;
      height: 78px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.12);
      margin-bottom: 18px;
      overflow: hidden;
    }

    .footer-logo {
      width: 92px;
      height: auto;
      max-height: 44px;
      object-fit: contain;
      display: block;
    }

    .footer-column h4 {
      font-family: "Orbitron", sans-serif;
      font-size: 1rem;
      margin-bottom: 16px;
      letter-spacing: 1px;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .footer-column ul li,
    .footer-column ul li a {
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.7;
      transition: 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ff5b66;
      padding-left: 4px;
    }

    .footer-contact-list span {
      color: #fff;
      font-weight: 600;
    }

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

    .footer-socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      color: #fff;
      font-family: "Orbitron", sans-serif;
      transition: 0.35s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-3px) scale(1.06);
      border-color: rgba(255, 60, 75, 0.28);
      box-shadow: 0 0 18px rgba(255, 30, 45, 0.14);
      color: #ff5b66;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      min-width: 180px;
      padding: 14px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 80, 80, 0.35);
      background: linear-gradient(180deg, rgba(255, 30, 45, 0.14), rgba(255, 30, 45, 0.06));
      color: #fff;
      font-family: "Orbitron", sans-serif;
      font-size: 0.82rem;
      letter-spacing: 1px;
      transition: 0.35s ease;
      box-shadow: 0 0 16px rgba(255, 30, 45, 0.10);
    }

    .footer-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 22px rgba(255, 30, 45, 0.16);
    }

    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      color: #9ca5b3;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (max-width: 1100px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      .portfolio-page-hero {
        min-height: 36vh;
      }

      .portfolio-toolbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .portfolio-modal-media,
      .portfolio-modal-media img {
        min-height: 280px;
      }
    }

    @media (max-width: 820px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .nav-logo-wrap {
        width: 82px;
        height: 62px;
      }

      .nav-logo {
        width: 60px;
        max-height: 36px;
      }

      .brand-title {
        font-size: 0.92rem;
      }

      .brand-slogan {
        font-size: 0.78rem;
      }

      .portfolio-section {
        padding: 62px 0 70px;
      }

      .portfolio-shell {
        padding: 16px;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .footer-shell {
        padding: 28px 18px 18px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }





 :root {
      --bg: #04050a;
      --text: #ffffff;
      --muted: #c7cdd8;
      --panel: rgba(8, 10, 16, 0.42);
      --border: rgba(255,255,255,0.10);
      --shadow: 0 20px 60px rgba(0,0,0,0.35);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --transition: 0.45s ease;
      --active-color: #3a5cff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--bg);
      position: relative;
    }

    .background-video {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transition: opacity 0.55s ease;
      background: #05060b;
      transform: scale(1.02);
    }

    .bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4,6,12,0.54) 0%,
      rgba(4,6,12,0.18) 24%,
      rgba(4,6,12,0.04) 48%,
      rgba(4,6,12,0.22) 72%,
      rgba(4,6,12,0.70) 100%
    ),
    radial
    -gradient(circle at 72% 52%, rgba(255,255,255,0.03), transparent 18%),
    radial-gradient(circle at 66% 52%, rgba(255,0,0,0.05), transparent 24%);
  pointer-events: none;
}

    .page {
      position: relative;
      z-index: 2;
      width: 100%;
      min-height: 100vh;
    }

    .top-brand {
      position: absolute;
      top: 28px;
      left: 34px;
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(8, 10, 16, 0.32);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.22);
    }

    .top-brand-logo {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .top-brand-logo img {
      width: 38px;
      height: 38px;
      object-fit: contain;
    }

    .top-brand-copy h1 {
      font-family: "Orbitron", sans-serif;
      font-size: 0.98rem;
      letter-spacing: 2px;
      font-weight: 800;
      line-height: 1.2;
    }

    .top-brand-copy p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-top: 5px;
    }

    .service-card {
      position: absolute;
      right: 170px;
      bottom: 34px;
      z-index: 6;
      width: min(420px, calc(100vw - 260px));
      padding: 22px 22px 20px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        rgba(8, 10, 16, 0.44);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      overflow: hidden;
      animation: panelEnter 0.7s ease;
    }

    .service-card::after {
      content: "";
      position: absolute;
      left: 14%;
      right: 14%;
      bottom: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--active-color), transparent);
      opacity: 0.9;
    }

    @keyframes panelEnter {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
      font-size: 0.8rem;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--active-color);
      box-shadow: 0 0 14px var(--active-color);
    }

    .service-title {
      font-family: "Orbitron", sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2.7rem);
      line-height: 1.02;
      letter-spacing: 2px;
      margin-bottom: 10px;
      max-width: 12ch;
    }

    .service-subtitle {
      font-family: "Orbitron", sans-serif;
      font-size: 0.92rem;
      letter-spacing: 2px;
      color: var(--active-color);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .service-description {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    .service-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 14px;
    }

    .meta-card {
      padding: 12px 13px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .meta-card h3 {
      font-size: 0.72rem;
      letter-spacing: 1px;
      color: var(--muted);
      margin-bottom: 6px;
      font-family: "Orbitron", sans-serif;
    }

    .meta-card p {
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
    }

    .service-points {
      list-style: none;
      display: grid;
      gap: 8px;
      margin-bottom: 16px;
    }

    .service-points li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #eef1f7;
      line-height: 1.55;
      font-size: 0.92rem;
    }

    .service-points li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 6px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--active-color);
      box-shadow: 0 0 14px var(--active-color);
    }

    .action-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      min-width: 120px;
      padding: 13px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      color: #fff;
      text-decoration: none;
      font-family: "Orbitron", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 1px;
      transition: var(--transition);
      background: rgba(255,255,255,0.03);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-primary {
      background: linear-gradient(180deg, rgba(255,255,255,0.07), transparent);
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 0 18px rgba(255,255,255,0.05);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .video-focus {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .video-focus::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 65% 48%, color-mix(in srgb, var(--active-color) 18%, transparent), transparent 18%),
        radial-gradient(circle at 62% 52%, rgba(255,255,255,0.06), transparent 12%);
      transition: 0.45s ease;
      opacity: 0.85;
    }

   .circle-rail {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  z-index: 7;
}

.circle-item {
  border: none;
  padding: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.45s ease;
  overflow: visible;
  display: block;
}


.circle-item.active {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translateX(-16px);
  opacity: 1;
  z-index: 3;
}

.circle-item.active img {
  width: 166px;
  height: 166px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: brightness(1.03) saturate(1.05);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 24px color-mix(in srgb, var(--active-color) 24%, transparent),
    0 24px 54px rgba(0,0,0,0.34);
}


.circle-item.inactive {
  width: 65px;
  height: 88px;
  border-radius: 999px 0 0 999px;
  overflow: hidden;
  opacity: 0.88;
  z-index: 2;
}

.circle-item.inactive img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  max-width: none;
  transform: translateX(-50px);
  filter: brightness(0.82) saturate(0.9);
  box-shadow: 0 14px 32px rgba(0,0,0,0.24);
}

.circle-item:hover {
  opacity: 1;
}

.circle-item.inactive:hover {
  transform: translateX(-6px);
}

.circle-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 11px;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  white-space: nowrap;
  background: rgba(7, 9, 14, 0.54);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.circle-item.active .circle-label,
.circle-item:hover .circle-label {
  opacity: 1;
  visibility: visible;
}

    .fade-swap {
      animation: fadeSwap 0.55s ease;
    }

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

   @media (max-width: 1100px) {
  .circle-rail {
    right: -54px;
    gap: 12px;
  }

  .circle-item.active {
    width: 132px;
    height: 132px;
    transform: translateX(-10px);
  }

  .circle-item.active img {
    width: 132px;
    height: 132px;
  }

  .circle-item.inactive {
    width: 62px;
    height: 104px;
  }

  .circle-item.inactive img {
    width: 104px;
    height: 104px;
    transform: translateX(-42px);
  }
}

@media (max-width: 780px) {
  .circle-rail {
    position: absolute;
    top: 150px;
    right: -36px;
    transform: none;
    gap: 10px;
  }

  .circle-item.active {
    width: 106px;
    height: 106px;
    transform: translateX(-6px);
  }

  .circle-item.active img {
    width: 106px;
    height: 106px;
  }

  .circle-item.inactive {
    width: 40px;
    height: 40px;
  }

  .circle-item.inactive img {
    width: 82px;
    height: 82px;
    transform: translateX(-36px);
  }

  .circle-label {
    display: none;
  }


      .service-meta {
        grid-template-columns: 1fr;
      }

      .action-row {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }
    }


    .input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary {
    background: #ff3b3b;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-secondary {
    background: #555;
    padding: 6px 12px;
    border-radius: 8px;
}

.btn-danger {
    background: #ff0000;
    padding: 6px 12px;
    border-radius: 8px;
}


.hot-works-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  background:
        linear-gradient(
          100deg,
          rgba(5, 6, 11, 0.52) 100%,
          rgba(5, 6, 11, 0.28) 100%,
          rgba(5, 6, 11, 0.46) 100%
        ),
        url("/assets/images/clients.png") center center / cover no-repeat;
}

.video-box {
  width: 100%;
}

.text-box {
  color: white;
}



.section {
  position: relative;
  z-index: 1;
  margin: 0 !important;
}


.services-experience-section {
  margin-top: 0 !important;
}


.featured-showcase {
  width: min(78%, 980px) !important;
  margin-inline: auto !important;
}

.featured-video-frame {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #05060b !important;
}

.featured-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border: 0 !important;
}

/* Clients marquee layout */
.clients-marquee-wrap {
  position: relative !important;
  overflow: hidden !important;
  width: min(92%, 1180px) !important;
  margin-inline: auto !important;
}

.clients-marquee {
  width: 100% !important;
  overflow: hidden !important;
}

.clients-marquee-track {
  display: flex !important;
  align-items: center !important;
  gap: 56px !important;
  width: max-content !important;
  animation: clientsMarquee 28s linear infinite !important;
  will-change: transform !important;
}

.client-marquee-item {
  flex: 0 0 auto !important;
}

/* Services standalone page: keep its video background from affecting home page */
.background-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -4;
  pointer-events: none;
}


/* =====================================================
   ONE For Advertising - Final Responsive Override
   Put this at the VERY END of public/assets/css/frontend.css
===================================================== */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}

img,
video,
iframe{
  max-width:100%;
}

.hero-video,
.about-video,
.services-preview-video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.featured-showcase{
  margin-inline:auto !important;
}

.featured-video-frame{
  width:100% !important;
  aspect-ratio:16/9 !important;
  border-radius:22px !important;
  overflow:hidden !important;
  background:#05060b !important;
}

.featured-video-frame iframe{
  width:100% !important;
  height:100% !important;
  display:block !important;
  border:0 !important;
}

.clients-marquee-track{
  display:flex !important;
  align-items:center !important;
  width:max-content !important;
  animation:clientsMarquee 28s linear infinite !important;
  will-change:transform !important;
}

@media(max-width:768px){
  :root{
    --section-space:70px;
  }

  .container,
  .header-inner{
    width:100% !important;
    max-width:100% !important;
    padding-inline:18px !important;
  }

  .section{
    padding:70px 0 !important;
    overflow:hidden !important;
  }

  .section-title{
    font-size:clamp(34px,10vw,54px) !important;
    line-height:1.05 !important;
    margin-bottom:14px !important;
  }

  .section-subtitle{
    max-width:100% !important;
    font-size:15.5px !important;
    line-height:1.75 !important;
    margin-bottom:34px !important;
  }

  .site-header,
  .header-inner{
    min-height:76px !important;
  }

  .desktop-nav{
    display:none !important;
  }

  .menu-toggle{
    display:inline-block !important;
    width:46px !important;
    height:46px !important;
  }

  .nav-logo-wrap{
    width:76px !important;
    height:54px !important;
    border-radius:16px !important;
  }

  .nav-logo{
    width:56px !important;
    max-height:34px !important;
  }

  .brand-title{
    font-size:.82rem !important;
    letter-spacing:.06em !important;
  }

  .brand-slogan{
    font-size:.72rem !important;
  }

  .mobile-menu{
    inset:84px 14px auto 14px !important;
  }

  .hero,
  .hero.section{
    min-height:100vh !important;
    height:100vh !important;
    padding:0 !important;
    margin:0 !important;
  }

  .about-section{
    min-height:auto !important;
    padding:90px 0 70px !important;
    overflow:hidden !important;
  }

  .about-media,
  .about-video{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }

  .about-media-overlay,
  .about-overlay{
    position:absolute !important;
    inset:0 !important;
    background:
      linear-gradient(to bottom,rgba(5,6,11,.72),rgba(5,6,11,.94)),
      radial-gradient(circle at center,transparent 15%,rgba(0,0,0,.75) 88%) !important;
  }

  .about-container{
    min-height:auto !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    padding-inline:18px !important;
  }

  .about-note{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:28px 22px !important;
    border-radius:28px !important;
  }

  .about-note-title{
    font-size:clamp(34px,10vw,52px) !important;
    line-height:1.08 !important;
    letter-spacing:-1.4px !important;
  }

  .about-note-text{
    font-size:15.5px !important;
    line-height:1.85 !important;
  }

  .services-experience-section{
    padding:80px 0 70px !important;
    overflow:hidden !important;
  }

  .services-experience{
    display:flex !important;
    flex-direction:column !important;
    gap:22px !important;
    width:100% !important;
  }

  .services-stage{
    width:100% !important;
    min-height:560px !important;
    border-radius:30px !important;
    overflow:hidden !important;
  }

  .services-preview-video{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center !important;
  }

  .services-stage-content{
    left:18px !important;
    right:18px !important;
    bottom:18px !important;
    max-width:none !important;
    width:auto !important;
    padding:24px 20px !important;
    border-radius:26px !important;
  }

  .services-stage-content h3{
    font-size:clamp(34px,10vw,52px) !important;
    line-height:1.05 !important;
  }

  .services-stage-content p{
    font-size:15px !important;
    line-height:1.75 !important;
  }

  .services-nav-wrap{
    width:100% !important;
    display:block !important;
    overflow:hidden !important;
  }

  .services-nav-viewport{
    width:100% !important;
    height:auto !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    padding:10px !important;
    border-radius:24px !important;
    -webkit-overflow-scrolling:touch;
  }

  .services-nav-viewport::-webkit-scrollbar{
    display:none;
  }

  .services-nav-list{
    display:flex !important;
    flex-direction:row !important;
    gap:14px !important;
    width:max-content !important;
    height:auto !important;
    overflow:visible !important;
  }

  .service-nav-btn{
    flex:0 0 165px !important;
    width:165px !important;
    height:112px !important;
    min-height:112px !important;
    border-radius:22px !important;
    transform:none !important;
  }

  .service-nav-btn.active,
  .service-nav-btn:hover{
    transform:scale(1.02) !important;
  }

  .service-nav-btn img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }

  .featured-section{
    padding:80px 0 !important;
    overflow:hidden !important;
  }

  .featured-layout{
    display:grid !important;
    grid-template-columns:42px 1fr 42px !important;
    gap:8px !important;
    width:100% !important;
    align-items:center !important;
  }

  .featured-showcase{
    width:100% !important;
    padding:14px !important;
    border-radius:24px !important;
  }

  .featured-video-frame{
    width:100% !important;
    aspect-ratio:16/9 !important;
    border-radius:18px !important;
  }

  .featured-video-frame iframe{
    width:100% !important;
    height:100% !important;
    display:block !important;
  }

  .featured-meta{
    display:block !important;
    margin-top:18px !important;
  }

  .featured-copy h3{
    font-size:clamp(24px,8vw,36px) !important;
    line-height:1.12 !important;
  }

  .featured-copy p{
    font-size:15px !important;
    line-height:1.75 !important;
  }

  .featured-arrow{
    width:42px !important;
    height:42px !important;
  }

  .clients-section{
    padding:76px 0 !important;
    overflow:hidden !important;
  }

  .clients-marquee-wrap,
  .clients-marquee{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
  }

  .clients-marquee-track{
    gap:34px !important;
  }

  .client-marquee-item{
    min-width:110px !important;
    height:58px !important;
  }

  .client-marquee-item img{
    max-width:105px !important;
    max-height:38px !important;
  }

  .clients-marquee-fade{
    width:45px !important;
  }

  .footer-grid{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .footer-shell{
    padding:28px 18px 20px !important;
    border-radius:28px !important;
  }

  .footer-bottom{
    flex-direction:column !important;
  }
}

@media(max-width:420px){
  .container,
  .header-inner{
    padding-inline:14px !important;
  }

  .about-note{
    padding:24px 18px !important;
  }

  .services-stage{
    min-height:520px !important;
  }

  .service-nav-btn{
    flex-basis:150px !important;
    width:150px !important;
    height:105px !important;
    min-height:105px !important;
  }

  .services-stage-content{
    padding:22px 18px !important;
  }
}


/* =====================================================
   FINAL SERVICES + HERO MOBILE FIX
   Added by ChatGPT
   Purpose:
   - Center service preview video on mobile
   - Show more of the video without ugly cropping
   - Make service card smaller and cleaner
   - Improve hero loading visual fallback
===================================================== */

/* HERO fallback while video is loading */
.hero,
.hero.section{
  background:
    linear-gradient(180deg, rgba(5,6,11,.25), rgba(5,6,11,.88)),
    url("/assets/images/hero-poster.jpg") center center / cover no-repeat,
    #05060b !important;
}

.hero-video{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}

/* SERVICES default stability */
.services-stage{
  isolation:isolate;
}

.services-preview-video{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}

/* Better desktop video presentation */
@media(min-width:769px){
  .services-stage{
    min-height:620px !important;
  }

  .services-preview-video{
    object-position:center center !important;
    transform:scale(1.01) !important;
  }

  .services-stage-content{
    max-width:500px !important;
  }
}

/* SERVICES AS MOBILE REEL - FINAL */
@media(max-width:768px){

  .services-experience{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:18px !important;
  }

  .services-stage{
    width:min(92vw, 390px) !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:9 / 16 !important;
    border-radius:30px !important;
    overflow:hidden !important;
    margin-inline:auto !important;
  }

  .services-preview-video{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
  }

  .services-stage-content{
    left:18px !important;
    right:18px !important;
    bottom:18px !important;
    padding:16px 16px !important;
    border-radius:22px !important;
    max-width:none !important;
  }

  .services-stage-badge{
    min-height:30px !important;
    padding:6px 11px !important;
    font-size:.62rem !important;
    margin-bottom:9px !important;
  }

  .services-stage-content h3{
    font-size:clamp(28px,8vw,38px) !important;
    line-height:1.02 !important;
    margin-bottom:8px !important;
  }

  .services-stage-content p{
    font-size:13.5px !important;
    line-height:1.55 !important;
  }

  .services-nav-wrap{
    width:100% !important;
    overflow:hidden !important;
  }

  .services-nav-viewport{
    width:100% !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    padding:8px 16px !important;
  }

  .services-nav-list{
    display:flex !important;
    flex-direction:row !important;
    gap:12px !important;
    width:max-content !important;
  }

  .service-nav-btn{
    flex:0 0 138px !important;
    width:138px !important;
    height:86px !important;
    min-height:86px !important;
    border-radius:18px !important;
  }

  .service-nav-btn img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
}

@media(max-width:390px){
  .services-stage{
    width:92vw !important;
    aspect-ratio:9 / 16 !important;
  }

  .services-stage-content{
    padding:14px 14px !important;
  }

  .services-stage-content h3{
    font-size:30px !important;
  }

  .services-stage-content p{
    font-size:13px !important;
  }
}
/* HERO MOBILE FIX - POSTER + VIDEO */
.hero,
.hero.section{
  position:relative !important;
  width:100% !important;
  height:100vh !important;
  min-height:100vh !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  background:#05060b !important;
}

.hero-poster,
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  display:block !important;
}

.hero-poster{
  z-index:1 !important;
  object-fit:cover !important;
  object-position:center center !important;
}

.hero-video{
  z-index:2 !important;
  object-fit:cover !important;
  object-position:center center !important;
}

.hero-video-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:3 !important;
  pointer-events:none !important;
  background:
    linear-gradient(to bottom,rgba(5,6,11,.12),rgba(5,6,11,.35) 55%,rgba(5,6,11,.86)),
    radial-gradient(circle at center,transparent 35%,rgba(0,0,0,.55) 100%) !important;
}

/* موبايل: صغّر/وسّط عرض الهيرو */
@media(max-width:768px){
  .hero,
  .hero.section{
    height:82vh !important;
    min-height:620px !important;
  }

  .hero-poster,
  .hero-video{
    object-fit:cover !important;
    object-position:center center !important;
  }
}

@media(max-width:420px){
  .hero,
  .hero.section{
    height:78vh !important;
    min-height:580px !important;
  }
}



/* ABOUT CARD SIZE FIX */
.about-note{
  width:min(400px, 100%) !important;
  padding:28px 26px !important;
  border-radius:28px !important;
}

.about-note-title{
  font-size:clamp(1.75rem, 2.6vw, 2.75rem) !important;
  line-height:1.08 !important;
  letter-spacing:-0.035em !important;
}

.about-note-text{
  font-size:.94rem !important;
  line-height:1.75 !important;
  margin-bottom:13px !important;
}

.about-note-badge{
  padding:8px 14px !important;
  margin-bottom:16px !important;
  font-size:.68rem !important;
}

@media(max-width:408px){
  .about-note{
    width:92% !important;
    max-width:420px !important;
    padding:24px 20px !important;
    border-radius:24px !important;
  }

  .about-note-title{
    font-size:clamp(1.85rem, 8vw, 2.65rem) !important;
    line-height:1.08 !important;
  }

  .about-note-text{
    font-size:.92rem !important;
    line-height:1.7 !important;
  }
}
.family-section{
  position:relative;
  overflow:hidden;
  padding:110px 0;
  background:#05060b;
}

.family-bg-layer{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(5,6,11,.76),rgba(5,6,11,.94)),
    radial-gradient(circle at 20% 20%,rgba(255,30,45,.14),transparent 26%),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,.05),transparent 22%),
    url("/assets/images/clients.png") center / cover no-repeat;
  filter:brightness(.8) contrast(1.1);
  transform:scale(1.04);
}

.family-header{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:54px;
}

.family-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 17px;
  margin-bottom:16px;
  border-radius:999px;
  border:1px solid rgba(255,80,91,.22);
  background:rgba(255,30,45,.08);
  color:#ff6b75;
  font-family:"Orbitron",sans-serif;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
}

.family-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.family-card{
  overflow:hidden;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(20,22,30,.82),rgba(6,8,14,.92));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 26px 70px rgba(0,0,0,.45);
  transition:.35s ease;
}

.family-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,80,91,.35);
  box-shadow:0 30px 90px rgba(0,0,0,.62),0 0 28px rgba(255,30,45,.12);
}

.family-image{
  width:100%;
  aspect-ratio:4 / 4.3;
  overflow:hidden;
  background:#111;
}

.family-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:saturate(.9) contrast(1.05);
  transition:.5s ease;
}

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

.family-info{
  padding:20px 18px 22px;
  text-align:center;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(12px);
}

.family-info h3{
  font-size:1.08rem;
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}

.family-info p{
  color:#ff6b75;
  font-size:.9rem;
  font-weight:700;
}

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

@media(max-width:640px){
  .family-section{
    padding:80px 0;
  }

  .family-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .family-card{
    max-width:360px;
    margin-inline:auto;
    width:100%;
  }
}



.family-slider{
  position:relative;
  z-index:2;
}

.family-track{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:12px 8px 22px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
}

.family-track:active{
  cursor:grabbing;
}

.family-track::-webkit-scrollbar{
  height:6px;
}

.family-track::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}

.family-track::-webkit-scrollbar-thumb{
  background:rgba(255,80,91,.55);
  border-radius:999px;
}

.family-card{
  flex:0 0 280px;
  scroll-snap-align:center;
  transform:translateY(0) scale(.96);
  opacity:.78;
}

.family-card.is-active{
  transform:translateY(-8px) scale(1);
  opacity:1;
  border-color:rgba(255,80,91,.45);
  box-shadow:0 30px 90px rgba(0,0,0,.62),0 0 28px rgba(255,30,45,.16);
}

.family-arrow{
  position:absolute;
  top:45%;
  z-index:5;
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(8,10,16,.72);
  border:1px solid rgba(255,80,91,.28);
  color:#ff6b75;
  font-size:34px;
  display:grid;
  place-items:center;
  backdrop-filter:blur(12px);
  transition:.25s ease;
}

.family-arrow:hover{
  transform:scale(1.08);
  box-shadow:0 0 24px rgba(255,30,45,.2);
}

.family-prev{
  left:-18px;
}

.family-next{
  right:-18px;
}

@media(max-width:640px){
  .family-track{
    gap:18px;
    padding-inline:18px;
  }

  .family-card{
    flex:0 0 82vw;
  }

  .family-arrow{
    display:none;
  }
}



/* =====================================================
   FINAL FAMILY + LOGO SLIDER + SECTION ANIMATIONS
   Put this at the VERY END of public/assets/css/frontend.css
===================================================== */

.frontend-page,
main{
  background:#05060b;
  overflow:hidden;
}

.section-flush,
.hero.section,
.about-section,
.services-experience-section,
.featured-section,
.family-section,
.logo-slider-section,
.clients-section{
  margin:0 !important;
}

.hero.section + .about-section,
.about-section + .services-experience-section,
.services-experience-section + .featured-section,
.featured-section + .family-section,
.family-section + .logo-slider-section,
.logo-slider-section + .clients-section{
  margin-top:0 !important;
}

.about-section,
.services-experience-section,
.featured-section,
.family-section,
.logo-slider-section,
.clients-section{
  position:relative;
}

.about-section::before,
.services-experience-section::before,
.featured-section::before,
.family-section::before,
.logo-slider-section::before,
.clients-section::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:120px;
  z-index:3;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(5,6,11,.96),rgba(5,6,11,0));
}

.about-section::after,
.services-experience-section::after,
.featured-section::after,
.family-section::after,
.logo-slider-section::after,
.clients-section::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:120px;
  z-index:3;
  pointer-events:none;
  background:linear-gradient(0deg,rgba(5,6,11,.96),rgba(5,6,11,0));
}

.reveal{
  opacity:0;
  transform:translateY(42px) scale(.985);
  transition:opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
  will-change:opacity,transform;
}

.reveal.reveal-right{
  transform:translateX(48px) scale(.985);
}

.reveal.reveal-left{
  transform:translateX(-48px) scale(.985);
}

.reveal.reveal-zoom{
  transform:translateY(34px) scale(.94);
}

.reveal.is-visible{
  opacity:1;
  transform:translate(0,0) scale(1);
}

/* FAMILY SLIDER */
.family-section{
  position:relative;
  overflow:hidden;
  padding:105px 0 92px !important;
  background:#05060b;
}

.family-bg-layer{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(180deg,rgba(5,6,11,.78),rgba(5,6,11,.94)),
    radial-gradient(circle at 18% 22%,rgba(255,30,45,.15),transparent 28%),
    radial-gradient(circle at 82% 70%,rgba(255,255,255,.045),transparent 24%),
    url("/assets/images/clients.png") center / cover no-repeat;
  filter:brightness(.76) contrast(1.08);
  transform:scale(1.04);
}

.family-section .container{
  position:relative;
  z-index:4;
}

.family-header{
  text-align:center;
  margin-bottom:46px;
}

.family-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 17px;
  margin-bottom:16px;
  border-radius:999px;
  border:1px solid rgba(255,80,91,.24);
  background:rgba(255,30,45,.08);
  color:#ff6b75;
  font-family:"Orbitron",sans-serif;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
}

.family-slider{
  position:relative;
  z-index:5;
}

.family-track{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:18px 8px 28px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
}

.family-track.is-dragging{
  cursor:grabbing;
  scroll-behavior:auto;
}

.family-track::-webkit-scrollbar{
  height:6px;
}

.family-track::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}

.family-track::-webkit-scrollbar-thumb{
  background:rgba(255,80,91,.55);
  border-radius:999px;
}

.family-card{
  flex:0 0 286px;
  scroll-snap-align:center;
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(20,22,30,.84),rgba(6,8,14,.94));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 24px 70px rgba(0,0,0,.44);
  opacity:.74;
  transform:translateY(0) scale(.94);
  transition:.42s cubic-bezier(.2,.8,.2,1);
}

.family-card.is-active,
.family-card:hover{
  opacity:1;
  transform:translateY(-8px) scale(1);
  border-color:rgba(255,80,91,.42);
  box-shadow:0 34px 95px rgba(0,0,0,.64),0 0 30px rgba(255,30,45,.15);
}

.family-image{
  width:100%;
  aspect-ratio:4/4.45;
  overflow:hidden;
  background:#111;
}

.family-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:saturate(.9) contrast(1.06);
  transition:.6s ease;
}

.family-card:hover .family-image img,
.family-card.is-active .family-image img{
  transform:scale(1.06);
}

.family-info{
  padding:20px 18px 22px;
  text-align:center;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.family-info h3{
  font-size:1.08rem;
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}

.family-info p{
  color:#ff6b75;
  font-size:.9rem;
  font-weight:700;
}

.family-arrow{
  position:absolute;
  top:48%;
  z-index:7;
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(8,10,16,.76);
  border:1px solid rgba(255,80,91,.3);
  color:#ff6b75;
  font-size:36px;
  display:grid;
  place-items:center;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:.28s ease;
}

.family-arrow:hover{
  transform:scale(1.08);
  box-shadow:0 0 26px rgba(255,30,45,.24);
}

.family-prev{
  left:-18px;
}

.family-next{
  right:-18px;
}

/* LOGO SLIDER */
.logo-slider-section{
  position:relative;
  overflow:hidden;
  padding:72px 0 76px !important;
  background:#05060b;
}

.logo-slider-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(180deg,rgba(5,6,11,.92),rgba(5,6,11,.86)),
    radial-gradient(circle at 50% 50%,rgba(255,30,45,.10),transparent 42%);
}

.logo-slider-section .container{
  position:relative;
  z-index:2;
}

.logo-slider-header{
  text-align:center;
  margin-bottom:28px;
}

.logo-slider-kicker{
  display:inline-flex;
  padding:8px 15px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.035);
  color:#ff6b75;
  font-family:"Orbitron",sans-serif;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.18em;
}

.logo-slider-title{
  margin-top:14px;
  font-family:"Orbitron",sans-serif;
  font-size:clamp(1.55rem,3vw,2.5rem);
  color:#fff;
}

.logo-slider-wrap{
  position:relative;
  z-index:2;
  width:100%;
  overflow:hidden;
  padding:16px 0;
}

.logo-slider-track{
  display:flex;
  align-items:center;
  gap:58px;
  width:max-content;
  animation:oneLogoSlider 28s linear infinite;
  will-change:transform;
}

.logo-slider-wrap:hover .logo-slider-track{
  animation-play-state:paused;
}

.logo-slider-item{
  flex:0 0 auto;
  min-width:160px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 24px;
  border-radius:22px;
  background:rgba(255,255,255,.032);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:.35s ease;
}

.logo-slider-item img{
  max-width:145px;
  max-height:52px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:.76;
  filter:grayscale(1) brightness(.9);
  transition:.35s ease;
}

.logo-slider-item:hover{
  transform:translateY(-6px);
  border-color:rgba(255,80,91,.28);
  box-shadow:0 18px 42px rgba(0,0,0,.34),0 0 22px rgba(255,30,45,.1);
}

.logo-slider-item:hover img{
  opacity:1;
  filter:grayscale(0) brightness(1.05);
  transform:scale(1.06);
}

.logo-slider-fade{
  position:absolute;
  top:0;
  bottom:0;
  width:120px;
  z-index:4;
  pointer-events:none;
}

.logo-slider-fade.left{
  left:0;
  background:linear-gradient(to right,#05060b,transparent);
}

.logo-slider-fade.right{
  right:0;
  background:linear-gradient(to left,#05060b,transparent);
}

@keyframes oneLogoSlider{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.clients-section{
  padding-top:76px !important;
}

@media(max-width:768px){
  .family-section{
    padding:82px 0 70px !important;
  }

  .family-header{
    margin-bottom:32px;
  }

  .family-track{
    gap:18px;
    padding:14px 18px 24px;
  }

  .family-card{
    flex:0 0 82vw;
  }

  .family-arrow{
    display:none;
  }

  .logo-slider-section{
    padding:62px 0 62px !important;
  }

  .logo-slider-track{
    gap:30px;
    animation-duration:24s;
  }

  .logo-slider-item{
    min-width:128px;
    height:68px;
    padding:12px 18px;
    border-radius:18px;
  }

  .logo-slider-item img{
    max-width:112px;
    max-height:40px;
  }

  .logo-slider-fade{
    width:54px;
  }
}

@media(max-width:420px){
  .family-card{
    flex-basis:84vw;
  }

  .family-info h3{
    font-size:1rem;
  }

  .family-info p{
    font-size:.84rem;
  }
}


.reveal{
  opacity:0;
  transform:translateY(42px) scale(.985);
  transition:opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
  will-change:opacity,transform;
}

.reveal.reveal-right{
  transform:translateX(48px) scale(.985);
}

.reveal.reveal-left{
  transform:translateX(-48px) scale(.985);
}

.reveal.reveal-zoom{
  transform:translateY(34px) scale(.94);
}

.reveal.is-visible{
  opacity:1;
  transform:translate(0,0) scale(1);
}

@media(max-width:768px){
  .reveal,
  .reveal.reveal-right,
  .reveal.reveal-left,
  .reveal.reveal-zoom{
    transform:translateY(28px) scale(.985);
  }

  .reveal.is-visible{
    transform:translateY(0) scale(1);
  }
}


/* =====================================================
   FINAL RTL HEADER FIX
   Fixes Arabic layout:
   - Arabic: logo/brand goes to the right
   - English: logo/brand stays to the left
   - Navigation and language switch stay balanced
===================================================== */

html[dir="rtl"],
body[dir="rtl"],
[dir="rtl"]{
  direction:rtl;
}

html[dir="rtl"] body{
  text-align:right;
  font-family:"Cairo","Inter",sans-serif;
}

html[dir="rtl"] .header-inner{
  direction:rtl !important;
  flex-direction:row !important;
}

html[dir="rtl"] .site-brand{
  order:1 !important;
  margin-left:auto !important;
  margin-right:0 !important;
  flex-direction:row-reverse !important;
}

html[dir="rtl"] .desktop-nav{
  order:2 !important;
  direction:rtl !important;
  flex-direction:row-reverse !important;
}

html[dir="rtl"] .lang-toggle,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .menu-toggle{
  order:3 !important;
  margin-right:auto !important;
  margin-left:0 !important;
}

html[dir="rtl"] .brand-title,
html[dir="rtl"] .brand-slogan,
html[dir="rtl"] .desktop-nav a,
html[dir="rtl"] .mobile-menu a,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-subtitle,
html[dir="rtl"] .about-note-title,
html[dir="rtl"] .about-note-text,
html[dir="rtl"] .family-kicker,
html[dir="rtl"] .clients-kicker{
  font-family:"Cairo","Inter",sans-serif !important;
  letter-spacing:0 !important;
}

@media(max-width:820px){
  html[dir="rtl"] .header-inner{
    flex-direction:row !important;
  }

  html[dir="rtl"] .site-brand{
    order:1 !important;
    margin-left:auto !important;
  }

  html[dir="rtl"] .menu-toggle{
    order:3 !important;
    margin-right:auto !important;
  }

  html[dir="rtl"] .mobile-menu{
    direction:rtl !important;
    text-align:right !important;
  }
}

html[dir="ltr"] .header-inner{
  direction:ltr !important;
  flex-direction:row !important;
}

html[dir="ltr"] .site-brand{
  order:1 !important;
  margin-right:auto !important;
  margin-left:0 !important;
  flex-direction:row !important;
}

html[dir="ltr"] .desktop-nav{
  order:2 !important;
}

html[dir="ltr"] .lang-toggle,
html[dir="ltr"] .header-actions,
html[dir="ltr"] .menu-toggle{
  order:3 !important;
  margin-left:auto !important;
  margin-right:0 !important;
}




/* =========================================
   MOBILE RESPONSIVE FIX
========================================= */

@media (max-width: 991px){

  .page{
    padding:120px 18px 60px;
    min-height:auto;
    display:flex;
    flex-direction:column;
    gap:24px;
    overflow:hidden;
  }

  /* TOP BRAND */
  .top-brand{
    width:100%;
    justify-content:center;
    text-align:center;
    flex-direction:column;
    gap:14px;
    margin-bottom:10px;
  }

  .top-brand-logo img{
    width:90px;
    height:auto;
  }

  .top-brand-copy h1{
    font-size:28px;
    line-height:1;
  }

  .top-brand-copy p{
    font-size:14px;
  }

  /* MAIN CARD */
  .service-card{
    width:100%;
    max-width:100%;
    min-height:auto;
    padding:28px 22px;
    border-radius:28px;
    backdrop-filter:blur(18px);
  }

  .service-title{
    font-size:42px;
    line-height:0.95;
    margin-bottom:12px;
  }

  .service-subtitle{
    font-size:16px;
    line-height:1.6;
    margin-bottom:16px;
  }

  .service-description{
    font-size:15px;
    line-height:1.9;
  }

  /* META */
  .service-meta{
    grid-template-columns:1fr;
    gap:14px;
  }

  .meta-card{
    padding:18px;
  }

  /* POINTS */
  .service-points{
    gap:12px;
  }

  .service-points li{
    font-size:14px;
    line-height:1.7;
  }

  /* BUTTONS */
  .action-row{
    flex-direction:column;
    gap:14px;
  }

  .btn{
    width:100%;
    justify-content:center;
  }

  /* SERVICES RAIL */
  .circle-rail{
    position:relative;
    right:auto;
    top:auto;
    transform:none;

    width:100%;
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;

    padding:10px 4px 20px;
    gap:14px;

    scrollbar-width:none;
  }

  .circle-rail::-webkit-scrollbar{
    display:none;
  }

  /* SERVICE ITEM */
  .circle-item{
    min-width:120px;
    width:120px;
    height:120px;
    border-radius:30px;

    flex-shrink:0;
  }

  .circle-item img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .circle-label{
    font-size:12px;
    bottom:12px;
  }

  /* VIDEO */
  .background-video{
    object-fit:cover;
    object-position:center;
    opacity:0.28;
  }

  /* OVERLAY */
  .bg-overlay{
    background:
      radial-gradient(circle at left, rgba(255,0,80,.16), transparent 45%),
      radial-gradient(circle at right, rgba(0,90,255,.12), transparent 45%),
      rgba(0,0,0,.72);
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px){

  .service-card{
    padding:24px 18px;
    border-radius:24px;
  }

  .service-title{
    font-size:34px;
  }

  .service-description{
    font-size:14px;
  }

  .circle-item{
    min-width:100px;
    width:100px;
    height:100px;
  }

}
.services-video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
}

.services-preview-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .services-video-box {
    aspect-ratio: 9 / 16;
    height: min(78vh, 720px);
  }

  .services-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-stage {
    min-height: auto;
  }
}
/* =========================================================
   FINAL SERVICES EXPERIENCE FIX
   - Service balls/cards are shown above the video in a horizontal scroll
   - Description stays on the video and is responsive for desktop/mobile
   - Video frame switches correctly between desktop 16:9 and mobile 9:16
========================================================= */

.services-experience {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.services-nav-wrap {
  order: 1 !important;
  display: block !important;
  width: 100% !important;
}

.services-stage {
  order: 2 !important;
  position: relative !important;
  min-height: auto !important;
  border-radius: 34px !important;
  overflow: hidden !important;
}

.services-nav-viewport {
  width: 100% !important;
  height: auto !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  border-radius: 28px !important;
  padding: 12px !important;
  background: rgba(8, 10, 16, 0.46) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  scrollbar-width: none !important;
}

.services-nav-viewport::-webkit-scrollbar,
.services-nav-list::-webkit-scrollbar {
  display: none !important;
}

.services-nav-list {
  width: max-content !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  overflow: visible !important;
  padding: 0 !important;
}

.service-nav-btn {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  min-height: 92px;
  border-radius: 50%;
  overflow: hidden;
}

.service-nav-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.service-nav-btn:hover,
.service-nav-btn.active {
  transform: translateY(-4px) scale(1.03) !important;
}

.services-video-box {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  overflow: hidden !important;
  border-radius: inherit !important;
}

.services-preview-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

.services-stage-content {
  position: absolute !important;
  left: 28px !important;
  bottom: 28px !important;
  top: auto !important;
  right: auto !important;
  z-index: 3 !important;
  width: min(520px, calc(100% - 56px)) !important;
  max-width: 520px !important;
  padding: 22px 22px 18px !important;
  border-radius: 24px !important;
  background: rgba(8, 10, 16, 0.42) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.services-stage-content h3 {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

.services-stage-content p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
}

@media (max-width: 768px) {
  .services-experience {
    gap: 14px !important;
  }

  .services-nav-wrap {
    order: 1 !important;
  }

  .services-stage {
    order: 2 !important;
    border-radius: 28px !important;
  }

  .services-nav-viewport {
    padding: 10px !important;
    border-radius: 24px !important;
    margin-bottom: 0 !important;
  }

  .services-nav-list {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 12px !important;
  padding: 10px 8px 16px !important;
}


.service-nav-btn {
  flex: 0 0 82px !important;
  width: 82px !important;
  height: 82px !important;

  min-width: 82px !important;
  min-height: 82px !important;
  max-width: 82px !important;
  max-height: 82px !important;

  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

  .service-nav-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}


  .service-nav-btn.active {
    transform: translateY(-2px) scale(1.02) !important;
  }

  .services-video-box {
    aspect-ratio: 9 / 16 !important;
    height: min(74vh, 720px) !important;
  }

  .services-preview-video {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .services-stage-content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    max-width: none !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .services-stage-badge {
    min-height: auto !important;
    padding: 7px 12px !important;
    margin-bottom: 10px !important;
    font-size: 0.72rem !important;
  }

  .services-stage-content h3 {
    font-size: clamp(1.65rem, 8vw, 2.35rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
  }

  .services-stage-content p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }
}

/* =========================================================
   CLIENTS TWO-ROW MARQUEE - FINAL OVERRIDE
   Use with: clients-marquee-row / clients-track-left / clients-track-right
   ========================================================= */
.clients-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 80px 0 !important;
  margin: 0 !important;
  background: #05060b !important;
}

.clients-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.clients-header {
  text-align: center !important;
  margin-bottom: 34px !important;
}

.clients-marquee-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  padding: 26px 0 !important;
  border-radius: 28px !important;
}

.clients-marquee-row {
  width: 100% !important;
  overflow: hidden !important;
  margin-bottom: 22px !important;
}

.clients-marquee-row:last-child {
  margin-bottom: 0 !important;
}

.clients-marquee-track {
  display: flex !important;
  align-items: center !important;
  gap: 44px !important;
  width: max-content !important;
  will-change: transform !important;
}

/* .clients-track-left {
  animation: clientsMoveLeft 30s linear infinite !important;
}

.clients-track-right {
  animation: clientsMoveRight 30s linear infinite !important;
} */

.clients-marquee-wrap:hover .clients-marquee-track {
  animation-play-state: paused !important;
}

.client-marquee-item {
  flex: 0 0 auto !important;
  min-width: 155px !important;
  height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 22px !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: .35s ease !important;
}

.client-marquee-item img {
  max-width: 140px !important;
  max-height: 52px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: .82 !important;
  filter: grayscale(1) brightness(.95) !important;
  transition: .35s ease !important;
}

.client-marquee-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255,80,91,.28) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 22px rgba(255,30,45,.1) !important;
}

.client-marquee-item:hover img {
  opacity: 1 !important;
  filter: grayscale(0) brightness(1.08) !important;
  transform: scale(1.06) !important;
}

.clients-marquee-fade {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 110px !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.clients-marquee-fade.left {
  left: 0 !important;
  background: linear-gradient(to right, #05060b, transparent) !important;
}

.clients-marquee-fade.right {
  right: 0 !important;
  background: linear-gradient(to left, #05060b, transparent) !important;
}

@keyframes clientsMoveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes clientsMoveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 66px 0 !important;
  }

  .clients-marquee-wrap {
    padding: 18px 0 !important;
    border-radius: 22px !important;
  }

  .clients-marquee-row {
    margin-bottom: 16px !important;
  }

  .clients-marquee-track {
    gap: 26px !important;
  }

  .clients-track-left,
  .clients-track-right {
    animation-duration: 22s !important;
  }

  .client-marquee-item {
    min-width: 118px !important;
    height: 62px !important;
    padding: 12px 16px !important;
    border-radius: 18px !important;
  }

  .client-marquee-item img {
    max-width: 100px !important;
    max-height: 38px !important;
  }

  .clients-marquee-fade {
    width: 50px !important;
  }
}

/* =========================================================
   FINAL OVERRIDE — SERVICES PLANETS NAV
   Desktop: larger circular planets, centered, clean spacing.
   Mobile: compact circular planets with horizontal scroll.
   Put at the END of the stylesheet so it overrides old rules.
   ========================================================= */
.services-experience {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 26px !important;
  align-items: stretch !important;
}

.services-nav-wrap {
  order: 1 !important;
  width: 100% !important;
  overflow: hidden !important;
  padding: 18px 24px !important;
  border-radius: 30px !important;
  background: rgba(8, 10, 16, 0.26) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.services-stage {
  order: 2 !important;
}

.services-nav-viewport {
  width: 100% !important;
  height: auto !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  scrollbar-width: none !important;
}

.services-nav-viewport::-webkit-scrollbar {
  display: none !important;
}

.services-nav-list {
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  padding: 10px 0 !important;
  scrollbar-width: none !important;
}

.services-nav-list::-webkit-scrollbar {
  display: none !important;
}

.service-nav-btn {
  flex: 0 0 112px !important;
  width: 112px !important;
  height: 112px !important;
  min-width: 112px !important;
  min-height: 112px !important;
  max-width: 112px !important;
  max-height: 112px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22) !important;
  opacity: 0.72 !important;
  transform: none !important;
  transition: transform .35s ease, opacity .35s ease, border-color .35s ease, box-shadow .35s ease !important;
}

.service-nav-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  transform: none !important;
  transition: transform .35s ease !important;
}

.service-nav-btn:hover {
  opacity: 1 !important;
  transform: translateY(-5px) scale(1.04) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28), 0 0 24px rgba(255,30,45,0.12) !important;
}

.service-nav-btn:hover img {
  transform: scale(1.03) !important;
}

.service-nav-btn.active {
  opacity: 1 !important;
  transform: translateY(-7px) scale(1.08) !important;
  border-color: rgba(255,70,90,0.75) !important;
  box-shadow:
    0 0 30px rgba(255,30,50,0.24),
    0 0 80px rgba(255,30,50,0.10),
    0 18px 40px rgba(0,0,0,0.32) !important;
}

.service-nav-btn.active img {
  transform: scale(1.04) !important;
}

.service-nav-btn::after {
  border-radius: 50% !important;
}

@media (max-width: 768px) {
  .services-experience {
    gap: 14px !important;
  }

  .services-nav-wrap {
    padding: 12px 12px !important;
    border-radius: 24px !important;
  }

  .services-nav-viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .services-nav-list {
    min-width: max-content !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 6px 2px 10px !important;
  }

  .service-nav-btn {
    flex: 0 0 82px !important;
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    min-height: 82px !important;
    max-width: 82px !important;
    max-height: 82px !important;
    border-radius: 50% !important;
  }

  .service-nav-btn.active {
    transform: translateY(-2px) scale(1.04) !important;
  }

  .services-video-box {
    aspect-ratio: 9 / 16 !important;
    height: min(74vh, 720px) !important;
  }

  .services-preview-video {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .services-stage-content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    max-width: none !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }
}




/* =====================================================
   FINAL OVERRIDE — Social icons vertical middle-left
   Places the hero social media icons in the left-middle
   of the viewport, vertically stacked, with clean spacing.
   ===================================================== */
.one-hero-social-orbit,
.hero-socials,
.social-orbit,
.fixed-socials,
.one-socials,
.social-links-fixed {
  position: fixed !important;
  left: clamp(28px, 3.2vw, 58px) !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 90 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 13px !important;
  width: auto !important;
  max-width: none !important;
  pointer-events: auto !important;
}

.one-orbit-link,
.hero-socials a,
.social-orbit a,
.fixed-socials a,
.one-socials a,
.social-links-fixed a {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border-radius: 50% !important;
  display: inline-grid !important;
  place-items: center !important;
}

.one-orbit-link svg,
.hero-socials a svg,
.social-orbit a svg,
.fixed-socials a svg,
.one-socials a svg,
.social-links-fixed a svg {
  width: 17px !important;
  height: 17px !important;
}

/* keep hero text safely away from the left social rail */
.one-hero-stage,
.hero-inner,
.hero-content-wrap {
  justify-content: flex-start !important;
}

.one-hero-copy,
.hero-content,
.hero-copy {
  margin-left: clamp(115px, 9vw, 170px) !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .one-hero-social-orbit,
  .hero-socials,
  .social-orbit,
  .fixed-socials,
  .one-socials,
  .social-links-fixed {
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    gap: 9px !important;
  }

  .one-orbit-link,
  .hero-socials a,
  .social-orbit a,
  .fixed-socials a,
  .one-socials a,
  .social-links-fixed a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .one-orbit-link svg,
  .hero-socials a svg,
  .social-orbit a svg,
  .fixed-socials a svg,
  .one-socials a svg,
  .social-links-fixed a svg {
    width: 15px !important;
    height: 15px !important;
  }

  .one-hero-copy,
  .hero-content,
  .hero-copy {
    margin-left: 66px !important;
  }
}
