/* =========================================================
   CUBEON TECHNOLOGIES
   UAE CAMPAIGN
   HEADER + HERO STYLES
   ========================================================= */

/* =========================================================
   VARIABLES
   ========================================================= */

/* =========================================================
   CUBEON TECHNOLOGIES
   UAE PAGE THEME
   Inherit existing Cubeon design system
   ========================================================= */

/* =========================================================
   CUBEON DESIGN SYSTEM
   UAE PAGE
   ========================================================= */

.uae-page {
  --uae-primary: var(--theme-color);
  --uae-primary-dark: var(--theme-color3);

  --uae-navy: var(--dark-color);
  --uae-dark: var(--title-color);

  --uae-text: var(--body-color);
  --uae-title: var(--title-color);

  --uae-light: var(--light-color);
  --uae-light-2: var(--light-color2);

  --uae-white: var(--white-color);

  --uae-border: var(--bs-border-color2);

  --uae-container: var(--main-container);

  --uae-radius-sm: 8px;
  --uae-radius-md: 16px;
  --uae-radius-lg: 24px;

  --uae-title-font: var(--title-font);
  --uae-body-font: var(--body-font);

  --uae-transition: all ease 0.4s;
}

/* =========================================================
   GLOBAL UAE PAGE
   ========================================================= */

.uae-page {
  margin: 0;
  padding: 0;

  font-family: var(--uae-body-font);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  background: var(--uae-white);
  color: var(--uae-text);
}

.uae-page h1,
.uae-page h2,
.uae-page h3,
.uae-page h4,
.uae-page h5,
.uae-page h6 {
  font-family: var(--uae-title-font);
  color: var(--uae-title);
}

.uae-page p {
  font-family: var(--uae-body-font);
  color: var(--uae-text);
}

.uae-page a {
  font-family: var(--uae-body-font);
  transition: var(--uae-transition);
}

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

.uae-page a {
  text-decoration: none;
}

.uae-container {
  width: 100%;
  max-width: var(--main-container);

  margin-left: auto;
  margin-right: auto;

  padding-left: var(--container-gutters);
  padding-right: var(--container-gutters);
}

/* =========================================================
   HEADER
   ========================================================= */

.uae-header {
  position: relative;

  width: 100%;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid rgba(6, 17, 83, 0.07);
}

.uae-header-inner {
  min-height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* =========================================================
   LOGO
   ========================================================= */

.uae-logo {
  flex-shrink: 0;
}

.uae-logo img {
  display: block;

  width: 150px;

  height: auto;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.uae-navigation {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 32px;

  margin-left: auto;
}

.uae-navigation a {
  position: relative;

  color: #344054;

  font-size: 14px;

  font-weight: 600;

  transition: var(--uae-transition);
}

.uae-navigation a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--uae-primary);

  transition: var(--uae-transition);
}

.uae-navigation a:hover {
  color: var(--uae-primary);
}

.uae-navigation a:hover::after {
  width: 100%;
}

/* =========================================================
   HEADER CTA
   ========================================================= */

.uae-header-cta {
  flex-shrink: 0;
}

/* =========================================================
   BUTTON
   ========================================================= */

.uae-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 0 22px;

  border-radius: var(--uae-radius-sm);

  font-size: 13px;

  font-weight: 700;

  transition: var(--uae-transition);

  cursor: pointer;
}

.uae-btn-primary {
  color: #ffffff;

  background: var(--uae-primary);

  box-shadow: 0 12px 28px rgba(16, 83, 243, 0.18);
}

.uae-btn-primary:hover {
  color: #ffffff;

  background: var(--uae-primary-dark);

  transform: translateY(-2px);
}

.uae-btn-primary i {
  font-size: 12px;
}

/* =========================================================
   OUTLINE BUTTON
   ========================================================= */

.uae-btn-outline {
  color: var(--uae-navy);

  background: #ffffff;

  border: 1px solid #d9deea;
}

.uae-btn-outline:hover {
  color: var(--uae-primary);

  border-color: var(--uae-primary);

  transform: translateY(-2px);
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.uae-mobile-menu {
  display: none;

  width: 44px;

  height: 44px;

  padding: 9px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.uae-mobile-menu span {
  display: block;

  width: 100%;

  height: 2px;

  margin: 5px 0;

  background: var(--uae-navy);

  transition: var(--uae-transition);
}

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

.uae-hero {
  position: relative;
  overflow: hidden;
  background: #061153;
}
.uae-hero .uae-container {
  position: relative;
  z-index: 2;
}
/* =========================================================
   HERO BACKGROUND GRID
   ========================================================= */
.uae-hero-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-image:
    linear-gradient(rgba(6, 17, 83, 0.72), rgba(6, 17, 83, 0.72)),
    url("../../assets/images/hm6-bg1.webp");

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

  opacity: 1;
  color: snow;
  pointer-events: none;

  z-index: 0;
}

/* =========================================================
   HERO GRID
   ========================================================= */

.uae-hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);

  align-items: center;

  gap: 70px;
}

/* =========================================================
   HERO EYEBROW
   ========================================================= */

.uae-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 8px 13px;

  border: 1px solid rgba(243, 244, 247, 0.12);

  border-radius: 50px;

  background: rgba(247, 248, 250, 0.05);

  color: snow;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.03em;
}

.uae-eyebrow span {
  font-size: 17px;
}

/* =========================================================
   HERO HEADING
   ========================================================= */

.uae-hero h1 {
  max-width: 800px;

  margin: 24px 0 0;

  color: var(--uae-navy);

  font-size: clamp(48px, 5.4vw, 76px);

  line-height: 0.99;

  letter-spacing: -0.055em;

  font-weight: 800;
}

.uae-hero h1 span {
  color: var(--uae-primary);
}

/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.uae-hero-description {
  max-width: 700px;

  margin: 28px 0 0;

  color: var(--uae-text);

  font-size: 17px;

  line-height: 1.8;
}

.uae-hero-description strong {
  color: var(--uae-navy);

  font-weight: 700;
}

/* =========================================================
   HERO ACTIONS
   ========================================================= */

.uae-hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 13px;

  margin-top: 34px;
}

/* =========================================================
   HERO TRUST
   ========================================================= */

.uae-hero-trust {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 27px;
}

.uae-hero-trust span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #667085;

  font-size: 12px;

  font-weight: 600;
}

.uae-hero-trust i {
  color: var(--uae-primary);

  font-size: 11px;
}

/* =========================================================
   HERO VISUAL CARD
   ========================================================= */

.uae-hero-visual {
  position: relative;
}

.uae-hero-card {
  position: relative;

  min-height: 480px;

  padding: 27px;

  overflow: hidden;

  border-radius: var(--uae-radius-lg);

  background:
    radial-gradient(
      circle at 50% 45%,

      rgba(52, 108, 255, 0.25),
      transparent 32%
    ),
    linear-gradient(145deg, #061153, #0d2b93);

  box-shadow: 0 35px 80px rgba(6, 17, 83, 0.22);
}

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

.uae-hero-card {
  position: relative;
  overflow: hidden;

  /* Transparent / glass background */
  background: rgba(255, 255, 255, 0.1);

  /* Glass blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Transparent border */
  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 24px;

  /* Optional shadow */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

  padding: 30px;
}

/* Decorative circle - top right */
.uae-hero-card::before {
  content: "";

  position: absolute;
  top: -100px;
  right: -100px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);

  pointer-events: none;
}

/* Decorative circle - bottom left */
.uae-hero-card::after {
  content: "";

  position: absolute;
  bottom: -120px;
  left: -120px;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.06);

  pointer-events: none;
}
/* =========================================================
   CARD HEADER
   ========================================================= */

.uae-card-header {
  position: relative;

  z-index: 5;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;
}

.uae-status {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #aebbe0;

  font-size: 11px;
}

.uae-status i {
  color: #45d483;

  font-size: 7px;
}

/* =========================================================
   AI VISUAL
   ========================================================= */

.uae-ai-visual {
  position: relative;

  height: 330px;

  display: grid;

  place-items: center;
}

/* =========================================================
   ORBITS
   ========================================================= */

.uae-orbit {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  animation: uaeOrbit 18s linear infinite;
}

.uae-orbit-one {
  width: 155px;

  height: 155px;
}

.uae-orbit-two {
  width: 235px;

  height: 235px;

  animation-duration: 25s;

  animation-direction: reverse;
}

.uae-orbit-three {
  width: 310px;

  height: 310px;

  animation-duration: 32s;
}

@keyframes uaeOrbit {
  from {
    transform: rotate(0deg);
  }

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

/* =========================================================
   AI CORE
   ========================================================= */

.uae-ai-core {
  position: relative;

  z-index: 10;

  width: 110px;

  height: 110px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 3px;

  border-radius: 50%;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 0 50px rgba(75, 137, 255, 0.35);

  backdrop-filter: blur(12px);
}

.uae-ai-core i {
  margin-bottom: 4px;

  color: #9fc2ff;

  font-size: 24px;
}

.uae-ai-core strong {
  font-size: 20px;

  line-height: 1;
}

.uae-ai-core small {
  color: #aebbe0;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}

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

.uae-card-footer {
  position: relative;

  z-index: 5;

  display: grid;

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

  gap: 15px;

  padding-top: 21px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.uae-card-footer div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.uae-card-footer strong {
  color: #ffffff;

  font-size: 19px;

  font-weight: 800;
}

.uae-card-footer span {
  color: #aebbe0;

  font-size: 10px;
}

/* =========================================================
   SERVICE STRIP
   ========================================================= */

.uae-service-strip {
  position: relative;

  background: var(--uae-navy);

  padding: 18px 0;
}

.uae-service-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 10px;
}

.uae-service-strip-grid span {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  color: #dce5ff;

  font-size: 15px !important;

  font-weight: 700;

  white-space: nowrap;
}

.uae-service-strip-grid i {
  color: #8eb1ff;

  font-size: 14px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {
  .uae-navigation {
    gap: 22px;
  }

  .uae-hero-grid {
    gap: 40px;
  }

  .uae-hero h1 {
    font-size: 58px;
  }

  .uae-service-strip-grid {
    grid-template-columns: repeat(3, 1fr);

    row-gap: 15px;
  }
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-header-inner {
    min-height: 72px;
  }

  .uae-navigation,
  .uae-header-cta {
    display: none;
  }

  .uae-mobile-menu {
    display: block;
  }

  .uae-hero {
    padding: 75px 0;
  }

  .uae-hero-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .uae-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }

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

  .uae-hero h1 {
    max-width: 750px;

    margin-left: auto;
    margin-right: auto;
  }

  .uae-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .uae-hero-actions {
    justify-content: center;
  }

  .uae-hero-trust {
    justify-content: center;
  }

  .uae-hero-visual {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .uae-logo img {
    width: 135px;
  }

  .uae-hero {
    min-height: auto;

    padding: 60px 0;
  }

  .uae-hero h1 {
    font-size: 42px;

    line-height: 1.02;
  }

  .uae-hero-description {
    font-size: 15px;

    line-height: 1.7;
  }

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

    width: 100%;
  }

  .uae-hero-actions .uae-btn {
    width: 100%;
  }

  .uae-hero-trust {
    flex-direction: column;

    gap: 10px;
  }

  .uae-hero-card {
    min-height: 400px;

    padding: 20px;
  }

  .uae-ai-visual {
    height: 270px;
  }

  .uae-orbit-one {
    width: 125px;
    height: 125px;
  }

  .uae-orbit-two {
    width: 190px;
    height: 190px;
  }

  .uae-orbit-three {
    width: 250px;
    height: 250px;
  }

  .uae-ai-core {
    width: 90px;
    height: 90px;
  }

  .uae-card-footer strong {
    font-size: 16px;
  }

  .uae-card-footer span {
    font-size: 9px;
  }

  .uae-service-strip {
    padding: 20px 0;
  }

  .uae-service-strip-grid {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 16px;
  }

  .uae-service-strip-grid span {
    font-size: 10px;

    white-space: normal;

    text-align: center;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-hero h1 {
    font-size: 36px;
  }

  .uae-eyebrow {
    font-size: 10px;
  }

  .uae-hero-card {
    min-height: 370px;
  }

  .uae-ai-visual {
    height: 245px;
  }

  .uae-service-strip-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   STEP 1C
   UAE BUSINESS CHALLENGES
   ========================================================= */

/* =========================================================
   GENERIC SECTION
   ========================================================= */

.uae-section {
  position: relative;

  padding: 100px 0;
}

.uae-section-heading {
  max-width: 850px;

  margin: 0 auto 60px;

  text-align: center;
}

.uae-section-label {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--uae-primary);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.uae-section-title {
  margin: 0;

  color: var(--uae-navy);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 800;
}

.uae-section-title span {
  display: block;

  color: var(--uae-primary);
}

.uae-section-description {
  max-width: 720px;

  margin: 22px auto 0;

  color: var(--uae-text);

  font-size: 16px;

  line-height: 1.8;
}

/* =========================================================
   CHALLENGES SECTION
   ========================================================= */

.uae-challenges-section {
  background: #ffffff;
}

/* =========================================================
   CHALLENGE GRID
   ========================================================= */

.uae-challenges-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;
}

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

.uae-challenge-card {
  position: relative;

  min-height: 310px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: #ffffff;

  transition: var(--uae-transition);
}

.uae-challenge-card::after {
  content: "";

  position: absolute;

  right: -50px;

  bottom: -50px;

  width: 140px;

  height: 140px;

  border-radius: 50%;

  background: rgba(16, 83, 243, 0.04);

  transition: var(--uae-transition);
}

.uae-challenge-card:hover {
  border-color: rgba(16, 83, 243, 0.25);

  transform: translateY(-7px);

  box-shadow: 0 22px 50px rgba(6, 17, 83, 0.08);
}

.uae-challenge-card:hover::after {
  transform: scale(1.4);
}

/* =========================================================
   CHALLENGE ICON
   ========================================================= */

.uae-challenge-icon {
  width: 54px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 35px;

  border-radius: 13px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.08);
}

.uae-challenge-icon i {
  font-size: 20px;
}

/* =========================================================
   CHALLENGE NUMBER
   ========================================================= */

.uae-challenge-number {
  position: absolute;

  top: 30px;

  right: 30px;

  color: #dfe4ee;

  font-size: 13px;

  font-weight: 800;
}

/* =========================================================
   CHALLENGE TITLE
   ========================================================= */

.uae-challenge-card h3 {
  max-width: 230px;

  margin: 0 0 15px;

  color: var(--uae-navy);

  font-size: 20px;

  line-height: 1.25;

  letter-spacing: -0.02em;
}

/* =========================================================
   CHALLENGE DESCRIPTION
   ========================================================= */

.uae-challenge-card p {
  margin: 0;

  color: var(--uae-text);

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   TRANSITION MESSAGE
   ========================================================= */

.uae-challenges-transition {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 70px;
}

.uae-transition-line {
  flex: 1;

  height: 1px;

  background: var(--uae-border);
}

.uae-transition-content {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--uae-text);

  font-size: 13px;

  white-space: nowrap;
}

.uae-transition-content strong {
  color: var(--uae-navy);
}

/* =========================================================
   POSITIONING SECTION
   ========================================================= */

.uae-positioning-section {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background: var(--uae-light);
}

.uae-positioning-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(450px, 1.1fr);

  align-items: center;

  gap: 100px;
}

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

.uae-positioning-content h2 {
  max-width: 650px;

  margin: 0;

  color: var(--uae-navy);

  font-size: clamp(38px, 4vw, 54px);

  line-height: 1.08;

  letter-spacing: -0.04em;
}

.uae-positioning-content h2 span {
  display: block;

  color: var(--uae-primary);
}

.uae-positioning-content p {
  max-width: 600px;

  margin: 22px 0 0;

  color: var(--uae-text);

  font-size: 15px;

  line-height: 1.8;
}

.uae-positioning-content .uae-btn {
  margin-top: 30px;
}

/* =========================================================
   SOLUTION FLOW
   ========================================================= */

.uae-solution-flow {
  position: relative;

  padding: 30px;

  border-radius: var(--uae-radius-lg);

  background: #ffffff;

  border: 1px solid var(--uae-border);

  box-shadow: 0 25px 70px rgba(6, 17, 83, 0.07);
}

.uae-flow-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px;

  border-radius: 13px;

  background: #f8faff;

  border: 1px solid #edf1f8;
}

