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

   1. GLOBAL

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

/*
   LIGHT MODE
*/

:root {
  color-scheme: light;

  --bg-color: #f4f8fc;
  --text-color: #061728;
  --primary-color: #227da9;
  --hover-color: #e5eff6;
  --border-color: #d9e5ee;

  --arrow-color: #263e53;
  --arrow-bg: rgb(255 255 255 / 88%);
  --arrow-border: rgb(255 255 255 / 45%);
  --arrow-hover-bg: #ffffff;

  --font-main: "Inter", Arial, sans-serif;
}

/*
   DARK MODE
*/

:root[data-theme="dark"] {
  color-scheme: dark;

  --bg-color: #061728;
  --text-color: #ffffff;
  --primary-color: #53b6cc;
  --hover-color: #102a40;
  --border-color: #254055;

  --arrow-color: #edf4fa;
  --arrow-bg: rgb(15 35 52 / 88%);
  --arrow-border: rgb(255 255 255 / 15%);
  --arrow-hover-bg: #203d53;
}

/*
   RESET
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  background-color: var(--bg-color);
  color: var(--text-color);

  font-family: var(--font-main);

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

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

button {
  font: inherit;
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 5px;
}

/*
   CONTAINER
*/

.container {
  width: min(84.375%, 1620px);
  margin-inline: auto;
}

@media (max-width: 1500px) {
  .container {
    width: 90%;
  }
}

/*
   SCREEN READER TEXT
*/

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  margin: -1px;
  padding: 0;

  overflow: hidden;
  clip-path: inset(50%);

  white-space: nowrap;
  border: 0;
}

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

   2. HEADER

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

