:root {
  --bg-deep: #190f26;
  --bg-dark: #190f26;
  --bg-darker: #190f26;
  --bg-section: #190f26;
  --bg-section-alt: #190f26;
  --bg-teal: #190f26;
  --gray: #6B7280;
  --teal-light: #6B7280;
  --teal-vlight: #d7a54a;
  --bg-card: rgba(248,250,252, 0.04);
  --bg-card-hover: rgba(248,250,252, 0.075);
  --border-color: rgba(248,250,252, 0.10);
  --border-accent: rgba(107,114,128, 0.45);
  --teal-line: rgba(107,114,128, 0.55);
  --orange: #d7a54a;
  --orange-light: #b282fb;
  --orange-dark: #b282fb;
  --gold: #b282fb;
  --gold-light: #b282fb;
  --gold-accent: #F2B01E;
  --white: #ffffff;
  --muted: rgba(248,250,252, 0.72);
  --muted-dark: rgba(248,250,252, 0.55);
  --green-accent: #190f26;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --font: 'Cairo', 'Tajawal', sans-serif;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

a { 
  text-decoration: none; 
  color: inherit; 
}
ul { 
  list-style: none; 
}
img { 
  max-width: 100%; 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-orange:hover {
  background: var(--orange);
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(249,115,22,0.32);
}
.btn-orange:active {
  filter: brightness(0.94);
  transform: translateY(0);
}

.btn-orange-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.btn-ghost:hover { 
  color: var(--white); 
  border-color: rgba(248,250,252,0.2); 
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(248,250,252,0.25);
  transition: all 0.3s ease;
}
.btn-ghost-lg:hover { 
  border-color: var(--orange); 
  color: var(--orange); 
}

/* ============================================
   COLOR HELPERS
   ============================================ */
.orange { color: var(--orange); }
.gold { color: var(--gold); }
.gold-italic { color: var(--gold); font-style: italic; }

/* ============================================
   SECTION TAGS & HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  border: 1px solid var(--border-accent);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-inline-start: -6px;
}
.logo-img {
  height: 115px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.nav-links a:hover { 
  color: var(--orange); 
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-inline-end: -6px;
}
.nav-contact-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  padding: 7px 14px;
  border-inline-start: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-radius: 12px 2px 12px 2px;
  background: transparent;
  transition: color 0.25s ease;
}
.nav-contact-label:hover { 
  color: var(--gold); 
}
.nav-cta {
  min-height: 50px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 23px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 70% 55% at 18% 20%, rgba(13,43,54, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 85% 40%, rgba(249,115,22, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 50% 105%, rgba(107,114,128, 0.07) 0%, transparent 55%),
    linear-gradient(135deg, #190f26 0%, #190f26 38%, #190f26 72%, #190f26 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 38% at 82% 28%, rgba(249,115,22, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 14% 78%, rgba(107,114,128, 0.06) 0%, transparent 55%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 63px, rgba(248,250,252,0.022) 63px, rgba(248,250,252,0.022) 64px),
    repeating-linear-gradient(90deg, transparent, transparent 63px, rgba(248,250,252,0.022) 63px, rgba(248,250,252,0.022) 64px);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 38%, #000 28%, transparent 88%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 38%, #000 28%, transparent 88%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* Right column: text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid var(--border-accent);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 26px;
  background: rgba(107,114,128, 0.06);
  border: 1px solid rgba(242,176,30, 0.45); /* thin gold luxury hairline */
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-accent); /* small gold luxury detail */
  box-shadow: 0 0 0 3px rgba(242,176,30, 0.20);
  animation: pulse 2s infinite;
}
@keyframes pulse { 
  0%,100% { opacity:1; } 50% { opacity:0.35; } 
}