.uae-flow-icon {
  flex-shrink: 0;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.08);
}

.uae-flow-item strong {
  display: block;

  margin-bottom: 4px;

  color: var(--uae-navy);

  font-size: 15px;
}

.uae-flow-item small {
  color: var(--uae-text);

  font-size: 11px;
}

.uae-flow-arrow {
  height: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #aab4ca;
}

.uae-flow-arrow i {
  font-size: 12px;
}

/* =========================================================
   HIGHLIGHTED FLOW ITEM
   ========================================================= */

.uae-flow-highlight {
  color: #ffffff;

  background: var(--uae-navy);

  border-color: var(--uae-navy);
}

.uae-flow-highlight strong {
  color: #ffffff;
}

.uae-flow-highlight small {
  color: #b9c5e3;
}

.uae-flow-highlight .uae-flow-icon {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {
  .uae-challenges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uae-positioning-grid {
    gap: 55px;
  }
}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .uae-positioning-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .uae-positioning-content {
    text-align: center;
  }

  .uae-positioning-content h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .uae-positioning-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .uae-positioning-content .uae-btn {
    margin-top: 25px;
  }

  .uae-positioning-visual {
    max-width: 650px;

    width: 100%;

    margin: auto;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-section {
    padding: 70px 0;
  }

  .uae-section-heading {
    margin-bottom: 40px;
  }

  .uae-section-title {
    font-size: 36px;
  }

  .uae-challenges-grid {
    grid-template-columns: 1fr;
  }

  .uae-challenge-card {
    min-height: auto;
  }

  .uae-challenges-transition {
    gap: 12px;

    margin-top: 45px;
  }

  .uae-transition-content {
    flex-direction: column;

    text-align: center;

    font-size: 11px;
  }

  .uae-transition-line {
    min-width: 20px;
  }

  .uae-positioning-section {
    padding: 75px 0;
  }

  .uae-solution-flow {
    padding: 18px;
  }

  .uae-flow-item {
    padding: 15px;
  }
}
/* =========================================================
   STEP 1D
   SIX CORE TECHNOLOGY SOLUTIONS
   ========================================================= */

/* =========================================================
   SOLUTIONS SECTION
   ========================================================= */

.uae-solutions-section {
  position: relative;

  padding: 110px 0;

  background: #ffffff;
}

/* =========================================================
   SOLUTIONS GRID
   ========================================================= */

.uae-solutions-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

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

.uae-solution-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 450px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: #ffffff;

  transition: var(--uae-transition);
}

.uae-solution-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 3px;

  background: linear-gradient(90deg, var(--uae-primary), #6c9cff);

  transform: scaleX(0);

  transform-origin: left;

  transition: var(--uae-transition);
}

.uae-solution-card:hover {
  transform: translateY(-8px);

  border-color: rgba(16, 83, 243, 0.2);

  box-shadow: 0 25px 60px rgba(6, 17, 83, 0.09);
}

.uae-solution-card:hover::before {
  transform: scaleX(1);
}

/* =========================================================
   SOLUTION TOP
   ========================================================= */

.uae-solution-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;
}

.uae-solution-number {
  color: #d7deeb;

  font-size: 13px;

  font-weight: 800;
}

/* =========================================================
   SOLUTION ICON
   ========================================================= */

.uae-solution-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.08);

  transition: var(--uae-transition);
}

.uae-solution-icon i {
  font-size: 22px;
}

.uae-solution-card:hover .uae-solution-icon {
  color: #ffffff;

  background: var(--uae-primary);

  transform: scale(1.05);
}

/* =========================================================
   SOLUTION TITLE
   ========================================================= */

.uae-solution-card h3 {
  margin: 0 0 14px;

  color: var(--uae-navy);

  font-size: 23px;

  line-height: 1.2;

  letter-spacing: -0.025em;
}

/* =========================================================
   SOLUTION DESCRIPTION
   ========================================================= */

.uae-solution-card > p {
  margin: 0;

  color: var(--uae-text);

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   SOLUTION FEATURES
   ========================================================= */

.uae-solution-card ul {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin: 23px 0 0;

  padding: 0;

  list-style: none;
}

.uae-solution-card li {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: #475467;

  font-size: 11px;

  line-height: 1.5;
}

.uae-solution-card li i {
  flex-shrink: 0;

  margin-top: 3px;

  color: var(--uae-primary);

  font-size: 9px;
}

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

.uae-solution-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: auto;

  padding-top: 25px;

  color: var(--uae-primary);

  font-size: 12px;

  font-weight: 800;
}

.uae-solution-link i {
  font-size: 10px;

  transition: var(--uae-transition);
}

.uae-solution-link:hover {
  color: var(--uae-primary-dark);
}

.uae-solution-link:hover i {
  transform: translateX(4px);
}

/* =========================================================
   SOLUTIONS CTA
   ========================================================= */

.uae-solutions-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 50px;

  padding: 32px 38px;

  border-radius: var(--uae-radius-md);

  background: var(--uae-navy);
}

.uae-solutions-cta div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.uae-solutions-cta span {
  color: #aebbe0;

  font-size: 12px;
}

.uae-solutions-cta strong {
  color: #ffffff;

  font-size: 20px;
}

.uae-solutions-cta .uae-btn-primary {
  flex-shrink: 0;

  background: #ffffff;

  color: var(--uae-navy);

  box-shadow: none;
}

.uae-solutions-cta .uae-btn-primary:hover {
  background: #edf2ff;

  color: var(--uae-primary);
}

/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {
  .uae-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-solutions-section {
    padding: 85px 0;
  }

  .uae-solutions-cta {
    padding: 28px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-solutions-section {
    padding: 70px 0;
  }

  .uae-solutions-grid {
    grid-template-columns: 1fr;
  }

  .uae-solution-card {
    min-height: auto;

    padding: 25px;
  }

  .uae-solutions-cta {
    flex-direction: column;

    align-items: flex-start;

    padding: 25px;
  }

  .uae-solutions-cta strong {
    font-size: 18px;
  }

  .uae-solutions-cta .uae-btn {
    width: 100%;
  }
}
/* =========================================================
   STEP 1E
   UAE INDUSTRIES
   ========================================================= */

/* =========================================================
   INDUSTRIES SECTION
   ========================================================= */

.uae-industries-section {
  position: relative;

  padding: 110px 0;

  background: var(--uae-light);
}

/* =========================================================
   INDUSTRIES GRID
   ========================================================= */

.uae-industries-grid {
  display: grid;

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

  gap: 14px;
}

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

.uae-industry-card {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  min-height: 155px;

  padding: 25px 28px;

  overflow: hidden;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: #ffffff;

  transition: var(--uae-transition);
}

.uae-industry-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 3px;

  height: 100%;

  background: var(--uae-primary);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: var(--uae-transition);
}

.uae-industry-card:hover {
  transform: translateX(5px);

  border-color: rgba(16, 83, 243, 0.2);

  box-shadow: 0 18px 45px rgba(6, 17, 83, 0.07);
}

.uae-industry-card:hover::before {
  transform: scaleY(1);
}

/* =========================================================
   INDUSTRY NUMBER
   ========================================================= */

.uae-industry-number {
  position: absolute;

  top: 17px;

  right: 20px;

  color: #e3e7ef;

  font-size: 11px;

  font-weight: 800;
}

/* =========================================================
   INDUSTRY ICON
   ========================================================= */

.uae-industry-icon {
  flex-shrink: 0;

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.07);

  transition: var(--uae-transition);
}

.uae-industry-icon i {
  font-size: 21px;
}

.uae-industry-card:hover .uae-industry-icon {
  color: #ffffff;

  background: var(--uae-primary);

  transform: scale(1.05);
}

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

.uae-industry-content {
  padding-right: 30px;
}

.uae-industry-content h3 {
  margin: 0 0 8px;

  color: var(--uae-navy);

  font-size: 17px;

  line-height: 1.3;

  letter-spacing: -0.015em;
}

.uae-industry-content p {
  max-width: 500px;

  margin: 0;

  color: var(--uae-text);

  font-size: 12px;

  line-height: 1.65;
}

/* =========================================================
   INDUSTRY ARROW
   ========================================================= */

.uae-industry-arrow {
  position: absolute;

  right: 25px;

  bottom: 24px;

  color: #aeb7ca;

  transition: var(--uae-transition);
}

.uae-industry-arrow i {
  font-size: 11px;
}

.uae-industry-card:hover .uae-industry-arrow {
  color: var(--uae-primary);

  transform: translateX(4px);
}

/* =========================================================
   INDUSTRY NOTE
   ========================================================= */

.uae-industries-note {
  display: flex;

  align-items: center;

  gap: 17px;

  margin-top: 30px;

  padding: 23px 27px;

  border: 1px solid rgba(16, 83, 243, 0.12);

  border-radius: var(--uae-radius-md);

  background: rgba(16, 83, 243, 0.035);
}

.uae-industries-note-icon {
  flex-shrink: 0;

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--uae-primary);

  background: #ffffff;
}

.uae-industries-note > div:nth-child(2) {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.uae-industries-note strong {
  color: var(--uae-navy);

  font-size: 13px;
}

.uae-industries-note span {
  color: var(--uae-text);

  font-size: 11px;
}

.uae-text-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-left: auto;

  color: var(--uae-primary);

  font-size: 12px;

  font-weight: 800;

  white-space: nowrap;
}

.uae-text-link i {
  font-size: 10px;

  transition: var(--uae-transition);
}