.header {
  position: relative;
  z-index: 20;

  width: 100%;
  padding-block: 60px 30px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

/*
   LOGO
*/

.logo {
  display: block;
  flex: 0 0 240px;
}

.logo img {
  display: block;

  width: 100%;
  height: auto;
}

.logo .logo-dark,
[data-theme="dark"] .logo .logo-light {
  display: none;
}

[data-theme="dark"] .logo .logo-dark {
  display: block;
}

/*
   NAVIGATION
*/

.nav-menu {
  display: flex;
  align-items: center;

  gap: clamp(20px, 3.125vw, 60px);

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 44px;

  font-size: 18px;
  font-weight: 400;
  line-height: 24px;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";

  position: absolute;
  inset-inline: 0;
  bottom: 4px;

  height: 2px;

  background-color: var(--primary-color);

  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

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

/*
   ACTION BUTTONS
*/

.header-actions {
  display: flex;
  align-items: center;

  gap: 4px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  padding: 8px;

  background-color: transparent;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.icon-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*
   THEME ICONS
*/

.sun-icon,
[data-theme="dark"] .moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

/*
   MOBILE MENU BUTTON
*/

.burger-btn {
  display: none;
}

/*
   LAPTOP
*/

@media (max-width: 1500px) {
  .header {
    padding-block: 36px 24px;
  }

  .logo {
    flex-basis: 200px;
  }

  .nav-menu {
    gap: 24px;
  }

  .nav-link {
    font-size: 16px;
  }
}

/*
   TABLET / MOBILE MENU
*/

@media (max-width: 1150px) {
  .header {
    padding-block: 24px;
  }

  .header-container {
    gap: 16px;
  }

  .logo {
    flex-basis: 180px;
  }

  .burger-btn {
    display: inline-flex;
    flex-direction: column;

    gap: 5px;
  }

  .burger-btn span {
    width: 22px;
    height: 2px;

    background-color: currentColor;
    border-radius: 2px;

    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }

  .burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar {
    position: absolute;

    top: calc(100% - 8px);
    inset-inline: 5%;

    max-height: calc(100dvh - 120px);
    padding: 16px;

    overflow-y: auto;

    background-color: var(--bg-color);

    border: 1px solid var(--border-color);
    border-radius: 16px;

    box-shadow: 0 18px 40px rgb(0 0 0 / 8%);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .navbar.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;

    gap: 4px;
  }

  .nav-link {
    display: flex;

    padding: 10px 16px;
    border-radius: 8px;
  }

  .nav-link:hover {
    background-color: var(--hover-color);
  }

  .nav-link::after {
    display: none;
  }
}

/*
   SMALL MOBILE
*/

@media (max-width: 400px) {
  .logo {
    flex-basis: 140px;
  }

  .header-container {
    gap: 8px;
  }

  .header-actions {
    gap: 0;
  }
}

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

   3. HERO

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

.hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: clamp(620px, 50vw, 960px);

  padding-block: clamp(130px, 10vw, 192px) clamp(180px, 14vw, 270px);

  overflow: hidden;

  background-color: var(--bg-color);

  transition: background-color 0.25s ease;
}

/*
   CONTENT
*/

.hero-container {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
}

.hero-title {
  width: 100%;
  max-width: 1500px;

  margin: 0;

  color: var(--text-color);

  font-size: clamp(36px, 4.22vw, 81px);
  font-weight: 600;
  line-height: 1.6;

  text-align: center;
  letter-spacing: -0.035em;

  animation: hero-title-enter 0.85s ease-out both;
}

.hero-line {
  display: block;
}

/*
   HIGHLIGHT
*/

.hero-highlight {
  position: relative;

  display: inline-block;

  padding-inline: 0.1em;

  white-space: nowrap;
}

.hero-highlight-text {
  position: relative;
  z-index: 1;
}

.hero-highlight-ring {
  position: absolute;

  top: 50%;
  left: -3%;

  width: 106%;
  height: 1.3em;

  overflow: visible;
  pointer-events: none;

  transform: translateY(-50%) rotate(-2deg);
}

.hero-highlight-ring path {
  fill: none;

  stroke: var(--primary-color);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  vector-effect: non-scaling-stroke;

  stroke-dasharray: 1;
  stroke-dashoffset: 0;

  animation: hero-ring-draw 1.2s ease-out 0.35s both;
}

/*
   DECORATIVE HANDS
*/

.hero-artwork {
  position: absolute;
  z-index: 0;
  inset: 0;

  pointer-events: none;
  user-select: none;
}

.hero-hand {
  position: absolute;

  display: block;
  height: auto;

  pointer-events: none;
  user-select: none;

  animation: hero-hand-float 7s ease-in-out infinite;
}

.hero-hand-left {
  top: 20px;
  left: -12px;

  width: clamp(155px, 15.2vw, 292px);
}

.hero-hand-right {
  top: auto;
  right: -12px;
  bottom: 32px;

  width: clamp(155px, 14.6vw, 280px);

  animation-delay: -3.5s;
}

/*
   ARABIC
*/

html[lang="ar"] .hero-title {
  line-height: 1.8;
  letter-spacing: normal;
}

/*
   ANIMATIONS
*/

@keyframes hero-title-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes hero-ring-draw {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes hero-hand-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/*
   TABLET
*/

@media (max-width: 1150px) {
  .hero {
    min-height: 660px;
    padding-block: 145px 220px;
  }

  .hero-container {
    width: 78%;
  }

  .hero-title {
    font-size: clamp(34px, 4.3vw, 49px);
    line-height: 1.55;
  }

  .hero-hand-left {
    left: -24px;
    width: 170px;
  }

  .hero-hand-right {
    right: -24px;

    width: 160px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .hero {
    min-height: 600px;
    padding-block: 120px 190px;
  }

  .hero-title {
    font-size: clamp(25px, 6.3vw, 36px);
    line-height: 1.65;
    letter-spacing: -0.025em;
  }

  .hero-line + .hero-line {
    margin-top: 0.15em;
  }

  .hero-hand-left {
    left: -38px;
    width: 125px;
  }

  .hero-hand-right {
    top: auto;
    right: -34px;
    bottom: 35px;

    width: 115px;
  }

  .hero-highlight-ring path {
    stroke-width: 2;
  }
}

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

   4. ABOUT / SERVICES

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

.why-section {
  padding-block: 64px 120px;

  background-color: var(--bg-color);
  color: var(--text-color);

  scroll-margin-top: 24px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/*
   SECTION HEADER
*/

.why-header {
  max-width: 1100px;

  margin-inline: auto;
  margin-bottom: 56px;

  text-align: center;
}

.why-eyebrow {
  margin: 0 0 20px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.12em;
}

.why-title {
  margin: 0;

  font-size: clamp(32px, 3.35vw, 64px);
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: -0.035em;
}

.why-brand {
  display: block;
}

.why-description {
  max-width: 1000px;

  margin: 28px auto 0;

  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 400;
  line-height: 1.7;

  text-wrap: pretty;
}

/*
   GALLERY
*/

.services-gallery {
  --service-gap: clamp(20px, 2.5vw, 48px);
  --service-width: clamp(300px, 40vw, 780px);
  --gallery-inset: clamp(16px, 2vw, 40px);

  position: relative;

  min-width: 0;

  scroll-margin-top: 24px;
}

.services-scroller {
  width: 100%;

  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gallery-inset);

  scrollbar-width: none;
}

.services-scroller::-webkit-scrollbar {
  display: none;
}

.services-scroller:focus-visible {
  outline-offset: -2px;
}

.services-track {
  display: flex;
  align-items: flex-start;

  gap: var(--service-gap);

  width: max-content;

  margin: 0;
  padding: 14px var(--gallery-inset) 24px;

  list-style: none;
}

/*
   CARDS
*/

.service-tile {
  flex: 0 0 var(--service-width);
  width: var(--service-width);

  scroll-snap-align: start;

  transition: transform 0.3s ease;
}

.service-tile img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 2048 / 1347;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .service-tile:hover {
    transform: translateY(-6px);
  }
}

/*
   OVERLAY ARROWS
*/

.services-controls {
  position: absolute;
  z-index: 5;
  inset: 14px 0 24px;

  direction: ltr;
  pointer-events: none;
}

.services-arrow {
  position: absolute;
  top: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin: 0;
  padding: 0;

  color: var(--arrow-color);
  background-color: var(--arrow-bg);

  border: 1px solid var(--arrow-border);
  border-radius: 50%;

  box-shadow: 0 4px 18px rgb(0 0 0 / 12%);
  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  cursor: pointer;
  transform: translateY(-50%);

  transition:
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.services-arrow[data-scroll-direction="left"] {
  left: 20px;
}

.services-arrow[data-scroll-direction="right"] {
  right: 20px;
}

.services-arrow svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-arrow:hover {
  background-color: var(--arrow-hover-bg);
}

.services-gallery[data-hover-side="left"]
  .services-arrow[data-scroll-direction="left"]:not(:disabled),
.services-gallery[data-hover-side="right"]
  .services-arrow[data-scroll-direction="right"]:not(:disabled),
.services-arrow:focus-visible:not(:disabled) {
  opacity: 1;
  pointer-events: auto;
}

.services-arrow:disabled {
  cursor: default;
}

/*
   TOUCH DEVICES
*/

@media (hover: none) {
  .services-arrow {
    width: 44px;
    height: 44px;
  }

  .services-arrow:not(:disabled) {
    opacity: 1;
    pointer-events: auto;
  }

  .services-arrow[data-scroll-direction="left"] {
    left: 10px;
  }

  .services-arrow[data-scroll-direction="right"] {
    right: 10px;
  }
}

/*
   ARABIC
*/

html[lang="ar"] .why-title {
  line-height: 1.4;
  letter-spacing: normal;
}

html[lang="ar"] .why-eyebrow {
  letter-spacing: normal;
}

/*
   REVEAL ANIMATION
*/

.why-section.is-revealing .why-header {
  animation: why-content-enter 0.7s ease-out both;
}

.why-section.is-revealing .services-gallery {
  animation: why-content-enter 0.8s ease-out 0.15s both;
}

@keyframes why-content-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/*
   TABLET
*/

@media (max-width: 992px) {
  .why-section {
    padding-block: 48px 90px;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-description {
    max-width: 680px;
  }

  .services-gallery {
    --service-width: 60vw;
    --service-gap: 24px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .why-section {
    padding-block: 32px 64px;
  }

  .why-header {
    margin-bottom: 28px;
  }

  .why-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .why-title {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.2;
  }

  .why-description {
    margin-top: 20px;

    font-size: 15px;
    line-height: 1.8;
  }

  .services-gallery {
    --service-width: 84vw;
    --service-gap: 16px;
    --gallery-inset: 16px;
  }
}
/* =========================================

   6. PROJECTS

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

/*
   SECTION
*/

.projects-section {
  padding-block: 90px 110px;

  background-color: var(--bg-color);
  color: var(--text-color);

  scroll-margin-top: 24px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/*
   SECTION HEADER
*/

.projects-header {
  max-width: 900px;

  margin-inline: auto;

  text-align: center;
}

.projects-eyebrow {
  margin: 0 0 20px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.12em;
}

.projects-title {
  margin: 0;

  font-size: clamp(32px, 3.35vw, 64px);
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: -0.035em;
}

.projects-title-line {
  display: block;
}

.projects-description {
  max-width: 760px;

  margin: 28px auto 0;

  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.7;

  text-wrap: pretty;
}

/*
   SHOWCASE
*/

.projects-showcase {
  width: 100%;

  margin: 64px 0 0;
}

.projects-image {
  display: block;

  width: 100%;
  height: auto;
}

/*
   ARABIC
*/

html[lang="ar"] .projects-title {
  line-height: 1.4;
  letter-spacing: normal;
}

html[lang="ar"] .projects-eyebrow {
  letter-spacing: normal;
}

/*
   REVEAL ANIMATION
*/

.projects-section.is-revealing .projects-header {
  animation: projects-content-enter 0.7s ease-out both;
}

.projects-section.is-revealing .projects-showcase {
  animation: projects-showcase-enter 0.9s ease-out 0.15s both;
}

@keyframes projects-content-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes projects-showcase-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

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

/*
   TABLET
*/

@media (max-width: 992px) {
  .projects-section {
    padding-block: 64px 80px;
  }

  .projects-showcase {
    margin-top: 48px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .projects-section {
    padding-block: 48px 64px;
  }

  .projects-eyebrow {
    margin-bottom: 14px;

    font-size: 12px;
  }

  .projects-title {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.2;
  }

  .projects-description {
    margin-top: 20px;

    font-size: 15px;
    line-height: 1.8;
  }

  .projects-showcase {
    margin-top: 36px;
  }
}
/* =========================================

   7. BRANDS

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

/*
   SECTION
*/

.brands-section {
  padding-block: 24px 64px;

  overflow: hidden;

  background-color: var(--bg-color);

  transition: background-color 0.25s ease;
}

/*
   STAGE
*/

.brands-stage {
  position: relative;

  width: 100%;
  aspect-ratio: 2048 / 410;

  isolation: isolate;
}

/*
   STRIPS
*/

.brands-strip {
  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;

  transform: translateY(-50%);

  pointer-events: none;
  user-select: none;
}

.brands-strip-bottom {
  z-index: 1;
}

.brands-strip-top {
  z-index: 2;
}

/*
   THEME IMAGES
*/

.brands-image {
  display: block;

  width: 100%;
  height: auto;
}

.brands-image-dark,
[data-theme="dark"] .brands-image-light {
  display: none;
}

[data-theme="dark"] .brands-image-dark {
  display: block;
}

/*
   SEQUENTIAL REVEAL
*/

.brands-section.is-ready .brands-strip {
  opacity: 0;
}

.brands-section.is-ready.is-revealing .brands-strip-bottom {
  animation: brands-bottom-enter 0.65s ease-out both;
}

.brands-section.is-ready.is-revealing .brands-strip-top {
  animation: brands-top-enter 0.65s ease-out 0.7s both;
}

@keyframes brands-bottom-enter {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes brands-top-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .brands-section {
    padding-block: 16px 40px;
  }

  .brands-stage {
    width: 160%;
    margin-inline: -30%;
  }
}

/*
   REDUCED MOTION
*/

@media (prefers-reduced-motion: reduce) {
  .brands-section.is-ready .brands-strip {
    opacity: 1;
    clip-path: none;
    animation: none;
  }
}
/* =========================================

   8. PRODUCTS

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

/*
   SECTION / THEMES
*/

.products-section {
  --products-bg-start: #edf7ff;
  --products-bg-end: #8eb3d0;

  position: relative;

  overflow: hidden;

  color: var(--text-color);

  background: linear-gradient(
    100deg,
    var(--products-bg-start) 35%,
    var(--products-bg-end) 100%
  );

  scroll-margin-top: 24px;
}

[data-theme="dark"] .products-section {
  --products-bg-start: #030d11;
  --products-bg-end: #165a9b;
}

html[dir="rtl"] .products-section {
  background: linear-gradient(
    260deg,
    var(--products-bg-start) 35%,
    var(--products-bg-end) 100%
  );
}

/*
   LAYOUT
*/

.products-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;

  gap: clamp(24px, 3vw, 64px);

  min-height: 740px;
}

/*
   CONTENT
*/

.products-content {
  position: relative;
  z-index: 2;

  min-width: 0;

  padding-block: 80px;
}

.products-eyebrow {
  margin: 0 0 22px;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.06em;
}

.products-header h2 {
  max-width: 850px;

  margin: 0;

  font-size: clamp(36px, 3.35vw, 64px);
  font-weight: 600;
  line-height: 1.08;

  letter-spacing: -0.035em;

  text-wrap: balance;
}

/*
   PRODUCT LIST
*/

.products-list {
  display: grid;
  gap: 44px;

  margin-top: 56px;
}

.product-item h3 {
  margin: 0;

  font-size: clamp(26px, 2.1vw, 40px);
  font-weight: 500;
  line-height: 1.3;
}

.product-item h3 span {
  position: relative;

  display: inline-block;

  padding-bottom: 8px;

  isolation: isolate;
}

.product-item h3 span::after {
  content: "";

  position: absolute;
  z-index: -1;

  right: 0;
  bottom: 2px;
  left: 0;

  height: 6px;

  background-color: var(--primary-color);

  border-radius: 60% 35% 55% 30%;

  transform: rotate(-2deg);
}

.product-item p {
  max-width: 820px;

  margin: 20px 0 0;

  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.6;

  text-wrap: pretty;
}

/*
   STORE BADGES
*/

.product-stores {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 16px;
  margin-top: 24px;
}

.product-store {
  display: block;
  flex-shrink: 0;

  width: 190px;
  height: 56px;

  border-radius: 8px;

  cursor: pointer;
}

.product-store img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: fill;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-store:hover img {
    transform: translateY(-2px);
    opacity: 0.92;
  }
}
/*
   PRODUCT VISUALS
*/

.products-visual {
  position: relative;
  align-self: stretch;

  min-width: 0;
  min-height: 740px;

  isolation: isolate;
}

.products-screens {
  position: absolute;
  z-index: 0;

  top: 0;
  inset-inline-end: -9%;

  width: auto;
  height: 100%;

  max-width: none;

  pointer-events: none;
  user-select: none;
}

.products-phones-wrap {
  position: absolute;
  z-index: 1;
  inset: 0;

  display: grid;
  align-items: center;

  pointer-events: none;
}

.products-phones {
  display: block;

  width: 145%;
  max-width: none;
  height: auto;

  margin-inline-start: -34%;

  user-select: none;
}

/*
   ARABIC
*/

html[lang="ar"] .products-eyebrow {
  letter-spacing: normal;
}

html[lang="ar"] .products-header h2 {
  line-height: 1.35;
  letter-spacing: normal;
}

/*
   REVEAL ANIMATION
*/

.products-section.is-revealing .products-content {
  animation: products-content-enter 0.75s ease-out both;
}

.products-section.is-revealing .products-phones-wrap {
  animation: products-phones-enter 0.95s ease-out 0.2s both;
}

@keyframes products-content-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes products-phones-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

/*
   TABLET
*/

@media (max-width: 1000px) {
  .products-container {
    grid-template-columns: minmax(0, 1fr);

    gap: 0;
    min-height: 0;
  }

  .products-content {
    padding-block: 64px 24px;
  }

  .products-header h2 {
    max-width: 700px;
    font-size: clamp(34px, 5vw, 48px);
  }

  .products-list {
    margin-top: 40px;
  }

  .products-visual {
    justify-self: center;

    width: 100%;
    max-width: 650px;

    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .products-phones {
    width: 105%;
    margin-inline-start: -5%;
  }

  .products-screens {
    inset-inline-end: 0;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .products-content {
    padding-block: 48px 16px;
  }

  .products-eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .products-header h2 {
    font-size: clamp(30px, 7.5vw, 40px);
  }

  .products-list {
    gap: 36px;
    margin-top: 36px;
  }

  .product-item h3 {
    font-size: 27px;
  }

  .product-item p {
    margin-top: 16px;

    font-size: 15px;
    line-height: 1.8;
  }

  .product-stores {
    gap: 12px;
    margin-top: 20px;
  }

  .product-store img {
    width: 135px;
    height: 40px;
  }

  .products-visual {
    margin-top: 16px;
    margin-bottom: 20px;
  }
}

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

   9. NWAFTH DIFFERENCE

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

/*
   SECTION
*/

.difference-section {
  position: relative;

  padding-block: 80px 100px;

  overflow: hidden;
  isolation: isolate;

  background-color: var(--bg-color);
  color: var(--text-color);

  scroll-margin-top: 24px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

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

/*
   DECORATIVE LINE
*/

.difference-line {
  position: absolute;
  z-index: 0;
  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

.difference-line path {
  fill: none;

  stroke: #1b609b;
  stroke-width: 22;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*
   SECTION HEADER
*/

.difference-header {
  max-width: 1000px;

  margin-inline: auto;
  margin-bottom: 100px;

  text-align: center;
}

.difference-eyebrow {
  margin: 0 0 32px;

  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.difference-title {
  margin: 0;

  font-size: clamp(32px, 3.35vw, 64px);
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: -0.035em;
}

.difference-title-line {
  display: block;
}

/*
   CARDS GRID
*/

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.difference-card {
  position: relative;

  min-width: 0;

  margin: 0;
}

.difference-card-wide {
  grid-column: 1 / -1;
}

/*
   CARD CONTENT
*/

.difference-card-content {
  width: 100%;
}

.difference-card-content > img {
  display: block;

  width: 100%;
  height: auto;
}

/*
   ARABIC
*/

html[lang="ar"] .difference-title {
  line-height: 1.4;
  letter-spacing: normal;
}

html[lang="ar"] .difference-line {
  transform: scaleX(-1);
}

/*
   REVEAL ANIMATION
*/

.difference-header.is-revealing,
.difference-card.is-revealing {
  animation: difference-enter 0.75s ease-out both;
}

@keyframes difference-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/*
   TABLET
*/

@media (max-width: 992px) {
  .difference-section {
    padding-block: 64px 80px;
  }

  .difference-header {
    margin-bottom: 64px;
  }

  .difference-grid {
    gap: 20px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .difference-section {
    padding-block: 48px 64px;
  }

  .difference-header {
    margin-bottom: 40px;
  }

  .difference-eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .difference-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.25;
  }

  .difference-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .difference-card-wide {
    grid-column: auto;
  }

  .difference-line {
    opacity: 0.65;
  }
}
/* =========================================

   10. TECHNOLOGIES

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

/*
   SECTION / THEMES
*/

.technologies-section {
  --technologies-panel-start: #e8f4fd;
  --technologies-panel-end: #9bbad3;

  padding-block: 80px 100px;

  background-color: var(--bg-color);
  color: var(--text-color);

  scroll-margin-top: 24px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

[data-theme="dark"] .technologies-section {
  --technologies-panel-start: #030d11;
  --technologies-panel-end: #103b60;
}

/*
   SECTION HEADER
*/

.technologies-header {
  max-width: 850px;

  margin-inline: auto;

  text-align: center;
}

.technologies-eyebrow {
  margin: 0 0 36px;

  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.technologies-title {
  margin: 0;

  font-size: clamp(32px, 3.35vw, 64px);
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: -0.035em;
  text-wrap: balance;
}

/*
   STAGE
*/

.technologies-stage {
  position: relative;

  width: 100%;
  aspect-ratio: 1620 / 650;

  margin-top: 24px;

  isolation: isolate;
}

/*
   CENTER MESSAGE
*/

.technologies-message {
  position: absolute;
  z-index: 1;

  top: 39%;
  left: 31%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38%;
  min-height: 35%;

  padding: clamp(20px, 2.8vw, 48px);

  background: linear-gradient(
    105deg,
    var(--technologies-panel-start) 35%,
    var(--technologies-panel-end)
  );

  border-radius: clamp(20px, 2vw, 34px);
}

.technologies-message p {
  margin: 0;

  font-size: clamp(17px, 1.65vw, 32px);
  line-height: 1.45;

  text-align: center;
  text-wrap: pretty;
}

/*
   ICONS
*/

.technologies-icons {
  position: absolute;
  inset: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.technology-item {
  position: absolute;

  top: var(--icon-top);
  left: var(--icon-left);

  width: var(--icon-width);
}

.technology-item img {
  display: block;

  width: 100%;
  height: auto;

  transform: rotate(0deg);
  transform-origin: center;
}

/*
   LEFT GROUP
*/

.technology-sql {
  --icon-top: 0%;
  --icon-left: 7%;
  --icon-width: 8%;
}

.technology-github {
  --icon-top: 18%;
  --icon-left: 19%;
  --icon-width: 6%;
}

.technology-flutter {
  --icon-top: 35%;
  --icon-left: 2%;
  --icon-width: 5.5%;
}

.technology-docker {
  --icon-top: 40%;
  --icon-left: 10%;
  --icon-width: 15%;
}

.technology-android {
  --icon-top: 76%;
  --icon-left: 0%;
  --icon-width: 8%;
}

/*
   RIGHT GROUP
*/

.technology-php {
  --icon-top: 0%;
  --icon-left: 86%;
  --icon-width: 9.5%;
}

.technology-ios {
  --icon-top: 16%;
  --icon-left: 74%;
  --icon-width: 6%;
}

.technology-vue {
  --icon-top: 38%;
  --icon-left: 78%;
  --icon-width: 7.5%;
}

.technology-angular {
  --icon-top: 58%;
  --icon-left: 83%;
  --icon-width: 17%;
}

.technology-laravel {
  --icon-top: 76%;
  --icon-left: 68%;
  --icon-width: 9%;
}

/*
   ROTATION ANIMATION
*/

.technologies-section.is-ready .technology-item img {
  transform: rotate(180deg);
}

.technologies-section.is-ready .technology-item.is-revealing img {
  animation: technology-turn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes technology-turn {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/*
   ARABIC
*/

html[lang="ar"] .technologies-title {
  line-height: 1.4;
  letter-spacing: normal;
}

/*
   TABLET
*/

@media (max-width: 1000px) {
  .technologies-section {
    padding-block: 64px 80px;
  }

  .technologies-stage {
    aspect-ratio: auto;
    margin-top: 40px;
  }

  .technologies-message {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    max-width: 650px;
    min-height: 0;

    margin-inline: auto;
    padding: 32px;
  }

  .technologies-message p {
    font-size: 22px;
  }

  .technologies-icons {
    position: relative;
    inset: auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    justify-items: center;

    gap: 32px 24px;

    margin-top: 48px;
  }

  .technology-item {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    max-width: 100px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .technologies-section {
    padding-block: 48px 64px;
  }

  .technologies-eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .technologies-title {
    font-size: clamp(28px, 7.5vw, 38px);
  }

  .technologies-message {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .technologies-message p {
    font-size: 18px;
    line-height: 1.6;
  }

  .technologies-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px 20px;
    margin-top: 36px;
  }

  .technology-item {
    max-width: 80px;
  }

  .technology-item:last-child {
    grid-column: 2;
  }
}

/*
   REDUCED MOTION
*/

@media (prefers-reduced-motion: reduce) {
  .technologies-section.is-ready .technology-item img {
    transform: none;
    animation: none;
  }
}
/* =========================================

   11. FOOTER

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

/*
   SECTION / THEMES
*/

.footer {
  --footer-bg-start: #edf6fe;
  --footer-bg-end: #b6cde2;
  --footer-muted: #526474;
  --footer-line: #165a9b;

  padding-block: 90px 80px;

  color: var(--text-color);

  background: linear-gradient(
    100deg,
    var(--footer-bg-start) 50%,
    var(--footer-bg-end)
  );

  scroll-margin-top: 24px;
}

[data-theme="dark"] .footer {
  --footer-bg-start: #03090b;
  --footer-bg-end: #0a263e;
  --footer-muted: #a9b4be;
}

html[dir="rtl"] .footer {
  background: linear-gradient(
    260deg,
    var(--footer-bg-start) 50%,
    var(--footer-bg-end)
  );
}

/*
   TOP LAYOUT
*/

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;

  gap: 80px;

  padding-bottom: 36px;
}

/*
   BRAND
*/

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

.footer-logo {
  display: inline-block;

  width: clamp(220px, 16vw, 310px);
  max-width: 100%;
}

.footer-logo img {
  display: block;

  width: 100%;
  height: auto;
}

.footer-logo .footer-logo-dark,
[data-theme="dark"] .footer-logo .footer-logo-light {
  display: none;
}

[data-theme="dark"] .footer-logo .footer-logo-dark {
  display: block;
}

/*
   CONTACT
*/

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 10px;

  margin-top: 36px;

  font-style: normal;
}

.footer-contact a {
  max-width: 100%;

  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.5;

  overflow-wrap: anywhere;

  transition: color 0.2s ease;
}

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

/*
   QUICK LINKS
*/

.footer-navigation {
  min-width: 0;
  padding-top: 16px;
}

.footer-navigation h2 {
  margin: 0 0 36px;

  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;

  gap: 28px 32px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;

  min-height: 44px;

  color: var(--footer-muted);

  font-size: 18px;
  line-height: 1.5;

  transition: color 0.2s ease;
}

.footer-links a[href]:hover {
  color: var(--primary-color);
}

.footer-links a[aria-disabled="true"] {
  cursor: default;
}

#profile {
  scroll-margin-top: 24px;
}

/*
   BOTTOM LAYOUT
*/

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding-top: 40px;

  border-top: 1px solid var(--footer-line);
}

/*
   SOCIAL LINKS
*/

.footer-social {
  display: flex;
  align-items: center;

  gap: 18px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  color: var(--text-color);
  background-color: transparent;

  border: 1px solid var(--footer-line);
  border-radius: 50%;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.footer-social-link svg {
  display: block;

  width: 22px;
  height: 22px;

  fill: currentColor;
}

.footer-social-link[aria-disabled="true"] {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .footer-social-link:hover {
    color: #ffffff;
    background-color: var(--footer-line);

    transform: translateY(-3px);
  }
}

/*
   COPYRIGHT
*/

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 5px;

  margin: 0;

  font-size: 16px;
  line-height: 1.6;
}

/*
   TABLET
*/

@media (max-width: 1000px) {
  .footer {
    padding-block: 64px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);

    gap: 40px;
  }

  .footer-navigation {
    padding-top: 0;
  }

  .footer-navigation h2 {
    margin-bottom: 24px;
  }
}

/*
   MOBILE
*/

@media (max-width: 600px) {
  .footer {
    padding-block: 48px 36px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-contact {
    margin-top: 28px;
  }

  .footer-contact a {
    font-size: 17px;
  }

  .footer-navigation h2 {
    font-size: 22px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-auto-flow: row;

    gap: 14px 20px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 28px;
    padding-top: 28px;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-social-link {
    width: 46px;
    height: 46px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}
/* =========================================

   5. ACCESSIBILITY

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

/*
   REDUCED MOTION
*/

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

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

   5. TEAM EXPERTISE

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

/*
   SECTION / STAGE
*/

.expertise-section {
  --expertise-line: #1b609b;
  --expertise-accent: #43a7af;
  --expertise-number: #d1d6de;
  --expertise-marker-size: clamp(52px, 4.883vw, 100px);

  padding-block: 20px 60px;

  overflow: hidden;

  background-color: var(--bg-color);
  color: var(--text-color);

  scroll-margin-top: 24px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.expertise-stage {
  position: relative;

  width: 100%;
  max-width: 2048px;
  min-height: 720px;

  aspect-ratio: 2048 / 1152;

  margin-inline: auto;

  isolation: isolate;
}

/*
   SECTION HEADER
*/

.expertise-header {
  position: absolute;
  z-index: 2;

  top: 9.5%;
  left: 7.8125%;

  width: 36%;
}

.expertise-header h2 {
  margin: 0;

  font-size: clamp(34px, 3.35vw, 68px);
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: -0.035em;
}

.expertise-header p {
  max-width: 660px;

  margin: 48px 0 0;

  font-size: clamp(17px, 1.32vw, 27px);
  line-height: 1.5;
}

/*
   DECORATIVE PATH
*/

.expertise-path {
  position: absolute;
  z-index: 0;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;

  pointer-events: none;
}

.expertise-path path {
  fill: none;

  stroke: var(--expertise-line);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

/*
   EXPERTISE ITEMS
*/

.expertise-list {
  position: absolute;
  z-index: 1;
  inset: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.expertise-item {
  position: absolute;

  width: 21%;
}

.expertise-item-first {
  top: 69.79%;
  left: 7.8125%;
}

.expertise-item-second {
  top: 50.52%;
  left: 40%;
}

.expertise-item-third {
  top: 20.83%;
  left: 71.09%;
}

/*
   MARKERS
*/

.expertise-marker {
  position: relative;

  display: grid;
  place-items: center;

  width: var(--expertise-marker-size);
  height: calc(var(--expertise-marker-size) * 0.86);

  background-color: var(--text-color);

  border-radius: calc(var(--expertise-marker-size) * 0.25);

  box-shadow:
    0 8px 24px rgb(0 0 0 / 14%),
    0 0 0 8px rgb(67 167 175 / 5%);

  transition: background-color 0.25s ease;
}

.expertise-marker::after {
  content: "";

  width: 35%;
  height: 36%;

  background-color: var(--expertise-accent);

  border-radius: 40%;
}

/*
   NUMBERS
*/

.expertise-number {
  position: absolute;

  top: -0.09em;
  right: 4%;

  color: var(--expertise-number);

  font-size: clamp(110px, 10vw, 205px);
  font-weight: 800;
  line-height: 1;

  letter-spacing: -0.06em;

  pointer-events: none;
  user-select: none;
}

/*
   TEXT
*/

.expertise-item h3 {
  position: relative;

  max-width: 64%;

  margin: 32px 0 0;

  font-size: clamp(18px, 1.32vw, 27px);
  font-weight: 600;
  line-height: 1.3;
}

.expertise-item p {
  margin: 24px 0 0;

  font-size: clamp(16px, 1.12vw, 23px);
  line-height: 1.45;

  text-wrap: pretty;
}

/*
   ARABIC
*/

html[lang="ar"] .expertise-header h2 {
  letter-spacing: normal;
}

html[lang="ar"] .expertise-header {
  left: auto;
  right: 7.8125%;
}

html[lang="ar"] .expertise-path {
  transform: scaleX(-1);
}

html[lang="ar"] .expertise-item-first {
  left: auto;
  right: 7.8125%;
}

html[lang="ar"] .expertise-item-second {
  left: auto;
  right: 40%;
}

html[lang="ar"] .expertise-item-third {
  left: auto;
  right: 71.09%;
}

html[lang="ar"] .expertise-number {
  right: auto;
  left: 4%;
}

/*
   REVEAL ANIMATION
*/

.expertise-section.is-revealing .expertise-path path {
  animation: expertise-line-enter 1.8s ease-out both;
}

.expertise-section.is-revealing .expertise-header {
  animation: expertise-content-enter 0.7s ease-out both;
}

.expertise-section.is-revealing .expertise-item {
  animation: expertise-content-enter 0.7s ease-out both;
}

.expertise-section.is-revealing .expertise-item-first {
  animation-delay: 0.15s;
}

.expertise-section.is-revealing .expertise-item-second {
  animation-delay: 0.35s;
}

.expertise-section.is-revealing .expertise-item-third {
  animation-delay: 0.55s;
}

@keyframes expertise-line-enter {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes expertise-content-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/*
   LAPTOP
*/

@media (min-width: 1001px) and (max-width: 1400px) {
  .expertise-header p {
    margin-top: 28px;
  }

  .expertise-item h3 {
    margin-top: 22px;
  }

  .expertise-item p {
    margin-top: 18px;
  }
}

/*
   TABLET / MOBILE
*/

@media (max-width: 1000px) {
  .expertise-section {
    --expertise-marker-size: 64px;

    padding-block: 48px 72px;
  }

  .expertise-stage {
    width: 90%;
    min-height: 0;

    aspect-ratio: auto;
  }

  .expertise-header,
  html[lang="ar"] .expertise-header {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    width: 100%;
    max-width: 680px;

    margin-bottom: 56px;
  }

  .expertise-header h2 {
    font-size: clamp(30px, 5vw, 44px);
  }

  .expertise-header p {
    margin-top: 24px;

    font-size: 17px;
    line-height: 1.7;
  }

  .expertise-path {
    display: none;
  }

  .expertise-list {
    position: relative;
    inset: auto;
  }

  .expertise-item,
  html[lang="ar"] .expertise-item {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    width: 100%;

    min-height: 190px;

    padding-inline-start: 96px;
    padding-bottom: 48px;
  }

  .expertise-item:last-child {
    min-height: 0;
    padding-bottom: 0;
  }

  .expertise-marker {
    position: absolute;

    top: 0;
    inset-inline-start: 0;
  }

  /*
     VERTICAL CONNECTING LINE
  */

  .expertise-item:not(:last-child)::before {
    content: "";

    position: absolute;

    top: 27px;
    bottom: -27px;

    inset-inline-start: 30px;

    width: 4px;

    background-color: var(--expertise-line);
    border-radius: 4px;
  }

  .expertise-number,
  html[lang="ar"] .expertise-number {
    top: -6px;

    left: auto;
    right: auto;
    inset-inline-end: 0;

    font-size: 76px;
  }

  .expertise-item h3 {
    max-width: none;
    min-height: 56px;

    margin: 0;
    padding-inline-end: 64px;

    font-size: 22px;
    line-height: 1.4;
  }

  .expertise-item p {
    max-width: 600px;

    margin-top: 18px;

    font-size: 16px;
    line-height: 1.7;
  }
}

/*
   SMALL MOBILE
*/

@media (max-width: 480px) {
  .expertise-section {
    --expertise-marker-size: 48px;

    padding-block: 32px 56px;
  }

  .expertise-header {
    margin-bottom: 40px;
  }

  .expertise-item,
  html[lang="ar"] .expertise-item {
    padding-inline-start: 68px;
  }

  .expertise-item:not(:last-child)::before {
    top: 20px;
    bottom: -20px;

    inset-inline-start: 22px;
  }

  .expertise-number,
  html[lang="ar"] .expertise-number {
    font-size: 60px;
  }

  .expertise-item h3 {
    padding-inline-end: 46px;

    font-size: 19px;
  }

  .expertise-item p {
    font-size: 15px;
  }
}
