/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --as-blue: #4d66ff;
  --as-blue-deep: #3753f3;
  --as-yellow: #ffb800;
  --as-ink: #121827;
  --as-muted: #687082;
  --as-soft: #f6f7fb;
  --as-line: #dfe3ec;
  --as-white: #ffffff;
  --as-dark: #1d1d1d;
  --as-radius-lg: 26px;
  --as-radius-md: 18px;
  --as-shadow-card: 0 28px 70px rgba(18, 24, 39, 0.1);
  --as-shadow-soft: 0 18px 45px rgba(18, 24, 39, 0.08);
  --as-container: 1500px;
  --as-section-x: clamp(24px, 6.1vw, 128px);
  --as-font: "Cairo", Arial, sans-serif;
  --as-heading-font: "Space Grotesk", "Cairo", Arial, sans-serif;
  --as-copy-font: "Montserrat", "Cairo", Arial, sans-serif;
  --as-number-font: "Unbounded", "Space Grotesk", Arial, sans-serif;
}

html[lang^="ar"] {
  --as-font: "Cairo", Tahoma, Arial, sans-serif;
  --as-heading-font: "Cairo", Tahoma, Arial, sans-serif;
  --as-copy-font: "Cairo", Tahoma, Arial, sans-serif;
  --as-number-font: "Cairo", Tahoma, Arial, sans-serif;
}

html[lang^="ar"] body,
html[lang^="ar"] button,
html[lang^="ar"] input,
html[lang^="ar"] textarea,
html[lang^="ar"] select {
  font-family: var(--as-font);
  letter-spacing: 0;
}

html[dir="rtl"] dd a[href^="tel:"],
a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[lang^="ar"] .as-hero-title,
html[lang^="ar"] .as-section-heading,
html[lang^="ar"] .as-display-heading,
html[lang^="ar"] .as-inner-title,
html[lang^="ar"] .as-footer-word {
  font-family: var(--as-heading-font);
  letter-spacing: 0;
}

html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  line-height: 1.45;
}

html[lang^="ar"] .as-hero-title,
html[lang^="ar"] .as-inner-title,
html[lang^="ar"] .as-display-heading,
html[lang^="ar"] .as-section-heading,
html[dir="rtl"] .as-hero-title,
html[dir="rtl"] .as-inner-title,
html[dir="rtl"] .as-display-heading,
html[dir="rtl"] .as-section-heading {
  line-height: 1.35;
}

html[lang^="ar"] .as-growth-item h3,
html[lang^="ar"] .as-feature-card h3,
html[lang^="ar"] .as-service-card h3,
html[lang^="ar"] .as-company-card h3,
html[lang^="ar"] .as-about-info-card h2,
html[lang^="ar"] .as-about-do-card h2,
html[lang^="ar"] .as-about-text-card h2,
html[lang^="ar"] .as-about-light-cta h2,
html[lang^="ar"] .as-core-value-card h3,
html[lang^="ar"] .as-contact-info h2,
html[lang^="ar"] .as-contact-info h3,
html[lang^="ar"] .as-footer-nav h2,
html[lang^="ar"] .as-footer-contact h2,
html[dir="rtl"] .as-growth-item h3,
html[dir="rtl"] .as-feature-card h3,
html[dir="rtl"] .as-service-card h3,
html[dir="rtl"] .as-company-card h3,
html[dir="rtl"] .as-about-info-card h2,
html[dir="rtl"] .as-about-do-card h2,
html[dir="rtl"] .as-about-text-card h2,
html[dir="rtl"] .as-about-light-cta h2,
html[dir="rtl"] .as-core-value-card h3,
html[dir="rtl"] .as-contact-info h2,
html[dir="rtl"] .as-contact-info h3,
html[dir="rtl"] .as-footer-nav h2,
html[dir="rtl"] .as-footer-contact h2 {
  line-height: 1.5;
}

html[lang^="ar"] .as-main-nav,
html[lang^="ar"] .as-footer-nav,
html[lang^="ar"] .as-contact-info,
html[lang^="ar"] .as-contact-form,
html[lang^="ar"] .as-primary-button,
html[lang^="ar"] .as-ghost-button,
html[lang^="ar"] .as-outline-button {
  font-family: var(--as-font);
  letter-spacing: 0;
}

html[lang^="ar"],
html[dir="rtl"] {
  direction: rtl;
}

html[lang^="ar"] body,
html[dir="rtl"] body {
  text-align: right;
  overflow-x: clip;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  color: var(--as-ink);
  background: #f4f5f7;
  font-family: var(--as-font);
  font-weight: 500;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  transition: color 650ms ease, background 650ms ease;
}

body.as-theme-transitioning,
body.as-theme-transitioning * {
  transition-duration: 650ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

body.as-page-leaving .as-site-shell {
  opacity: 0;
  transform: translateY(-8px) scale(0.992);
  filter: blur(6px);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1), filter 180ms ease;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: var(--as-ink);
  background: rgba(255, 184, 0, 0.45);
}

:focus-visible {
  outline: 3px solid rgba(77, 102, 255, 0.5);
  outline-offset: 4px;
  border-radius: 10px;
}

::view-transition-old(root) {
  animation: as-page-out 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

::view-transition-new(root) {
  animation: as-page-in 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes as-page-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.992);
    filter: blur(6px);
  }
}

@keyframes as-page-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(1.006);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.as-site-shell {
  overflow: hidden;
  background: #f5f6f8;
  transition: background 650ms ease;
}

.as-section-container,
.as-section-container.container {
  width: min(var(--as-container), calc(100% - var(--as-section-x) * 2));
  max-width: min(var(--as-container), calc(100% - var(--as-section-x) * 2));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.as-layout-row {
  --bs-gutter-x: clamp(42px, 4.2vw, 80px);
  --bs-gutter-y: 44px;
}

.as-card-row {
  --bs-gutter-x: 28px;
  --bs-gutter-y: 28px;
}

.as-card-row > [class*="col"] {
  display: flex;
}

.as-card-row article {
  width: 100%;
}

.as-about-section,
.as-presence-section,
.as-companies-section,
.as-value-banner,
.as-growth-section,
.as-cta-section,
.as-services-section,
.as-orbit-section,
.as-contact-section,
.as-archive-section,
.as-contact-page-section,
.as-footer-section,
.as-feature-card,
.as-service-card,
.as-company-card,
.as-contact-form,
.as-vision-graphic {
  transition: background 650ms ease, border-color 650ms ease, box-shadow 650ms ease, color 650ms ease;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.as-section-kicker {
  /* margin: 0 0 14px; */
  color: var(--as-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 0;
}

.as-section-heading,
.as-display-heading {
  margin: 0;
  color: var(--as-ink);
  font-family: var(--as-heading-font);
  font-weight: 700;
  letter-spacing: 0;
}

.as-section-heading {
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.as-display-heading {
  font-size: clamp(42px, 4.7vw, 80px);
  line-height: 1;
  letter-spacing: -2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.as-primary-button,
.as-ghost-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--as-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease, background 420ms ease, border-color 420ms ease;
  will-change: transform;
  cursor: pointer;
  border: none;
}

.as-primary-button {
  color: #fff;
  background: linear-gradient(135deg, #5970ff 0%, #4058f2 100%);
  box-shadow: 0 14px 32px rgba(67, 89, 244, 0.25);
}

.as-primary-button span,
.as-ghost-button span,
.as-primary-button i,
.as-ghost-button i {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  font-size: 0.92em;
  transition: transform 260ms ease;
}

.as-primary-button:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 22px 44px rgba(67, 89, 244, 0.34);
}

.as-primary-button:hover span,
.as-ghost-button:hover span,
.as-primary-button:hover i,
.as-ghost-button:hover i {
  transform: translateX(4px);
}

html[lang^="ar"] .as-primary-button,
html[lang^="ar"] .as-ghost-button,
html[lang^="ar"] .as-outline-button,
html[dir="rtl"] .as-primary-button,
html[dir="rtl"] .as-ghost-button,
html[dir="rtl"] .as-outline-button {
  flex-direction: row;
  gap: 10px;
}

html[lang^="ar"] .as-primary-button i,
html[lang^="ar"] .as-ghost-button i,
html[lang^="ar"] .as-outline-button i,
html[dir="rtl"] .as-primary-button i,
html[dir="rtl"] .as-ghost-button i,
html[dir="rtl"] .as-outline-button i {
  margin-left: 0;
  margin-right: 0;
}

html[lang^="ar"] .as-primary-button .fa-arrow-right,
html[lang^="ar"] .as-ghost-button .fa-arrow-right,
html[lang^="ar"] .as-outline-button .fa-arrow-right,
html[dir="rtl"] .as-primary-button .fa-arrow-right,
html[dir="rtl"] .as-ghost-button .fa-arrow-right,
html[dir="rtl"] .as-outline-button .fa-arrow-right {
  transform: scaleX(-1);
}

html[lang^="ar"] .as-primary-button:hover .fa-arrow-right,
html[lang^="ar"] .as-ghost-button:hover .fa-arrow-right,
html[lang^="ar"] .as-outline-button:hover .fa-arrow-right,
html[dir="rtl"] .as-primary-button:hover .fa-arrow-right,
html[dir="rtl"] .as-ghost-button:hover .fa-arrow-right,
html[dir="rtl"] .as-outline-button:hover .fa-arrow-right {
  transform: scaleX(-1) translateX(4px);
}

.as-ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(8, 16, 28, 0.2);
  backdrop-filter: blur(12px);
}

.as-ghost-button:hover {
  color: var(--as-ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px) scale(1.018);
}

/* ==========================================================================
   Fixed Header / Navigation
   ========================================================================== */

.as-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  padding-inline: max(24px, calc((100vw - 1536px) / 2));
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  outline: 0;
  overflow: visible;
  transition: height 320ms ease, background 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

@media (min-width: 1536px) {
  .as-fixed-header {
    padding-inline: calc((100vw - 1536px) / 2);
  }
}

.as-fixed-header::before,
.as-fixed-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Liquid Glass overlay — exact Figma values */
.as-fixed-header::before {
  display: block;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10.9px);
  -webkit-backdrop-filter: blur(10.9px);
}

/* Liquid Glass border */
.as-fixed-header::after {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.as-fixed-header.as-header-scrolled {
  height: 76px;
  background: transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.as-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1536px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.as-brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.as-brand-logo {
  width: 201px;
  height: auto;
  transition: transform 250ms ease, filter 250ms ease, opacity 320ms ease;
}

.as-brand-link:hover .as-brand-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(20, 30, 58, 0.18));
}

.as-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  flex: 0 0 auto;
}

.as-nav-drawer-head {
  display: none;
}

.as-nav-link {
  position: relative;
  padding: 10px 0;
  color: #fff;
  font-family: "Cairo", var(--as-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: color 220ms ease, transform 220ms ease;
}

.as-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--as-blue);
  transform: translateX(-50%);
  transition: width 260ms ease;
}

.as-nav-link:hover {
  color: #fff;
  opacity: 0.85;
  transform: translateY(-1px) scale(1.035);
}

.as-nav-link:hover::after,
.as-nav-link.as-nav-active::after,
.as-nav-link[aria-current="page"]::after {
  width: 100%;
}

.as-nav-link.as-nav-active,
.as-nav-link[aria-current="page"] {
  color: #fff;
  opacity: 1;
}

.as-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
}

.as-icon-button,
.as-language-button,
.as-menu-button {
  color: #fff;
  background: transparent;
}

.as-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}

.as-icon-button:hover,
.as-language-button:hover {
  transform: translateY(-1px);
}

.as-icon-button i {
  font-size: 20px;
  line-height: 1;
}

/* Language Dropdown */