.uae-text-link:hover i {
  transform: translateX(4px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-industries-section {
    padding: 85px 0;
  }

  .uae-industries-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-industries-section {
    padding: 70px 0;
  }

  .uae-industry-card {
    min-height: 145px;

    padding: 22px;

    gap: 15px;
  }

  .uae-industry-icon {
    width: 50px;

    height: 50px;
  }

  .uae-industry-icon i {
    font-size: 18px;
  }

  .uae-industry-content {
    padding-right: 20px;
  }

  .uae-industry-content h3 {
    font-size: 15px;
  }

  .uae-industry-content p {
    font-size: 11px;
  }

  .uae-industries-note {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 20px;
  }

  .uae-text-link {
    width: 100%;

    margin-left: 59px;

    margin-top: 5px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-industry-card {
    align-items: flex-start;
  }

  .uae-industry-icon {
    width: 45px;

    height: 45px;
  }

  .uae-industry-content h3 {
    font-size: 14px;
  }

  .uae-industry-content p {
    font-size: 10px;
  }
}
/* =========================================================
   STEP 1F
   WHY CUBEON TECHNOLOGIES
   ========================================================= */

/* =========================================================
   WHY SECTION
   ========================================================= */

.uae-why-section {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background: #ffffff;
}

/* =========================================================
   MAIN WHY GRID
   ========================================================= */

.uae-why-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(400px, 0.85fr);

  gap: 25px;

  align-items: stretch;
}

/* =========================================================
   MAIN FEATURE CARD
   ========================================================= */

.uae-why-main-card {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  padding: 50px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  border-radius: var(--uae-radius-lg);

  background: linear-gradient(
    145deg,
    #061153 0%,

    #0a247d 65%,

    #1037a3 100%
  );

  box-shadow: 0 30px 80px rgba(6, 17, 83, 0.18);
}

/* =========================================================
   BACKGROUND GLOW
   ========================================================= */

.uae-why-main-glow {
  position: absolute;

  top: -150px;

  right: -100px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(74, 136, 255, 0.3), transparent 68%);

  pointer-events: none;
}

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

.uae-why-main-content {
  position: relative;

  z-index: 5;

  max-width: 560px;
}

.uae-why-mini-label {
  display: inline-block;

  margin-bottom: 20px;

  color: #8eb1ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.uae-why-main-content h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(34px, 3.5vw, 48px);

  line-height: 1.08;

  letter-spacing: -0.04em;
}

.uae-why-main-content h3 span {
  display: block;

  color: #80aaff;
}

.uae-why-main-content p {
  max-width: 510px;

  margin: 20px 0 0;

  color: #c3d0ed;

  font-size: 14px;

  line-height: 1.8;
}

.uae-why-main-content .uae-btn {
  margin-top: 28px;
}

/* =========================================================
   DARK CARD BUTTON
   ========================================================= */

.uae-why-main-content .uae-btn-primary {
  color: var(--uae-navy);

  background: #ffffff;

  box-shadow: none;
}

.uae-why-main-content .uae-btn-primary:hover {
  color: var(--uae-primary);

  background: #edf2ff;
}

/* =========================================================
   WHY VISUAL
   ========================================================= */

.uae-why-visual {
  position: absolute;

  right: -70px;

  bottom: -100px;

  width: 380px;

  height: 380px;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0.8;
}

/* =========================================================
   ORBITS
   ========================================================= */

