:root {
  --navy: #0b253f;
  --navy-deep: #061525;
  --navy-soft: #153d61;
  --orange: #f09c30;
  --orange-deep: #df7d20;
  --gold: #d9a441;
  --paper: #f5f8fb;
  --white: #ffffff;
  --ink: #142235;
  --muted: #64748b;
  --line: rgba(20, 34, 53, 0.12);
  --shadow: 0 26px 80px rgba(6, 21, 37, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(240, 156, 48, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 60, 96, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  font-family: Cairo, Tajawal, "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: rgba(6, 21, 37, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-header nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-header nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.language-switch {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 12px 30px rgba(240, 156, 48, 0.2);
  font-weight: 900;
  cursor: pointer;
}

[dir="ltr"] body {
  text-align: left;
}

[dir="ltr"] .kicker::before {
  order: -1;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(48px, 7vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 21, 37, 0.92), rgba(11, 37, 63, 0.76)),
    url("assets/hero-visual.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(240, 156, 48, 0.16) 10% 10.5%, transparent 10.5%),
    radial-gradient(circle at 26% 72%, rgba(217, 164, 65, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-media,
.hero-copy {
  position: relative;
  z-index: 2;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(6, 21, 37, 0.86);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.screen-frame img {
  display: block;
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.screen-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 21, 37, 0.24));
}

.floating-logo {
  position: absolute;
  inset-inline-start: -28px;
  bottom: 12%;
  width: 150px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(6, 21, 37, 0.24);
  backdrop-filter: blur(16px);
}

.floating-logo img {
  width: 110px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  font-size: clamp(2.6rem, 5.4vw, 6.1rem);
  line-height: 1.02;
}

.hero p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.95;
}

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

.primary,
.secondary,
.sector-card a,
.contact button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.primary,
.sector-card a,
.contact button {
  padding: 0 22px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 18px 38px rgba(240, 156, 48, 0.25);
}

.secondary {
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-deep);
}

.stats div {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.about,
.sectors,
.vision,
.contact {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.section-heading.centered {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading h2,
.contact h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about {
  background: linear-gradient(180deg, var(--white), #edf3f9);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.about-story {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(20, 34, 53, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.about-story p {
  margin: 0 0 18px;
  color: #26384d;
  font-size: 1.05rem;
  line-height: 2;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-visual {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-visual img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.sectors {
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 156, 48, 0.14), transparent 26%),
    var(--paper);
}

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

.sector-card {
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 34, 53, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.sector-image {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.02), rgba(6, 21, 37, 0.18)),
    url("assets/sector-sprite.png") 0 0 / 400% 200%;
}

.sector-1 .sector-image { background-position: 0% 0%; }
.sector-2 .sector-image { background-position: 33.333% 0%; }
.sector-3 .sector-image { background-position: 66.666% 0%; }
.sector-4 .sector-image { background-position: 100% 0%; }
.sector-5 .sector-image { background-position: 0% 100%; }
.sector-6 .sector-image { background-position: 33.333% 100%; }
.sector-7 .sector-image { background-position: 66.666% 100%; }
.sector-8 .sector-image { background-position: 100% 100%; }

.sector-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sector-content span {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.sector-content h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.32;
}

.sector-content h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.sector-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
}

.sector-content a {
  align-self: flex-start;
  margin-top: auto;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.vision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 21, 37, 0.93), rgba(11, 37, 63, 0.92)),
    url("assets/hero-visual.png") center / cover;
}

.vision article {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.vision h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 1.55rem;
}

.vision p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.contact p {
  color: var(--muted);
}

.contact form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.contact input,
.contact select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(20, 34, 53, 0.14);
  border-radius: 14px;
  background: var(--white);
  outline: none;
}

.contact button {
  border: 0;
}

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

  .hero-media {
    order: 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .language-switch {
    align-self: flex-start;
  }

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

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.7rem);
  }

  .screen-frame img {
    min-height: 260px;
  }

  .floating-logo {
    width: 112px;
    height: 92px;
  }

  .floating-logo img {
    width: 82px;
  }

  .stats,
  .sectors-grid,
  .vision,
  .contact form {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: auto;
  }

  .sector-image {
    min-height: 210px;
    background-size: 210% auto;
  }
}
