:root {
  --ink: #15202b;
  --navy: #062744;
  --navy-deep: #031526;
  --steel: #5f6870;
  --muted: #687584;
  --line: #d8e0e6;
  --paper: #f6f8f7;
  --white: #ffffff;
  --gold: #c7a24a;
  --orange: #f05a1d;
  --green: #0b6b52;
  --teal: #128284;
  --shadow: 0 18px 50px rgba(3, 21, 38, 0.16);
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", "Dubai", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Aptos", "Segoe UI", "Dubai", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(3, 21, 38, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(3, 21, 38, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  text-transform: uppercase;
}

.brand-copy span {
  color: #ff7a35;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
}

.language-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(240, 90, 29, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-download {
  color: var(--white);
  background: rgba(199, 162, 74, 0.18);
  border-color: rgba(199, 162, 74, 0.48);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button:hover,
.language-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82vh;
  padding: 96px clamp(20px, 6vw, 86px) 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 50%;
  opacity: 0.64;
  filter: saturate(1.08) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(107deg, rgba(3, 21, 38, 0.98) 0%, rgba(3, 21, 38, 0.9) 46%, rgba(3, 21, 38, 0.38) 72%, rgba(3, 21, 38, 0.7) 100%),
    linear-gradient(122deg, transparent 0 58%, rgba(199, 162, 74, 0.9) 58% 63%, transparent 63%);
}

.hero-content {
  position: relative;
  width: min(840px, 100%);
  min-width: 0;
  max-width: 840px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-logo {
  width: min(124px, 38vw);
  height: auto;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 8.8vw, 7.1rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 18px 0 8px;
  color: #f4f7f7;
  font-size: clamp(1.14rem, 2.1vw, 1.72rem);
  font-weight: 750;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics article {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.metric-value {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 850;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.vision-head h2,
.contact-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 900;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.overview-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.overview-panel img {
  width: 100%;
  height: min(480px, 42vw);
  min-height: 320px;
  object-fit: cover;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.leadership-section {
  margin-top: clamp(64px, 8vw, 104px);
}

.leadership-heading {
  max-width: 900px;
}

.governance-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  background: rgba(216, 224, 230, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(3, 21, 38, 0.08);
}

.governance-dashboard article {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 247, 0.92)),
    var(--white);
}

.governance-dashboard span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.governance-dashboard h3 {
  margin: 18px 0 10px;
  color: var(--navy-deep);
  font-size: 1.08rem;
}

.governance-dashboard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.leadership-console {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 18px;
  margin-bottom: 22px;
}

.leadership-controls {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 21, 38, 0.06);
}

.leadership-controls button {
  min-height: 42px;
  padding: 0 15px;
  color: var(--navy);
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.leadership-controls button.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.leadership-insight {
  position: relative;
  min-height: 146px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 21, 38, 0.94), rgba(6, 39, 68, 0.94)),
    var(--navy-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.leadership-insight::after {
  position: absolute;
  top: -50%;
  right: 12%;
  width: 160px;
  height: 240px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 162, 74, 0.36), transparent);
  transform: rotate(23deg);
}

.leadership-insight span,
.leadership-insight p,
.leadership-insight small,
.leadership-insight strong {
  position: relative;
  z-index: 1;
}

.leadership-insight span {
  display: block;
  color: #ffd27a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leadership-insight strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
}

.leadership-insight p {
  margin: 5px 0 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.leadership-insight small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

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

.leader-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 232px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 21, 38, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.leader-card::after {
  position: absolute;
  inset: auto -30px -64px auto;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(240, 90, 29, 0.14), transparent 66%);
}

.leader-card.primary {
  grid-template-columns: auto 1fr;
  min-height: 260px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-color: rgba(255, 255, 255, 0.14);
}

.leader-card:hover,
.leader-card:focus-visible,
.leader-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 29, 0.4);
  box-shadow: 0 20px 46px rgba(3, 21, 38, 0.14);
  outline: none;
}

.leader-card.is-dimmed {
  display: none;
}

.leader-card.board {
  border-top: 4px solid var(--gold);
}

.leader-initials {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8a45);
  border-radius: 8px;
  font-weight: 900;
}

.leader-card.primary .leader-initials {
  background: var(--gold);
}

.leader-role {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-card.primary .leader-role {
  color: #ffd27a;
}

.leader-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.18rem;
  line-height: 1.22;
  font-family: var(--font-display);
  font-weight: 900;
}

.leader-card.primary h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.leader-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.leader-card.primary p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.industry-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-frame {
  position: relative;
  min-height: 208px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.media-main {
  min-height: 520px;
}

.media-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 21, 38, 0.04), rgba(3, 21, 38, 0.58)),
    linear-gradient(115deg, transparent 0 38%, rgba(199, 162, 74, 0.28) 38% 43%, transparent 43%);
}

.media-frame::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -24%;
  z-index: 2;
  width: 18%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(16deg);
  animation: scanGlow 5.8s ease-in-out infinite;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease;
}

.media-frame:hover img {
  transform: scale(1.08);
}

.media-frame span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  color: var(--white);
  background: rgba(3, 21, 38, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

@keyframes scanGlow {
  0%, 28% {
    transform: translateX(0) rotate(16deg);
    opacity: 0;
  }
  44% {
    opacity: 1;
  }
  72%, 100% {
    transform: translateX(760%) rotate(16deg);
    opacity: 0;
  }
}

.strength-band {
  color: var(--white);
  background: var(--navy);
}

.strength-grid,
.vision-grid,
.footprint-grid,
.partnership-grid,
.sbu-grid {
  display: grid;
  gap: 18px;
}

.strength-grid {
  grid-template-columns: repeat(4, 1fr);
}

.strength-grid article,
.vision-grid article,
.footprint-grid article,
.partnership-grid article,
.sbu-card {
  min-width: 0;
  border-radius: 8px;
}

.strength-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.strength-grid span {
  color: var(--gold);
  font-weight: 850;
}

.strength-grid h3,
.partnership-grid h3,
.vision-grid h3,
.footprint-grid h3,
.sbu-card h3 {
  margin: 12px 0 10px;
  font-size: 1.12rem;
}

.strength-grid p,
.partnership-grid p,
.vision-grid p,
.footprint-grid p,
.sbu-card p {
  margin: 0;
  line-height: 1.65;
}

.strength-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.sbu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.industry-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 21, 38, 0.1);
  transition: transform 180ms ease, filter 180ms ease;
}