.uae-why-orbit {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.uae-why-orbit.orbit-a {
  width: 260px;

  height: 260px;

  animation: uaeWhyRotate 20s linear infinite;
}

.uae-why-orbit.orbit-b {
  width: 350px;

  height: 350px;

  animation: uaeWhyRotate 30s linear infinite reverse;
}

@keyframes uaeWhyRotate {
  from {
    transform: rotate(0deg);
  }

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

/* =========================================================
   CORE
   ========================================================= */

.uae-why-core {
  position: relative;

  z-index: 5;

  width: 105px;

  height: 105px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(12px);

  box-shadow: 0 0 50px rgba(73, 132, 255, 0.2);
}

.uae-why-core i {
  margin-bottom: 6px;

  color: #9fc2ff;

  font-size: 23px;
}

.uae-why-core strong {
  font-size: 14px;

  letter-spacing: 0.08em;
}

.uae-why-core small {
  margin-top: 2px;

  color: #aebbe0;

  font-size: 7px;

  letter-spacing: 0.12em;
}

/* =========================================================
   DIFFERENTIATORS
   ========================================================= */

.uae-differentiators {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

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

.uae-differentiator {
  flex: 1;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px 24px;

  border: 1px solid var(--uae-border);

  border-radius: 14px;

  background: #ffffff;

  transition: var(--uae-transition);
}

.uae-differentiator:hover {
  transform: translateX(5px);

  border-color: rgba(16, 83, 243, 0.2);

  box-shadow: 0 15px 35px rgba(6, 17, 83, 0.06);
}

/* =========================================================
   DIFFERENTIATOR ICON
   ========================================================= */

.uae-differentiator-icon {
  flex-shrink: 0;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.07);
}

.uae-differentiator-icon i {
  font-size: 17px;
}

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

.uae-differentiator h3 {
  margin: 0 0 5px;

  color: var(--uae-navy);

  font-size: 14px;

  line-height: 1.3;
}

.uae-differentiator p {
  margin: 0;

  color: var(--uae-text);

  font-size: 11px;

  line-height: 1.6;
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.uae-trust-bar {
  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 25px;

  margin-top: 50px;

  padding: 27px 30px;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: var(--uae-light);
}

/* =========================================================
   TRUST ITEM
   ========================================================= */

.uae-trust-item {
  display: flex;

  align-items: center;

  gap: 13px;
}

.uae-trust-item > i {
  flex-shrink: 0;

  color: var(--uae-primary);

  font-size: 18px;
}

.uae-trust-item div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.uae-trust-item strong {
  color: var(--uae-navy);

  font-size: 15px;
}

.uae-trust-item span {
  color: var(--body-text);

  font-size: 14px;
}

/* =========================================================
   TRUST DIVIDER
   ========================================================= */

.uae-trust-divider {
  width: 1px;

  height: 35px;

  background: var(--uae-border);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {
  .uae-why-grid {
    grid-template-columns: 1fr;
  }

  .uae-why-main-card {
    min-height: 500px;
  }

  .uae-differentiators {
    display: grid;

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

  .uae-trust-bar {
    grid-template-columns: 1fr 1fr;

    gap: 25px;
  }

  .uae-trust-divider {
    display: none;
  }
}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .uae-why-section {
    padding: 85px 0;
  }

  .uae-why-main-card {
    padding: 40px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-why-section {
    padding: 70px 0;
  }

  .uae-why-main-card {
    min-height: 550px;

    padding: 30px;
  }

  .uae-why-main-content h3 {
    font-size: 34px;
  }

  .uae-why-main-content p {
    font-size: 13px;
  }

  .uae-why-visual {
    right: -120px;

    bottom: -130px;

    transform: scale(0.75);
  }

  .uae-differentiators {
    grid-template-columns: 1fr;
  }

  .uae-differentiator {
    padding: 19px;
  }

  .uae-trust-bar {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 22px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-why-main-card {
    min-height: 590px;
  }

  .uae-why-main-content h3 {
    font-size: 30px;
  }

  .uae-why-main-content .uae-btn {
    width: 100%;

    font-size: 11px;
  }

  .uae-why-visual {
    right: -150px;

    bottom: -145px;

    transform: scale(0.65);
  }
}
/* =========================================================
   STEP 1G
   UAE LOCATION FOCUS
   ========================================================= */

/* =========================================================
   LOCATION SECTION
   ========================================================= */

.uae-locations-section {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background: var(--uae-light);
}

/* =========================================================
   LOCATION GRID
   ========================================================= */

.uae-locations-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

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

.uae-location-card {
  position: relative;

  min-height: 470px;

  overflow: hidden;

  border-radius: var(--uae-radius-lg);

  background: var(--uae-navy);

  box-shadow: 0 20px 60px rgba(6, 17, 83, 0.1);

  transition: var(--uae-transition);
}

.uae-location-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 75px rgba(6, 17, 83, 0.18);
}

/* =========================================================
   BACKGROUND TEXT
   ========================================================= */

.uae-location-background {
  position: absolute;

  top: 25px;

  left: -15px;

  right: -15px;

  overflow: hidden;

  pointer-events: none;
}

.uae-location-background span {
  color: rgba(255, 255, 255, 0.035);

  font-size: 75px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.06em;

  white-space: nowrap;
}

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

.uae-location-content {
  position: relative;

  z-index: 2;

  height: 100%;

  min-height: 470px;

  display: flex;

  flex-direction: column;

  padding: 30px;
}

/* =========================================================
   LOCATION TOP
   ========================================================= */

.uae-location-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 55px;
}

.uae-location-number {
  color: rgba(255, 255, 255, 0.35);

  font-size: 11px;

  font-weight: 800;
}

.uae-location-icon {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 13px;

  color: #9dbdff;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);

  transition: var(--uae-transition);
}

.uae-location-card:hover .uae-location-icon {
  color: #ffffff;

  background: var(--uae-primary);

  border-color: var(--uae-primary);
}

/* =========================================================
   LOCATION LABEL
   ========================================================= */

.uae-location-label {
  display: inline-block;

  margin-bottom: 10px;

  color: #91b5ff;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

/* =========================================================
   LOCATION TITLE
   ========================================================= */

.uae-location-content h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 32px;

  line-height: 1;

  letter-spacing: -0.04em;
}

/* =========================================================
   LOCATION DESCRIPTION
   ========================================================= */

.uae-location-content > p {
  margin: 0;

  color: #b8c5e2;

  font-size: 12px;

  line-height: 1.75;
}

/* =========================================================
   LOCATION SERVICES
   ========================================================= */

.uae-location-services {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 22px;
}

.uae-location-services span {
  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50px;

  color: #c8d4ec;

  background: rgba(255, 255, 255, 0.045);

  font-size: 8px;

  font-weight: 600;
}

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

.uae-location-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: auto;

  padding-top: 25px;

  color: #ffffff;

  font-size: 11px;

  font-weight: 800;
}

.uae-location-link i {
  color: #83aaff;

  font-size: 9px;

  transition: var(--uae-transition);
}

.uae-location-link:hover {
  color: #ffffff;
}

.uae-location-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   LOCATION CARD ACCENTS
   ========================================================= */

.uae-location-dubai::after,
.uae-location-abu-dhabi::after,
.uae-location-sharjah::after {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  height: 3px;

  background: linear-gradient(90deg, var(--uae-primary), #7ba5ff);
}

/* =========================================================
   BOTTOM COVERAGE BAR
   ========================================================= */

.uae-location-bottom {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 30px;

  padding: 23px 10px;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: #ffffff;
}

.uae-location-bottom-icon {
  flex-shrink: 0;

  width: 43px;

  height: 43px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.07);
}

.uae-location-bottom > div:nth-child(2) {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.uae-location-bottom strong {
  color: var(--uae-navy);

  font-size: 13px;
}

.uae-location-bottom span {
  color: var(--uae-text);

  font-size: 10px;
}

/* =========================================================
   DESKTOP HOVER EFFECT
   ========================================================= */

.uae-location-card::before {
  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  top: -80px;

  right: -70px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(72, 132, 255, 0.22),
    transparent 70%
  );

  transition: var(--uae-transition);
}

.uae-location-card:hover::before {
  transform: scale(1.5);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .uae-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uae-location-card:last-child {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-locations-section {
    padding: 85px 0;
  }

  .uae-location-card {
    min-height: 440px;
  }

  .uae-location-content {
    min-height: 440px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-locations-section {
    padding: 70px 0;
  }

  .uae-locations-grid {
    grid-template-columns: 1fr;
  }

  .uae-location-card:last-child {
    grid-column: auto;
  }

  .uae-location-card {
    min-height: 430px;
  }

  .uae-location-content {
    min-height: 430px;

    padding: 25px;
  }

  .uae-location-top {
    margin-bottom: 45px;
  }

  .uae-location-content h3 {
    font-size: 30px;
  }

  .uae-location-bottom {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 0px;
  }

  .uae-location-bottom .uae-text-link {
    width: 100%;

    margin-left: 10px;

    margin-top: 4px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-location-card {
    min-height: 420px;
  }

  .uae-location-content {
    min-height: 420px;
  }

  .uae-location-background span {
    font-size: 60px;
  }
}
/* =========================================================
   STEP 1H
   HOW WE WORK / ENGAGEMENT MODEL
   ========================================================= */

/* =========================================================
   PROCESS SECTION
   ========================================================= */

.uae-process-section {
  position: relative;

  padding: 110px 0;

  background: #ffffff;
}

/* =========================================================
   PROCESS WRAPPER
   ========================================================= */

.uae-process-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 15px;

  margin-top: 65px;
}

/* =========================================================
   PROCESS LINE
   ========================================================= */

.uae-process-line {
  position: absolute;

  top: 30px;

  left: 9%;

  right: 9%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--uae-border) 10%,

    var(--uae-border) 90%,

    transparent
  );

  z-index: 0;
}

/* =========================================================
   PROCESS STEP
   ========================================================= */

.uae-process-step {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}

/* =========================================================
   PROCESS NUMBER
   ========================================================= */

.uae-process-number {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 62px;

  height: 62px;

  border: 1px solid var(--uae-border);

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 8px 25px rgba(6, 17, 83, 0.06);

  transition: var(--uae-transition);
}

.uae-process-number > span {
  position: absolute;

  top: -17px;

  color: #aab4c7;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.08em;
}

/* =========================================================
   PROCESS ICON
   ========================================================= */

.uae-process-icon {
  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--uae-primary);

  background: rgba(16, 83, 243, 0.07);

  transition: var(--uae-transition);
}

.uae-process-icon i {
  font-size: 15px;
}

.uae-process-step:hover .uae-process-number {
  border-color: rgba(16, 83, 243, 0.25);

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(6, 17, 83, 0.1);
}

.uae-process-step:hover .uae-process-icon {
  color: #ffffff;

  background: var(--uae-primary);
}

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

.uae-process-content {
  margin-top: 28px;

  padding: 0 8px;
}

.uae-process-label {
  display: block;

  margin-bottom: 7px;

  color: var(--uae-primary);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.uae-process-content h3 {
  margin: 0 0 10px;

  color: var(--uae-navy);

  font-size: 19px;

  line-height: 1.2;
}

.uae-process-content p {
  margin: 0;

  color: var(--uae-text);

  font-size: 10px;

  line-height: 1.7;
}

/* =========================================================
   PROCESS CTA
   ========================================================= */

.uae-process-cta {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 70px;

  padding: 27px 30px;

  border: 1px solid var(--uae-border);

  border-radius: var(--uae-radius-md);

  background: var(--uae-light);
}

/* =========================================================
   PROCESS CTA ICON
   ========================================================= */

.uae-process-cta-icon {
  flex-shrink: 0;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--uae-primary);

  background: #ffffff;
}

.uae-process-cta-icon i {
  font-size: 18px;
}

/* =========================================================
   PROCESS CTA CONTENT
   ========================================================= */

.uae-process-cta-content {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.uae-process-cta-content strong {
  color: var(--uae-navy);

  font-size: 14px;
}

.uae-process-cta-content span {
  color: var(--uae-text);

  font-size: 10px;

  line-height: 1.5;
}

/* =========================================================
   PROCESS CTA BUTTON
   ========================================================= */

.uae-process-cta .uae-btn {
  flex-shrink: 0;

  margin-left: auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .uae-process-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    row-gap: 55px;
  }

  .uae-process-line {
    display: none;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-process-section {
    padding: 85px 0;
  }

  .uae-process-wrapper {
    margin-top: 50px;
  }

  .uae-process-cta {
    flex-wrap: wrap;
  }

  .uae-process-cta .uae-btn {
    margin-left: auto;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-process-section {
    padding: 70px 0;
  }

  .uae-process-wrapper {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-top: 45px;
  }

  .uae-process-step {
    display: grid;

    grid-template-columns: 62px 1fr;

    gap: 20px;

    align-items: start;

    text-align: left;
  }

  .uae-process-number {
    grid-row: 1;
  }

  .uae-process-content {
    margin-top: 0;

    padding: 0;
  }

  .uae-process-content h3 {
    font-size: 18px;
  }

  .uae-process-content p {
    font-size: 11px;
  }

  .uae-process-cta {
    align-items: flex-start;

    padding: 22px;
  }

  .uae-process-cta .uae-btn {
    width: 100%;

    margin-left: 0;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-process-step {
    grid-template-columns: 54px 1fr;

    gap: 15px;
  }

  .uae-process-number {
    width: 54px;

    height: 54px;
  }

  .uae-process-icon {
    width: 38px;

    height: 38px;
  }

  .uae-process-icon i {
    font-size: 13px;
  }

  .uae-process-cta-content strong {
    font-size: 13px;
  }
}
/* =========================================================
   STEP 1I
   UAE LEAD GENERATION / CONTACT
   ========================================================= */

/* =========================================================
   CONTACT SECTION
   ========================================================= */

.uae-contact-section {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background: linear-gradient(
    135deg,
    #061153 0%,

    #081b69 50%,

    #0c2b86 100%
  );
}

/* =========================================================
   BACKGROUND EFFECT
   ========================================================= */

.uae-contact-section::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  top: -250px;

  right: -150px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(80, 140, 255, 0.22),
    transparent 68%
  );

  pointer-events: none;
}

.uae-contact-section::after {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  bottom: -200px;

  left: -150px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(80, 140, 255, 0.12),
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================================
   CONTACT HEADING
   ========================================================= */

.uae-contact-heading {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin-bottom: 55px;
}

.uae-contact-heading .uae-section-label {
  color: #8fb5ff;
}

.uae-contact-heading h2 {
  margin: 15px 0 18px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 62px);

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.uae-contact-heading h2 span {
  display: block;

  color: #82aaff;
}

.uae-contact-heading p {
  max-width: 680px;

  margin: 0;

  color: #bac9e9;

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   CONTACT GRID
   ========================================================= */

.uae-contact-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(500px, 1.15fr);

  gap: 25px;

  align-items: stretch;
}

/* =========================================================
   LEFT CONTACT INFO
   ========================================================= */

.uae-contact-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 45px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: var(--uae-radius-lg);

  background: rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(15px);
}

.uae-contact-mini-label {
  display: inline-block;

  margin-bottom: 16px;

  color: #8fb5ff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.uae-contact-intro h3 {
  margin: 0;

  color: #ffffff;

  font-size: 34px;

  line-height: 1.12;

  letter-spacing: -0.035em;
}

.uae-contact-intro h3 strong {
  display: block;

  color: #8bb0ff;

  font-weight: 700;
}

.uae-contact-intro p {
  margin: 20px 0 0;

  color: #b9c7e5;

  font-size: 12px;

  line-height: 1.8;
}

/* =========================================================
   CONTACT SERVICE TAGS
   ========================================================= */

.uae-contact-services {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 28px;
}

.uae-contact-services span {
  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50px;

  color: #c8d5ee;

  background: rgba(255, 255, 255, 0.045);

  font-size: 8px;

  font-weight: 600;
}

/* =========================================================
   CONTACT BENEFITS
   ========================================================= */

.uae-contact-benefits {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin-top: 32px;
}

.uae-contact-benefit {
  display: flex;

  align-items: center;

  gap: 10px;
}

.uae-contact-benefit i {
  color: #7fa7ff;

  font-size: 12px;
}

.uae-contact-benefit span {
  color: #c0cde5;

  font-size: 10px;
}

/* =========================================================
   CONTACT LOCATIONS
   ========================================================= */

.uae-contact-locations {
  display: flex;

  flex-wrap: wrap;

  gap: 9px 18px;

  margin-top: 35px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.uae-contact-locations span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #aebddd;

  font-size: 9px;
}

.uae-contact-locations i {
  color: #7fa7ff;

  font-size: 8px;
}

/* =========================================================
   FORM WRAPPER
   ========================================================= */

.uae-contact-form-wrapper {
  padding: 38px;

  border-radius: var(--uae-radius-lg);

  background: #ffffff;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   FORM HEADER
   ========================================================= */

.uae-form-header {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 30px;
}

.uae-form-header > div:first-child > span {
  display: block;

  margin-bottom: 7px;

  color: var(--uae-primary);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.14em;
}

.uae-form-header h3 {
  margin: 0;

  color: var(--uae-navy);

  font-size: 25px;

  line-height: 1.2;
}

.uae-form-secure {
  display: flex;

  align-items: center;

  gap: 6px;

  padding: 7px 9px;

  border-radius: 7px;

  color: #6b7890;

  background: #f5f7fb;

  font-size: 8px;

  white-space: nowrap;
}

.uae-form-secure i {
  color: #6e8e52;

  font-size: 9px;
}

/* =========================================================
   FORM GRID
   ========================================================= */

.uae-contact-form {
  display: grid;

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

  gap: 17px;
}

.uae-form-group {
  display: flex;

  flex-direction: column;
}

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

/* =========================================================
   FORM LABEL
   ========================================================= */

.uae-form-group label {
  margin-bottom: 7px;

  color: var(--uae-navy);

  font-size: 10px;

  font-weight: 700;
}

.uae-form-group label span {
  color: #e05252;
}

/* =========================================================
   INPUTS
   ========================================================= */

.uae-form-group input,
.uae-form-group select,
.uae-form-group textarea {
  width: 100%;

  border: 1px solid #dce2ec;

  border-radius: 9px;

  outline: none;

  color: var(--uae-navy);

  background: #ffffff;

  font-family: inherit;

  font-size: 11px;

  transition: var(--uae-transition);
}

.uae-form-group input,
.uae-form-group select {
  height: 45px;

  padding: 0 13px;
}

.uae-form-group textarea {
  min-height: 110px;

  padding: 12px 13px;

  resize: vertical;
}

.uae-form-group input::placeholder,
.uae-form-group textarea::placeholder {
  color: #9aa5b7;
}

.uae-form-group select {
  cursor: pointer;
}

.uae-form-group input:focus,
.uae-form-group select:focus,
.uae-form-group textarea:focus {
  border-color: var(--uae-primary);

  box-shadow: 0 0 0 3px rgba(16, 83, 243, 0.07);
}

/* =========================================================
   ERROR STATE
   ========================================================= */

.uae-form-group.has-error input,
.uae-form-group.has-error select,
.uae-form-group.has-error textarea {
  border-color: #dc5b5b;
}

.uae-form-error {
  display: none;

  margin-top: 5px;

  color: #dc5b5b;

  font-size: 8px;
}

.uae-form-group.has-error .uae-form-error {
  display: block;
}

/* =========================================================
   FORM SUBMIT
   ========================================================= */

.uae-form-submit {
  grid-column: 1 / -1;

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 5px;
}

.uae-form-submit .uae-btn {
  flex-shrink: 0;

  border: 0;

  cursor: pointer;
}

.uae-form-submit p {
  max-width: 340px;

  margin: 0;

  color: #8b96a8;

  font-size: 8px;

  line-height: 1.5;
}

/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.uae-form-success {
  display: none;

  align-items: flex-start;

  gap: 12px;

  grid-column: 1 / -1;

  margin-top: 5px;

  padding: 15px;

  border: 1px solid #cce6d2;

  border-radius: 9px;

  color: #3c7547;

  background: #f1faf3;
}

.uae-form-success.show {
  display: flex;
}

.uae-form-success > i {
  margin-top: 2px;

  font-size: 17px;
}

.uae-form-success div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.uae-form-success strong {
  font-size: 11px;
}

.uae-form-success span {
  font-size: 9px;

  line-height: 1.5;
}

/* =========================================================
   TABLET
   ========================================================= */

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

  .uae-contact-info {
    padding: 40px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .uae-contact-section {
    padding: 85px 0;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-contact-section {
    padding: 70px 0;
  }

  .uae-contact-heading h2 {
    font-size: 40px;
  }

  .uae-contact-info {
    padding: 30px;
  }

  .uae-contact-intro h3 {
    font-size: 29px;
  }

  .uae-contact-form-wrapper {
    padding: 25px;
  }

  .uae-form-header {
    flex-direction: column;
  }

  .uae-contact-form {
    grid-template-columns: 1fr;
  }

  .uae-form-full {
    grid-column: auto;
  }

  .uae-form-submit {
    flex-direction: column;

    align-items: flex-start;
  }

  .uae-form-submit .uae-btn {
    width: 100%;
  }

  .uae-form-submit p {
    max-width: none;
  }

  .uae-form-success {
    grid-column: auto;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-contact-heading h2 {
    font-size: 34px;
  }

  .uae-contact-form-wrapper {
    padding: 20px;
  }

  .uae-contact-info {
    padding: 25px;
  }
}
/* =========================================================
   STEP 1J
   UAE FOOTER
   ========================================================= */

/* =========================================================
   FOOTER
   ========================================================= */

.uae-footer {
  position: relative;

  color: #ffffff;

  background: #040c32;
}

/* =========================================================
   FOOTER MAIN
   ========================================================= */

.uae-footer-main {
  padding: 80px 0 65px;
}

/* =========================================================
   FOOTER GRID
   ========================================================= */

.uae-footer-grid {
  display: grid;

  grid-template-columns:
    minmax(260px, 1.6fr)
    repeat(3, minmax(150px, 1fr));

  gap: 60px;
}

/* =========================================================
   FOOTER BRAND
   ========================================================= */

.uae-footer-brand {
  max-width: 330px;
}

.uae-footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #ffffff;

  text-decoration: none;
}

.uae-footer-logo-mark {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 39px;

  height: 39px;

  border-radius: 10px;

  color: #ffffff;

  background: var(--uae-primary);

  font-size: 18px;

  font-weight: 800;
}

.uae-footer-logo-text {
  display: flex;

  flex-direction: column;

  color: #ffffff;

  font-size: 18px;

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.03em;
}

.uae-footer-logo-text small {
  margin-top: 4px;

  color: #8391b5;

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.uae-footer-brand > p {
  max-width: 310px;

  margin: 22px 0 20px;

  color: #8f9dbd;

  font-size: 10px;

  line-height: 1.8;
}

/* =========================================================
   UAE BADGE
   ========================================================= */

.uae-footer-uae-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 25px;

  color: #9eafd1;

  font-size: 9px;
}

.uae-footer-uae-badge i {
  color: #789fff;

  font-size: 10px;
}

/* =========================================================
   FOOTER CTA
   ========================================================= */

.uae-footer-cta {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 11px 15px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 8px;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.045);

  font-size: 9px;

  font-weight: 700;

  text-decoration: none;

  transition: var(--uae-transition);
}

.uae-footer-cta i {
  font-size: 8px;
}

.uae-footer-cta:hover {
  border-color: var(--uae-primary);

  background: var(--uae-primary);

  transform: translateY(-2px);
}

/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.uae-footer-column h4 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;
}

.uae-footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.uae-footer-column li {
  margin: 0;

  padding: 0;
}

.uae-footer-column a {
  color: #8594b5;

  font-size: 9px;

  line-height: 1.4;

  text-decoration: none;

  transition: var(--uae-transition);
}

.uae-footer-column a:hover {
  color: #ffffff;

  padding-left: 3px;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.uae-footer-social {
  display: flex;

  align-items: center;

  gap: 7px;

  margin-top: 24px;
}

.uae-footer-social a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 31px;

  height: 31px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 7px;

  color: #8d9bbc;

  background: rgba(255, 255, 255, 0.035);
}

.uae-footer-social a:hover {
  padding-left: 0;

  color: #ffffff;

  border-color: var(--uae-primary);

  background: var(--uae-primary);
}

.uae-footer-social i {
  font-size: 11px;
}

/* =========================================================
   UAE LOCATION STRIP
   ========================================================= */

.uae-footer-location-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  background: rgba(255, 255, 255, 0.025);
}

.uae-footer-location-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  min-height: 62px;
}

.uae-footer-location-content > span {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #b2bfd9;

  font-size: 9px;

  font-weight: 600;
}

.uae-footer-location-content > span i {
  color: #789fff;
}

.uae-footer-location-list {
  display: flex;

  align-items: center;

  gap: 24px;
}

.uae-footer-location-list span {
  position: relative;

  color: #7584a5;

  font-size: 8px;
}

.uae-footer-location-list span:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 50%;

  right: -13px;

  width: 3px;

  height: 3px;

  border-radius: 50%;

  background: #52617f;

  transform: translateY(-50%);
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.uae-footer-bottom {
  background: #030928;
}

.uae-footer-bottom-content {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  min-height: 68px;
}

.uae-footer-bottom p {
  margin: 0;

  color: #647391;

  font-size: 8px;
}

.uae-footer-legal {
  display: flex;

  align-items: center;

  gap: 22px;
}

.uae-footer-legal a {
  color: #647391;

  font-size: 8px;

  text-decoration: none;

  transition: var(--uae-transition);
}

.uae-footer-legal a:hover {
  color: #ffffff;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.uae-back-to-top {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 34px;

  height: 34px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  outline: none;

  cursor: pointer;

  color: #91a0be;

  background: rgba(255, 255, 255, 0.035);

  transition: var(--uae-transition);
}

.uae-back-to-top:hover {
  color: #ffffff;

  border-color: var(--uae-primary);

  background: var(--uae-primary);

  transform: translateY(-2px);
}

.uae-back-to-top i {
  font-size: 10px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .uae-footer-grid {
    grid-template-columns:
      1.5fr
      repeat(3, 1fr);

    gap: 35px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .uae-footer-main {
    padding: 65px 0 50px;
  }

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

    gap: 45px 35px;
  }

  .uae-footer-brand {
    max-width: 400px;
  }

  .uae-footer-location-content {
    padding: 15px 0;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 10px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .uae-footer-main {
    padding: 55px 0 40px;
  }

  .uae-footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .uae-footer-brand {
    max-width: none;
  }

  .uae-footer-column h4 {
    margin-bottom: 15px;
  }

  .uae-footer-column ul {
    gap: 10px;
  }

  .uae-footer-location-list {
    flex-wrap: wrap;

    gap: 10px 20px;
  }

  .uae-footer-location-list span:not(:last-child)::after {
    display: none;
  }

  .uae-footer-bottom-content {
    flex-wrap: wrap;

    justify-content: flex-start;

    padding: 18px 0;
  }

  .uae-footer-legal {
    width: 100%;

    order: 2;

    gap: 15px;
  }

  .uae-back-to-top {
    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);
  }

  .uae-back-to-top:hover {
    transform: translateY(-52%);
  }
}
/* =========================================================
   CUBEON DESIGN SYSTEM OVERRIDE
   UAE LANDING PAGE
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL
   --------------------------------------------------------- */

.uae-page {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: var(--body-color);
  background: var(--light-color);

  -webkit-font-smoothing: antialiased;
}

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

.uae-page p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
}