.as-language-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 48px;
  padding: 0 8px;
  color: #fff;
  font-family: "Cairo", var(--as-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.as-language-button i {
  font-size: 11px;
  transition: transform 220ms ease;
}

.as-language-wrap {
  position: relative;
}

.as-language-wrap.as-language-open .as-language-button i {
  transform: rotate(180deg);
}

.as-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-end: 0;
  z-index: 5;
  width: min(210px, calc(100vw - 28px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(224, 226, 230, 0.76);
  box-shadow: 0 22px 58px rgba(7, 12, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.as-language-wrap.as-language-open .as-language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.as-language-menu button,
.as-language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 4px;
  color: #1d1f27;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 220ms ease, transform 220ms ease;
}

.as-language-menu button + button,
.as-language-menu a + a {
  margin-top: 4px;
}

.as-language-menu i {
  color: #6e717a;
  font-size: 14px;
}

.as-feature-icon img,
.as-service-icon img,
.as-about-info-card > span img {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.as-main-nav .as-language-menu {
        max-width: 115px;
}

/* Mobile Menu Button */

.as-menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000;
}

.as-dark-mode .as-menu-button {
    color: #FFF;
}


.as-menu-button i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.as-menu-close-icon,
.as-menu-open .as-menu-open-icon {
  opacity: 0;
  transform: scale(0.72) rotate(-35deg);
}

.as-menu-open .as-menu-close-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Mobile Navigation Backdrop */

body.as-menu-open {
  overflow: hidden;
}

body.as-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  background:
    radial-gradient(circle at 82% 12%, rgba(77, 102, 255, 0.18), transparent 34%),
    rgba(9, 13, 24, 0.28);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 320ms ease;
}

body.as-menu-open .as-fixed-header {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.as-menu-open .as-fixed-header::before {
  display: block;
}

@media (max-width: 1024px) {
  body.as-menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.as-hero-section {
  --as-hero-counter-height: 154px;
  --as-hero-action-counter-gap: clamp(96px, 9.25vw, 178px);
  position: relative;
  min-height: 1200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0f3859;
  border: 0;
  outline: 0;
}

.as-hero-bg,
.as-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.as-hero-bg {
  inset: -12% 0 -12%;
  background: url("../img/slider.webp") center bottom / cover no-repeat;
  transform: scale(1.001);
  transform-origin: center center;
  will-change: transform;
}

.as-hero-overlay {
  z-index: -1;
  /* background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 63, 100, 0.12) 56%, rgba(6, 26, 43, 0.2) 100%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), rgba(7, 17, 27, 0.16) 72%); */
}

.as-hero-content {
  position: absolute;
  top: clamp(270px, 28vh, 340px);
  right: 0;
  left: 0;
  bottom: auto;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.as-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  margin: 0 0 26px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.as-hero-title {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--as-heading-font);
  font-size: clamp(54px, 4.6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.8px;
  text-shadow:
    3px 5px 0 rgba(14, 34, 52, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

.as-hero-title span {
  color: var(--as-hero-highlight-color, var(--as-yellow));
}

.as-display-heading span {
  color: var(--as-section-highlight-color, var(--as-yellow));
}

.as-cta-copy .as-section-heading {
  color: #fff;
}

.as-cta-copy .as-section-heading span {
  color: var(--as-cta-heading-color, var(--as-yellow));
}

.as-hero-copy {
  max-width: 988px;
  margin: 32px auto 0;
  color: #fff;
  font-family: var(--as-copy-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.as-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

/* Client Counter */

.as-client-counter {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 3.1vw, 58px);
  width: min(744px, calc(100% - 42px));
  min-height: var(--as-hero-counter-height);
  padding: 32px 56px 30px 44px;
  border-radius: 28px 0 0 0;
  background: var(--as-yellow);
  box-shadow: 0 -26px 70px rgba(2, 25, 43, 0.14);
}

.as-client-stack {
  display: flex;
  direction: ltr;
}

.as-client-stack img {
  width: 49px;
  height: 49px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(13, 25, 46, 0.18);
}

.as-client-stack img + img {
  margin-left: -15px;
}

html[lang^="ar"] .as-client-stack,
html[dir="rtl"] .as-client-stack {
  direction: ltr;
}

html[lang^="ar"] .as-client-stack img + img,
html[dir="rtl"] .as-client-stack img + img {
  margin-left: -15px;
  margin-right: 0;
}

.as-client-counter strong {
  color: #101624;
  font-family: var(--as-number-font);
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: -1.8px;
}

.as-client-counter > span {
  display: block;
  max-width: 190px;
  flex: 0 1 auto;
  color: #FFF;
  font-family: var(--as-copy-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
}

.as-client-counter strong span {
  color: inherit;
  font: inherit;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.as-about-section {
  padding: 126px 0 82px;
  background: #fff;
}

.as-vision-graphic {
  --as-vision-card-x: 32px;
  --as-vision-card-bottom: 28px;
  --as-vision-card-padding-x: 24px;
  --as-vision-card-padding-bottom: 44px;
  position: relative;
  min-height: 531px;
  border: 1px solid var(--as-line);
  border-radius: 25px;
  overflow: hidden;
  background: #f7f8fb;
}

.as-vision-line-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.as-vision-slide {
  position: relative;
  min-height: 455px;
}

.as-vision-card {
  position: absolute;
  left: var(--as-vision-card-x);
  right: var(--as-vision-card-x);
  bottom: var(--as-vision-card-bottom);
  z-index: 2;
  min-height: 122px;
  padding: 20px 20px 15px;
  border: 1px solid #dfe3ec;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.as-vision-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--as-blue);
  font-family: var(--as-font);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1.35px;
}

.as-vision-card p {
  max-width: 560px;
  margin: 0;
  color: #111827;
  font-family: var(--as-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
  letter-spacing: 0;
}

.as-about-swiper-pagination {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.as-about-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  margin: 0;
  border-radius: 99px;
  background: #dfe2e8;
  opacity: 1;
  transition: width 300ms ease, background 300ms ease, transform 300ms ease;
}

.as-about-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--as-blue);
  transform: translateY(-1px);
}

.as-vision-graphic .swiper-wrapper {
  position: relative;
  z-index: 2;
}

.as-vision-graphic .swiper-slide {
  height: auto;
}

.as-muted-copy {
  max-width: 702px;
  color: #707070;
  font-family: var(--as-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 32.3px;
}

.as-about-copy .as-section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.as-about-copy p:not(.as-section-kicker) {
  max-width: 690px;
  margin: 0 0 28px;
  color: #707784;
  font-family: var(--as-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 32.3px;
}

.as-about-copy .as-primary-button {
  margin-top: 14px;
}

.as-check-list {
  padding: 0;
  list-style: none;
}

.as-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #101522;
  font-family: var(--as-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
}

.as-check-list li + li {
  margin-top: 28px;
}

.as-check-list i {
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  color: #fff;
  background: var(--as-yellow);
  font-size: 11px;
}

/* Video Preview */

.as-video-frame {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 88px;
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
  background: transparent;
  box-shadow: var(--as-shadow-soft);
}

.as-video-frame img {
  width: 100%;
  aspect-ratio: 1500 / 614;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
}

.as-video-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.as-play-button {
  position: absolute;
  inset: 0;
  width: 84px;
  height: 84px;
  margin: auto;
  border-radius: 50%;
  background: #1673d8;
  box-shadow: 0 18px 40px rgba(22, 115, 216, 0.3);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.as-play-button::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(22, 115, 216, 0.38);
  border-radius: inherit;
  animation: asPlayPulse 1.9s ease-out infinite;
}

.as-play-button i {
  top: 50%;
  left: 53%;
  position: absolute;
  color: #fff;
  font-size: 22px;
  transform: translate(-50%, -50%);
}

.as-video-frame:hover .as-play-button {
  transform: scale(1.08);
  box-shadow: 0 24px 52px rgba(22, 115, 216, 0.42);
}

@keyframes asPlayPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

/* ==========================================================================
   Corporate Presence Section
   ========================================================================== */

.as-presence-section {
  position: relative;
  padding: 100px 0 84px;
  background: #f5f6fb;
  overflow: hidden;
}

.as-presence-section::after {
  content: "";
  position: absolute;
  right: -2vw;
  bottom: 0;
  width: min(720px, 50vw);
  height: min(700px, 78%);
  background: url("../img/know-more-bg.webp") right bottom / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.as-presence-head {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.know-more-para {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: rgba(17, 24, 39, 0.72);
  max-width: 620px;
}

.as-presence-head .as-section-heading {
  margin-bottom: 22px;
}

.as-presence-head p:last-child,
.as-services-head p {
  margin: 0;
  /* color: #626a78;
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px; */
}

.as-services-head p:last-of-type {
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #111827B8;
}

.as-presence-grid {
  position: relative;
  z-index: 1;
  margin-top: 62px;
}

/* Feature Cards */

.as-feature-card,
.as-service-card,
.as-company-card {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 520ms ease, background 520ms ease, color 520ms ease;
  will-change: transform;
}

.as-feature-card {
  min-height: 232px;
  padding: 38px 36px 34px;
  border: 1px solid #dfe3ed;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.as-feature-card:hover {
  color: #fff;
  border-color: transparent;
  background: var(--as-blue);
  box-shadow: 0 24px 60px rgba(77, 102, 255, 0.24);
  transform: translateY(-7px) scale(1.006);
}

.as-feature-card h3 {
  margin: 38px 0 16px;
  font-family: var(--as-heading-font);
  font-size: 19.8px;
  font-weight: 700;
  line-height: 28px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

.as-feature-card p {
  max-width: 610px;
  margin: 0;
  color: #5f6676;
  font-family: var(--as-font);
  font-size: 16px;
  line-height: 26px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

.as-feature-icon,
.as-service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.as-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #d9deea;
}

.as-feature-icon i {
  color: var(--as-blue);
  font-size: 18px;
  transition: color 280ms ease, transform 280ms ease;
}

.as-feature-card:hover .as-feature-icon {
  border-color: rgba(255, 255, 255, 0.8);
}

.as-feature-card:hover .as-feature-icon i {
  color: var(--as-yellow);
  transform: scale(1.04);
}

.as-feature-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.as-feature-card:hover h3,
.as-feature-card:hover p,
.as-service-card:hover h3,
.as-service-card:hover p,
.as-company-card:hover h3,
.as-company-card:hover p {
  transform: scale(1.012);
  transform-origin: left center;
}

/* ==========================================================================
   Companies Section
   ========================================================================== */

.as-companies-section {
  position: relative;
  padding: 140px 0 108px;
  background: linear-gradient(180deg, var(--as-yellow) 0 60%, #fff 60% 100%);
  overflow: hidden;
  isolation: isolate;
}

.as-companies-section::before,
.as-companies-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.as-companies-section::before {
  top: 42px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.36), transparent 62%);
  animation: asGroupFloat 13s ease-in-out infinite alternate;
}

.as-companies-section::after {
  left: -160px;
  bottom: 34px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(77, 102, 255, 0.12), transparent 66%);
  animation: asGroupFloat 16s ease-in-out infinite alternate-reverse;
}

.as-companies-head {
  margin-bottom: 64px;
}

.as-companies-head .as-section-kicker {
  color: var(--as-blue);
}

.as-companies-head .as-section-heading {
  font-size: clamp(40px, 3vw, 54px);
}

.as-company-swiper {
  overflow: visible;
}

.as-company-grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.as-company-swiper:not(.swiper-initialized) .swiper-slide {
  width: 25%;
  flex: 0 0 25%;
  height: auto;
}

.as-company-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  height: 100%;
  padding: 38px 34px 34px;
  border: 1px solid #dfe2ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(35, 40, 58, 0.04);
}

.as-company-card:hover {
  transform: translateY(-10px) scale(1.006);
  border-color: rgba(77, 102, 255, 0.32);
  box-shadow: 0 30px 70px rgba(35, 40, 58, 0.13);
}

.as-company-card img {
  width: 63px;
  height: 63px;
  object-fit: contain;
  margin-bottom: 30px;
  background: #F3F4F6;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: 220ms ease;
}

.as-company-card:hover img {
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.as-company-card span {
  color: var(--as-blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.as-company-card h3 {
  min-height: 46px;
  margin: 18px 0 22px;
  color: #111827;
  font-family: var(--as-heading-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.as-company-card p {
  margin: 0;
  color: #5e6675;
  font-family: var(--as-font);
  font-size: 14px;
  line-height: 20px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

.as-company-card h3 {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

@keyframes asGroupFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(36px, -24px, 0) scale(1.08);
  }
}

.as-company-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: auto;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  transition: 220ms ease;
}

.as-company-card a i {
  transition: transform 220ms ease;
}

html[lang^="ar"] .as-company-card a,
html[dir="rtl"] .as-company-card a {
  flex-direction: row-reverse;
}

html[lang^="ar"] .as-company-card a .fa-arrow-right,
html[dir="rtl"] .as-company-card a .fa-arrow-right {
  transform: none;
}

.as-company-card:hover a {
  gap: 17px;
  font-size: 15px;
  color: var(--as-blue);
}

.as-company-card:hover a i {
  transform: translateX(3px);
}

/* ==========================================================================
   Value Banner Section
   ========================================================================== */

.as-value-banner {
  position: relative;
  width: min(1888px, calc(100% - 30px));
  min-height: 790px;
  margin: 74px auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 64px;
  background: #f7f9fb;
}

.as-value-bg {
  position: absolute;
  inset: 0;
  background: url("../img/banner-driven.webp") center / cover no-repeat;
  opacity: 0.82;
  border-radius: 64px;
  transition: transform 1400ms ease;
  overflow: hidden;
}

.as-value-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff 8%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.as-value-banner:hover .as-value-bg {
  transform: scale(1.025);
}

.as-value-content,
.as-orbit-content {
  position: relative;
  z-index: 1;
      width: min(920px, calc(100% - 40px));
  text-align: center;
}

.as-value-content p {
  max-width: 880px;
  margin: 32px auto 34px;
  color: #424957;
  font-family: var(--as-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.as-orbit-content p {
  color: #999;
text-align: center;
font-family: Cairo;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px;
margin-top: 32px;
margin-bottom: 40px;
}

/* ==========================================================================
   Growth / Experience Section
   ========================================================================== */

.as-growth-section {
  position: relative;
  padding: 170px 0 122px;
  background: #fff;
  overflow-x: clip;
}

.as-growth-head {
  padding-bottom: 42px;
  border-bottom: 1px solid #dfe2e9;
}

.as-growth-row {
  margin-top: 62px;
}

.as-growth-image {
  width: 100%;
  height: 574px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 18px 44px rgba(20, 25, 38, 0.08);
  transition: transform 500ms ease, filter 500ms ease;
}

.as-growth-image:hover {
  transform: translateY(-5px) scale(1.012);
  filter: saturate(1.04);
}

.as-growth-list {
  padding-top: 3px;
}

.as-growth-item {
  padding: 20px 0 50px;
}

.as-growth-item:not(:last-child) {
border-bottom: 1px solid #dfe2e9;
}

.as-growth-item + .as-growth-item {
  padding-top: 40px;
}

.as-growth-item h3 {
  margin: 0 0 34px;
  color: #111827;
  font-family: var(--as-heading-font);
  font-size: 19.8px;
  font-weight: 700;
  line-height: 28px;
}

.as-growth-item h3 span {
  color: var(--as-blue);
}

.as-growth-item p {
  max-width: 670px;
  margin: 0;
  color: #7c8390;
  font-family: var(--as-copy-font);
  font-size: 17px;
  line-height: 32.3px;
}

.as-experience-flow {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  min-height: clamp(96px, 15vw, 260px);
  margin-top: 78px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.as-experience-word {
  display: block;
  min-width: 0;
  width: 100vw;
  max-width: 100vw;
  color: rgba(17, 24, 39, 0.1);
  font-family: var(--as-number-font);
  font-size: clamp(62px, 12.4vw, 240px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.as-cta-section {
  position: relative;
  min-height: 676px;
  display: flex;
  align-items: center;
  background: #1f1f1f;
  overflow: hidden;
}

.as-cta-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 65%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 58%, transparent 100%);
}

.as-cta-inner {
  position: relative;
  min-height: 676px;
  align-items: center;
}

.as-cta-copy {
  position: relative;
  z-index: 2;
}

.as-cta-visual {
  position: static;
  min-height: inherit;
}

.as-cta-copy .as-section-heading {
  font-size: clamp(38px, 3vw, 48px);
  line-height: 1.06;
}

.as-cta-copy p:not(.as-section-kicker) {
  max-width: 745px;
  margin: 48px 0 44px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--as-copy-font);
  font-size: 17px;
  line-height: 32.3px;
  font-weight: 400;
}

.as-cta-action-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.as-cta-arrow {
  width: 104px;
  flex: 0 0 auto;
}

html[lang^="ar"] .as-cta-arrow,
html[dir="rtl"] .as-cta-arrow {
  transform: rotateY(180deg);
}

.as-cta-person {
  position: absolute;
  right: max(0px, calc((100vw - var(--as-container)) / 2));
  bottom: -1px;
  z-index: 1;
  display: block;
  width: min(565px, 38vw);
  height: min(610px, calc(100% - 56px));
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.2));
}

html[lang^="ar"] .as-cta-person,
html[dir="rtl"] .as-cta-person {
  right: auto;
  left: max(0px, calc((100vw - var(--as-container)) / 2));
  bottom: -1px;
  object-position: bottom left;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.as-services-section {
  position: relative;
  padding: 150px 0 100px;
  background: #f7f8fa;
  overflow: hidden;
}

.as-services-section::before {
  content: "";
  position: absolute;
  inset: 180px 0 0;
  background: url("../img/what-we-do-ng.webp") center bottom / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.as-services-head {
  position: relative;
  z-index: 1;
  max-width: 1110px;
}

.as-services-head .as-section-heading {
  margin-bottom: 40px;
}

.as-services-grid {
  position: relative;
  z-index: 1;
  margin-top: 45px;
  /* width: min(1290px, 100%); */
}

.as-service-card {
  min-height: 263px;
  padding: 32px;
  border: 1px solid #dfe2e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(20, 25, 38, 0.03);
}

.as-service-card:hover {
  transform: translateY(-9px);
  background: #fff;
  box-shadow: var(--as-shadow-card);
}

.as-service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid #d4d8e1;
  border-radius: 13px;
  background: #eceef2;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.as-service-icon i {
  color: #111827;
  font-size: 20px;
  transition: color 260ms ease, transform 260ms ease;
}

.as-service-card:hover .as-service-icon {
  background: var(--as-blue);
  border-color: var(--as-blue);
  transform: translateY(-2px);
}

.as-service-card:hover .as-service-icon i {
  color: var(--as-yellow);
  transform: scale(1.04);
}

.as-service-card h3 {
color: #111827;
font-family: "Space Grotesk";
font-size: 19.8px;
font-style: normal;
font-weight: 700;
line-height: 28px;
margin: 32px 0 11px;
transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

.as-service-card p {
  margin: 0;
  color: #5f6675;
  font-size: 14px;
  line-height: 1.58;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

/* ==========================================================================
   Orbit Value Section
   ========================================================================== */

.as-orbit-section {
  --as-orbit-padding-y: 205px;
  --as-orbit-padding-x: 180px;
  --as-orbit-height: 400px;
  --as-orbit-size: min(1336px, calc(100% - (var(--as-orbit-padding-x) * 2)));
  --as-orbit-top: 200px;
  position: relative;
  width: min(1888px, calc(100% - 28px));
  min-height: var(--as-orbit-height);
  margin: 14px auto 0;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: var(--as-orbit-padding-y) var(--as-orbit-padding-x);
  border: 1px solid #dfe2e9;
  border-radius: 60px;
  background: #fff;
  box-sizing: border-box;
}

.as-orbit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 100%, rgba(77, 102, 255, 0.18) 0, rgba(77, 102, 255, 0.1) 30%, transparent 54%);
}

.as-orbit-arc {
  position: absolute;
  z-index: 1;
  top: var(--as-orbit-top);
  left: 50%;
  width: var(--as-orbit-size);
  aspect-ratio: 1;
  border: 0;
  border-top: 2px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 -10px 80px rgba(71, 98, 255, 0.3),
    inset 0 4px 30px rgba(71, 98, 255, 0.6);
  transform: translateX(-50%);
}

.as-orbit-content {
  align-self: start;
  z-index: 2;
  margin-top: 0;
}

/* ==========================================================================
   Inner Pages / About Page
   ========================================================================== */

.as-inner-page {
  background: #f8f9fb;
}

.as-inner-hero {
  position: relative;
  min-height: 455px;
  padding: 190px 0 50px;
  overflow: hidden;
  background: #f8f9fb;
}

.as-inner-hero::before,
.as-inner-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.as-inner-hero::before {
  top: 254px;
  left: 277px;
  width: 6px;
  height: 6px;
  background: #7b8089;
  opacity: 0.62;
}

.as-inner-hero::after {
  right: 248px;
  bottom: 142px;
  width: 6px;
  height: 6px;
  background: #8d929b;
  opacity: 0.72;
}

.video-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: exclusion;
  overflow: hidden;
  pointer-events: none;
}

.video-shape .as-inner-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.as-inner-hero-content {
  position: relative;
  z-index: 1;
  width: min(830px, 100%);
  margin: 0 auto;
  text-align: center;
}

.as-inner-hero-content .as-section-kicker {
  margin-bottom: 24px;
}

.as-inner-title {
  margin: 0;
  color: var(--as-ink);
  font-family: var(--as-heading-font);
  font-size: clamp(52px, 4.55vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.6px;
}

.as-inner-title span {
  display: block;
  color: var(--as-inner-highlight-color, var(--as-yellow));
}

.as-inner-hero-content > p:not(.as-section-kicker, .as-inner-start-para) {
  max-width: 760px;
  margin: 32px auto 0;
  color: #4f5764;
  font-family: var(--as-copy-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.as-who-we-are {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 112px auto 0;
  text-align: center;
}

.as-who-we-are::before,
.as-who-we-are::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9aa0a9;
  opacity: 0.72;
}

.as-who-we-are::before {
  left: 188px;
  bottom: -16px;
}

.as-who-we-are::after {
  right: 76px;
  top: 8px;
}

.as-who-we-are h2 {
  margin: 0 0 24px;
  color: var(--as-ink);
  font-family: var(--as-heading-font);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.5px;
}

.as-who-we-are p {
  margin: 0 auto;
  font-family: var(--as-copy-font);
  font-size: 17px;
  line-height: 28px;

    color: #535b68;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 29.25px;
}

.as-inner-video-section {
  padding: 60px 0 98px;
  background: #f8f9fb;
}

.as-inner-video-section .as-video-frame {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.as-about-page-main {
  padding-top: 0;
  background: #F9FAFB;
}

.as-about-page-main .as-about-row {
  align-items: start;
}

.as-about-details-section,
.as-about-light-cta-section,
.as-core-values-section {
  background: #f8f9fb;
}

.as-about-details-section {
  padding: 24px 0 74px;
}

.as-about-info-para {
  color: rgba(17, 24, 39, 0.72);
font-family: Cairo;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; 
}

.as-about-section .hold-steps {
  margin-top: 48px;
}
.as-about-info-card,
.as-about-do-card,
.as-about-text-card,
.as-about-light-cta,
.as-core-value-card {
  border: 1px solid #dde1e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 54px rgba(24, 31, 48, 0.035);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease, border-color 520ms ease, background 520ms ease;
}

.as-about-info-card:hover,
.as-about-do-card:hover,
.as-about-text-card:hover,
.as-about-light-cta:hover,
.as-core-value-card:hover {
  transform: translateY(-5px) scale(1.006);
  border-color: rgba(71, 98, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(24, 31, 48, 0.08);
}

.as-about-info-card {
  position: relative;
  min-height: 190px;
  padding: 34px 38px;
  overflow: hidden;
  background: #F3F4F6;
}

.as-about-info-card > span:not(.as-about-info-watermark) {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 22px;
  color: #121827;
  font-size: 32px;
  transition: color 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-about-info-card::after {
  content: none;
}

.as-about-info-watermark {
  position: absolute;
  right: -28px;
  bottom: -54px;
  z-index: 1;
  display: block;
  margin: 0;
  color: rgba(151, 159, 209, 0.64);
  font-size: 190px;
  line-height: 1;
  opacity: 0;
  transform: translate(30px, 22px) scale(0.92);
  transition: opacity 560ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.as-about-info-watermark i {
  display: block;
  font-size: inherit;
  line-height: 1;
}

.as-about-info-card-mission .as-about-info-watermark {
  right: 8px;
  bottom: -58px;
  font-size: 192px;
}

.as-about-info-card-vision .as-about-info-watermark {
  right: -46px;
  bottom: -50px;
  font-size: 190px;
}

.as-about-info-card h2,
.as-about-do-card h2,
.as-about-text-card h2,
.as-about-light-cta h2,
.as-core-value-card h3 {
  margin: 0;
  color: var(--as-ink);
  font-family: var(--as-heading-font);
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: color 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-about-info-card h2,
.as-about-info-card p {
  position: relative;
  z-index: 2;
}

.as-about-info-card h2 {
  font-size: 24px;
  line-height: 1.1;
}

.as-about-info-card p,
.as-about-do-card p,
.as-about-text-card p,
.as-about-light-cta p,
.as-core-value-card p {
  margin: 20px 0 0;
  color: #565f6d;
  font-family: var(--as-copy-font);
  font-size: 15px;
  line-height: 25px;
  transition: color 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-about-do-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.35fr;
  align-items: center;
  gap: 42px;
  margin: 120px 0 32px;
  padding: 54px 36px;
  overflow: hidden;
}

.as-about-do-card h2,
.as-about-text-card h2,
.as-about-light-cta h2,
.as-core-values-title {
  font-size: 34px;
  line-height: 1.05;
}

.as-about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 22px;
}

.as-about-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #5970ff 0%, #4058f2 100%);
  font-family: var(--as-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(67, 89, 244, 0.2);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.as-about-text-card {
  position: relative;
  min-height: 172px;
  padding: 34px 28px;
  overflow: hidden;
}

.as-inner-start-para{
  color: rgba(17, 24, 39, 0.72);
text-align: center;
font-family: Cairo;
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 32.5px;
    max-width: 790px;
    margin-inline: auto;
    margin-top: 32px;
}

/* About Page Premium Hover States */

.as-about-info-card:hover {
  border-color: rgba(71, 98, 255, 0.92);
  background: #526cf8;
  box-shadow: 0 34px 78px rgba(58, 78, 218, 0.24);
}

.as-about-info-card:hover .as-about-info-watermark {
  opacity: 0.88;
  transform: translate(0, 0) scale(1);
}

.as-dark-mode .as-about-info-card:hover .as-about-info-watermark {
  opacity: 0.2;
}

.as-about-info-card:hover > span:not(.as-about-info-watermark) {
  color: var(--as-yellow);
  transform: translateY(-2px) scale(1.035);
}

.as-about-info-card:hover h2 {
  color: #fff;
  transform: scale(1.012);
}

.as-about-info-card:hover p {
  color: rgba(255, 255, 255, 0.74);
  transform: scale(1.006);
}

.as-about-do-card:hover,
.as-about-growth-card:hover {
  border-color: rgba(255, 183, 3, 0.92);
  background: var(--as-yellow);
  box-shadow: 0 30px 72px rgba(255, 183, 3, 0.18);
}

.as-about-do-card:hover h2,
.as-about-growth-card:hover h2 {
  color: #101624;
  transform: scale(1.012);
}

.as-about-do-card:hover p,
.as-about-growth-card:hover p {
  color: rgba(16, 22, 36, 0.82);
  transform: scale(1.006);
}

.as-about-do-card:hover .as-about-tags span {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 18px 38px rgba(67, 89, 244, 0.24);
}

.as-about-model-card:hover {
  border-color: rgba(71, 98, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(24, 31, 48, 0.08);
}

.as-about-light-cta-section {
  padding: 52px 0 110px;
}

.as-about-light-cta {
  width: min(1500px, 100%);
  min-height: 302px;
  margin: 0 auto;
  padding: 72px 32px;
  text-align: center;
  background: #F3F4F6;
}

.as-about-light-cta p {
      max-width: 660px;
    margin: 20px auto 38px;
    font-size: 20px;
    line-height: 26px;
}

.as-about-light-cta > div {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.as-outline-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid #d8dce4;
  border-radius: 999px;
  color: var(--as-ink);
  background: rgba(255, 255, 255, 0.58);
  font-family: var(--as-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.as-outline-button:hover {
  transform: translateY(-2px) scale(1.018);
  border-color: rgba(71, 98, 255, 0.3);
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 31, 48, 0.08);
}

.as-core-values-section {
  padding: 0 0 90px;
}

.as-core-values-title {
  margin: 0 0 52px;
  color: var(--as-ink);
  font-family: var(--as-heading-font);
  font-weight: 700;
  text-align: center;
}

.as-core-value-card {
  min-height: 158px;
  padding: 32px 30px;
  background: #F3F4F6;
}

.as-core-value-card h3 {
  font-size: 19px;
  line-height: 1.2;
}

.as-core-value-card p {
  max-width: 260px;
  font-size: 14px;
  line-height: 24px;
}

/* ==========================================================================
   Service Detail Page
   ========================================================================== */

.as-service-page {
  background: #f8f9fb;
}

.as-service-detail-hero {
  position: relative;
  min-height: 663px;
  padding: 240px 0 128px;
  overflow: hidden;
  background: #fff;
}

.as-service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0.4;
  pointer-events: none;
}

.as-service-detail-video {
  opacity: 0.58;
}

.as-service-detail-hero-row {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  --bs-gutter-x: 48px;
  --bs-gutter-y: 36px;
}

.as-service-logo-card {
  display: grid;
  place-items: center;
  width: 256px;
  height: 256px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 64px rgba(17, 24, 39, 0.035);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), border-color 480ms ease, box-shadow 480ms ease, background 480ms ease;
}

.as-service-logo-card img {
  width: 87.2%;
  height: 87.2%;
  object-fit: contain;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 480ms ease;
}

.as-service-logo-card:hover {
  transform: translateY(-6px) scale(1.008);
  border-color: rgba(71, 98, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 84px rgba(17, 24, 39, 0.09);
}

.as-service-logo-card:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 18px 30px rgba(17, 24, 39, 0.12));
}

.as-service-detail-copy {
  max-width: 768px;
}

.as-service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 24px;
  padding: 7px 17px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #4762ff;
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--as-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.as-service-detail-copy h1 {
  margin: 0;
  color: #000;
  font-family: var(--as-heading-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.75px;
}

.as-service-detail-copy > p:not(.as-service-pill) {
  max-width: 768px;
  margin: 37px 0 24px;
  color: rgba(17, 24, 39, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.as-service-detail-copy .as-primary-button {
  min-height: 56px;
  padding: 0 24px;
}

.as-company-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 20px;
}

.as-company-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.as-company-email:hover {
  color: #f5b400;
}

.as-company-email i {
  font-size: 24px;
  color: #f5b400;
}

body.as-dark-mode .as-company-email {
  color: #eef3ff;
}

body.as-dark-mode .as-company-email:hover {
  color: #f5b400;
}

.as-company-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.as-company-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  font-size: 17px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.as-company-social a i {
    font-size: 24px;
}

.as-company-social a:hover {
  background-color: #f5b400;
  border-color: #f5b400;
  color: #fff;
}

body.as-dark-mode .as-company-social a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.as-dark-mode .as-company-social a:hover {
  background-color: #f5b400;
  border-color: #f5b400;
  color: #fff;
}

html[dir="rtl"] .as-company-contact-row {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Service Video */

.as-service-video-section {
  padding: 0 0 128px;
  background: #fff;
}

.as-service-video-frame {
  width: min(1500px, 100%);
  margin: 0 auto;
  border-radius: 30px;
}

.serv-img-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 524.8;
  border-radius: 30px;
  overflow: hidden;
  background-color: lightgray;
}

.serv-img-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.serv-img-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(82, 108, 248, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.as-service-video-frame img {
  height: auto;
  aspect-ratio: 1280 / 524.8;
}

/* Service Cards */

.as-service-detail-services {
  position: relative;
  padding: 0 0 128px;
  overflow: hidden;
  background: #fff;
}

.as-service-detail-services::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -54px;
  width: 745px;
  height: 790px;
  background: url("../img/know-more-bg.webp") center / contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.as-service-line-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.as-service-line-heading span {
  width: 48px;
  height: 1px;
  background: #4762ff;
}

.as-service-line-heading h2 {
  margin: 0;
  color: #000;
  font-family: var(--as-heading-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.as-service-detail-grid {
  position: relative;
  z-index: 1;
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.as-service-detail-card {
  min-height: 226px;
  padding: 33px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.025);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), border-color 480ms ease, background 480ms ease, box-shadow 480ms ease;
}

.as-service-detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #4762ff;
  font-size: 22px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-detail-card h3 {
  margin: 8px 0 16px;
  color: #000;
  font-family: var(--as-font);
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-detail-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  line-height: 26px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-detail-card:hover {
  border-color: rgba(82, 108, 248, 0.92);
  background: #526cf8;
  box-shadow: 0 34px 84px rgba(58, 78, 218, 0.22);
}

.as-service-detail-card:hover span {
  color: var(--as-yellow);
  transform: translateY(-2px) scale(1.05);
}

.as-service-detail-card:hover h3 {
  color: #fff;
  transform: scale(1.012);
}

.as-service-detail-card:hover p {
  color: rgba(255, 255, 255, 0.76);
  transform: scale(1.006);
}

/* Service Solutions Band */

.as-service-solutions-section {
  position: relative;
  --as-service-media-edge: calc((100vw - min(var(--as-container), calc(100vw - (var(--as-section-x) * 2)))) / 2);
  overflow: visible;
  background: #fff;
}

.as-service-solutions-bg {
  min-height: 668px;
  background: #526cf8;
}

.as-service-solutions-row {
  position: relative;
  min-height: 668px;
  align-items: flex-start;
}

.as-service-solutions-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding: 80px 80px 80px 0;
}

.as-service-solutions-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--as-font);
  font-size: 13.2px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.as-service-solutions-copy h2 {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--as-yellow);
  font-family: var(--as-heading-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.7px;
}

.as-service-solutions-copy > p:not(.as-service-solutions-kicker) {
  margin: 20px 0 46px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  line-height: 26px;
}

.as-service-solutions-list {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 34px;
  margin-bottom: 34px;
}

.as-service-solution-item {
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-solution-item span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.as-service-solution-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.as-service-solution-item h3 {
  margin: 0 0 16px;
  color: var(--as-yellow);
  font-family: var(--as-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-solution-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 26px;
}

.as-service-solution-item:hover {
  transform: translateY(-4px);
}

.as-service-solution-item:hover img {
  transform: scale(1.08) rotate(-1deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.16));
}

.as-service-solution-item:hover h3 {
  transform: scale(1.018);
}

.as-yellow-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: var(--as-yellow);
  font-family: var(--as-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  box-shadow: 0 18px 38px rgba(255, 183, 3, 0.22);
  transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.as-yellow-button i {
  font-size: 13px;
  transition: transform 320ms ease;
}

.as-yellow-button:hover {
  transform: translateY(-2px) scale(1.018);
  color: #111827;
  background: #ffc228;
  box-shadow: 0 24px 52px rgba(255, 183, 3, 0.34);
}

.as-yellow-button:hover i {
  transform: translateX(4px);
}

html[lang^="ar"] .as-yellow-button,
html[dir="rtl"] .as-yellow-button {
  flex-direction: row;
  gap: 10px;
}

html[lang^="ar"] .as-yellow-button i,
html[dir="rtl"] .as-yellow-button i {
  margin-left: 0;
  margin-right: 0;
}

html[lang^="ar"] .as-yellow-button .fa-arrow-right,
html[dir="rtl"] .as-yellow-button .fa-arrow-right {
  transform: scaleX(-1);
}

html[lang^="ar"] .as-yellow-button:hover .fa-arrow-right,
html[dir="rtl"] .as-yellow-button:hover .fa-arrow-right {
  transform: scaleX(-1) translateX(4px);
}

.as-service-solutions-media {
  position: absolute;
  top: -42px;
  right: calc(var(--as-service-media-edge) * -1);
  z-index: 1;
  width: min(930px, 50.8vw);
  height: 748px;
  padding: 0;
}

html[dir="rtl"] .as-service-solutions-row {
  direction: ltr;
}

html[dir="rtl"] .as-service-solutions-copy,
html[dir="rtl"] .as-service-solutions-list {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .as-service-solutions-media {
  right: calc(var(--as-service-media-edge) * -1);
  left: auto;
}

.why-serv-cover {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  box-shadow: 0 32px 84px rgba(16, 24, 40, 0.2);
  background-color: lightgray;
}

.why-serv-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.why-serv-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(71, 98, 255, 0.27);
  mix-blend-mode: color-burn;
  pointer-events: none;
}

/* Service Expansion */

.as-service-growth-section {
  padding: 128px 0 128px;
  background: #fff;
}

.as-service-growth-row {
  --bs-gutter-x: 140px;
  --bs-gutter-y: 64px;
  align-items: flex-start;
}

.as-service-plan-card {
  position: relative;
  min-height: 650px;
  padding: 48px 44px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #f0f1f4;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), background 480ms ease, border-color 480ms ease, box-shadow 480ms ease;
}

.as-service-plan-card::after {
  content: "";
  position: absolute;
  left: -56px;
  bottom: -3px;
  width: 540px;
  height: 330px;
  background: url("../img/expansion-plan.webp") left bottom / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 480ms ease;
}

.as-service-plan-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  line-height: 25.6px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-plan-card:hover {
  transform: translateY(-6px) scale(1.006);
  border-color: rgba(255, 183, 3, 0.88);
  background: var(--as-yellow);
  box-shadow: 0 32px 76px rgba(255, 183, 3, 0.2);
}

.as-service-plan-card:hover p {
  color: rgba(17, 24, 39, 0.82);
  transform: scale(1.006);
}

.as-service-plan-card:hover::after {
  opacity: 0.72;
  transform: translate(16px, -10px) scale(1.035);
}

.as-service-choice-list {
  display: grid;
  gap: 32px;
}

.as-service-choice-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  min-height: 88px;
  padding: 24px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.018);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), background 480ms ease, border-color 480ms ease, box-shadow 480ms ease;
}

.as-service-choice-card i {
  color: #526cf8;
  font-size: 14px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-choice-card p {
  max-width: 370px;
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  line-height: 24px;
  transition: color 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-service-choice-card:hover {
  border-color: rgba(82, 108, 248, 0.9);
  background: #526cf8;
  box-shadow: 0 28px 70px rgba(58, 78, 218, 0.18);
}

.as-service-choice-card:hover i {
  color: var(--as-yellow);
  transform: scale(1.15);
}

.as-service-choice-card:hover p {
  color: rgba(255, 255, 255, 0.78);
  transform: scale(1.008);
}

.as-service-cta-panel {
  padding-top: 0;
  background: #fff;
}

/* ==========================================================================
   Archive Pages
   ========================================================================== */

.as-archive-page {
  background: #f9fafb;
}

.as-archive-section {
  position: relative;
  min-height: 900px;
  padding: 210px 0 150px;
  overflow: hidden;
  background: #f9fafb;
}

/* .as-archive-section::before {
  content: "";
  position: absolute;
  top: 188px;
  left: 0;
  right: 0;
  height: 520px;
  background:
    radial-gradient(circle at 48% 58%, rgba(71, 98, 255, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent);
  pointer-events: none;
} */

.as-archive-section .video-shape,
.as-contact-page-section .video-shape {
  z-index: 0;
}

.as-archive-section .as-section-container,
.as-contact-page-section .as-section-container {
  position: relative;
  z-index: 1;
}

.as-archive-head {
  max-width: 1150px;
  margin-bottom: 64px;
}

.as-archive-head .as-section-heading {
  font-size: clamp(42px, 3.3vw, 48px);
  line-height: 1.04;
}

.as-dark-mode .intro-serv-para {
  color: #FFF !important;
}

.as-archive-head > p:not(.as-section-kicker) {
  max-width: 1070px;
  margin: 24px 0 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.as-archive-company-grid {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.as-archive-company-grid .as-company-card {
  min-height: 378px;
}

.as-archive-company-grid .as-company-card h2,
.as-archive-service-grid .as-service-card h2 {
  margin: 0;
  color: #111827;
  font-family: var(--as-heading-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  transition: color 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.as-archive-company-grid .as-company-card h2 {
  text-transform: uppercase;
}

.as-archive-company-grid .as-company-card:hover h2,
.as-archive-service-grid .as-service-card:hover h2 {
  transform: scale(1.012);
}

.as-archive-company-grid .as-company-card h3 {
  display: none;
}

.as-archive-service-grid {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.as-archive-service-grid .as-service-card {
  min-height: 262px;
  padding: 33px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.as-archive-service-grid .as-service-card h2 {
  margin-top: 34px;
}

.as-contact-page-section {
  min-height: 735px;
  padding-top: 210px;
  padding-bottom: 110px;
  background: #f9fafb;
}

.as-contact-page-section::after {
  opacity: 0.54;
}

.as-contact-page-section .as-contact-grid {
  align-items: start;
}

.as-contact-page-section .as-section-heading {
  font-size: clamp(42px, 3.3vw, 60px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.as-contact-section {
  position: relative;
  padding: 160px 0 112px;
  background: #f7f8fa;
  overflow: hidden;
}

.as-contact-section::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -40px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(193, 198, 210, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px transparent, inset 0 0 0 43px rgba(193, 198, 210, 0.18), inset 0 0 0 100px transparent, inset 0 0 0 101px rgba(193, 198, 210, 0.14), inset 0 0 0 165px transparent, inset 0 0 0 166px rgba(193, 198, 210, 0.12);
  pointer-events: none;
}

.as-contact-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

.as-contact-info .as-section-heading {
    font-size: 48px;
    line-height: 48px;
    margin-top: 0;
  margin-bottom: 24px;
}

.as-contact-info > p:not(.as-section-kicker) {
color: rgba(17, 24, 39, 0.72);
font-family: Cairo;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; 
}

.as-contact-info h2,
.as-contact-info h3 {
  color: #111827;
font-family: "Space Grotesk";
font-size: 19.8px;
font-style: normal;
font-weight: 700;
line-height: 28px; 
border-bottom: 1px solid #dfe2e9;
padding-bottom: 16px;
  margin-top: 48px;
}

.as-contact-info dl {
  margin: 0;
}

.as-contact-info dt {
  margin: 30px 0 9px;
  color: rgba(17, 24, 39, 0.48);
font-family: Cairo;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}

.as-contact-info dd {
  margin: 0;
  font-size: 15px;
  color: #111827;
font-family: Cairo;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}

.as-contact-info a {
  transition: color 220ms ease;
}

.as-contact-info a:hover {
  color: var(--as-blue);
}

/* Contact Form */

.as-contact-form {
  display: grid;
  gap: 24px;
  padding: 36px;
  border: 1px solid #e0e4ec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 34px 70px rgba(18, 24, 39, 0.16);
}

.as-form-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.as-contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(17, 24, 39, 0.72);
font-family: Cairo;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
}

.as-contact-form input:not([type="submit"]),
.as-contact-form textarea {
  width: 100%;
  border: 1px solid #d6dbe4;
  border-radius: 12px;
  background: #f0f1f4;
  color: #101827;
  outline: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.as-contact-form input:not([type="submit"]) {
  height: 52px;
  padding: 0 16px;
}

.as-contact-form textarea {
  height: 126px;
  resize: vertical;
  padding: 14px 16px;
}

.as-contact-form input:not([type="submit"]):focus,
.as-contact-form textarea:focus {
  border-color: rgba(77, 102, 255, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(77, 102, 255, 0.1);
}

.as-form-button {
  width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.as-footer-section {
  position: relative;
  /* min-height: 765px; */
  padding: 60px 0 0;
  color: #fff;
  background: #1e1e1e;
  overflow-x: clip;
  overflow: hidden;
}

.as-footer-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -70px;
  z-index: 0;
  width: 964px;
  height: 484px;
  background: url("../img/footer-bg.webp") right bottom / contain no-repeat;
  opacity: 0.20;
  pointer-events: none;
}

.as-footer-section .as-section-container {
  position: relative;
  z-index: 1;
  width: min(1476px, calc(100% - var(--as-section-x) * 2));
  max-width: min(1476px, calc(100% - var(--as-section-x) * 2));
}

.as-footer-word {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  width: 100vw;
  max-width: 100vw;
  min-height: clamp(96px, 15vw, 260px);
  margin: 0 0 26px calc(50% - 50vw);
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--as-number-font);
  font-size: clamp(62px, 12.4vw, 240px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.as-footer-grid {
  position: relative;
  z-index: 1;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  min-height: 255px;
  padding-bottom: 30px;
}

.as-footer-brand  {
  align-self: center;
  display: grid;
  gap: 24px;
  padding: 10px;
}

.as-footer-brand img {
  width: 300px;
  height: 45px;
  margin-bottom: 0;
  object-fit: contain;
  object-position: left center;
}

.as-footer-brand p {
  max-width: 344px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--as-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.as-footer-nav,
.as-footer-contact {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 10px;
  font-style: normal;
}

.as-footer-nav h2,
.as-footer-contact h2 {
  margin: 0 0 10px;
  font-family: var(--as-heading-font);
  color: #0B6EDA;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.6px;
}

.as-footer-contact a,
.as-footer-contact span,
.as-footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 28px;
  width: fit-content;
  transition: color 220ms ease, transform 220ms ease;
}

.as-footer-bottom a {
  color: #FFF;
  font-family: var(--as-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
  transition: color 220ms ease, transform 220ms ease;
}

.as-footer-nav a {
  color: #FFF;
  font-family: var(--as-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  width: fit-content;
  line-height: 27.2px;
  transition: color 220ms ease, transform 220ms ease;
}

.as-footer-nav a:hover,
.as-footer-contact a:hover,
.as-footer-bottom a:hover {
  color: var(--as-yellow);
  transform: translateX(4px);
}

.as-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 41px 10px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.as-footer-bottom p {
  color: #FFF;
  font-family: var(--as-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.3px;
  margin: 0;
}

.as-footer-bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}


/* ==========================================================================
   Animation Utilities
   ========================================================================== */

.as-reveal {
  will-change: transform, opacity;
}

/* Fancybox Video Modal */

.fancybox__container {
  --fancybox-bg: rgba(8, 12, 22, 0.86);
  --fancybox-accent-color: var(--as-blue);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fancybox__content {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

/* ==========================================================================
   Responsive - Desktop Down
   ========================================================================== */

   @media (min-width: 1600px) {
    .as-cta-person {
      width: 565px;
    }
   }

@media (max-width: 1600px) {
  :root {
    --as-container: 1280px;
    --as-section-x: clamp(22px, 5vw, 96px);
  }

  .as-hero-section {
    --as-hero-counter-height: 132px;
    min-height: 1200px;
  }

  .as-client-counter {
    width: 624px;
    gap: 26px;
    padding: 26px 42px 26px 36px;
  }

  .as-client-counter strong {
    font-size: 54px;
  }

  .as-vision-graphic,
  .as-vision-line-art,
  .as-vision-slide {
    min-height: 430px;
  }

  .as-video-frame img {
    aspect-ratio: 1280 / 520;
  }

  .as-value-banner {
    min-height: 650px;
  }

  .as-growth-image {
    height: -webkit-fill-available;
  }

  .as-orbit-section {
    --as-orbit-height: 400px;
    min-height: var(--as-orbit-height);
  }

  .as-orbit-content {
    margin-top: 0;
  }

  .as-service-detail-hero {
    padding-top: 210px;
  }

  .as-service-video-section,
  .as-service-detail-services {
    padding-bottom: 108px;
  }

  .as-service-solutions-copy {
    padding-right: 48px;
  }

  .as-service-growth-row {
    --bs-gutter-x: 92px;
  }
}

/* ==========================================================================
   Responsive - Small Desktop
   ========================================================================== */

@media (max-width: 1280px) {
  .as-main-nav {
    gap: 24px;
  }

  .as-header-actions > .as-theme-toggle,
  .as-header-actions > .as-language-wrap {
    display: none;
  }

  .as-menu-open .as-header-actions > .as-menu-button {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.84);
  }

  .as-layout-row {
    --bs-gutter-x: 42px;
  }

  .as-company-grid {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }

  .as-company-card {
    padding: 30px 24px;
  }

  .as-services-grid {
    width: 100%;
  }

  .as-footer-grid {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
  }

  .as-service-detail-hero {
    padding-top: 180px;
  }

  .as-service-detail-hero-row {
    --bs-gutter-x: 36px;
  }

  .as-service-logo-card {
    width: 220px;
    height: 220px;
  }

  .as-service-solutions-media {
    right: calc(var(--as-service-media-edge) * -1);
    width: min(640px, 46vw);
    height: 720px;
  }

  .as-service-growth-row {
    --bs-gutter-x: 54px;
  }
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --as-section-x: 32px;
  }

  .as-fixed-header {
    height: 76px;
    padding-inline: 0;
  }

  .as-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .as-menu-button {
    display: block;
  }

  .as-main-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 70;
    align-content: start;
    justify-content: stretch;
    width: min(410px, calc(100vw - 34px));
    display: grid;
    grid-auto-rows: max-content;
    gap: 12px;
    margin: 0;
    padding: 24px 24px 34px;
    max-width: calc(100dvw - 34px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-left: 0;
    border-radius: 0 30px 30px 0;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 247, 252, 0.74)),
      radial-gradient(circle at 24% 0%, rgba(77, 102, 255, 0.16), transparent 38%);
    box-shadow: 26px 0 86px rgba(18, 24, 39, 0.2), inset -1px 0 0 rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(26px) saturate(1.18);
    -webkit-backdrop-filter: blur(26px) saturate(1.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-105%);
    transition: opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .as-main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.56), transparent 26%),
      linear-gradient(240deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 72%);
    opacity: 0.76;
    pointer-events: none;
  }

  .as-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .as-nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
  }

  .as-nav-drawer-logo {
    width: 158px;
    max-width: 100%;
    height: auto;
    transition: transform 260ms ease, opacity 320ms ease;
  }

  .as-nav-drawer-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
  }

  .as-nav-drawer-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .as-nav-drawer-controls > *,
  .as-nav-drawer-tools > * {
    flex: 0 0 auto;
  }

  .as-nav-drawer-controls .as-icon-button,
  .as-nav-drawer-controls .as-language-button {
    display: inline-flex;
    color: #050914;
  }

  .as-nav-drawer-controls .as-language-wrap {
    position: relative;
  }

  .as-nav-drawer-controls .as-language-button {
    min-width: 56px;
    min-height: 42px;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
    color: #050914;
  }

  .as-nav-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 50%;
    color: #050914;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background 300ms ease, box-shadow 300ms ease;
  }

  .as-nav-close:hover {
    background: rgba(77, 102, 255, 0.14);
    box-shadow: 0 14px 32px rgba(77, 102, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transform: rotate(90deg) scale(1.04);
  }

  .as-menu-open .as-main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .as-nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.46);
    color: #050914;
    font-size: 17px;
    text-shadow: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, color 320ms ease;
  }

  .as-nav-link::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 13px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.24;
    transform: scale(0.78);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .as-nav-link::after {
    display: none;
  }

  .as-menu-open .as-nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .as-menu-open .as-nav-link:nth-of-type(1) {
    transition-delay: 90ms;
  }

  .as-menu-open .as-nav-link:nth-of-type(2) {
    transition-delay: 130ms;
  }

  .as-menu-open .as-nav-link:nth-of-type(3) {
    transition-delay: 170ms;
  }

  .as-menu-open .as-nav-link:nth-of-type(4) {
    transition-delay: 210ms;
  }

  .as-menu-open .as-nav-link:nth-of-type(5) {
    transition-delay: 250ms;
  }

  .as-nav-link:hover {
    border-color: rgba(77, 102, 255, 0.18);
    background: rgba(82, 108, 248, 0.12);
    box-shadow: 0 16px 38px rgba(77, 102, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transform: translateX(4px) scale(1.015);
  }

  .as-nav-link:hover::before,
  .as-nav-link.as-nav-active::before,
  .as-nav-link[aria-current="page"]::before {
    opacity: 1;
    transform: scale(1);
  }

  .as-nav-link.as-nav-active,
  .as-nav-link[aria-current="page"] {
    color: var(--as-blue);
    border-color: rgba(77, 102, 255, 0.30);
    background: linear-gradient(135deg, rgba(77, 102, 255, 0.18), rgba(77, 102, 255, 0.08));
    box-shadow: 0 16px 42px rgba(77, 102, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  html[lang^="ar"] .as-main-nav,
  html[dir="rtl"] .as-main-nav {
    right: 0;
    left: auto;
    max-width: calc(100dvw - 34px);
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 30px 0 0 30px;
    box-shadow: -26px 0 86px rgba(18, 24, 39, 0.2), inset 1px 0 0 rgba(255, 255, 255, 0.58);
    transform: translate3d(100%, 0, 0);
  }

  html[lang^="ar"] .as-menu-open .as-main-nav,
  html[dir="rtl"] .as-menu-open .as-main-nav {
    transform: translateX(0);
  }

  html[lang^="ar"] .as-nav-drawer-head,
  html[dir="rtl"] .as-nav-drawer-head,
  html[lang^="ar"] .as-nav-link,
  html[dir="rtl"] .as-nav-link {
    text-align: right;
  }

  html[lang^="ar"] .as-nav-link,
  html[dir="rtl"] .as-nav-link {
    justify-content: flex-start;
    transform: translateX(20px);
  }

  html[lang^="ar"] .as-nav-link::before,
  html[dir="rtl"] .as-nav-link::before {
    margin-right: 0;
    margin-left: 13px;
  }

  html[lang^="ar"] .as-menu-open .as-nav-link,
  html[dir="rtl"] .as-menu-open .as-nav-link {
    transform: translateX(0);
  }

  html[lang^="ar"] .as-nav-link:hover,
  html[dir="rtl"] .as-nav-link:hover {
    transform: translateX(-4px) scale(1.015);
  }

  .as-hero-section {
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 150px 0 0;
  }

  .as-hero-content {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(900px, calc(100% - 64px));
    margin: 0 auto;
  }

  .as-hero-title {
    font-size: clamp(46px, 8vw, 76px);
  }

  .as-client-counter {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(744px, calc(100% - 64px));
    margin: auto auto 0;
    border-radius: 28px 28px 0 0;
    justify-content: center;
  }

  .as-hero-actions {
    margin-bottom: 40px;
  }

  .as-about-copy {
    padding-top: 0;
  }

  .as-muted-copy {
    margin-left: 0;
  }

  .as-company-grid {
    display: flex;
    flex-wrap: nowrap;
  }

  .as-company-swiper:not(.swiper-initialized) .swiper-slide {
    width: 50%;
    flex-basis: 50%;
  }

  .as-company-card {
    min-height: 390px;
  }

  .as-value-banner {
    min-height: 560px;
  }

  .as-cta-inner {
    min-height: unset;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .as-cta-arrow {
    display: none;
  }

  .as-cta-visual {
    position: relative;
    width: 100%;
    min-height: unset;
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .as-cta-person {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(460px, 70vw);
    height: auto;
    max-height: 520px;
    margin: 0;
  }

  .as-orbit-section {
    --as-orbit-padding-y: 170px;
    --as-orbit-padding-x: 64px;
    --as-orbit-height: 380px;
    --as-orbit-size: min(960px, calc(100% - (var(--as-orbit-padding-x) * 2)));
    --as-orbit-top: 140px;
    min-height: var(--as-orbit-height);
    border-radius: 36px;
  }

  .as-orbit-content {
    margin-top: 0;
  }

  .as-footer-word {
    margin-bottom: 76px;
  }

  .as-inner-hero {
    min-height: 640px;
    padding-top: 150px;
  }

  .video-shape {
    width: 72%;
    opacity: 0.4;
  }

  .as-who-we-are {
    margin-top: 82px;
  }

  .as-about-page-main .as-check-list {
    margin-top: 86px;
  }

  .as-about-do-card {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .as-about-tags {
    justify-content: flex-start;
  }

  .as-service-detail-hero {
    min-height: auto;
    padding: 142px 0 72px;
  }

  .as-service-detail-video {
    opacity: 0.4;
  }

  .as-service-logo-card {
    width: 190px;
    height: 190px;
  }

  .as-service-detail-copy {
    max-width: 100%;
  }

  .as-service-video-section,
  .as-service-detail-services {
    padding-bottom: 84px;
  }

  .as-service-detail-services::after {
    right: -260px;
    opacity: 0.38;
  }

  .as-service-solutions-bg,
  .as-service-solutions-row {
    min-height: auto;
  }

  .as-service-solutions-copy {
    padding: 72px 0 48px;
  }

  .as-service-solutions-media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    padding: 0 0 72px;
  }

  .as-service-solutions-media img {
    aspect-ratio: 1.45;
    border-radius: 24px;
  }

  .as-service-growth-section {
    padding: 84px 0 72px;
  }

  .as-service-plan-card {
    min-height: 520px;
  }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 767px) {
  .as-experience-flow {
    justify-content: center;
  }

  .as-experience-word {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(44px, 12.2vw, 92px);
    text-align: center;
  }

  :root {
    --as-section-x: 20px;
  }

  .as-nav-drawer-controls .as-language-button {
    min-width: 55px !important;
    width: 55px !important;
  }

  .as-main-nav {
    width: min(360px, calc(100vw - 22px));
    max-width: calc(100dvw - 22px);
    padding: 20px 18px 28px;
  }

  .as-nav-drawer-head {
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .as-nav-drawer-logo {
    width: 138px;
  }

  .as-nav-drawer-tools,
  .as-nav-drawer-controls {
    gap: 8px;
  }

  .as-nav-drawer-controls .as-language-button,
  .as-nav-close,
  .as-nav-drawer-controls .as-icon-button {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .as-nav-drawer-controls .as-language-button {
    justify-content: center;
    font-size: 12px;
  }

  .as-section-heading {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.04;
  }

  .as-display-heading {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1;
  }

  .as-brand-logo {
    width: 154px;
  }

  .as-header-actions > .as-language-wrap,
  .as-header-actions > .as-theme-toggle {
    display: none;
  }

  .as-hero-section {
    --as-hero-counter-height: 120px;
    min-height: 780px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 132px;
  }

  .as-hero-bg {
    background-position: 53% bottom;
  }

  .as-hero-content {
    width: min(100%, calc(100% - 32px));
    margin-top: 0;
  }

  .as-pill-label {
    min-height: 34px;
    margin-bottom: 20px;
    font-size: 10px;
  }

  .as-hero-title {
    font-size: clamp(40px, 11.5vw, 58px);
  }

  .as-hero-copy {
    margin-top: 24px;
    font-size: 14px;
  }

  .as-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(310px, 100%);
    margin: 34px auto 32px;
  }

  .as-client-counter {
    width: min(calc(100% - 32px), 520px);
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px 22px;
    padding: 22px;
    border-radius: 24px 24px 0 0;
  }

  .as-client-counter strong {
    font-size: 46px;
  }

  .as-client-stack {
    justify-content: center;
    width: 100%;
  }

  .as-client-counter > span {
    max-width: 100%;
    flex-basis: 100%;
  }

  .as-about-section,
  .as-presence-section,
  .as-services-section,
  .as-contact-section {
    padding: 84px 0;
  }

  .as-vision-graphic,
  .as-vision-line-art,
  .as-vision-slide {
    min-height: 390px;
  }

  .as-vision-graphic {
    --as-vision-card-x: 16px;
    --as-vision-card-bottom: 18px;
    --as-vision-card-padding-x: 24px;
    --as-vision-card-padding-bottom: 44px;
  }

  .as-muted-copy {
    margin-top: 30px;
  }

  .as-check-list {
    margin-top: 46px;
  }

  .as-video-frame {
    margin-top: 50px;
  }

  .as-video-frame img {
    aspect-ratio: 1.18;
  }

  .as-play-button {
    width: 66px;
    height: 66px;
  }

  .as-presence-grid,
  .as-services-grid {
    margin-top: 44px;
  }

  .as-feature-card {
    min-height: 228px;
    padding: 32px 26px;
  }

  .as-companies-section {
    padding: 82px 0 74px;
    background: linear-gradient(180deg, var(--as-yellow) 0 48%, #fff 48% 100%);
  }

  .as-companies-head {
    margin-bottom: 38px;
  }

  .as-company-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .as-company-swiper:not(.swiper-initialized) .swiper-slide {
    width: 100%;
    flex-basis: 100%;
  }

  .as-value-banner {
    width: calc(100% - 20px);
    min-height: 560px;
    margin-top: 34px;
  }

  .as-value-content p,
  .as-orbit-content p {
    font-size: 14px;
  }

  .as-growth-section {
    padding: 90px 0 120px;
  }

  .as-growth-head {
    padding-bottom: 30px;
  }

  .as-growth-row {
    margin-top: 42px;
  }

  .as-growth-image {
    height: auto;
    aspect-ratio: 1.08;
  }

  .as-growth-item {
    padding-bottom: 36px;
  }

  .as-growth-item h3 {
    margin-bottom: 18px;
    line-height: 1.35;
  }

  .as-experience-word {
    font-size: clamp(44px, 12.2vw, 92px);
    line-height: 1;
  }

  .as-cta-section {
    min-height: unset;
  }

  .as-cta-inner {
    min-height: unset;
    padding-top: 48px;
    padding-bottom: 0;
    flex-direction: column;
  }

  .as-cta-copy {
    width: 100%;
  }

  .as-cta-copy p:not(.as-section-kicker) {
    margin: 24px 0 28px;
  }

  .as-cta-visual {
    position: relative;
    width: 100%;
    min-height: unset;
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
  }

  .as-cta-person {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(300px, 78vw);
    height: auto;
    max-height: 340px;
    object-position: bottom right;
    margin: 0;
    display: block;
  }

  html[lang^="ar"] .as-cta-person,
  html[dir="rtl"] .as-cta-person {
    right: auto;
    left: auto;
  }

  .as-service-card {
    min-height: 240px;
    padding: 30px;
  }

  .as-orbit-section {
    width: calc(100% - 18px);
    --as-orbit-padding-y: 110px;
    --as-orbit-padding-x: 20px;
    --as-orbit-height: 430px;
    --as-orbit-size: 720px;
    --as-orbit-top: 118px;
    min-height: var(--as-orbit-height);
    border-radius: 28px;
  }

  .as-orbit-arc {
    width: 720px;
  }

  .as-orbit-content {
    margin-top: 0;
  }

  .as-contact-grid {
    --bs-gutter-y: 40px;
  }

  .as-contact-form {
    padding: 24px;
    border-radius: 18px;
  }

  .as-footer-section {
    padding-top: 56px;
  }

  .as-footer-word {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(44px, 12.2vw, 92px);
    min-height: 104px;
    line-height: 1;
    text-align: center;
    margin-bottom: 50px;
  }

  .as-footer-grid {
    --bs-gutter-y: 34px;
    padding-bottom: 54px;
  }

  .as-footer-brand img {
    width: 230px;
  }

  .as-footer-bottom {
    min-height: 118px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .as-inner-hero {
    min-height: auto;
    padding: 128px 0 58px;
  }

  .video-shape {
    width: 100%;
    height: 100%;
    opacity: 0.28;
    
  }

  .video-shape .as-inner-hero-video {
    object-position: center;
  }

  .as-inner-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .as-inner-hero-content > p:not(.as-section-kicker) {
    font-size: 15px;
    line-height: 26px;
  }

  .as-who-we-are {
    margin-top: 64px;
  }

  .as-who-we-are h2,
  .as-about-do-card h2,
  .as-about-text-card h2,
  .as-about-light-cta h2,
  .as-core-values-title {
    font-size: 28px;
  }

  .as-who-we-are p {
    font-size: 14px;
    line-height: 24px;
  }

  .as-inner-video-section {
    padding: 42px 0 72px;
  }

  .as-about-page-main .as-check-list {
    margin-top: 46px;
  }

  .as-about-details-section {
    padding-top: 0;
  }

  .as-about-info-card,
  .as-about-text-card,
  .as-core-value-card {
    padding: 28px 24px;
  }

  .as-about-do-card {
    padding: 32px 24px;
  }

  .as-about-tags {
    gap: 12px;
  }

  .as-about-tags span {
    width: 100%;
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .as-about-light-cta-section {
    padding-bottom: 72px;
  }

  .as-about-light-cta {
    min-height: auto;
    padding: 46px 24px;
  }

  .as-about-light-cta > div {
    flex-direction: column;
    align-items: stretch;
  }

  .as-service-detail-hero {
    padding: 118px 0 60px;
  }

  .as-service-detail-hero-row {
    --bs-gutter-y: 28px;
  }

  .as-service-logo-card {
    width: 158px;
    height: 158px;
    border-radius: 18px;
  }

  .as-service-pill {
    min-height: 32px;
    margin-bottom: 18px;
    padding: 6px 13px;
    font-size: 10px;
    line-height: 18px;
  }

  .as-service-detail-copy h1 {
    font-size: 26px;
    line-height: 30px;
  }

  .as-service-detail-copy > p:not(.as-service-pill),
  .as-service-detail-card p,
  .as-service-plan-card p,
  .as-service-choice-card p,
  .as-service-solutions-copy > p:not(.as-service-solutions-kicker),
  .as-service-solution-item p {
    font-size: 14px;
    line-height: 24px;
  }

  .as-service-video-section,
  .as-service-detail-services {
    padding-bottom: 72px;
  }

  .as-service-video-frame img {
    aspect-ratio: 1.24;
  }

  .as-service-line-heading {
    gap: 12px;
  }

  .as-service-line-heading span {
    width: 36px;
  }

  .as-service-line-heading h2,
  .as-service-solutions-copy h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .as-service-detail-card {
    min-height: 212px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .as-service-solutions-copy {
    padding-top: 64px;
  }

  .as-service-solutions-list {
    --bs-gutter-x: 0;
  }

  .as-service-solutions-media {
    padding-bottom: 64px;
  }

  .as-service-plan-card {
    min-height: 450px;
    padding: 32px 24px;
  }

  .as-service-plan-card::after {
    left: -90px;
    width: 440px;
  }

  .as-service-choice-list {
    gap: 18px;
  }

  .as-service-choice-card {
    min-height: 76px;
    padding: 20px 22px;
  }
}

/* ==========================================================================
   Responsive - Small Mobile
   ========================================================================== */

@media (max-width: 420px) {
  .as-primary-button,
  .as-ghost-button {
    min-height: 50px;
    padding: 0 20px;
    font-size: 12px;
  }

  .as-hero-title {
    font-size: 38px;
  }

  .as-client-stack img {
    width: 42px;
    height: 42px;
  }

  .as-client-counter strong {
    font-size: 38px;
  }

  .as-feature-card,
  .as-service-card,
  .as-service-detail-card,
  .as-company-card {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

body.as-dark-mode {
  --as-blue: #6d82ff;
  --as-blue-deep: #8ea0ff;
  --as-yellow: #ffc247;
  --as-ink: #f4f7ff;
  --as-muted: #a8b0c2;
  --as-line: rgba(255, 255, 255, 0.12);
  --as-shadow-card: 0 32px 90px rgba(0, 0, 0, 0.36), 0 0 42px rgba(77, 102, 255, 0.08);
  --as-shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--as-ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(77, 102, 255, 0.22), transparent 36%),
    radial-gradient(circle at 82% 16%, rgba(255, 194, 71, 0.12), transparent 32%),
    linear-gradient(180deg, #060812 0%, #090c16 42%, #05070d 100%);
}

body.as-dark-mode .as-site-shell {
  background:
    radial-gradient(circle at 15% 12%, rgba(77, 102, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 184, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #080b15 0%, #0c111d 38%, #070911 100%);
}

body.as-dark-mode .as-section-heading,
body.as-dark-mode .as-display-heading {
  color: #f5f7ff;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

body.as-dark-mode .as-section-kicker {
  color: #8ea0ff;
}

/* Dark Header */

body.as-dark-mode .as-fixed-header {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.as-dark-mode .as-fixed-header::before {
  display: block;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10.9px);
  -webkit-backdrop-filter: blur(10.9px);
}

.as-fixed-header::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.as-fixed-header.as-header-scrolled {
  height: 76px;
  border-bottom-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  box-shadow: none;
}

body.as-dark-mode .as-fixed-header.as-header-scrolled {
  background: transparent;
  box-shadow: none;
}

body.as-dark-mode .as-nav-link,
body.as-dark-mode .as-icon-button,
body.as-dark-mode .as-language-button,
body.as-dark-mode .as-menu-button {
  color: rgba(245, 247, 255, 0.92);
}

body.as-dark-mode .as-nav-link:hover {
  color: #fff;
  text-shadow: 0 0 22px rgba(109, 130, 255, 0.42);
}

body.as-dark-mode .as-icon-button:hover,
body.as-dark-mode .as-menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 28px rgba(109, 130, 255, 0.18);
}

body.as-dark-mode .as-language-menu {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(18, 22, 34, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), 0 0 52px rgba(109, 130, 255, 0.14);
}

body.as-dark-mode .as-language-menu button,
body.as-dark-mode .as-language-menu a {
  color: #f4f7ff;
}

body.as-dark-mode .as-language-menu i {
  color: var(--as-yellow);
}

/* Dark Hero */

body.as-dark-mode .as-hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.08) 0%, rgba(4, 8, 16, 0.3) 58%, rgba(3, 5, 11, 0.52) 100%),
    radial-gradient(circle at 50% 44%, rgba(77, 102, 255, 0.08), rgba(3, 5, 11, 0.34) 72%);
}

body.as-dark-mode .as-pill-label,
body.as-dark-mode .as-ghost-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 46px rgba(0, 0, 0, 0.2);
}

body.as-dark-mode .as-primary-button {
  background: linear-gradient(135deg, #7085ff 0%, #455fff 100%);
  box-shadow: 0 18px 48px rgba(77, 102, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body.as-dark-mode .as-primary-button:hover {
  box-shadow: 0 24px 64px rgba(77, 102, 255, 0.48), 0 0 34px rgba(109, 130, 255, 0.24);
}

body.as-dark-mode .as-ghost-button:hover {
  color: #fff;
  background: rgba(109, 130, 255, 0.18);
  border-color: rgba(109, 130, 255, 0.44);
  box-shadow: 0 20px 58px rgba(109, 130, 255, 0.2);
}

body.as-dark-mode .as-client-counter {
  background: linear-gradient(135deg, #ffc247 0%, #f2a900 100%);
  box-shadow: 0 -32px 84px rgba(0, 0, 0, 0.34), 0 0 44px rgba(255, 194, 71, 0.2);
}

/* Dark Sections */

body.as-dark-mode .as-about-section,
body.as-dark-mode .as-growth-section,
body.as-dark-mode.as-inner-page,
body.as-dark-mode .as-inner-hero,
body.as-dark-mode .as-inner-video-section,
body.as-dark-mode .as-about-details-section,
body.as-dark-mode .as-about-light-cta-section,
body.as-dark-mode .as-core-values-section,
body.as-dark-mode .as-service-detail-hero,
body.as-dark-mode .as-service-video-section,
body.as-dark-mode .as-service-detail-services,
body.as-dark-mode .as-service-growth-section,
body.as-dark-mode .as-service-cta-panel,
body.as-dark-mode .as-archive-section,
body.as-dark-mode .as-contact-page-section {
  background:
    radial-gradient(circle at 10% 4%, rgba(109, 130, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #0a0e18 0%, #0d121e 100%);
}

body.as-dark-mode .as-presence-section,
body.as-dark-mode .as-services-section,
body.as-dark-mode .as-contact-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(109, 130, 255, 0.16), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(255, 194, 71, 0.07), transparent 32%),
    linear-gradient(180deg, #090d17 0%, #070a13 100%);
}

body.as-dark-mode .as-vision-graphic {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 10%, rgba(109, 130, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--as-shadow-soft);
}

body.as-dark-mode .as-vision-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(21, 27, 43, 0.82), rgba(12, 17, 29, 0.72));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.as-dark-mode .as-vision-card span {
  color: #8ea0ff;
  text-shadow: 0 0 34px rgba(109, 130, 255, 0.18);
}

body.as-dark-mode .as-about-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.14);
}

body.as-dark-mode .as-about-swiper-pagination .swiper-pagination-bullet-active {
  background: #6d82ff;
  box-shadow: 0 0 24px rgba(109, 130, 255, 0.34);
}

body.as-dark-mode .as-vision-line-art,
body.as-dark-mode .as-growth-image,
body.as-dark-mode .as-video-frame img {
  filter: saturate(0.92) brightness(0.76) contrast(1.08);
}

body.as-dark-mode .as-contact-form {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(21, 27, 43, 0.82), rgba(12, 17, 29, 0.72));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.as-dark-mode .as-vision-card p,
body.as-dark-mode .as-check-list li,
body.as-dark-mode .as-growth-item h3,
body.as-dark-mode .as-contact-info h3,
body.as-dark-mode .as-contact-info h2,
body.as-dark-mode .as-contact-info dd,
body.as-dark-mode .as-inner-title,
body.as-dark-mode .as-who-we-are h2,
body.as-dark-mode .as-about-info-card h2,
body.as-dark-mode .as-about-do-card h2,
body.as-dark-mode .as-about-text-card h2,
body.as-dark-mode .as-about-light-cta h2,
body.as-dark-mode .as-core-values-title,
body.as-dark-mode .as-core-value-card h3,
body.as-dark-mode .as-outline-button,
body.as-dark-mode .as-service-detail-copy h1,
body.as-dark-mode .as-service-line-heading h2,
body.as-dark-mode .as-service-detail-card h3,
body.as-dark-mode .as-archive-company-grid .as-company-card h2,
body.as-dark-mode .as-archive-service-grid .as-service-card h2 {
  color: #eef3ff;
}

body.as-dark-mode .as-muted-copy,
body.as-dark-mode .as-about-copy p:not(.as-section-kicker),
body.as-dark-mode .as-presence-head p:last-child,
body.as-dark-mode .as-services-head p,
body.as-dark-mode .as-growth-item p,
body.as-dark-mode .as-contact-info > p:not(.as-section-kicker),
body.as-dark-mode .as-contact-info dt,
body.as-dark-mode .as-inner-hero-content > p:not(.as-section-kicker),
body.as-dark-mode .as-who-we-are p,
body.as-dark-mode .as-about-info-card p,
body.as-dark-mode .as-about-do-card p,
body.as-dark-mode .as-about-text-card p,
body.as-dark-mode .as-about-light-cta p,
body.as-dark-mode .as-core-value-card p,
body.as-dark-mode .as-service-detail-copy > p:not(.as-service-pill),
body.as-dark-mode .as-service-detail-card p,
body.as-dark-mode .as-service-plan-card p,
body.as-dark-mode .as-service-choice-card p {
  color: rgba(223, 229, 243, 0.68);
}

/* Dark Cards */

body.as-dark-mode .as-feature-card,
body.as-dark-mode .as-service-card,
body.as-dark-mode .as-company-card,
body.as-dark-mode .as-about-info-card,
body.as-dark-mode .as-about-do-card,
body.as-dark-mode .as-about-text-card,
body.as-dark-mode .as-about-light-cta,
body.as-dark-mode .as-core-value-card,
body.as-dark-mode .as-service-logo-card,
body.as-dark-mode .as-service-detail-card,
body.as-dark-mode .as-service-plan-card,
body.as-dark-mode .as-service-choice-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(12, 17, 29, 0.78);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.as-dark-mode .as-feature-card:hover,
body.as-dark-mode .as-service-card:hover,
body.as-dark-mode .as-company-card:hover,
body.as-dark-mode .as-about-info-card:hover,
body.as-dark-mode .as-about-do-card:hover,
body.as-dark-mode .as-about-text-card:hover,
body.as-dark-mode .as-about-light-cta:hover,
body.as-dark-mode .as-core-value-card:hover,
body.as-dark-mode .as-service-logo-card:hover,
body.as-dark-mode .as-service-detail-card:hover,
body.as-dark-mode .as-service-choice-card:hover {
  border-color: rgba(109, 130, 255, 0.36);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 194, 71, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(77, 102, 255, 0.94), rgba(52, 69, 210, 0.9));
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.38), 0 0 60px rgba(109, 130, 255, 0.26);
}

body.as-dark-mode .as-feature-card h3,
body.as-dark-mode .as-service-card h3,
body.as-dark-mode .as-service-card h2,
body.as-dark-mode .as-company-card h3,
body.as-dark-mode .as-company-card h2 {
  color: #f5f7ff;
}

body.as-dark-mode .as-feature-card p,
body.as-dark-mode .as-service-card p,
body.as-dark-mode .as-company-card p {
  color: rgba(223, 229, 243, 0.68);
}

body.as-dark-mode .as-service-card:hover p,
body.as-dark-mode .as-company-card:hover p,
body.as-dark-mode .as-about-info-card:hover p,
body.as-dark-mode .as-about-do-card:hover p,
body.as-dark-mode .as-about-text-card:hover p,
body.as-dark-mode .as-about-light-cta:hover p,
body.as-dark-mode .as-core-value-card:hover p,
body.as-dark-mode .as-service-detail-card:hover p,
body.as-dark-mode .as-service-choice-card:hover p {
  color: rgba(255, 255, 255, 0.74);
}

body.as-dark-mode .video-shape {
  opacity: 0.4;
  mix-blend-mode: exclusion;
}

body.as-dark-mode .video-shape .as-inner-hero-video {
  opacity: 1;
  
  filter: none;
}

body.as-dark-mode .as-outline-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

body.as-dark-mode .as-about-info-card i {
  color: #FFF;
}

body.as-dark-mode .as-about-info-card:hover {
  border-color: rgba(82, 108, 248, 0.92);
  background: #526cf8;
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.38), 0 0 60px rgba(109, 130, 255, 0.26);
}

body.as-dark-mode .as-about-info-card:hover h2 {
  color: #fff;
}

body.as-dark-mode .as-about-info-card:hover > span:not(.as-about-info-watermark) {
  color: var(--as-yellow);
}

body.as-dark-mode .as-about-info-watermark,
body.as-dark-mode .as-about-info-card:hover .as-about-info-watermark {
  color: rgba(151, 159, 209, 0.64);
}

body.as-dark-mode .as-about-do-card:hover,
body.as-dark-mode .as-about-growth-card:hover,
body.as-dark-mode .as-service-plan-card:hover {
  border-color: rgba(255, 183, 3, 0.94);
  background: var(--as-yellow);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.24), 0 0 54px rgba(255, 183, 3, 0.16);
}

body.as-dark-mode .as-about-do-card:hover h2,
body.as-dark-mode .as-about-growth-card:hover h2 {
  color: #101624;
}

body.as-dark-mode .as-about-do-card:hover p,
body.as-dark-mode .as-about-growth-card:hover p,
body.as-dark-mode .as-service-plan-card:hover p {
  color: rgba(16, 22, 36, 0.82);
}

body.as-dark-mode .as-about-model-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.042)),
    rgba(12, 17, 29, 0.86);
}

body.as-dark-mode .as-feature-icon,
body.as-dark-mode .as-service-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

body.as-dark-mode .as-service-icon i {
  color: #dfe5f3;
}

body.as-dark-mode .as-company-card a {
  color: #f4f7ff;
}

body.as-dark-mode .as-company-card img {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.3));
}

body.as-dark-mode .as-companies-section {
  background:
    linear-gradient(180deg, #ffc247 0 57%, #080b15 57% 100%);
}

body.as-dark-mode .as-companies-section .as-section-heading {
  color: #09111f;
  text-shadow: none;
}

body.as-dark-mode .as-companies-section .as-section-kicker {
  color: #3753f3;
}

/* Dark Media Sections */

body.as-dark-mode .as-value-banner,
body.as-dark-mode .as-orbit-section {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, #101625, #070a12);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.as-dark-mode .as-value-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(10, 14, 25, 0.12), rgba(4, 7, 13, 0.68) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(4, 7, 13, 0.42));
  pointer-events: none;
}

body.as-dark-mode .as-value-bg {
  opacity: 0.52;
  filter: brightness(0.82) contrast(1.12) saturate(0.9);
}

body.as-dark-mode .as-value-content p,
body.as-dark-mode .as-orbit-content p {
  color: rgba(223, 229, 243, 0.72);
}

body.as-dark-mode .as-growth-head,
body.as-dark-mode .as-growth-item,
body.as-dark-mode .as-contact-info h3,
body.as-dark-mode .as-footer-bottom {
  border-color: rgba(255, 255, 255, 0.11);
}

body.as-dark-mode .as-experience-word {
  color: rgba(255, 255, 255, 0.055);
  text-shadow: 0 0 70px rgba(109, 130, 255, 0.1);
}

body.as-dark-mode .as-cta-section {
  background:
    radial-gradient(circle at 72% 54%, rgba(255, 194, 71, 0.13), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(109, 130, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #11141d 0%, #07090f 100%);
}

body.as-dark-mode .as-cta-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

body.as-dark-mode .as-orbit-section::before {
  background:
    radial-gradient(circle at 50% 100%, rgba(109, 130, 255, 0.26) 0, rgba(109, 130, 255, 0.13) 30%, transparent 56%),
    radial-gradient(circle at 50% 10%, rgba(255, 194, 71, 0.08), transparent 38%);
}

body.as-dark-mode .as-orbit-arc {
  border-color: rgba(109, 130, 255, 0.28);
  background: #080b15;
  box-shadow: 0 -28px 70px rgba(109, 130, 255, 0.16), inset 0 18px 58px rgba(109, 130, 255, 0.12);
}

/* Dark Forms */

body.as-dark-mode .as-contact-form label {
  color: rgba(223, 229, 243, 0.78);
}

body.as-dark-mode .as-contact-form input:not([type="submit"]),
body.as-dark-mode .as-contact-form textarea {
  color: #f4f7ff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

body.as-dark-mode .as-contact-form input:not([type="submit"]):focus,
body.as-dark-mode .as-contact-form textarea:focus {
  border-color: rgba(109, 130, 255, 0.64);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(109, 130, 255, 0.14), 0 0 34px rgba(109, 130, 255, 0.12);
}

body.as-dark-mode .as-contact-section::after {
  border-color: rgba(109, 130, 255, 0.08);
  box-shadow:
    inset 0 0 0 43px rgba(109, 130, 255, 0.06),
    inset 0 0 0 101px rgba(255, 194, 71, 0.035),
    inset 0 0 0 166px rgba(109, 130, 255, 0.045);
}

/* Dark Footer */

body.as-dark-mode .as-footer-section {
  background: #1e1e1e;
}

body.as-dark-mode .as-footer-word {
  color: rgba(255, 255, 255, 0.1);
}

body.as-dark-mode .as-footer-nav h2,
body.as-dark-mode .as-footer-contact h2 {
  color: #0B6EDA;
}

/* Company single — dark-mode spacing
   In light mode 128 px bottom padding separates visually distinct white
   sections. In dark mode all service-page sections share the same gradient,
   so those large gaps become empty dark voids. Tighten to 72 px and ensure
   the solutions band outer wrapper does not bleed its light background. */

body.as-dark-mode .as-service-detail-hero {
  padding-bottom: 72px;
}

body.as-dark-mode .as-service-video-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

body.as-dark-mode .as-service-detail-services {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.as-dark-mode .as-service-growth-section {
  padding: 72px 0;
}

body.as-dark-mode .as-service-cta-panel {
  padding: 48px 0 80px;
}

/* Solutions band outer wrapper has background:#fff in light mode.
   In dark mode set it to transparent so only the blue inner band shows. */
body.as-dark-mode .as-service-solutions-section {
  background: transparent;
}

/* Dark Theme - Tablet */

@media (max-width: 1024px) {
  body.as-menu-open .as-fixed-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.as-dark-mode .as-main-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
      radial-gradient(circle at 24% 0%, rgba(109, 130, 255, 0.22), transparent 40%),
      rgba(13, 18, 31, 0.9);
    box-shadow: 28px 0 90px rgba(0, 0, 0, 0.48), 0 0 58px rgba(109, 130, 255, 0.12);
  }

  body.as-dark-mode .as-nav-drawer-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body.as-dark-mode .as-nav-drawer-controls .as-language-button {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  body.as-dark-mode .as-nav-close,
  body.as-dark-mode .as-nav-link {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  body.as-dark-mode .as-nav-close {
    color: #fff;
  }

  body.as-dark-mode .as-nav-link:hover {
    background: rgba(109, 130, 255, 0.12);
  }

  body.as-dark-mode .as-nav-link.as-nav-active,
  body.as-dark-mode .as-nav-link[aria-current="page"] {
    color: #fff;
    border-color: rgba(109, 130, 255, 0.36);
    background: linear-gradient(135deg, rgba(109, 130, 255, 0.26), rgba(109, 130, 255, 0.08));
    box-shadow: 0 18px 46px rgba(109, 130, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  body.as-dark-mode.as-menu-open .as-fixed-header {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
  }
}

/* Dark Theme - Mobile */

@media (max-width: 767px) {
  body.as-dark-mode .as-companies-section {
    background: linear-gradient(180deg, #ffc247 0 48%, #080b15 48% 100%);
  }
}

/* Arabic typography overrides */

html[lang^="ar"] body,
html[lang^="ar"] body *,
html[lang^="ar"] button,
html[lang^="ar"] input,
html[lang^="ar"] textarea,
html[lang^="ar"] select,
html[dir="rtl"] body,
html[dir="rtl"] body *,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[lang^="ar"] h5,
html[lang^="ar"] h6,
html[lang^="ar"] .as-hero-title,
html[lang^="ar"] .as-section-heading,
html[lang^="ar"] .as-display-heading,
html[lang^="ar"] .as-inner-title,
html[lang^="ar"] .as-footer-word,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .as-hero-title,
html[dir="rtl"] .as-section-heading,
html[dir="rtl"] .as-display-heading,
html[dir="rtl"] .as-inner-title,
html[dir="rtl"] .as-footer-word {
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

html[lang^="ar"] .fa,
html[lang^="ar"] .fa-solid,
html[lang^="ar"] .fa-regular,
html[lang^="ar"] .fa-brands,
html[dir="rtl"] .fa,
html[dir="rtl"] .fa-solid,
html[dir="rtl"] .fa-regular,
html[dir="rtl"] .fa-brands {
  font-family: "Font Awesome 6 Free";
}

html[lang^="ar"] .fa-brands,
html[dir="rtl"] .fa-brands {
  font-family: "Font Awesome 6 Brands";
}

html[lang^="ar"] .as-hero-title,
html[lang^="ar"] .as-inner-title,
html[lang^="ar"] .as-display-heading,
html[lang^="ar"] .as-section-heading,
html[dir="rtl"] .as-hero-title,
html[dir="rtl"] .as-inner-title,
html[dir="rtl"] .as-display-heading,
html[dir="rtl"] .as-section-heading {
  line-height: 1.35;
}

html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  line-height: 1.45;
}

html[lang^="ar"] .as-growth-item h3,
html[lang^="ar"] .as-feature-card h3,
html[lang^="ar"] .as-service-card h3,
html[lang^="ar"] .as-company-card h3,
html[lang^="ar"] .as-archive-company-grid .as-company-card h2,
html[lang^="ar"] .as-archive-service-grid .as-service-card h2,
html[lang^="ar"] .as-about-info-card h2,
html[lang^="ar"] .as-about-do-card h2,
html[lang^="ar"] .as-about-text-card h2,
html[lang^="ar"] .as-about-light-cta h2,
html[lang^="ar"] .as-core-values-title,
html[lang^="ar"] .as-core-value-card h3,
html[lang^="ar"] .as-service-detail-copy h1,
html[lang^="ar"] .as-service-line-heading h2,
html[lang^="ar"] .as-service-detail-card h3,
html[lang^="ar"] .as-service-solutions-copy h2,
html[lang^="ar"] .as-service-solution-item h3,
html[lang^="ar"] .as-contact-info h2,
html[lang^="ar"] .as-contact-info h3,
html[lang^="ar"] .as-footer-nav h2,
html[lang^="ar"] .as-footer-contact h2,
html[dir="rtl"] .as-growth-item h3,
html[dir="rtl"] .as-feature-card h3,
html[dir="rtl"] .as-service-card h3,
html[dir="rtl"] .as-company-card h3,
html[dir="rtl"] .as-archive-company-grid .as-company-card h2,
html[dir="rtl"] .as-archive-service-grid .as-service-card h2,
html[dir="rtl"] .as-about-info-card h2,
html[dir="rtl"] .as-about-do-card h2,
html[dir="rtl"] .as-about-text-card h2,
html[dir="rtl"] .as-about-light-cta h2,
html[dir="rtl"] .as-core-values-title,
html[dir="rtl"] .as-core-value-card h3,
html[dir="rtl"] .as-service-detail-copy h1,
html[dir="rtl"] .as-service-line-heading h2,
html[dir="rtl"] .as-service-detail-card h3,
html[dir="rtl"] .as-service-solutions-copy h2,
html[dir="rtl"] .as-service-solution-item h3,
html[dir="rtl"] .as-contact-info h2,
html[dir="rtl"] .as-contact-info h3,
html[dir="rtl"] .as-footer-nav h2,
html[dir="rtl"] .as-footer-contact h2 {
  line-height: 1.5;
}
