:root {
  --bg: #eaf7ff;
  --bg-soft: #f5fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #e8f6ff;
  --text: #0c2644;
  --muted: #45677d;
  --primary: #1689e8;
  --secondary: #0f5ea8;
  --accent: #4cb9ff;
  --border: rgba(12, 79, 129, 0.15);
  --shadow: 0 16px 48px rgba(13, 78, 137, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.8), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(16, 131, 221, 0.18), transparent 32%),
    linear-gradient(180deg, #aee0ff, #d7efff 42%, #eff8ff 100%);
  color: var(--text);
}

body[dir='rtl'],
body[dir='rtl'] .hero-copy,
body[dir='rtl'] .section,
body[dir='rtl'] .service-card,
body[dir='rtl'] .leader-card,
body[dir='rtl'] .panel-card,
body[dir='rtl'] .mini-card,
body[dir='rtl'] .impact-card,
body[dir='rtl'] .cta-card,
body[dir='rtl'] .inquiry-card {
  text-align: right;
}

body[dir='rtl'] .nav-bar,
body[dir='rtl'] .footer-grid,
body[dir='rtl'] .cta-card,
body[dir='rtl'] .hero-grid,
body[dir='rtl'] .section-grid.two-column,
body[dir='rtl'] .premium-grid,
body[dir='rtl'] .contact-grid {
  direction: rtl;
  text-align: right;
}

body[dir='rtl'] .nav-bar {
  flex-direction: row-reverse;
}

body[dir='rtl'] .nav-links {
  margin-inline-start: auto;
}

body[dir='rtl'] .cta-card {
  flex-direction: row-reverse;
}

body[dir='rtl'] .hero h1,
body[dir='rtl'] .section h2,
body[dir='rtl'] .hero-copy .eyebrow,
body[dir='rtl'] .section-label,
body[dir='rtl'] .hero-copy p,
body[dir='rtl'] .section p,
body[dir='rtl'] .service-card p,
body[dir='rtl'] .leader-card p,
body[dir='rtl'] .panel-card p,
body[dir='rtl'] .mini-card p {
  text-align: right;
}

body[dir='rtl'] .hero h1,
body[dir='rtl'] .section h2 {
  max-width: none;
  text-wrap: balance;
}

body[dir='rtl'] .cta-row,
body[dir='rtl'] .hero-badges,
body[dir='rtl'] .tags-row {
  justify-content: flex-start;
}

body[dir='rtl'] .hero-badges,
body[dir='rtl'] .tags-row {
  justify-content: flex-end;
}

body[dir='rtl'] .feature-list {
  padding-right: 18px;
  padding-left: 0;
}

body[dir='rtl'] .timeline div {
  text-align: right;
  justify-content: flex-start;
}

body[dir='rtl'] .form-row label,
body[dir='rtl'] .form-row input,
body[dir='rtl'] .form-row textarea {
  text-align: right;
}

body[dir='rtl'] .form-row input,
body[dir='rtl'] .form-row textarea {
  unicode-bidi: plaintext;
}

img {
  max-width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(22, 137, 232, 0.12);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(22, 137, 232, 0.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-copy,
.hero-panel,
.hero-badges,
.cta-row {
  animation: fadeUp 0.8s ease both;
}

.hero-panel {
  animation-delay: 0.12s;
}

.hero-badges {
  animation-delay: 0.24s;
}

.cta-row {
  animation-delay: 0.22s;
}

.hero-badges span,
.tags-row span {
  animation: pulseGlow 3.4s ease-in-out infinite;
}

.hero-badges span:nth-child(2),
.tags-row span:nth-child(2n) {
  animation-delay: 0.2s;
}

.brand-logo {
  animation: float 4.5s ease-in-out infinite;
}

.page-shell {
  min-height: 100vh;
}


.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat-box {
  padding: 14px;
}

.stat-box strong {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.88rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.premium-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 940px) {
  .hero-grid,
  .section-grid.two-column,
  .services-grid,
  .leadership-grid,
  .impact-grid,
  .timeline,
  .premium-grid,
  .premium-cards,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(240, 250, 255, 0.94), rgba(142, 210, 255, 0.78));
  border-bottom: 1px solid rgba(8, 62, 110, 0.16);
  box-shadow: 0 10px 28px rgba(9, 58, 102, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 5px 10px 5px 5px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.5);
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 5px;
  box-shadow: 0 8px 20px rgba(15, 94, 168, 0.12);
}

.brand-mark {
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1;
}

.brand-text {
  color: #0a2340;
  font-size: 0.98rem;
  line-height: 1.1;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 94, 168, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--secondary);
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-inline-start: auto;
}