.uae-page h1,
.uae-page h2,
.uae-page h3,
.uae-page h4,
.uae-page h5,
.uae-page h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.uae-page .uae-container {
  width: 100%;
  max-width: var(--main-container);

  margin-left: auto;
  margin-right: auto;

  padding-left: var(--container-gutters);
  padding-right: var(--container-gutters);
}

/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.uae-page a {
  color: var(--title-color);
  transition: all ease 0.4s;
}

.uae-page a:hover {
  color: var(--theme-color);
}

/* =========================================================
   HEADER
   ========================================================= */

.uae-page .uae-header {
  background: var(--white-color);
  border-bottom: 1px solid rgba(6, 17, 83, 0.08);
}

.uae-page .uae-header-inner {
  min-height: 80px;
}

.uae-page .uae-logo img {
  width: 150px;
}

.uae-page .uae-navigation {
  gap: 28px;
}

.uae-page .uae-navigation a {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
}

.uae-page .uae-navigation a:hover {
  color: var(--theme-color);
}

.uae-page .uae-navigation a::after {
  background: var(--theme-color);
}

/* =========================================================
   BUTTONS
   Match Cubeon .theme-btn language
   ========================================================= */

.uae-page .uae-btn {
  min-height: 52px;

  padding: 15px 30px;

  border: 0;
  border-radius: 30px;

  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;

  transition: all ease 0.4s;
}

.uae-page .uae-btn-primary {
  color: var(--white-color);
  background: var(--theme-color);

  box-shadow: none;
}

.uae-page .uae-btn-primary:hover {
  color: var(--theme-color3);
  background: var(--light-color3);

  transform: translateY(-2px);
}

.uae-page .uae-btn-outline {
  color: var(--title-color);
  background: var(--white-color);

  border: 1px solid rgba(6, 17, 83, 0.15);
}

.uae-page .uae-btn-outline:hover {
  color: var(--white-color);
  background: var(--theme-color);
  border-color: var(--theme-color);
}

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

.uae-page .uae-hero {
  min-height: auto;

  padding: 110px 0 120px;

  background: linear-gradient(
    180deg,
    var(--light-color) 0%,
    var(--white-color) 100%
  );
}

.uae-page .uae-hero-grid {
  gap: 60px;
}

.uae-page .uae-eyebrow {
  padding: 7px 14px;

  border: 1px solid rgba(16, 83, 243, 0.15);
  border-radius: 30px;

  background: rgba(16, 83, 243, 0.05);

  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;

  color: snow;
}

.uae-page .uae-hero h1 {
  margin-top: 22px;

  font-family: var(--title-font);
  font-size: clamp(48px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: -0.035em;

  color: var(--title-color);
}

.uae-page .uae-hero h1 span {
  color: var(--theme-color);
}

.uae-page .uae-hero-description {
  max-width: 650px;

  margin-top: 25px;

  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;

  color: var(--body-color);
}

.uae-page .uae-hero-actions {
  margin-top: 30px;
}

.uae-page .uae-hero-trust {
  margin-top: 25px;
}

.uae-page .uae-hero-trust span {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--body-color);
}

/* =========================================================
   SERVICE STRIP
   ========================================================= */

.uae-page .uae-service-strip {
  background: var(--dark-color);
}

.uae-page .uae-service-strip-grid {
  min-height: 64px;
}

.uae-page .uae-service-strip-grid span {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   GENERIC SECTIONS
   ========================================================= */

.uae-page .uae-section {
  padding: var(--section-space) 0;
}

.uae-page .uae-section-heading {
  max-width: 850px;

  margin: 0 auto var(--section-title-space);

  text-align: center;
}

.uae-page .uae-section-label,
.uae-page .uae-contact-mini-label {
  margin-bottom: 15px;

  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--theme-color);
}

.uae-page .uae-section-title {
  margin: 0;

  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-section-title span {
  display: inline;

  color: var(--theme-color);
}

.uae-page .uae-section-description {
  max-width: 720px;

  margin: 20px auto 0;

  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;

  color: var(--body-color);
}

/* =========================================================
   BUSINESS CHALLENGES
   ========================================================= */

.uae-page .uae-challenges-section {
  background: var(--white-color);
}

.uae-page .uae-challenge-card {
  border: 1px solid rgba(6, 17, 83, 0.1);

  border-radius: 16px;

  background: var(--white-color);

  box-shadow: none;

  transition: all ease 0.4s;
}

.uae-page .uae-challenge-card:hover {
  border-color: rgba(16, 83, 243, 0.25);

  box-shadow: 0 15px 40px rgba(6, 17, 83, 0.08);

  transform: translateY(-5px);
}

.uae-page .uae-challenge-card h3 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;

  color: var(--title-color);
}

.uae-page .uae-challenge-card p {
  font-size: 16px;
  line-height: 26px;

  color: var(--body-color);
}

/* =========================================================
   SOLUTIONS
   ========================================================= */

.uae-page .uae-solutions-section {
  padding: var(--section-space) 0;

  background: var(--white-color);
}

.uae-page .uae-solution-card {
  padding: 30px;

  border: 1px solid rgba(6, 17, 83, 0.1);

  border-radius: 16px;

  background: var(--white-color);

  box-shadow: none;

  transition: all ease 0.4s;
}

.uae-page .uae-solution-card:hover {
  border-color: rgba(16, 83, 243, 0.2);

  box-shadow: 0 18px 45px rgba(6, 17, 83, 0.08);

  transform: translateY(-5px);
}

.uae-page .uae-solution-card h3 {
  font-family: var(--title-font);

  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;

  color: var(--title-color);
}

.uae-page .uae-solution-card > p {
  font-family: var(--body-font);

  font-size: 16px;
  line-height: 26px;

  color: var(--body-color);
}

.uae-page .uae-solution-card li {
  font-family: var(--body-font);

  font-size: 14px;
  line-height: 22px;

  color: var(--body-color);
}

/* =========================================================
   INDUSTRIES
   ========================================================= */

.uae-page .uae-industries-section {
  background: var(--light-color);
}

.uae-page .uae-industry-card {
  border: 1px solid rgba(6, 17, 83, 0.1);

  border-radius: 16px;

  background: var(--white-color);

  box-shadow: none;

  transition: all ease 0.4s;
}

.uae-page .uae-industry-card:hover {
  border-color: rgba(16, 83, 243, 0.2);

  box-shadow: 0 15px 40px rgba(6, 17, 83, 0.08);

  transform: translateY(-4px);
}

.uae-page .uae-industry-card h3 {
  font-family: var(--title-font);

  font-size: 22px;
  font-weight: 600;

  color: var(--title-color);
}

.uae-page .uae-industry-card p {
  font-family: var(--body-font);

  font-size: 15px;
  line-height: 24px;

  color: var(--body-color);
}

/* =========================================================
   WHY CUBEON
   ========================================================= */

.uae-page .uae-why-section {
  padding: var(--section-space) 0;
}

.uae-page .uae-why-main-content h3 {
  font-family: var(--title-font);

  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: normal;
}