.hero-title {
  font-size: clamp(30px, 5.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.hero-highlight {
  display: block;
  color: var(--gold);
  font-size: clamp(34px, 4.7vw, 64px);
  margin-top: 6px;
}

.hero-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-cta {
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(249,115,22, 0.30);
}
.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.25s ease, gap 0.25s ease;
}
.hero-secondary:hover { 
  color: var(--gold); 
  gap: 10px; 
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-avatars { 
  display: flex; 
  align-items: center; 
}
.hero-avatar {
  width: 38px; 
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  border: 2px solid #190f26;
  margin-inline-start: -12px;
}
.hero-avatar:first-child { 
  margin-inline-start: 0; 
}
.hero-avatar.a1 { 
  background: linear-gradient(135deg, var(--orange), #b282fb); 
}
.hero-avatar.a2 { 
  background: linear-gradient(135deg, var(--gold), #190f26); 
}
.hero-avatar.a3 { 
  background: linear-gradient(135deg, #6B7280, #190f26); 
}
.hero-avatar.a4 { 
  background: linear-gradient(135deg, #190f26, #190f26);
}
.hero-trust-text {
  font-size: 14px;
  color: var(--muted-dark);
}
.hero-trust-text strong { 
  color: var(--gold-light); 
  font-weight: 800; 
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-card {
  position: relative;
  background: rgba(248,250,252, 0.045);
  border: 1px solid rgba(248,250,252, 0.09);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-light) 28%, var(--teal-vlight) 50%, var(--teal-light) 72%, transparent);
  opacity: 0.9;
}
.hero-card::after {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(249,115,22, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-stats-row {
  display: flex;
  gap: 12px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  background: rgba(248,250,252, 0.03);
  border: 1px solid rgba(248,250,252, 0.06);
  border-radius: 12px;
  padding: 16px 6px;
}
.hero-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 7px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted-dark);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #d7a54a;
  background: rgba(107,114,128, 0.12);
  border: 1px solid rgba(107,114,128, 0.30);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6B7280;
  box-shadow: 0 0 0 3px rgba(107,114,128, 0.25);
  animation: pulse 2s infinite;
}
.hero-services-list {
  display: flex;
  flex-direction: column;
}
.hero-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid rgba(248,250,252, 0.05);
}
.hero-services-list li:last-child {
   border-bottom: none; 
  }
.hero-li-dot {
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-li-dot.orange { 
  background: var(--orange); 
}
.hero-li-dot.gold {
  background: var(--gold-accent); /* small gold luxury detail */
}
.hero-li-dot.green {
  background: #6B7280;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted-dark);
  z-index: 2;
  transition: color 0.25s ease;
}
.hero-scroll:hover { 
  color: var(--gold); 
}
.hero-scroll-arrow {
  font-size: 15px;
  line-height: 1;
  animation: heroBounce 2s infinite;
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Hero responsive ---- */
@media (max-width: 1200px) {
  .hero-container { gap: 44px; }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 122px;
    padding-bottom: 64px;
    min-height: auto;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
  }
  .hero-desc { margin-inline: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-scroll { display: none; }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 84px;
    min-height: 100svh;
  }
  .hero-container { gap: 28px; }
  .hero-visual { display: none; }
  .hero-scroll { display: flex; }
  .hero-title { font-size: clamp(34px, 9vw, 46px); }
  .hero-highlight { font-size: clamp(28px, 7.5vw, 40px); }
  .hero-desc { font-size: 15px; }
}
@media (max-width: 480px) {
  .hero { padding-top: 104px; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-cta { width: 100%; justify-content: center; }
  .hero-secondary { justify-content: center; }
  .hero-trust { justify-content: center; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(180deg, #190f26 0%, #190f26 100%);
  border: none;
  padding: clamp(40px, 6vw, 64px) 0;
}

.stats-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  background: rgba(248,250,252, 0.045);
  border: 1px solid rgba(248,250,252, 0.09);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
  padding: clamp(22px, 3vw, 34px) clamp(8px, 1.6vw, 18px);
  overflow: hidden;
}
.stats-container::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-light) 28%, var(--teal-vlight) 50%, var(--teal-light) 72%, transparent);
  opacity: 0.85;
}

.stat-item {
  text-align: center;
  padding: 8px clamp(8px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item:not(:first-child) {
  border-inline-start: 1px solid rgba(107,114,128, 0.30);
}

.stat-num {
  display: block;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: clamp(18px, 4vw, 26px) clamp(8px, 3vw, 16px);
  }
  .stat-item:not(:first-child) { 
    border-inline-start: none; 
  }
  .stat-item:nth-child(even) {
    border-inline-start: 1px solid rgba(107,114,128, 0.28);
  }
  .stat-item:nth-child(-n+2) { 
    padding-bottom: 20px;
   }
  .stat-item:nth-child(n+3) {
    padding-top: 20px;
    border-top: 1px solid rgba(107,114,128, 0.28);
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 80% 40%, rgba(13,43,54, 0.55) 0%, transparent 62%),
    var(--bg-dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* ---- Right: event image ---- */
.about-image { position: relative; }
.about-img-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(248,250,252,0.08);
  box-shadow: var(--shadow-lg);
  height: clamp(420px, 50vw, 560px);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,43,54,0.10) 0%, rgba(13,43,54,0.32) 55%, rgba(13,43,54,0.62) 100%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  align-items: center;
  gap: 7px;
  background: rgba(13,43,54, 0.55);
  border: 1px solid rgba(248,250,252,0.14);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-badge-flag {
  width: 18px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.about-exp {
  position: absolute;
  top: auto;
  bottom: -25px; left: -25px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 112px;
  padding: 18px 14px;
  background: linear-gradient(135deg, var(--orange), #b282fb);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(249,115,22,0.40);
}
.about-exp-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  direction: ltr;
}
.about-exp-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(248,250,252,0.92);
}

/* ---- Left: text content ---- */
.about-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.about-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-inline-end: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.about-line {
  width: 413px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-line), rgba(107,114,128,0.06));
}
.about-line-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-inline-start: 7px;
}

.about-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 22px;
}
.about-title .gold { 
  display: block; 
  color: var(--gold); 
}

.about-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 520px;
}
.about-desc:last-of-type { 
  margin-bottom: 30px; 
}

/* feature boxes: 2 columns × 3 rows */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,43,54, 0.32);
  border: 1px solid rgba(248,250,252,0.07);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.feature-card:hover {
  background: rgba(13,43,54, 0.5);
  border-color: var(--border-accent);
}
.feat-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.services-header {
  text-align: right;
  margin-bottom: 48px;
}
.services-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.services-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-inline-end: 14px;
}
.services-line {
  flex: 1;
  min-width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-line), rgba(107,114,128,0.06));
}
.services-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-inline-start: 7px;
  flex: 0 0 auto;
}
.services-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.services-header h2 .gold { color: var(--gold); }
.services-header .section-sub {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: linear-gradient(160deg, rgba(13,43,54,0.45) 0%, rgba(13,43,54,0.40) 100%);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 18px;
  padding: 30px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(107,114,128,0.22);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(107,114,128,0.06);
  border: 1px solid rgba(107,114,128,0.28);
  box-shadow: inset 0 0 0 1px rgba(107,114,128,0.05), 0 6px 18px rgba(107,114,128,0.08);
  color: var(--gold);
  margin-bottom: 18px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-icon.gold { color: var(--gold); }
.service-icon.orange {
  color: var(--orange);
  background: rgba(249,115,22,0.05);
  border-color: rgba(249,115,22,0.26);
  box-shadow: inset 0 0 0 1px rgba(249,115,22,0.05), 0 6px 18px rgba(249,115,22,0.08);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 25px; /* moved out of inline style on .why-container in index.html */
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.why-card {
  background: linear-gradient(160deg, rgba(13,43,54,0.42) 0%, rgba(13,43,54,0.38) 100%);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  min-width: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: rgba(107,114,128,0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.30);
}
.why-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(107,114,128, 0.42);
  background: none;
  margin-bottom: 6px;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* heading side */
.why-text {
  position: relative;
  min-width: 0;
}
.why-big-num {
  position: absolute;
  top: 70px;
  right: 20%;
  left: auto;
  bottom: auto;
  z-index: 0;
  font-size: clamp(120px, 15vw, 162px);
  font-weight: 900;
  color: rgba(107,114,128, 0.06);
  line-height: 1;
  font-style: normal;
  transform: none;
  pointer-events: none;
}
.why-eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.why-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-inline-end: 14px;
}
.why-line {
  flex: 1;
  min-width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-line), rgba(107,114,128,0.06));
}
.why-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-inline-start: 7px;
  flex: 0 0 auto;
}
.why-text h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.3;
}
.why-text h2 .gold { color: var(--gold); }
.why-text p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.why-text .btn-orange {
  position: relative;
  z-index: 1;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-top: 50px;
}