.nav-links a {
  color: #183b64;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 8px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: #0a2340;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.nav-links a,
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a2340;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9) 0%, transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(84,192,255,0.55) 0%, transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(11,96,179,0.35) 0%, transparent 30%),
    linear-gradient(135deg, rgba(233,247,255,0.95), rgba(175,224,255,0.9));
  transform: scale(1.04);
  animation: heroPulse 12s ease-in-out infinite alternate;
}

.hero-background::before,
.hero-background::after {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 32px;
  filter: blur(24px);
  opacity: 0.8;
  mix-blend-mode: screen;
}

.hero-background::before {
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.95), transparent 26%),
    radial-gradient(circle at 65% 35%, rgba(76,185,255,0.7), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(22,137,232,0.3), transparent 33%);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-background::after {
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 35%, transparent 70%);
  transform: translateX(-15%) skewX(-18deg);
  animation: sweep 8s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.78;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 4%;
  left: -10%;
  background: rgba(76, 185, 255, 0.32);
  animation-duration: 7s;
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -8%;
  bottom: 8%;
  background: rgba(15, 94, 168, 0.24);
  animation-delay: 1.1s;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
  opacity: 0.5;
  animation: driftGrid 20s linear infinite;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.16);
}

.hero-ring-one {
  width: 480px;
  height: 480px;
  top: 12%;
  right: 10%;
}

.hero-ring-two {
  width: 680px;
  height: 680px;
  bottom: -20%;
  left: -10%;
  animation-direction: reverse;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(20px, -16px, 0) scale(1.08);
  }
}

@keyframes driftGrid {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(40px, 40px, 0);
  }
}

@keyframes heroPulse {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1);
  }
  100% {
    transform: scale(1.06) translate3d(8px, -10px, 0);
    filter: saturate(1.15);
  }
}

@keyframes sweep {
  0%,
  100% {
    transform: translateX(-20%) skewX(-18deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(20%) skewX(-18deg);
    opacity: 0.75;
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(18px, -24px, 0) scale(1.3);
    opacity: 0.9;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
  transform: translate3d(var(--mouse-x, 0px), var(--mouse-y, 0px), 0);
  transition: transform 0.2s ease-out;
}

.eyebrow,
.section-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.hero-text,
.section p,
.feature-list,
.service-card p,
.leader-card p,
.panel-card p,
.mini-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy p,
.section p,
.service-card p,
.mini-card p,
.leader-card p,
.panel-card p {
  color: #46627a;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(22, 137, 232, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 94, 168, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(15, 94, 168, 0.24);
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.78);
}

.hero-badges,
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.tags-row span,
.impact-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 94, 168, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--secondary);
}

.hero-panel,
.card-list,
.grid,
.timeline,
.contact-grid {
  display: grid;
  gap: 18px;
}

.panel-card,
.mini-card,
.service-card,
.leader-card,
.cta-card,
.impact-card,
.inquiry-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 94, 168, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel-card,
.mini-card,
.service-card,
.leader-card {
  padding: 22px;
}

.highlight-card {
  background: linear-gradient(145deg, rgba(43, 209, 255, 0.16), rgba(143, 124, 255, 0.12));
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.44);
}

.section-heading {
  margin-bottom: 26px;
}

.service-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 137, 232, 0.14), rgba(15, 94, 168, 0.08));
  border: 1px solid rgba(15, 94, 168, 0.18);
  box-shadow: 0 14px 32px rgba(15, 94, 168, 0.1);
}

.service-highlight h3 {
  margin: 6px 0 8px;
  color: var(--secondary);
}

.service-highlight p {
  margin: 0;
}

.form-hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-grid.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.services-grid,
.leadership-grid,
.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 94, 168, 0.16);
  border-radius: 16px;
}

.timeline span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #04101f;
  font-weight: 700;
}

.feature-list {
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 10px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.inquiry-card {
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: var(--secondary);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 94, 168, 0.2);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fafdff;
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #7090a8;
}

button.btn {
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 14px;
  color: var(--primary);
  font-size: 0.95rem;
  min-height: 1.4em;
}

.site-footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

@media (max-width: 940px) {
  .hero-grid,
  .section-grid.two-column,
  .services-grid,
  .leadership-grid,
  .impact-grid,
  .timeline,
  .premium-grid,
  .premium-cards,
  .stat-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  body[dir='rtl'] .cta-card,
  body[dir='rtl'] .footer-grid,
  body[dir='rtl'] .service-highlight {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(7, 17, 31, 0.99);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 44px;
  }
}