.uae-page .uae-why-main-content p {
  font-family: var(--body-font);

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

/* =========================================================
   LOCATIONS
   ========================================================= */

.uae-page .uae-locations-section {
  padding: var(--section-space) 0;

  background: var(--light-color);
}

.uae-page .uae-location-card {
  border-radius: 16px;

  box-shadow: none;
}

.uae-page .uae-location-card:hover {
  box-shadow: 0 20px 55px rgba(6, 17, 83, 0.12);
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */

.uae-page .uae-contact-section {
  padding: var(--section-space) 0;

  background: var(--white-color);
}

.uae-page .uae-contact-section h2,
.uae-page .uae-contact-section h3 {
  font-family: var(--title-font);

  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */

.uae-page .uae-footer {
  font-family: var(--body-font);

  background: var(--dark-color);
}

.uae-page .uae-footer h4 {
  font-family: var(--title-font);

  font-size: 18px;
  font-weight: 600;

  color: var(--white-color);
}

.uae-page .uae-footer p,
.uae-page .uae-footer li,
.uae-page .uae-footer a {
  font-family: var(--body-font);

  font-size: 14px;
  line-height: 24px;
}

.uae-page .uae-footer-bottom {
  background: var(--dark-color4);
}

.uae-page .uae-footer-bottom p,
.uae-page .uae-footer-legal a {
  font-size: 13px;
  line-height: 22px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-page .uae-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .uae-page .uae-section {
    padding: var(--section-space-mobile) 0;
  }

  .uae-page .uae-section-heading {
    margin-bottom: 45px;
  }

  .uae-page .uae-section-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .uae-page .uae-section-description {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-hero {
    padding: 75px 0 80px;
  }

  .uae-page .uae-hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .uae-page .uae-hero-description {
    font-size: 16px;
    line-height: 26px;
  }

  .uae-page .uae-btn {
    min-height: 50px;

    padding: 14px 25px;

    font-size: 15px;
  }

  .uae-page .uae-solution-card {
    padding: 25px;
  }

  .uae-page .uae-solution-card h3 {
    font-size: 22px;
  }

  .uae-page .uae-solution-card > p {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-solution-card li {
    font-size: 14px;
    line-height: 22px;
  }

  .uae-page .uae-challenge-card p {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .uae-page .uae-section {
    padding: var(--section-space-small-mobile) 0;
  }

  .uae-page .uae-section-title {
    font-size: 30px;
  }

  .uae-page .uae-hero h1 {
    font-size: 36px;
  }
}
/* =========================================================
   STEP 1K-C
   CUBEON TYPOGRAPHY NORMALIZATION
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL TYPOGRAPHY
   --------------------------------------------------------- */

.uae-page,
.uae-page button,
.uae-page input,
.uae-page textarea,
.uae-page select {
  font-family: var(--body-font);
}

.uae-page h1,
.uae-page h2,
.uae-page h3,
.uae-page h4,
.uae-page h5,
.uae-page h6,
.uae-page strong,
.uae-page b {
  font-family: var(--title-font);
  color: var(--title-color);
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.uae-page .uae-section-label {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: var(--theme-color);
}

.uae-page .uae-section-title {
  font-family: var(--title-font);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--title-color);
}

.uae-page .uae-section-description {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body-color);
}

/* =========================================================
   SOLUTIONS
   ========================================================= */

.uae-page .uae-solution-number {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  color: black;
}

.uae-page .uae-solution-card h3 {
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--title-color);
}

.uae-page .uae-solution-card > p {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body-color);
}

.uae-page .uae-solution-card li {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--body-color);
}

.uae-page .uae-solution-link {
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--theme-color);
}

.uae-page .uae-solution-link:hover {
  color: var(--theme-color3);
}

/* =========================================================
   SOLUTIONS CTA
   ========================================================= */

.uae-page .uae-solutions-cta {
  background: var(--dark-color);
}

.uae-page .uae-solutions-cta span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.uae-page .uae-solutions-cta strong {
  font-family: var(--title-font);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: var(--white-color);
}

/* =========================================================
   INDUSTRIES
   ========================================================= */

.uae-page .uae-industry-number {
  font-family: var(--title-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-color);
}

.uae-page .uae-industry-content h3 {
  font-family: var(--title-font);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--title-color);
}

.uae-page .uae-industry-content p {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--body-color);
}

.uae-page .uae-industry-arrow {
  color: var(--gray-color);
}

.uae-page .uae-industry-card:hover .uae-industry-arrow {
  color: var(--theme-color);
}

/* =========================================================
   INDUSTRIES NOTE
   ========================================================= */

.uae-page .uae-industries-note strong {
  font-family: var(--title-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
}

.uae-page .uae-industries-note span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--body-color);
}

.uae-page .uae-text-link {
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--theme-color);
}

/* =========================================================
   WHY CUBEON
   ========================================================= */

.uae-page .uae-why-main-content h2,
.uae-page .uae-why-main-content h3 {
  font-family: var(--title-font);
  color: var(--white-color);
  font-weight: 600;
}