.industry-strip img:hover {
  filter: saturate(1.12) contrast(1.06);
  transform: translateY(-3px);
}

.sbu-filter button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.sbu-filter button.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.sbu-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sbu-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(3, 21, 38, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.sbu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 29, 0.34);
}

.sbu-card.is-hidden {
  display: none;
}

.sbu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.sbu-top img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 8px;
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease;
}

.sbu-card:hover .sbu-top img {
  transform: scale(1.05) rotate(-2deg);
}

.sbu-top span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--orange);
  background: rgba(240, 90, 29, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 850;
}

.sbu-sector {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.45;
}

.sbu-card p,
.partnership-grid p,
.vision-grid p,
.footprint-grid p {
  color: var(--muted);
}

.sbu-link {
  align-self: end;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 13px;
  color: var(--navy);
  background: rgba(6, 39, 68, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.sbu-link:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.partnership-section {
  color: var(--white);
  background:
    linear-gradient(122deg, rgba(6, 39, 68, 0.98), rgba(3, 21, 38, 0.98)),
    var(--navy);
}

.partnership-section .section-copy h2,
.partnership-section .section-copy p {
  color: var(--white);
}

.partnership-section .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.partnership-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.partnership-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.vision-section {
  background: var(--white);
}

.vision-head {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.vision-grid {
  grid-template-columns: repeat(4, 1fr);
}

.vision-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--paper);
  border-top: 4px solid var(--green);
}

.footprint-section {
  background: #eef3f1;
}

.footprint-grid {
  grid-template-columns: repeat(4, 1fr);
}

.footprint-grid article {
  min-height: 246px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footprint-grid span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 850;
  position: relative;
  z-index: 2;
}

.country-flag {
  width: 100%;
  height: 96px;
  object-fit: cover;
  margin: 18px 0 20px;
  border: 1px solid rgba(12, 31, 45, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(12, 31, 45, 0.12);
  position: relative;
  z-index: 2;
}

.contact-section {
  color: var(--white);
  background: var(--navy-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 780;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 29, 0.12);
}

.enquiry-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 780;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #020d18;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

[dir="rtl"] body {
  font-family: "Dubai", "Segoe UI", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero,
[dir="rtl"] .section,
[dir="rtl"] .site-footer {
  text-align: right;
}

[dir="rtl"] .brand,
[dir="rtl"] .header-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .about-actions,
[dir="rtl"] .eyebrow,
[dir="rtl"] .sbu-filter,
[dir="rtl"] .sbu-top {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-nav {
  direction: rtl;
}

[dir="rtl"] .media-frame span {
  right: auto;
  left: 18px;
}

[dir="rtl"] .leadership-insight::after {
  right: auto;
  left: 12%;
}

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

  .site-nav {
    grid-column: 1 / -1;
    order: 4;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .strength-grid,
  .vision-grid,
  .footprint-grid,
  .industry-strip,
  .leadership-grid,
  .governance-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .sbu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-head,
  .two-column,
  .contact-layout,
  .industry-showcase,
  .leadership-feature,
  .leadership-console {
    grid-template-columns: 1fr;
  }

  .media-main {
    min-height: 360px;
  }
}

@media (max-width: 1320px) and (min-width: 1101px) {
  .site-header {
    gap: 14px;
    padding-inline: 28px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy span {
    font-size: 0.86rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-actions {
    gap: 8px;
  }

  .site-header .button,
  .site-header .language-toggle {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    grid-template-columns: auto 1fr;
  }

  .brand-copy {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 13px;
    right: auto;
    left: min(328px, calc(100vw - 62px));
    z-index: 70;
    display: grid;
    place-items: center;
    justify-self: end;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 12px 24px rgba(240, 90, 29, 0.24);
  }

  .nav-toggle::before {
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--white);
    box-shadow: 0 -7px 0 var(--white), 0 7px 0 var(--white);
  }

  .nav-toggle span {
    display: none;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    width: 100%;
  }

  body.nav-open .site-nav {
    gap: 0;
    padding: 12px 0;
  }

  body.nav-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .header-actions {
    gap: 10px;
    padding-bottom: 14px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 104px;
  }

  .hero-logo {
    width: 136px;
  }

  .hero h1 {
    max-width: 7ch;
    font-size: clamp(3rem, 15vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-lead,
  .hero-subtitle {
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 12px;
    white-space: normal;
    text-align: center;
  }

  .metrics,
  .strength-grid,
  .vision-grid,
  .footprint-grid,
  .sbu-grid,
  .industry-strip,
  .leadership-grid,
  .governance-dashboard {
    grid-template-columns: 1fr;
  }

  .governance-dashboard article {
    min-height: 154px;
  }

  .leadership-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .leadership-controls button {
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .leader-card.primary {
    grid-template-columns: 1fr;
  }

  .industry-strip img {
    aspect-ratio: 5 / 3;
  }

  .media-main,
  .media-frame {
    min-height: 260px;
  }

  .metrics article {
    min-height: 106px;
  }

  .overview-panel img {
    height: 330px;
  }

  .site-footer {
    display: grid;
  }
}