.timeline-line {
  position: absolute;
  top: 26px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-line), var(--orange), var(--teal-line));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #b282fb);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  position: relative;
}
.step-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,0.25);
}
.process-step h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 11px;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 100px 0;
  background: var(--bg-dark);
}

.portfolio-header { 
  text-align: right; 
}
.eyebrow { 
  display: flex; 
  align-items: center; 
  margin-bottom: 16px; 
}
.eyebrow-label { 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 3px; 
  color: var(--gold); 
  margin-inline-end: 14px; 
}
.eyebrow-line { flex: 1; 
  min-width: 0; 
  height: 2px; 
  border-radius: 2px; 
  background: linear-gradient(90deg, var(--teal-line), rgba(107,114,128,0.06)); 
}
.eyebrow-dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: var(--orange); 
  margin-inline-start: 7px; 
  flex: 0 0 auto; 
}
.portfolio-header .section-sub { 
  margin: 0; 
  max-width: 640px; 
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  gap: 22px;
  align-items: stretch;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, rgba(13,43,54,0.45) 0%, rgba(13,43,54,0.40) 100%);
  border: 1px solid rgba(107,114,128,0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  transition: all 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,114,128,0.22);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.port-visual {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13,43,54,0.95) 0%, rgba(13,43,54,0.96) 100%);
}
.portfolio-card.large .port-visual { height: 320px; }
.portfolio-card.small .port-visual { height: 150px; }
/* abstract diagonal light streaks */
.port-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 30%, rgba(107,114,128,0.12) 42%, transparent 47%),
    linear-gradient(118deg, transparent 52%, rgba(249,115,22,0.12) 63%, transparent 69%),
    radial-gradient(ellipse at 22% 18%, rgba(249,115,22,0.16) 0%, transparent 55%);
}
.port-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,43,54,0.62) 100%);
}

.port-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 30px;
}
.orange-tag {
  background: var(--orange);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}

.port-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.port-content h3 { 
  font-size: 18px; 
  font-weight: 800; 
  color: var(--white); 
  margin-bottom: 6px; 
}
.portfolio-card.large .port-content h3 { 
  font-size: 22px; 
}
.port-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.port-loc svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}
.port-content p { 
  font-size: 13.5px; 
  color: var(--muted); 
  line-height: 1.7; 
}
.portfolio-card.large .port-content p { 
  font-size: 15px; 
  line-height: 1.85; 
}

.portfolio-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ============================================
   TECH SOLUTIONS
   ============================================ */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.se-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: var(--orange); 
}
.se-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 3px; 
  color: var(--gold); 
  text-transform: uppercase; 
}

.tech {
  padding: 100px 0;
  background: var(--bg-section);
}
.tech .section-header h2 { 
  font-size: clamp(28px, 4vw, 46px); 
}
.tech .section-header h2 .gold {
  color: var(--gold); 
}

.tech-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tech-card {
  background: linear-gradient(160deg, rgba(13,43,54,0.42) 0%, rgba(13,43,54,0.40) 100%);
  border: 1px solid rgba(107,114,128,0.16);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  transition: all 0.3s;
}
.tech-card:hover {
  border-color: rgba(107,114,128,0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.30);
}
.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(13,43,54,0.55);
  border: 1px solid rgba(107,114,128,0.22);
  box-shadow: inset 0 0 0 1px rgba(107,114,128,0.05), 0 0 16px rgba(13,43,54,0.45);
  color: var(--gold);
}
.tech-icon svg {
  width: 26px;
  height: 26px;
}
.tech-icon.gold { color: var(--gold); }
.tech-icon.orange { color: var(--orange); }
.tech-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tech-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
}

.testimonials .section-header h2 .gold { color: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.testi-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(13,43,54,0.42) 0%, rgba(13,43,54,0.38) 100%);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107,114,128,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-avatar.gold-av {
  background: rgba(107,114,128,0.15);
  border-color: rgba(107,114,128,0.3);
  color: var(--gold);
}
.testi-author strong { 
  display: block; 
  font-size: 14px; 
  font-weight: 700; 
}
.testi-author span { 
  font-size: 12px; 
  color: var(--muted-dark); 
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #190f26 0%, #190f2693 45%, #190f26 100%);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 45%, rgba(249,115,22,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 12% 10%, rgba(107,114,128,0.08) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 90%, rgba(107,114,128,0.06) 0%, transparent 42%);
}
.cta-container { 
  position: relative; 
  z-index: 1; 
}

.cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-section h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-actions .btn-ghost-lg {
  background: rgba(13,43,54, 0.30);
  border: 1px solid rgba(248,250,252, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cta-actions .btn-ghost-lg:hover {
  background: rgba(13,43,54, 0.55);
  border-color: rgba(107,114,128, 0.95);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #190f26;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-brand .nav-logo { gap: 10px; }
.footer-brand .logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}
.footer-brand .logo-text { 
  display: flex; 
  flex-direction: column; 
  line-height: 1.2; 
}
.footer-brand .logo-main { 
  font-size: 22px; 
  font-weight: 800; 
  color: var(--gold);
 }
.footer-brand .logo-sub { 
  font-size: 11px; 
  font-weight: 500; 
  color: var(--gold); 
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}
.social-links a:hover { 
  background: rgba(249,115,22,0.1); 
  border-color: rgba(249,115,22,0.3); 
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-col a:hover { 
  color: var(--orange); 
}

.footer-contact {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-value-ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  text-align: left;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { 
  font-size: 13px; 
  color: var(--muted-dark);
 }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--muted-dark);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { 
  color: var(--orange);
 }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-container { grid-template-columns: 1fr; gap: 50px; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline-line { display: none; }
  .process-step { margin-bottom: 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-col { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; 
    margin : 0px -16px 0px -16px;
    position: fixed; 
    top: 75px; 
    right: 0; 
    left: 0; 
    background: rgba(13,43,54,0.98); 
    backdrop-filter: blur(12px); 
    flex-direction: column; 
    padding: 20px 24px; 
    gap: 4px; 
    border-bottom: 1px solid var(--border-color);
   }
  .nav-links.open { 
    display: flex; 
  }
  .nav-cta { 
    display: none;
   }
  .hamburger { 
    display: flex; 
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .portfolio-col { flex-direction: column; }
  .tech-grid { gap: 14px; }
  .tech-card { width: calc(50% - 7px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card.featured { transform: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }
  .about, .services, .why-us, .process, .portfolio, .tech, .testimonials { padding: 70px 0; }
}

@media (max-width: 480px) {
  .tech-card { width: 100%; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
}


html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg-dark);
}

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

.container {
  width: min(100% - 48px, 1120px);
  max-width: 1120px;
  padding-inline: 0;
}

section,
.footer,
.navbar {
  width: 100%;
}

/* Navbar — refinements (override) */
.navbar {
  border-bottom: 1px solid rgba(248,250,252, 0.055);
  backdrop-filter: blur(16px);
}

.navbar.scrolled {
}

.hero-container {
  width: min(100% - 64px, 1120px);
}

.hero-highlight,
.section-header .orange,
.about-title .gold,
.gold {
  color: var(--gold);
}

.btn-orange {
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(249,115,22, 0.18);
}

.btn-orange:hover {
  background: var(--orange-dark);
}

/* Cards & section backgrounds — refinements (override) */
.portfolio-card,
.service-card,
.why-card,
.tech-card,
.testi-card {
  background: rgba(248,250,252,0.04);
  border-color: rgba(248,250,252,0.075);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.stat-label {
  color: rgba(248,250,252,0.78);
}

.services,
.process,
.tech,
.cta-section {
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(13,43,54,0.22) 0%, transparent 62%),
    var(--bg-section);
}

.why-us,
.portfolio,
.testimonials {
  background:
    radial-gradient(ellipse 55% 48% at 50% 50%, rgba(13,43,54,0.48) 0%, transparent 66%),
    var(--bg-darker);
}

.cta-section {
  background:
    radial-gradient(ellipse 75% 90% at 50% 50%, rgba(13,43,54,0.62) 0%, rgba(13,43,54,0.82) 58%, #190f26 100%);
}

.footer {
  background: #190f26;
}

/* Responsive — grouped media queries below (order-sensitive, do not reorder) */
@media (min-width: 993px) {
  .about,
  .services,
  .why-us,
  .process,
  .portfolio {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .tech,
  .testimonials,
  .cta-section {
    min-height: 72svh;
    display: flex;
    align-items: center;
  }

  .about > .container,
  .services > .container,
  .why-us > .container,
  .process > .container,
  .portfolio > .container,
  .tech > .container,
  .testimonials > .container,
  .cta-section > .container {
    width: min(100% - 64px, 1120px);
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(100% - 48px, 1040px);
  }
}

@media (max-width: 992px) {
  .container,
  .hero-container {
    width: min(100% - 40px, 760px);
  }

  .section-sub,
  .cta-section p {
    margin-inline: auto;
  }

  .about,
  .services,
  .why-us,
  .process,
  .portfolio,
  .tech,
  .testimonials,
  .cta-section {
    min-height: auto;
    padding-block: clamp(72px, 10vw, 96px);
  }

  .about-container,
  .why-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  /* text first, image after on mobile */
  .about-text { order: 1; }
  .about-image { order: 2; max-width: 560px; margin-inline: auto; }

  .about-text,
  .why-text {
    text-align: center;
  }
  .about-eyebrow { justify-content: center; }

  .about-desc,
  .why-text p {
    max-width: 640px;
    margin-inline: auto;
  }

  .why-text {
    text-align: right;
  }
  .why-text p {
    margin-inline: 0;
    max-width: 100%;
  }

  .about-img-card {
    max-width: 560px;
    margin-inline: auto;
  }

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

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

  .portfolio-col {
    flex-direction: row;
  }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-card {
    width: auto;
  }
}

@media (max-width: 768px) {
  .container,
  .hero-container {
    width: min(100% - 32px, 560px);
  }

  .navbar {
    padding-block: 12px;
  }

  .nav-container {
    gap: 14px;
  }

  .nav-links {
    top: 66px;
    right: 16px;
    left: 16px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(13,43,54, 0.98);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding-block: 12px;
  }


  .services-grid,
  .why-cards,
  .testimonials-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .why-text .btn-orange {
    width: 100%;
    justify-content: center;
  }

  .portfolio-col {
    flex-direction: column;
  }

  .portfolio-card.large,
  .portfolio-card.small {
    min-height: 230px;
  }

  .about-image {
    display: none;
  }

  .about-container {
    gap: 0;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-eyebrow {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .about-line {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .about-title {
    font-size: clamp(27px, 7.6vw, 36px);
    line-height: 1.28;
    margin-bottom: 16px;
  }

  .about-desc {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 12px;
  }
  .about-desc:last-of-type {
    margin-bottom: 22px;
  }

  .about-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .feature-card {
    justify-content: center;
    min-width: 0;
    gap: 6px;
    padding: 11px 8px;
    font-size: 12.5px;
    border-radius: 10px;
  }
  .feat-dot {
    width: 7px; height: 7px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .process-timeline {
    display: block;
    max-width: 460px;
    margin-inline: auto;
    padding-top: 0;
  }

  .process .timeline-line {
    display: block;
    top: 0;
    bottom: 0;
    right: 21px;
    left: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--teal-line), var(--orange), var(--teal-line));
    opacity: 0.28;
  }

  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    text-align: right;
    align-items: start;
    margin-bottom: 24px;
  }

  .step-circle {
    margin: 0;
  }

  .process-step h4 {
    font-size: 15px;
    margin-top: 2px;
  }

  .process-step p {
    font-size: 12px;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container,
  .hero-container {
    width: min(100% - 24px, 100%);
  }

  .footer-brand .logo-icon {
    width: 34px;
    height: 34px;
  }

  .footer-brand .logo-main {
    font-size: 13px;
  }

  .footer-brand .logo-sub {
    font-size: 10px;
  }

  .hero-badge,
  .section-tag {
    font-size: 10px;
    letter-spacing: 1.2px;
    padding-inline: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-orange,
  .btn-ghost,
  .btn-ghost-lg {
    justify-content: center;
    width: 100%;
    padding-inline: 18px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 24px;
  }

  .about,
  .services,
  .why-us,
  .process,
  .portfolio,
  .tech,
  .testimonials,
  .cta-section {
    padding-block: 64px;
  }

  .about-img-card {
    height: 290px;
  }

  .about-exp {
    top: 495px; 
    left: -28px;
    width: 96px;
    padding: 14px 10px;
  }
  .about-exp-num { font-size: 26px; }

  .service-card,
  .why-card,
  .testi-card,
  .tech-card {
    padding: 22px 18px;
  }

  .footer {
    padding-top: 52px;
  }

  .footer-bottom-links,
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .about-img-card {
    height: 260px;
  }
}


.navbar {
  padding: 1px 0;
  min-height: 78px;
}

.navbar.scrolled {
  padding: 14px 0;
}

.nav-container {
  min-height: 52px;
}

.nav-links {
  gap: 10px;
}

.nav-links a {
  font-size: 15px;
  padding: 10px 15px;
}

.mobile-action-link {
  display: none;
}

.nav-contact-label {
  white-space: nowrap;
}

.why-cards {
  grid-template-columns: 1fr 1fr;
}

.process-step h4,
.why-card h4,
.service-card h3,
.tech-card h4 {
  letter-spacing: -0.2px;
}

@media (min-width: 993px) {
  .about,
  .services,
  .why-us,
  .process,
  .portfolio,
  .tech,
  .testimonials,
  .cta-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .services-grid {
    gap: 22px;
  }

  .service-card {
    min-height: 210px;
  }

  .tech-card {
    min-height: 170px;
  }

  .testimonials-grid {
    align-items: stretch;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    font-size: 14px;
    padding-inline: 10px;
  }

  .nav-cta {
    padding-inline: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-block: 13px;
    min-height: 70px;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    top: 74px;
    margin-top: 33px;
  }

  .mobile-action-link {
    display: flex !important;
    justify-content: center;
    color: var(--gold-light) !important;
    border: 1px solid rgba(107,114,128, 0.35);
    background: rgba(107,114,128, 0.05);
  }

  .mobile-action-link:last-child {
    color: var(--white) !important;
    border-color: rgba(249,115,22, 0.35);
    background: var(--orange);
  }

  .logo-img {
    height: 80px;
  }

  .nav-cta {
    min-height: 46px;
    padding: 12px 26px;
    font-size: 15px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .about-title,
  .why-text h2,
  .cta-section h2 {
    line-height: 1.35;
  }
}

@media (max-width: 576px) {
  .navbar {
    min-height: 66px;
  }

  .nav-links {
    top: 68px;
  }
}

/* ============================================
   HERO — MOBILE REFINEMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-badge {
    font-size: 13px;
    letter-spacing: 0.2px;
    padding: 7px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .hero-cta {
    width: auto;
    padding: 12px 26px;
    font-size: 15px;
  }
  .hero-actions .hero-secondary {
    width: auto;
    justify-content: center;
  }
}


.section-eyebrow.lined {
  gap: 12px;
}
.section-eyebrow.lined::before,
.section-eyebrow.lined::after {
  content: '';
  flex: 1 1 0;
  max-width: 140px;
  height: 1px;
}
.section-eyebrow.lined::before {
  background: linear-gradient(90deg, rgba(107,114,128,0) 0%, rgba(107,114,128,0.5) 100%);
}
.section-eyebrow.lined::after {
  background: linear-gradient(90deg, rgba(107,114,128,0.5) 0%, rgba(107,114,128,0) 100%);
}

/* --- HOW WE WORK / PROCESS: more compact, not full-screen --- */
.process {
  padding: 74px 0;
}
.process .section-header {
  margin-bottom: 34px;
}
.process-timeline {
  padding-top: 22px;
  gap: 16px;
}

.process .timeline-line {
  top: 43px;           
  right: 8%;
  left: 8%;
  height: 2px;
  opacity: 1;
  background: linear-gradient(90deg,
    rgba(107,114,128,0) 0%,
    rgba(107,114,128,0.45) 16%,
    rgba(13,43,54,0.55) 50%,
    rgba(107,114,128,0.45) 84%,
    rgba(107,114,128,0) 100%);
}

.process .step-circle {
  background: var(--bg-section);
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.process .step-circle::after {
  content: none;
}

@media (min-width: 993px) {
  .process {
    min-height: auto;
    display: block;
  }
}

@media (min-width: 993px) {
  .tech {
    min-height: 80svh;
  }
  .tech-card {
    min-height: 188px;
  }
}

.testimonials-grid {
  gap: 24px;
}
.testi-card {
  padding: 34px 30px;
}
.testi-stars {
  font-size: 18px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
@media (min-width: 993px) {
  .testimonials {
    min-height: 82svh;
  }
}

.cta-tag {
  color: var(--gold);
}
.cta-section h2 .orange {
  color: var(--gold);
}

.footer {
  padding-top: 56px;
}
.footer-grid {
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  margin: 14px 0 18px;
}
.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
}



@media (min-width: 993px) {
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    flex-wrap: nowrap;
  }
  .tech-card {
    width: auto;
  }
}

.cta-section {
  padding: 72px 0;
}
@media (min-width: 993px) {
  .cta-section {
    min-height: 68svh;
  }
}

@media (min-width: 993px) {
  .navbar .nav-logo {
    margin-inline-start: -18px;
  }
  .navbar .nav-actions {
    margin-inline-end: -18px;
  }
}

/* Hero services list — checkmark refinement (override) */
.hero-services-list li .hero-li-dot {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.hero-services-list li .hero-li-dot::before {
  content: '✓';
}

@media (min-width: 993px) {
  .stats-container {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: clamp(10px, 1.5vw, 16px) 0;
  }
  .stats-container::before {
    display: none;
  }
}
/* numbers in gold */
.stat-num {
  color: var(--gold);
}


/* Footer — text refinements (override) */
.footer-brand-en {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  opacity: 0.75;
  margin-top: 6px;
}

.footer-contact-col a.footer-contact {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-contact-col a.footer-contact:hover {
  color: var(--gold);
}

.footer-bottom-en {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--muted-dark);
}


@media (max-width: 768px) {

  .hero {
    padding: 112px 0 46px;
    min-height: auto;
    display: block;
    overflow: hidden;
  }

  .stats-bar {
    padding: 40px 0;
  }
  .stats-container {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }
  .stats-container::before {
    display: none;
  }

  .about-text {
    text-align: right;
  }
  .about-desc {
    margin-inline: 0;
    max-width: 100%;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 14px;
    max-width: 100%;
    margin-inline: auto;
    padding-top: 6px;
  }
  .process .timeline-line {
    display: none;
  }
  .process-step {
    display: block;
    text-align: center;
    margin-bottom: 0;
    min-width: 0;
  }
  .step-circle {
    margin: 0 auto 12px;
  }
  .process-step h4 {
    margin-top: 0;
  }

  .tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .tech-card {
    width: calc(50% - 7px);
    max-width: calc(50% - 7px);
    min-width: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-grid > .footer-brand,
  .footer-grid > .footer-contact-col {
    grid-column: 1 / -1;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-contact-col a.footer-contact {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 768px) {

  .hero-container {
    width: min(100% - 36px, 560px);
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    margin: 0 auto;
  }
  .hero-text {
    margin-top: 40px;
    order: 1;
    width: 100%;
    min-width: 0;
  }

  .hero-badge {
    display: inline-flex;
    margin: 0 auto 22px;
    max-width: calc(100vw - 40px);
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.14;
    letter-spacing: -1px;
    text-align: center;
    margin: 0 auto 16px;
    max-width: 100%;
    text-shadow: none;
  }
  .hero-highlight {
    font-size: 32px;
    line-height: 1.15;
    margin-top: 4px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.9;
    max-width: 340px;
    margin: 0 auto 26px;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
  }
  .hero-cta {
    width: auto;
    min-width: 210px;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }
  .hero-secondary {
    justify-content: center;
  }

  .hero-trust,
  .hero-scroll {
    display: none;
  }
}


@media (max-width: 768px) {

  .why-us {
    padding: 56px 0 48px;
  }

  .why-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 10px;
    text-align: right;
  }
  .why-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: right;
  }

  .why-big-num {
    top: 10px;
    right: 14px;
    left: auto;
    font-size: 88px;
    line-height: 1;
    color: rgba(107,114,128, 0.15);
    transform: none;
    z-index: 0;
  }

  .why-eyebrow {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 26px;
    margin-bottom: 16px;
  }
  .why-label {
    order: 0;
    margin-inline-end: 0;
    font-size: 11px;
    letter-spacing: 2px;
    white-space: nowrap;
  }
  .why-line {
    order: 0;
    flex: 0 0 72px;
    width: 72px;
    min-width: 0;
    height: 1px;
    margin: 0;
    background: linear-gradient(to left, rgba(107,114,128,0.55), rgba(107,114,128,0.1));
  }
  .why-dot {
    order: 0;
    margin-inline-start: 0;
    flex: 0 0 auto;
  }

  .why-text h2 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    line-height: 1.55;
    text-align: right;
    margin: 0 0 14px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .why-text h2 .gold {
    white-space: nowrap;
  }

  .why-text p {
    position: relative;
    z-index: 2;
    font-size: 13.5px;
    line-height: 1.9;
    text-align: right;
    max-width: 100%;
    margin: 0 0 18px;
  }

  .why-text .btn-orange {
    position: relative;
    z-index: 2;
    width: fit-content;
    min-width: 210px;
    max-width: 100%;
    padding: 14px 20px;
    margin: 4px 0 0;
    justify-content: center;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }
  .why-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: right;
  }
  .why-num {
    font-size: 28px;
    color: var(--orange);
    background: none;
  }
}


/* --- Dark teal content cards (no white blocks) --- */
.service-card,
.why-card,
.tech-card,
.testi-card,
.portfolio-card {
  background: linear-gradient(158deg, #190f26 0%, #190f26 100%);
  border: 1px solid rgba(248,250,252, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(248,250,252, 0.06),
    0 16px 40px rgba(13,43,54, 0.42);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card::after { display: none; }

.service-card:hover,
.why-card:hover,
.tech-card:hover,
.testi-card:hover,
.portfolio-card:hover {
  border-color: rgba(107,114,128, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(248,250,252, 0.10),
    0 22px 52px rgba(13,43,54, 0.55);
}

/* Card headings → off-white */
.service-card h3,
.why-card h4,
.tech-card h4,
.testi-card .testi-author strong,
.port-content h3 {
  color: var(--white);
}

/* Card body text → readable muted off-white */
.service-card p,
.why-card p,
.tech-card p,
.testi-card p,
.port-content p,
.testi-author span {
  color: rgba(248,250,252, 0.80);
}

.why-num {
  color: var(--orange);
}

.service-icon,
.tech-icon {
  color: var(--orange);
  background: rgba(249,115,22, 0.10);
  border: 1px solid rgba(248,250,252, 0.12);
  box-shadow: none;
}
.service-icon.gold,
.service-icon.orange,
.tech-icon.gold,
.tech-icon.orange { color: var(--orange); }

/* Testimonials */
.testi-stars { color: var(--orange); }
.testi-avatar {
  background: rgba(249,115,22, 0.14);
  border: 1px solid rgba(249,115,22, 0.40);
  color: var(--orange);
}
.testi-avatar.gold-av {
  background: rgba(107,114,128, 0.30);
  border: 1px solid var(--teal-light);
  color: var(--teal-vlight);
}

.port-visual {
  background: linear-gradient(135deg, #190f26 0%, #190f26 100%);
}
.port-loc { color: var(--orange); }

.feat-dot { background: var(--orange); }

.process .step-circle {
  background: #190f26;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-ghost-lg {
  background: rgba(13,43,54, 0.35);
  border: 1px solid rgba(248,250,252, 0.18);
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn-ghost-lg:hover {
  background: rgba(13,43,54, 0.60);
  border-color: rgba(107,114,128, 0.95);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-contact-label {
  color: var(--teal-vlight);
  border-inline-start: 2px solid var(--teal-light);
  border-top: 2px solid var(--teal-light);
}
.nav-contact-label:hover { color: var(--white); }

/* Footer — keep headings off-white, coral only on hover */
.footer-col h4 { color: var(--white); }
.footer-brand .logo-main { color: var(--white); }
.footer-brand-en { color: var(--teal-vlight); }
.footer-col a:hover,
.footer-contact-col a.footer-contact:hover { color: var(--orange); }

.about-label,
.services-label,
.why-label,
.eyebrow-label,
.se-label,
.hero-card-label,
.section-tag,
.cta-tag,
.footer-brand-en,
.footer-bottom-en,
.contact-value-ltr {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-weight: 600;
}


.about,
.why-us,
.portfolio {
  background:
    radial-gradient(ellipse 85% 55% at 50% -8%, rgba(13,43,54,0.30) 0%, transparent 58%),
    var(--bg-dark);
}
.services,
.process,
.tech,
.testimonials {
  background:
    radial-gradient(ellipse 110% 70% at 50% 116%, rgba(13,43,54,0.60) 0%, transparent 56%),
    var(--bg-dark);
}

/* Hairline teal separator between adjacent sections (very subtle) */
.services,
.why-us,
.process,
.portfolio,
.tech,
.testimonials,
.cta-section {
  border-top: 1px solid rgba(107,114,128, 0.16);
}

/* CTA — strong DEEP anchor block (#190f26 based, subtle teal core) */
.cta-section {
  background:
    radial-gradient(ellipse 80% 95% at 50% 45%, rgba(13,43,54,0.40) 0%, rgba(13,43,54,0.85) 52%, #190f26 100%);
}

/* About feature pills — readable teal pills (not white, not flat) */
.about .feature-card {
  background: rgba(13,43,54, 0.55);
  border: 1px solid rgba(248,250,252, 0.10);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(248,250,252, 0.05);
}
.about .feature-card:hover {
  background: rgba(13,43,54, 0.75);
  border-color: rgba(107,114,128, 0.85);
}


.service-card,
.why-card,
.tech-card,
.testi-card,
.portfolio-card,
.feature-card,
.process-step .step-circle {
  transition: transform 0.28s ease, box-shadow 0.28s ease,
              border-color 0.28s ease, background-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .why-card:hover,
  .tech-card:hover,
  .testi-card:hover,
  .portfolio-card:hover {
    transform: translateY(-6px) scale(1.01);
    transition-delay: 0s !important;     /* neutralise JS stagger delay on hover */
    border-color: rgba(107,114,128, 0.90);
    box-shadow:
      inset 0 1px 0 rgba(248,250,252, 0.10),
      0 24px 52px rgba(13,43,54, 0.55),
      0 8px 26px rgba(107,114,128, 0.22);
  }

  /* Feature pills — gentle lift, no scale */
  .feature-card:hover {
    transform: translateY(-4px);
    transition-delay: 0s !important;
    border-color: rgba(107,114,128, 0.90);
    background: rgba(13,43,54, 0.78);
    box-shadow: 0 14px 30px rgba(13,43,54, 0.45);
  }

  /* Process steps — lift the coral disc subtly */
  .process-step:hover .step-circle {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(249,115,22, 0.28);
  }
}

.service-card:active,
.why-card:active,
.tech-card:active,
.testi-card:active,
.portfolio-card:active,
.feature-card:active {
  transform: translateY(-2px);
  transition-delay: 0s !important;
  border-color: rgba(107,114,128, 0.75);
}



.hero,
.stats-bar,
.about,
.services,
.why-us,
.process,
.portfolio,
.tech,
.testimonials,
.cta-section,
.footer {
  position: relative;
}
.stats-bar > .container,
.about > .container,
.services > .container,
.why-us > .container,
.process > .container,
.portfolio > .container,
.tech > .container,
.testimonials > .container,
.footer > .container {
  position: relative;
  z-index: 2;
}

/* Retire the hard hairline seams — replaced by the soft gradient
   dividers + edge fades defined below */
.services,
.why-us,
.process,
.portfolio,
.tech,
.testimonials,
.cta-section {
  border-top: none;
}

/* ---- Thin, edge-fading gradient divider at the top of each band ----
   A premium navy/light hairline that dissolves to nothing at both
   edges — an elegant separator, not a hard line. No warm colour. */
.stats-bar::before,
.about::before,
.services::before,
.why-us::before,
.process::before,
.portfolio::before,
.tech::before,
.testimonials::before,
.cta-section::before,
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(107,114,128, 0.18) 24%,
    rgba(248,250,252, 0.16) 50%,
    rgba(107,114,128, 0.18) 76%,
    transparent 100%);
}

/* ---- Hero — navy-only background. Replaces the original warm glow
   with a deep navy diagonal: a faint cool light-lift at the top, the
   main #190f26 through the middle, and deeper navy toward the lower
   edge for premium depth. No orange/gold in the large background. ---- */
.hero {
  background:
    radial-gradient(70% 55% at 18% 22%,  rgba(248,250,252, 0.025) 0%, transparent 55%),
    radial-gradient(80% 70% at 85% 62%,  rgba(0,0,0, 0.16) 0%, transparent 60%),
    linear-gradient(160deg, rgba(248,250,252, 0.015) 0%, #190f26 44%, rgba(0,0,0, 0.10) 100%);
}
.hero::before {
  background:
    radial-gradient(45% 38% at 82% 28%, rgba(0,0,0, 0.12) 0%, transparent 60%),
    radial-gradient(40% 50% at 14% 78%, rgba(248,250,252, 0.018) 0%, transparent 55%);
}

/* ---- Soft fade at the bottom of the hero so it melts into the
   stats band instead of ending on a hard edge ---- */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,43,54, 0) 0%, #190f26 100%);
}

/* ---- Per-section backgrounds: NAVY ONLY. A uniform, premium recipe —
   a subtle cool light-lift through the centre for depth, and soft
   DEEPER-navy fades at the top & bottom seams. Edges resolve so each
   seam reads as a gentle deep-navy transition; centres breathe lighter.
   No orange/gold anywhere in these large gradients. ---- */

/* Stats: short band near the hero — deeper top seam + faint centre lift */
.stats-bar {
  background:
    radial-gradient(130% 80% at 50% 0%,   rgba(0,0,0, 0.10) 0%, transparent 60%),
    radial-gradient(120% 90% at 50% 50%,  rgba(248,250,252, 0.018) 0%, transparent 60%),
    #190f26;
}

/* About */
.about {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 60% at 50% 100%, rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(120% 75% at 50% 50%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* Services */
.services {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 60% at 50% 100%, rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(120% 75% at 50% 52%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* Why us */
.why-us {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 60% at 50% 100%, rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(120% 75% at 50% 50%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* Process — compact band */
.process {
  background:
    radial-gradient(130% 70% at 50% 0%,   rgba(0,0,0, 0.12) 0%, transparent 58%),
    radial-gradient(130% 70% at 50% 100%, rgba(0,0,0, 0.12) 0%, transparent 58%),
    radial-gradient(120% 70% at 50% 50%,  rgba(248,250,252, 0.016) 0%, transparent 62%),
    #190f26;
}

/* Portfolio */
.portfolio {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 60% at 50% 100%, rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(120% 75% at 50% 50%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* Tech */
.tech {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 60% at 50% 100%, rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(120% 75% at 50% 52%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* Testimonials — bottom seam runs a touch deeper to ease into the CTA */
.testimonials {
  background:
    radial-gradient(130% 60% at 50% 0%,   rgba(0,0,0, 0.13) 0%, transparent 55%),
    radial-gradient(130% 64% at 50% 100%, rgba(0,0,0, 0.16) 0%, transparent 58%),
    radial-gradient(120% 75% at 50% 50%,  rgba(248,250,252, 0.020) 0%, transparent 60%),
    #190f26;
}

/* CTA — the deepest navy anchor: deep navy framing the edges with a
   subtle cool light-lift centred on the heading. Navy only. */
.cta-section {
  background:
    radial-gradient(70% 85% at 50% 45%,   rgba(248,250,252, 0.022) 0%, transparent 55%),
    radial-gradient(120% 120% at 50% 50%, rgba(13,43,54, 0) 0%, rgba(0,0,0, 0.24) 100%),
    #190f26;
}
/* Neutralise the original CTA overlay (it shipped with an orange glow)
   — replace with a soft navy depth wash so the block stays navy-only */
.cta-bg {
  background:
    radial-gradient(ellipse 60% 80% at 50% 45%,  rgba(248,250,252, 0.018) 0%, transparent 60%),
    radial-gradient(ellipse 90% 95% at 50% 100%, rgba(0,0,0, 0.20) 0%, transparent 58%);
}

/* Footer — deep navy close: a soft linear fade from #190f26 down to a
   deeper navy, with a faint cool top glow under the divider */
.footer {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(248,250,252, 0.016) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,43,54, 0) 0%, rgba(0,0,0, 0.18) 100%),
    #190f26;
}

/* Mobile: keep the effects but trim the tall hero fade so it never
   overlaps text on short viewports — purely cosmetic, no perf cost */
@media (max-width: 768px) {
  .hero::after { height: 90px; }
}