.uae-page .uae-why-main-content p {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.uae-page .uae-why-main-content .uae-btn {
  font-family: var(--title-font);
}

/* =========================================================
   DIFFERENTIATORS
   ========================================================= */

.uae-page .uae-differentiator h4,
.uae-page .uae-differentiator strong {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

.uae-page .uae-differentiator p {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  color: var(--body-color);
}

/* =========================================================
   LOCATIONS
   ========================================================= */

.uae-page .uae-location-content h3 {
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  color: var(--white-color);
}

.uae-page .uae-location-content > p {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.uae-page .uae-location-services span {
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.uae-page .uae-location-link {
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--white-color);
}

.uae-page .uae-location-link:hover {
  color: var(--body-color);
}

.uae-page .uae-location-bottom strong {
  font-family: var(--title-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
}

.uae-page .uae-location-bottom span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--body-color);
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */

.uae-page .uae-contact-section h2 {
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}

.uae-page .uae-contact-section p {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body-color);
}

.uae-page .uae-contact-section label {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--title-color);
}

.uae-page .uae-contact-section input,
.uae-page .uae-contact-section textarea,
.uae-page .uae-contact-section select {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  color: var(--title-color);
}

/* =========================================================
   FOOTER
   ========================================================= */

.uae-page .uae-footer h3,
.uae-page .uae-footer h4,
.uae-page .uae-footer h5 {
  font-family: var(--title-font);
  color: var(--white-color);
  font-weight: 600;
}

.uae-page .uae-footer p {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

.uae-page .uae-footer a {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.uae-page .uae-footer a:hover {
  color: var(--light-color);
}

/* =========================================================
   REMOVE UAE-SPECIFIC TEXT COLORS
   ========================================================= */

.uae-page .uae-solution-card li,
.uae-page .uae-industry-content p,
.uae-page .uae-location-content > p,
.uae-page .uae-location-bottom span,
.uae-page .uae-industries-note span,
.uae-page .uae-differentiator p {
  color: var(--body-color);
}
/* =========================================================
   CUBEON UAE
   STEP 1K-D
   FULL TYPOGRAPHY + COLOR + SPACING NORMALIZATION

   IMPORTANT:
   This block intentionally comes LAST in uae.css.
   It overrides the older UAE-specific typography.
   ========================================================= */

/* =========================================================
   01. GLOBAL FOUNDATION
   ========================================================= */

.uae-page {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: var(--body-color);
  background: var(--white-color);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Headings */

.uae-page h1,
.uae-page h2,
.uae-page h3,
.uae-page h4,
.uae-page h5,
.uae-page h6 {
  margin-top: 0;

  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);

  text-rendering: optimizeLegibility;
}

/* Paragraphs */

.uae-page p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: var(--body-color);
}

/* Links */

.uae-page a {
  font-family: var(--body-font);
  color: var(--title-color);

  transition: all ease 0.4s;
}

.uae-page a:hover {
  color: var(--theme-color);
}

/* =========================================================
   02. CONTAINER
   ========================================================= */

.uae-page .uae-container {
  width: 100%;
  max-width: var(--main-container);

  margin-left: auto;
  margin-right: auto;

  padding-left: var(--container-gutters);
  padding-right: var(--container-gutters);
}

/* =========================================================
   03. SECTION RHYTHM
   ========================================================= */

/*
 * Original UAE CSS was using many independent section paddings.
 * Normalize the page to a tighter enterprise landing-page rhythm.
 */

.uae-page .uae-section,
.uae-page .uae-positioning-section,
.uae-page .uae-solutions-section,
.uae-page .uae-industries-section,
.uae-page .uae-why-section,
.uae-page .uae-locations-section,
.uae-page .uae-process-section,
.uae-page .uae-contact-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Section headings */

.uae-page .uae-section-heading {
  max-width: 850px;

  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;

  text-align: center;
}

.uae-page .uae-section-label,
.uae-page .uae-contact-mini-label {
  display: inline-block;

  margin-bottom: 12px;

  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--theme-color);
}

.uae-page .uae-section-title {
  margin: 0;

  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-section-title span {
  color: var(--theme-color);
}

.uae-page .uae-section-description {
  max-width: 720px;

  margin: 17px auto 0;

  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: var(--body-color);
}

/* =========================================================
   04. HERO
   ========================================================= */

.uae-page .uae-hero {
  padding-top: 85px;
  padding-bottom: 90px;
}

.uae-page .uae-hero h1 {
  font-family: var(--title-font);

  font-size: clamp(48px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: -0.025em;

  color: var(--title-color);
}

.uae-page .uae-hero h1 span {
  color: var(--theme-color);
}

.uae-page .uae-hero-description {
  max-width: 650px;

  margin-top: 20px;

  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;

  color: var(--body-color);
}

/* =========================================================
   05. BUTTONS
   ========================================================= */

.uae-page .uae-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 52px;

  padding: 0 25px;

  border-radius: 30px;
  border: 1px solid transparent;

  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;

  transition: all ease 0.4s;
}

.uae-page .uae-btn-primary {
  color: var(--white-color);
  background: var(--theme-color);
  border-color: var(--theme-color);
}

/* .uae-page .uae-btn-primary:hover {
  color: var(--white-color);
  background: var(--theme-color3);
  border-color: var(--theme-color3);

  transform: translateY(-2px);
} */

.uae-page .uae-btn-outline {
  color: var(--title-color);
  background: var(--white-color);

  border-color: var(--border-color);
}

.uae-page .uae-btn-outline:hover {
  color: var(--white-color);
  background: var(--theme-color);
  border-color: var(--theme-color);
}

/* =========================================================
   06. BUSINESS CHALLENGES
   ========================================================= */

.uae-page .uae-challenges-section {
  background: var(--white-color);
}

.uae-page .uae-challenges-grid {
  gap: 20px;
}

.uae-page .uae-challenge-card {
  min-height: 290px;

  padding: 28px;

  border-radius: 16px;

  background: var(--white-color);
  border: 1px solid rgba(6, 17, 83, 0.09);

  box-shadow: none;
}

.uae-page .uae-challenge-icon {
  margin-bottom: 24px;
}

.uae-page .uae-challenge-card h3 {
  margin-bottom: 10px;

  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-challenge-card p {
  margin: 0;

  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;

  color: var(--body-color);
}

.uae-page .uae-challenges-transition {
  margin-top: 45px;
}

.uae-page .uae-transition-content {
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 18px;

  color: var(--body-color);
}

.uae-page .uae-transition-content strong {
  font-family: var(--title-font);
  color: var(--title-color);
}

/* =========================================================
   07. UAE TECHNOLOGY PARTNER / POSITIONING
   ========================================================= */

.uae-page .uae-positioning-section {
  padding-top: 90px;
  padding-bottom: 90px;

  background: var(--light-color);
}

.uae-page .uae-positioning-grid {
  gap: 65px;
}

.uae-page .uae-positioning-content h2 {
  max-width: 650px;

  margin: 0;

  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.18;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-positioning-content h2 span {
  color: var(--theme-color);
}

.uae-page .uae-positioning-content p {
  max-width: 600px;

  margin: 18px 0 0;

  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: var(--body-color);
}

.uae-page .uae-positioning-content .uae-btn {
  margin-top: 25px;
}

/* Flow */

.uae-page .uae-solution-flow {
  padding: 22px;

  border-radius: 16px;

  background: var(--white-color);
  border: 1px solid rgba(6, 17, 83, 0.09);

  box-shadow: 0 18px 45px rgba(6, 17, 83, 0.06);
}

.uae-page .uae-flow-item {
  gap: 15px;

  padding: 16px;

  border-radius: 12px;
}

.uae-page .uae-flow-item strong {
  margin-bottom: 3px;

  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;

  color: var(--title-color);
}

.uae-page .uae-flow-item small {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;

  color: var(--body-color);
}

.uae-page .uae-flow-highlight strong {
  color: var(--white-color);
}

.uae-page .uae-flow-highlight small {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   08. SIX CORE SOLUTIONS
   ========================================================= */

.uae-page .uae-solutions-section {
  padding-top: 90px;
  padding-bottom: 90px;

  background: var(--white-color);
}

.uae-page .uae-solutions-grid {
  gap: 20px;
}

.uae-page .uae-solution-card {
  min-height: 420px;

  padding: 28px;

  border-radius: 16px;

  background: var(--white-color);
  border: 1px solid rgba(6, 17, 83, 0.09);

  box-shadow: none;
}

.uae-page .uae-solution-top {
  margin-bottom: 22px;
}

.uae-page .uae-solution-number {
  font-family: var(--title-font);
  font-size: 12px;
  font-weight: 600;

  color: var(--gray-color);
}

.uae-page .uae-solution-card h3 {
  margin-bottom: 12px;

  font-family: var(--title-font);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-solution-card > p {
  margin: 0;

  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;

  color: var(--body-color);
}

.uae-page .uae-solution-card ul {
  gap: 8px;

  margin-top: 20px;
}

.uae-page .uae-solution-card li {
  gap: 8px;

  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;

  color: var(--body-color);
}

.uae-page .uae-solution-card li i {
  font-size: 9px;
}

.uae-page .uae-solution-link {
  padding-top: 20px;

  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;

  color: var(--theme-color);
}

.uae-page .uae-solutions-cta {
  margin-top: 35px;

  padding: 25px 30px;

  border-radius: 16px;

  background: var(--dark-color);
}

.uae-page .uae-solutions-cta span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;

  color: rgba(255, 255, 255, 0.7);
}

.uae-page .uae-solutions-cta strong {
  font-family: var(--title-font);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;

  color: var(--white-color);
}

/* =========================================================
   09. INDUSTRIES
   ========================================================= */

.uae-page .uae-industries-section {
  background: var(--light-color);
}

.uae-page .uae-industry-content h3 {
  margin-bottom: 7px;

  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;

  letter-spacing: normal;

  color: var(--title-color);
}

.uae-page .uae-industry-content p {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;

  color: var(--body-color);
}

.uae-page .uae-industries-note {
  margin-top: 25px;

  padding: 18px 22px;
}

.uae-page .uae-industries-note strong {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;

  color: var(--title-color);
}

.uae-page .uae-industries-note span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;

  color: var(--body-color);
}

.uae-page .uae-text-link {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;

  color: var(--theme-color);
}

/* =========================================================
   10. WHY CUBEON
   ========================================================= */

.uae-page .uae-why-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.uae-page .uae-why-main-content h2,
.uae-page .uae-why-main-content h3 {
  font-family: var(--title-font);
  font-weight: 600;
}

.uae-page .uae-why-main-content p {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;

  color: var(--body-color);
}

/* =========================================================
   11. UAE LOCATIONS
   ========================================================= */

.uae-page .uae-locations-section {
  padding-top: 90px;
  padding-bottom: 90px;

  background: var(--light-color);
}

.uae-page .uae-location-card {
  border-radius: 16px;
}

.uae-page .uae-location-content h3 {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;

  color: var(--white-color);
}

.uae-page .uae-location-content > p {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;

  color: rgba(255, 255, 255, 0.72);
}

.uae-page .uae-location-services span {
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.78);
}

.uae-page .uae-location-link {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;

  color: var(--white-color);
}

/* =========================================================
   12. HOW WE WORK
   ========================================================= */

.uae-page .uae-process-section {
  padding-top: 90px;
  padding-bottom: 90px;

  background: var(--white-color);
}

.uae-page .uae-process-wrapper {
  gap: 20px;

  margin-top: 45px;
}

.uae-page .uae-process-number > span {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 600;

  color: var(--gray-color);
}

.uae-page .uae-process-content {
  margin-top: 22px;
  padding: 0 5px;
}

.uae-page .uae-process-label {
  margin-bottom: 6px;

  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;

  letter-spacing: 0.08em;

  color: var(--theme-color);
}

.uae-page .uae-process-content h3 {
  margin-bottom: 8px;

  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;

  color: var(--title-color);
}

.uae-page .uae-process-content p {
  margin: 0;

  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;

  color: var(--body-color);
}

.uae-page .uae-process-cta {
  gap: 18px;

  margin-top: 45px;

  padding: 22px 25px;

  border-radius: 16px;

  background: var(--light-color);
}

.uae-page .uae-process-cta-content strong {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;

  color: var(--title-color);
}

.uae-page .uae-process-cta-content span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;

  color: var(--body-color);
}

/* =========================================================
   13. CONTACT / FORM
   ========================================================= */

/*
 * Use one solid Cubeon navy.
 * The previous gradient + small typography made the form
 * difficult to read.
 */

.uae-page .uae-contact-section {
  padding-top: 90px;
  padding-bottom: 90px;

  background: var(--dark-color);
}

.uae-page .uae-contact-heading {
  margin-bottom: 45px;
}

.uae-page .uae-contact-heading .uae-section-label {
  color: #9bbcff;
}

.uae-page .uae-contact-heading h2 {
  margin: 12px 0 15px;

  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;

  letter-spacing: normal;

  color: var(--white-color);
}

.uae-page .uae-contact-heading h2 span {
  color: #8db2ff;
}

.uae-page .uae-contact-heading p {
  max-width: 680px;

  margin: 0;

  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

  color: rgba(255, 255, 255, 0.72);
}

/* Left information panel */

.uae-page .uae-contact-info {
  padding: 35px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: none;
}

.uae-page .uae-contact-mini-label {
  margin-bottom: 12px;

  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;

  color: #9bbcff;
}

.uae-page .uae-contact-intro h3 {
  margin: 0;

  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: normal;

  color: var(--white-color);
}

.uae-page .uae-contact-intro h3 strong {
  color: #8db2ff;
}

.uae-page .uae-contact-intro p {
  margin-top: 17px;

  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;

  color: rgba(255, 255, 255, 0.72);
}

/* Service tags */

.uae-page .uae-contact-services {
  gap: 8px;
  margin-top: 22px;
}

.uae-page .uae-contact-services span {
  padding: 7px 11px;

  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;

  color: rgba(255, 255, 255, 0.8);
}

/* Benefits */

.uae-page .uae-contact-benefits {
  gap: 11px;
  margin-top: 25px;
}

.uae-page .uae-contact-benefit span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;

  color: rgba(255, 255, 255, 0.76);
}

/* Locations */

.uae-page .uae-contact-locations {
  gap: 8px 18px;

  margin-top: 25px;
  padding-top: 18px;
}

.uae-page .uae-contact-locations span {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;

  color: rgba(255, 255, 255, 0.7);
}

/* FORM */

.uae-page .uae-contact-form-wrapper {
  padding: 32px;

  border-radius: 16px;

  background: var(--white-color);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.uae-page .uae-form-header {
  margin-bottom: 25px;
}

.uae-page .uae-form-header > div:first-child > span {
  margin-bottom: 6px;

  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;

  color: var(--theme-color);
}

.uae-page .uae-form-header h3 {
  margin: 0;

  font-family: var(--title-font);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;

  color: var(--title-color);
}

.uae-page .uae-form-secure {
  padding: 7px 10px;

  font-family: var(--body-font);
  font-size: 12px;
  line-height: 18px;

  color: var(--body-color);
  background: var(--light-color);
}

/* Form grid */

.uae-page .uae-contact-form {
  gap: 16px;
}

/* Labels */

.uae-page .uae-form-group label {
  margin-bottom: 6px;

  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;

  color: var(--title-color);
}

/* Inputs */

.uae-page .uae-form-group input,
.uae-page .uae-form-group select,
.uae-page .uae-form-group textarea {
  width: 100%;

  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;

  color: var(--title-color);

  background: var(--white-color);

  border: 1px solid #e3e1dc;
  border-radius: 8px;
}

.uae-page .uae-form-group input,
.uae-page .uae-form-group select {
  height: 52px;
  padding: 0 15px;
}

.uae-page .uae-form-group textarea {
  min-height: 120px;
  padding: 13px 15px;
}

.uae-page .uae-form-group input::placeholder,
.uae-page .uae-form-group textarea::placeholder {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;

  color: var(--body-color);
  opacity: 0.75;
}

/* Submit helper */

.uae-page .uae-form-submit p {
  max-width: 340px;

  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;

  color: var(--body-color);
}

/* =========================================================
   14. FOOTER
   ========================================================= */

.uae-page .uae-footer {
  background: var(--dark-color);
  color: var(--white-color);
}

.uae-page .uae-footer-main {
  padding: 65px 0 50px;
}

.uae-page .uae-footer-grid {
  gap: 45px;
}

/* Footer brand */

.uae-page .uae-footer-brand > p {
  max-width: 310px;

  margin: 18px 0;

  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;

  color: rgba(255, 255, 255, 0.65);
}

.uae-page .uae-footer-uae-badge {
  margin-bottom: 18px;

  font-family: var(--body-font);
  font-size: 12px;
  line-height: 18px;

  color: rgba(255, 255, 255, 0.65);
}

/* Footer CTA */

.uae-page .uae-footer-cta {
  padding: 10px 14px;

  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;

  border-radius: 30px;
}

/* Footer columns */

.uae-page .uae-footer-column h4 {
  margin-bottom: 18px;

  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;

  color: var(--white-color);
}

.uae-page .uae-footer-column ul {
  gap: 9px;
}

.uae-page .uae-footer-column a {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;

  color: rgba(255, 255, 255, 0.68);
}

.uae-page .uae-footer-column a:hover {
  color: var(--light-color3);
}

/* Footer location strip */

.uae-page .uae-footer-location-content > span {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;

  color: rgba(255, 255, 255, 0.72);
}

.uae-page .uae-footer-location-list span {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;

  color: rgba(255, 255, 255, 0.55);
}

/* Footer bottom */

.uae-page .uae-footer-bottom {
  background: var(--dark-color4);
}

.uae-page .uae-footer-bottom p {
  margin: 0;

  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;

  color: rgba(255, 255, 255, 0.5);
}

.uae-page .uae-footer-legal {
  gap: 18px;
}

.uae-page .uae-footer-legal a {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 20px;

  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   15. RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  .uae-page .uae-section,
  .uae-page .uae-positioning-section,
  .uae-page .uae-solutions-section,
  .uae-page .uae-industries-section,
  .uae-page .uae-why-section,
  .uae-page .uae-locations-section,
  .uae-page .uae-process-section,
  .uae-page .uae-contact-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .uae-page .uae-positioning-grid {
    gap: 45px;
  }

  .uae-page .uae-process-wrapper {
    margin-top: 40px;
  }

  .uae-page .uae-contact-grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .uae-page .uae-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .uae-page .uae-section,
  .uae-page .uae-positioning-section,
  .uae-page .uae-solutions-section,
  .uae-page .uae-industries-section,
  .uae-page .uae-why-section,
  .uae-page .uae-locations-section,
  .uae-page .uae-process-section,
  .uae-page .uae-contact-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .uae-page .uae-section-heading {
    margin-bottom: 35px;
  }

  .uae-page .uae-section-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .uae-page .uae-section-description {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-hero {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .uae-page .uae-hero h1 {
    font-size: 42px;
  }

  .uae-page .uae-hero-description {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-positioning-content h2 {
    font-size: 36px;
  }

  .uae-page .uae-positioning-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-solution-card {
    min-height: auto;
    padding: 25px;
  }

  .uae-page .uae-solution-card h3 {
    font-size: 22px;
  }

  .uae-page .uae-solution-card > p {
    font-size: 15px;
    line-height: 24px;
  }

  .uae-page .uae-solution-card li {
    font-size: 14px;
    line-height: 22px;
  }

  .uae-page .uae-process-wrapper {
    margin-top: 35px;
  }

  .uae-page .uae-process-content h3 {
    font-size: 19px;
  }

  .uae-page .uae-process-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .uae-page .uae-contact-heading {
    margin-bottom: 35px;
  }

  .uae-page .uae-contact-heading h2 {
    font-size: 40px;
  }

  .uae-page .uae-contact-intro h3 {
    font-size: 30px;
  }

  .uae-page .uae-contact-form-wrapper {
    padding: 25px;
  }

  .uae-page .uae-form-group label {
    font-size: 14px;
  }

  .uae-page .uae-form-group input,
  .uae-page .uae-form-group select,
  .uae-page .uae-form-group textarea {
    font-size: 15px;
  }

  .uae-page .uae-footer-main {
    padding: 50px 0 40px;
  }

  .uae-page .uae-footer-column a,
  .uae-page .uae-footer-brand > p {
    font-size: 14px;
    line-height: 22px;
  }

  .uae-page .uae-footer-bottom p,
  .uae-page .uae-footer-legal a {
    font-size: 12px;
    line-height: 19px;
  }
}

@media (max-width: 480px) {
  .uae-page .uae-section-title {
    font-size: 30px;
  }

  .uae-page .uae-hero h1 {
    font-size: 36px;
  }

  .uae-page .uae-positioning-content h2 {
    font-size: 32px;
  }

  .uae-page .uae-contact-heading h2 {
    font-size: 34px;
  }

  .uae-page .uae-contact-form-wrapper {
    padding: 20px;
  }

  .uae-page .uae-contact-info {
    padding: 25px;
  }
}
/* =========================================================
   UAE STICKY HEADER
   ========================================================= */

.uae-page .uae-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 17, 83, 0.08);

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.uae-page .uae-header.uae-header-scrolled {
  background: rgba(255, 255, 255, 0.98);

  border-bottom-color: rgba(6, 17, 83, 0.1);

  box-shadow: 0 8px 30px rgba(6, 17, 83, 0.08);
}

/* Keep navigation readable when sticky */

.uae-page .uae-header .uae-navigation a {
  color: var(--title-color);
}

.uae-page .uae-header .uae-navigation a:hover {
  color: var(--theme-color);
}

/* Prevent anchor targets from hiding underneath sticky header */

.uae-page section[id],
.uae-page div[id] {
  scroll-margin-top: 95px;
}
/* =========================================================
   UAE MOBILE MENU - FINAL RESPONSIVE FIX
   ========================================================= */

@media (max-width: 991px) {
  /* Header must be the positioning parent */
  .uae-page .uae-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  .uae-page .uae-header-inner {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* -----------------------------------------------------
       HAMBURGER BUTTON
       ----------------------------------------------------- */

  .uae-page .uae-mobile-menu {
    position: relative;
    z-index: 10001;

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

    width: 44px;
    height: 44px;

    padding: 8px;

    margin: 0;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;
  }

  .uae-page .uae-mobile-menu span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 3px 0;

    border-radius: 2px;

    background: var(--uae-navy);

    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  /* -----------------------------------------------------
       HAMBURGER -> X
       ----------------------------------------------------- */

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(2) {
    opacity: 0;
  }

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* -----------------------------------------------------
       MOBILE NAVIGATION PANEL
       ----------------------------------------------------- */

  .uae-page .uae-navigation {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    margin: 0;
    padding: 15px 20px 20px;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 0;

    background: #ffffff;

    border-top: 1px solid rgba(6, 17, 83, 0.06);
    border-bottom: 1px solid rgba(6, 17, 83, 0.08);

    box-shadow: 0 15px 35px rgba(6, 17, 83, 0.1);

    max-height: calc(100vh - 72px);

    overflow-y: auto;

    z-index: 10000;
  }

  /* OPEN STATE */

  .uae-page .uae-header.uae-menu-open .uae-navigation {
    display: flex;
  }

  /* -----------------------------------------------------
       MOBILE NAV LINKS
       ----------------------------------------------------- */

  .uae-page .uae-navigation a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 48px;

    padding: 12px 5px;

    margin: 0;

    border-bottom: 1px solid rgba(6, 17, 83, 0.07);

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

    font-size: 15px;

    font-weight: 500;

    line-height: 22px;

    color: var(--title-color);

    text-decoration: none;
  }

  .uae-page .uae-navigation a:last-child {
    border-bottom: 0;
  }

  /* Remove desktop underline animation */

  .uae-page .uae-navigation a::after {
    display: none;
  }

  .uae-page .uae-navigation a:hover {
    color: var(--theme-color);
  }

  /* -----------------------------------------------------
       MOBILE CTA
       ----------------------------------------------------- */

  .uae-page .uae-header.uae-menu-open .uae-header-cta {
    display: block;

    position: absolute;

    top: calc(100% + 1px);

    left: 0;
    right: 0;

    width: 100%;

    padding: 0 20px 20px;

    background: #ffffff;

    z-index: 10001;
  }

  /*
     * Navigation gets the space first.
     * CTA appears after the navigation links.
     */
  .uae-page .uae-header.uae-menu-open .uae-header-cta {
    position: relative;

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

    padding: 15px 0 0;

    border-top: 1px solid rgba(6, 17, 83, 0.07);
  }

  .uae-page .uae-header-cta .uae-btn {
    width: 100%;
  }

  /* -----------------------------------------------------
       PREVENT BODY SCROLL WHEN MENU OPEN
       ----------------------------------------------------- */

  body.uae-mobile-menu-open {
    overflow: hidden;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .uae-page .uae-header-inner {
    min-height: 68px;
  }

  .uae-page .uae-navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .uae-page .uae-navigation a {
    min-height: 46px;

    font-size: 15px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .uae-page .uae-logo img {
    width: 125px;
  }

  .uae-page .uae-mobile-menu {
    width: 42px;
    height: 42px;
  }

  .uae-page .uae-mobile-menu span {
    width: 23px;
  }
}
/* =========================================================
   MOBILE MENU - CONSULTATION CTA
   ========================================================= */

@media (max-width: 991px) {
  /* Keep CTA hidden while menu is closed */
  .uae-page .uae-header-cta {
    display: none;
  }

  /* Show CTA when mobile menu is open */
  .uae-page .uae-header.uae-menu-open .uae-header-cta {
    display: block;
    width: 100%;

    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid rgba(6, 17, 83, 0.08);
  }

  .uae-page .uae-header.uae-menu-open .uae-header-cta .uae-btn {
    display: flex;
    width: 100%;

    min-height: 50px;

    align-items: center;
    justify-content: center;
  }
}
/* =========================================================
   UAE MOBILE MENU - FINAL FIX
   ========================================================= */

@media (max-width: 991px) {
  .uae-page .uae-header-inner {
    position: relative;
    min-height: 72px;
  }

  /* -----------------------------------------------------
       HAMBURGER
       ----------------------------------------------------- */

  .uae-page .uae-mobile-menu {
    position: relative;
    z-index: 10002;

    display: flex;

    width: 44px;
    height: 44px;

    padding: 8px;
    margin: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    border: 0;
    background: transparent;

    cursor: pointer;
  }

  .uae-page .uae-mobile-menu span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 3px 0;

    border-radius: 2px;

    background: var(--uae-navy);

    transition: all 0.3s ease;
  }

  /* Hamburger -> X */

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(2) {
    opacity: 0;
  }

  .uae-page .uae-header.uae-menu-open .uae-mobile-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* -----------------------------------------------------
       MOBILE DROPDOWN
       ----------------------------------------------------- */

  .uae-page .uae-navigation {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    padding: 10px 20px 0;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: #ffffff;

    border-top: 1px solid rgba(6, 17, 83, 0.06);

    box-shadow: 0 15px 35px rgba(6, 17, 83, 0.1);

    z-index: 10000;
  }

  /* OPEN */

  .uae-page .uae-header.uae-menu-open .uae-navigation {
    display: flex;
  }

  /* -----------------------------------------------------
       NAVIGATION LINKS
       ----------------------------------------------------- */

  .uae-page .uae-navigation a {
    display: flex;

    width: 100%;
    min-height: 48px;

    padding: 12px 5px;

    align-items: center;

    border-bottom: 1px solid rgba(6, 17, 83, 0.07);

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

    font-size: 15px;
    font-weight: 500;
    line-height: 22px;

    color: var(--title-color);

    text-decoration: none;
  }

  .uae-page .uae-navigation a:last-child {
    border-bottom: 0;
  }

  .uae-page .uae-navigation a::after {
    display: none;
  }

  .uae-page .uae-navigation a:hover {
    color: var(--theme-color);
  }

  /* -----------------------------------------------------
       BOOK A CONSULTATION
       ----------------------------------------------------- */

  /*
     * It is a sibling of .uae-navigation.
     * Therefore we position it immediately below the
     * navigation dropdown.
     */

  .uae-page .uae-header-cta {
    display: none;
  }

  .uae-page .uae-header.uae-menu-open .uae-header-cta {
    display: block;

    position: absolute;

    top: calc(100% + 261px);

    left: 0;
    right: 0;

    width: 100%;

    padding: 15px 20px 20px;

    background: #ffffff;

    border-top: 1px solid rgba(6, 17, 83, 0.07);

    box-shadow: 0 15px 35px rgba(6, 17, 83, 0.1);

    z-index: 10001;
  }

  .uae-page .uae-header.uae-menu-open .uae-header-cta .uae-btn {
    display: flex;

    width: 100%;
    min-height: 50px;

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

    gap: 8px;
  }

  /* -----------------------------------------------------
       BODY
       ----------------------------------------------------- */

  body.uae-mobile-menu-open {
    overflow: hidden;
  }
}
.uae-hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 75%;
  height: auto;

  display: block;
}

/* =========================================================
   STEP 1K-C — FINAL CUBEON UI PARITY LAYER
   Keep this block last. It aligns the UAE campaign with the
   typography, colour, spacing and component rhythm in style.css.
   ========================================================= */

body.uae-page {
  --uae-text: var(--gray-color2);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gray-color2);
  background: var(--light-color) !important;
  -webkit-font-smoothing: antialiased;
}

.uae-page p,
.uae-page .uae-section-description,
.uae-page .uae-hero-description,
.uae-page .uae-positioning-content p,
.uae-page .uae-challenge-card p,
.uae-page .uae-solution-card > p,
.uae-page .uae-solution-card li,
.uae-page .uae-industry-content p,
.uae-page .uae-process-content p,
.uae-page .uae-process-cta-content span {
  font-family: var(--body-font);
  color: var(--gray-color2);
}

.uae-page h1,
.uae-page h2,
.uae-page h3,
.uae-page h4,
.uae-page h5,
.uae-page h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}

.uae-page .uae-container {
  width: 100%;
  max-width: var(--main-container);
  margin-inline: auto;
  padding-inline: var(--container-gutters);
}

.uae-page .uae-section,
.uae-page .uae-positioning-section,
.uae-page .uae-solutions-section,
.uae-page .uae-industries-section,
.uae-page .uae-why-section,
.uae-page .uae-locations-section,
.uae-page .uae-process-section,
.uae-page .uae-contact-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.uae-page .uae-section-heading {
  margin-bottom: var(--section-title-space);
}

.uae-page .uae-section-title,
.uae-page .uae-positioning-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}

.uae-page .uae-section-description,
.uae-page .uae-positioning-content p,
.uae-page .uae-why-main-content p {
  font-size: 16px;
  line-height: 26px;
}

.uae-page .uae-section-label,
.uae-page .uae-contact-mini-label {
  color: var(--theme-color);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: normal;
  text-transform: none;
}

.uae-page .uae-btn {
  min-height: 52px;
  padding: 10px 30px;
  border-radius: 26px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.uae-page .uae-challenge-card,
.uae-page .uae-solution-card,
.uae-page .uae-industry-card,
.uae-page .uae-solution-flow,
.uae-page .uae-process-cta,
.uae-page .uae-contact-info,
.uae-page .uae-contact-form-wrapper {
  border-radius: 10px;
}

.uae-page .uae-challenge-card,
.uae-page .uae-solution-card,
.uae-page .uae-industry-card {
  border-color: var(--bs-border-color2);
  box-shadow: 0 10px 30px rgba(6, 17, 83, 0.05);
  transition: all ease 0.4s;
}

.uae-page .uae-challenge-card:hover,
.uae-page .uae-solution-card:hover,
.uae-page .uae-industry-card:hover {
  border-color: var(--bs-border-color10);
  box-shadow: 0 18px 40px rgba(6, 17, 83, 0.1);
  transform: translateY(-6px);
}

.uae-page .uae-hero h1 {
  color: var(--white-color);
}

.uae-page .uae-hero h1 span {
  color: var(--theme-color);
}

.uae-page .uae-hero-description,
.uae-page .uae-hero-description strong {
  color: rgba(255, 255, 255, 0.8);
}

.uae-page .uae-contact-section,
.uae-page .uae-footer {
  background: var(--dark-color);
}

@media (max-width: 991px) {
  .uae-page .uae-section,
  .uae-page .uae-positioning-section,
  .uae-page .uae-solutions-section,
  .uae-page .uae-industries-section,
  .uae-page .uae-why-section,
  .uae-page .uae-locations-section,
  .uae-page .uae-process-section,
  .uae-page .uae-contact-section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }
}

@media (max-width: 767px) {
  .uae-page .uae-container {
    padding-inline: 20px;
  }

  .uae-page .uae-section,
  .uae-page .uae-positioning-section,
  .uae-page .uae-solutions-section,
  .uae-page .uae-industries-section,
  .uae-page .uae-why-section,
  .uae-page .uae-locations-section,
  .uae-page .uae-process-section,
  .uae-page .uae-contact-section {
    padding-top: var(--section-space-small-mobile);
    padding-bottom: var(--section-space-small-mobile);
  }

  .uae-page .uae-section-title,
  .uae-page .uae-positioning-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .uae-page .uae-section-title,
  .uae-page .uae-positioning-content h2 {
    font-size: 30px;
  }
}
/* =========================================================
   UAE HEADER - SOLUTIONS DROPDOWN
   ========================================================= */

.uae-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.uae-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uae-nav-dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

/* Dropdown panel */

.uae-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  min-width: 260px;

  padding: 12px;

  background: #ffffff;

  border: 1px solid rgba(6, 17, 83, 0.08);
  border-radius: 14px;

  box-shadow:
    0 18px 45px rgba(6, 17, 83, 0.12),
    0 4px 12px rgba(6, 17, 83, 0.06);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  z-index: 9999;
}

