:root {
  --primary: #093cba;
  --primary-2: #082a6b;
  --accent: #0dc4e0;
  --bg: #06101e;
  --bg-2: #09172a;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f7f9fe;
  --text-soft: #b9c6df;
  --shadow: 0 22px 70px rgba(1, 10, 28, 0.35);
  --shadow-soft: 0 14px 35px rgba(5, 18, 44, 0.25);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Kufi Arabic", "Inter", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(13, 196, 224, 0.10), transparent 24%),
    radial-gradient(circle at top left, rgba(9, 60, 186, 0.16), transparent 30%),
    linear-gradient(180deg, #06101e 0%, #071426 40%, #08111d 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 92%);
  z-index: -1;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #071321;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(13, 196, 224, 0.90), rgba(9, 60, 186, 0.90));
  border-radius: 999px;
  border: 2px solid #071321;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(13, 196, 224, 1), rgba(9, 60, 186, 1));
}

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

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

p {
  margin: 0;
  line-height: 2;
  color: var(--text-soft);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.45;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 0 0 36px;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1400;
  background: rgba(255,255,255,0.05);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #5ec8ff, var(--primary));
  box-shadow: 0 0 18px rgba(13, 196, 224, 0.35);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 20, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 950;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 30, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(1, 9, 20, 0.18);
}

.top-strip {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, rgba(13,196,224,0.08), rgba(9,60,186,0.06));
}

.top-strip-inner {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  font-size: 12px;
  color: #dbe8ff;
}

.top-strip-inner span {
  position: relative;
}

.top-strip-inner span:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-start: -11px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  transform: translateY(-50%);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(13, 196, 224, 0.14));
}

.header-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #eef5ff;
}

.header-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.header-copy span {
  font-size: 11px;
  color: #afc3e7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 42px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
}

.orb-one {
  inset-inline-start: -110px;
  top: 30px;
  width: 320px;
  height: 320px;
  background: rgba(13, 196, 224, 0.18);
}

.orb-two {
  inset-inline-end: -120px;
  top: 100px;
  width: 420px;
  height: 420px;
  background: rgba(9, 60, 186, 0.18);
}

.hero-grid,
.details-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
}

.hero-copy-card,
.logo-card,
.mini-card,
.section-shell,
.detail-card,
.keywords-shell,
.contact-card,
.map-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-soft);
}

.hero-copy-card,
.section-shell,
.keywords-shell,
.contact-card {
  border-radius: var(--radius-xl);
}

.hero-copy-card {
  padding: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(13, 196, 224, 0.10);
  border: 1px solid rgba(13, 196, 224, 0.22);
  color: #9bedff;
  font-size: 12px;
}

.hero-copy-card h1 {
  font-size: clamp(30px, 4.8vw, 56px);
  margin-bottom: 18px;
}

.hero-copy-card p {
  max-width: 670px;
  font-size: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 18px 38px rgba(13, 196, 224, 0.22);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
  border-color: rgba(13, 196, 224, 0.35);
  background: rgba(255,255,255,0.08);
}

.btn-block {
  width: 100%;
}

.hero-tags,
.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-top: 28px;
}

.hero-tags span,
.keywords-list span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8f3ff;
  font-size: 13px;
}

.hero-logo-panel {
  display: grid;
  gap: 18px;
}

.logo-card {
  min-height: 420px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 38px;
}

.logo-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(13,196,224,0.20), rgba(9,60,186,0.08), transparent 70%);
  filter: blur(14px);
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.logo-card img {
  position: relative;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(9, 60, 186, 0.20));
}

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

.mini-card {
  border-radius: 22px;
  padding: 20px 18px;
}

.mini-card span,
.detail-card span,
.contact-list a span {
  display: block;
  margin-bottom: 8px;
  color: #8eddf0;
  font-size: 12px;
}

.mini-card strong,
.detail-card h3,
.contact-list a strong {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  word-break: break-word;
}

.section-shell,
.keywords-shell,
.contact-card {
  padding: 34px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-text {
  font-size: 16px;
}

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

.detail-card {
  border-radius: 26px;
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.detail-card:hover,
.contact-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 196, 224, 0.24);
  box-shadow: var(--shadow);
}

.keywords-shell {
  position: relative;
  z-index: 1;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 18px 20px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.map-card {
  overflow: hidden;
  margin-top: 22px;
  padding: 12px;
  border-radius: 26px;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 700;
  color: #ecf5ff;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 15px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

input:focus,
textarea:focus {
  border-color: rgba(13, 196, 224, 0.45);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 5px rgba(13, 196, 224, 0.10);
}

.form-notice {
  min-height: 28px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.form-notice.success {
  color: #6ff0a4;
}

.form-notice.error {
  color: #ff8f8f;
}

.site-footer {
  padding: 8px 0 34px;
}

.footer-inner {
  text-align: center;
  color: #a6b8d6;
  font-size: 14px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

@media (max-width: 980px) {
  .header-copy {
    display: none;
  }

  .hero-grid,
  .contact-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-card,
  .section-shell,
  .keywords-shell,
  .contact-card {
    padding: 28px;
  }
}

@media (max-width: 860px) {
  .top-strip {
    display: none;
  }

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

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    inset-inline: 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(8, 20, 38, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    z-index: 1001;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
  }

  .main-nav a::after {
    display: none;
  }

  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-copy-card h1 {
    font-size: 34px;
  }

  .logo-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .brand img {
    width: 136px;
  }

  .hero-copy-card,
  .section-shell,
  .keywords-shell,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy-card h1 {
    font-size: 29px;
  }

  .hero-actions,
  .hero-tags,
  .keywords-list,
  .hero-mini-grid {
    gap: 10px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .footer-inner {
    font-size: 13px;
    line-height: 1.9;
  }
}