/* Small invisible bridge so hover does not break */

.uae-nav-dropdown-menu::before {
  content: "";
  position: absolute;

  top: -20px;
  left: 0;

  width: 100%;
  height: 20px;
}

/* =========================================================
   DROPDOWN LINKS
   ========================================================= */

.uae-navigation .uae-nav-dropdown-menu a {
  display: flex;
  align-items: center;

  width: 100%;

  padding: 12px 14px;

  color: #061153;

  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;

  border-radius: 9px;

  text-decoration: none;

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

/* Hover */

.uae-navigation .uae-nav-dropdown-menu a:hover {
  background: #f4f7ff;
  color: #1053f3;

  transform: translateX(3px);
}

/* =========================================================
   OPEN DROPDOWN
   ========================================================= */

.uae-nav-dropdown:hover .uae-nav-dropdown-menu,
.uae-nav-dropdown:focus-within .uae-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

.uae-nav-dropdown:hover .uae-nav-dropdown-toggle i,
.uae-nav-dropdown:focus-within .uae-nav-dropdown-toggle i {
  transform: rotate(180deg);
}

/* =========================================================
   OPTIONAL ACTIVE / HOVER COLOR
   ========================================================= */

.uae-nav-dropdown:hover > .uae-nav-dropdown-toggle {
  color: #1053f3;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .uae-nav-dropdown {
    width: 100%;
    display: block;
  }

  .uae-nav-dropdown-toggle {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .uae-nav-dropdown-menu {
    position: static;

    width: 100%;
    min-width: 0;

    margin-top: 6px;
    padding: 6px 0 6px 14px;

    background: transparent;

    border: 0;
    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    display: none;
  }

  .uae-nav-dropdown:hover .uae-nav-dropdown-menu,
  .uae-nav-dropdown:focus-within .uae-nav-dropdown-menu {
    transform: none;
  }

  .uae-nav-dropdown-menu::before {
    display: none;
  }

  .uae-nav-dropdown:hover .uae-nav-dropdown-menu,
  .uae-nav-dropdown:focus-within .uae-nav-dropdown-menu {
    display: block;
  }

  .uae-navigation .uae-nav-dropdown-menu a {
    padding: 10px 12px;

    font-size: 14px;

    color: inherit;
  }

  .uae-navigation .uae-nav-dropdown-menu a:hover {
    transform: none;
  }
}
