/* ═══════════════════════════════════════════════
   NETVARIA SYSTEM — PREMIUM ENTERPRISE STYLESHEET
   Inspired by TCS.com × Netvaria.com
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── RESET & ROOT ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:       #000000;
  --black2:      #0a0a0a;
  --black3:      #111111;
  --dark-navy:   #050d1a;
  --navy:        #0b1929;
  --white:       #ffffff;
  --white2:      #f5f7fa;
  --white3:      #e8ecf2;
  --green:       #00c853;
  --green2:      #00e676;
  --green-dim:   rgba(0,200,83,0.12);
  --blue:        #0288d1;
  --blue-dim:    rgba(2,136,209,0.12);
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #59667a;
  --text-on-dark:#f4f8ff;
  --muted-on-dark:rgba(244,248,255,0.78);
  --border-dark: rgba(255,255,255,0.08);
  --border-light:rgba(0,0,0,0.08);
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl:   0 32px 80px rgba(0,0,0,0.25);
  --transition:  all 0.28s cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--green); color: var(--black); }

/* ─── NOISE TEXTURE OVERLAY ─── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ═══ ANNOUNCEMENT STRIP ═══ */
.announcement-strip {
  background: var(--green);
  color: var(--black);
  text-align: center;
  padding: 9px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.announcement-strip::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}
@keyframes shine { to { left: 150%; } }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.strip-badge {
  background: var(--black);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.strip-btn {
  background: var(--black);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.strip-btn:hover { background: var(--black3); transform: scale(1.04); }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  height: 70px;
}
.navbar.scrolled {
  top: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  height: 52px;
  position: relative;
}
.nav-logo img {
  width: 136px;
  height: 42px;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
  mix-blend-mode: normal;
  position: relative;
  z-index: 1;
}
.nav-logo img:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}
.nav-links a, .nav-links button {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover, .nav-links button:hover, .nav-links a.active {
  color: var(--white);
}
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: #0288d1;
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: #05a6f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2,136,209,0.38);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 80px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-md);
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--green); background: rgba(0,200,83,0.08); }
.mobile-nav .m-cta {
  margin-top: 16px;
  background: var(--green);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
}

/* ═══ HERO ═══ */
#hero {
  background: radial-gradient(circle at 50% 18%, rgba(0,200,83,0.14), transparent 32%), linear-gradient(135deg, #000 0%, #06111d 58%, #000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 10%; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(2,136,209,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 40px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 82px);
}
.hero-content {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-top-row {
  width: min(100%, 980px);
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: center;
  gap: 40px;
  direction: ltr;
  margin-bottom: 22px;
}
.hero-copy {
  direction: rtl;
  text-align: right;
  max-width: 560px;
}
.hero-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  width: auto;
}
.hero-logo-img {
  height: clamp(150px, 16vw, 230px);
  width: auto;
  max-width: min(44vw, 420px);
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.4s ease;
  animation: logo-float 5s ease-in-out infinite;
}
.hero-logo-img:hover {
  transform: scale(1.03);
}
@keyframes logo-float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 768px) {
  .hero-logo-img { height: 130px; }
}
@media (max-width: 480px) {
  .hero-logo-img { height: 110px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  color: var(--green);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.5);opacity:0.5}
}
.hero-desc {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted-on-dark);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 0;
}
.hero-type-line {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}
.hero-type-line span {
  color: var(--green);
  font-weight: 900;
}
#typewriter {
  display: inline-block;
  min-width: 6.8em;
  text-align: right;
  white-space: nowrap;
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background-color: var(--green);
  margin-right: 4px;
  vertical-align: text-bottom;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink { 
  0%, 100% { opacity: 1; } 
  50% { opacity: 0; } 
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.btn-hero-primary {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}
.btn-hero-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,83,0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,200,83,0.05);
}
.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  padding-top: 0;
  border-top: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  min-width: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(244,248,255,0.72);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-product-slider {
  width: min(100%, 820px);
  height: clamp(170px, 24vw, 260px);
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  background: #050505;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1s ease, transform 4.5s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.64));
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  text-shadow: 0 8px 28px rgba(0,0,0,0.9);
}

/* Hero Right — Abstract Illustration */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  position: relative;
}
.hero-circle-outer {
  position: absolute; inset: 0;
  border: 1px solid rgba(0,200,83,0.15);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}
.hero-circle-mid {
  position: absolute; inset: 15%;
  border: 1px solid rgba(2,136,209,0.12);
  border-radius: 50%;
  animation: rotate-slow 15s linear infinite reverse;
}
.hero-circle-inner {
  position: absolute; inset: 30%;
  border: 1px solid rgba(0,200,83,0.1);
  border-radius: 50%;
  animation: rotate-slow 10s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }
.hero-center-block {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-center-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  text-align: center;
  width: 220px;
  position: relative;
  z-index: 2;
}
.hero-center-icon {
  font-size: 48px; margin-bottom: 14px; display: block;
}
.hero-center-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--white); line-height: 1.3;
}
.hero-center-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
/* Orbiting nodes */
.orbit-node {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(10px);
  animation: float-node 4s ease-in-out infinite;
}
.orbit-node:nth-child(1) { top: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-node:nth-child(2) { top: 50%; right: 3%; transform: translateY(-50%); animation-delay: 0.8s; }
.orbit-node:nth-child(3) { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }
.orbit-node:nth-child(4) { top: 50%; left: 3%; transform: translateY(-50%); animation-delay: 2.4s; }
@keyframes float-node {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-8px)}
}
.orbit-node:nth-child(2) { animation-name: float-node-2; }
@keyframes float-node-2 {
  0%,100%{transform:translateY(-50%) translateX(0)}
  50%{transform:translateY(-50%) translateX(-8px)}
}
.orbit-node:nth-child(3) { animation-name: float-node-3; }
@keyframes float-node-3 {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}
.orbit-node:nth-child(4) { animation-name: float-node-4; }
@keyframes float-node-4 {
  0%,100%{transform:translateY(-50%) translateX(0)}
  50%{transform:translateY(-50%) translateX(8px)}
}
/* Lines connecting nodes */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-lines svg { width: 100%; height: 100%; }

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%{transform:translateY(0);opacity:1}
  100%{transform:translateY(14px);opacity:0}
}
.scroll-text {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px; text-transform: uppercase;
}

/* ═══ SECTION 1 — WHITE — QUICK ACCESS ═══ */
#section-quick {
  background: var(--white2);
  padding: 80px 40px;
}
.section-quick-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.section-quick-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-quick-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.quick-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.quick-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.quick-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.quick-card:hover::before { transform: scaleX(1); transform-origin: left; }
.quick-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.quick-card-icon {
  width: 56px; height: 56px;
  background: var(--black);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.quick-card:hover .quick-card-icon { background: var(--green); }
.quick-card-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.quick-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: right;
}
.quick-card-arrow {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--black);
  transition: var(--transition);
}
.quick-card:hover .quick-card-arrow { color: var(--green); gap: 10px; }

/* ═══ SECTION 2 — BLACK — SERVICES ═══ */
#section-services {
  background: linear-gradient(180deg, #000 0%, #07111d 100%);
  padding: 112px 40px;
  position: relative;
  overflow: hidden;
}
#section-services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.3;
}
.services-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,200,83,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(2,136,209,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.services-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.tag-green { color: var(--green); background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2); }
.tag-dark { color: var(--text-mid); background: rgba(0,0,0,0.05); border: 1px solid var(--border-light); }
.section-title-dark {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title-light {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-desc-dark {
  font-size: 16px;
  color: var(--muted-on-dark);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 14px;
}
.section-desc-light {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 14px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 18px 18px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,200,83,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: rgba(0,200,83,0.38);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 22px 58px rgba(0,0,0,0.34);
}
.service-image {
  height: 172px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
}
.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
.service-card:hover::after { opacity: 1; }
.service-card-num {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 800;
  color: var(--green); letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: rgba(0,200,83,0.15);
  border-color: rgba(0,200,83,0.3);
}
.service-card-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px; line-height: 1.3;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(244,248,255,0.76);
  line-height: 1.9;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  color: var(--green);
  margin-top: 20px;
  text-decoration: none;
  transition: var(--transition);
  border: none; background: none; cursor: pointer;
}
.service-card-link:hover { gap: 10px; }

/* ═══ SECTION 3 — WHITE — VISION ═══ */
#section-vision {
  background: var(--white);
  padding: 100px 40px;
  position: relative;
}
.vision-inner { max-width: 1280px; margin: 0 auto; }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.vision-text-col {}
.vision-title-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(26px,3vw,42px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.vision-title-ar span { color: var(--green); }
.vision-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.vision-cards-col {
  display: flex; flex-direction: column; gap: 16px;
}
.vision-card {
  background: var(--white2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}
.vision-card:hover::before { transform: scaleY(1); }
.vision-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}
.vision-card-icon {
  font-size: 28px; flex-shrink: 0;
  margin-top: 2px;
}
.vision-card-content {}
.vision-card-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.vision-card-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.vision-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border-light);
}
.adv-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}
.adv-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.adv-icon { font-size: 26px; margin-bottom: 12px; }
.adv-title {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.adv-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ═══ CLIENTS STRIP ═══ */
#section-clients {
  background: var(--black3);
  padding: 68px 40px;
  overflow: hidden;
  position: relative;
}
#section-clients::before, #section-clients::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
}
#section-clients::before { left: 0; background: linear-gradient(90deg, var(--black3), transparent); }
#section-clients::after { right: 0; background: linear-gradient(-90deg, var(--black3), transparent); }
.clients-header {
  text-align: center; margin-bottom: 46px;
}
.clients-header p {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 24px rgba(0,200,83,0.18);
}
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-clients 34s linear infinite;
  will-change: transform;
}
.clients-loop {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline-end: 20px;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scroll-clients {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.client-chip {
  background: linear-gradient(135deg, rgba(0,200,83,0.18), rgba(2,136,209,0.22));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: rgba(244,248,255,0.92);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.client-chip:hover {
  color: var(--white);
  border-color: rgba(0,200,83,0.42);
  background: linear-gradient(135deg, rgba(0,200,83,0.26), rgba(2,136,209,0.3));
  transform: translateY(-2px);
}
.client-chip img {
  width: 78px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,0.94);
  padding: 4px;
  flex-shrink: 0;
}

/* ═══ CTA SECTION ═══ */
#section-cta {
  background: var(--dark-navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
#section-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.4), transparent);
}
#section-cta::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.2), transparent);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.cta-eyebrow {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  color: var(--green); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px;
  display: block;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.cta-title-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  direction: rtl;
  margin-bottom: 24px;
}
.cta-desc {
  font-size: 16px;
  color: var(--muted-on-dark);
  line-height: 1.75; max-width: 560px;
  margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,200,83,0.3);
}
.btn-cta-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,200,83,0.4);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px; font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-cta-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-wrap img {
  height: 52px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0,180,255,0.2));
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(244,248,255,0.72);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover { border-color: var(--green); background: rgba(0,200,83,0.08); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a, .footer-col-links button {
  font-size: 14px;
  color: rgba(244,248,255,0.68);
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  text-align: right;
  font-family: var(--font-body);
  transition: var(--transition);
  padding: 0;
}
.footer-col-links a:hover, .footer-col-links button:hover { color: var(--green); }
.footer-bottom {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}
.footer-copy span { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ═══ AOS OVERRIDES ═══ */
[data-aos] { transition-duration: 0.8s !important; }

/* ═══ UTILITIES ═══ */
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.dir-rtl { direction: rtl; }
.font-cairo { font-family: 'Cairo', sans-serif !important; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner { padding: 28px 24px 70px; }
  .hero-right { display: none; }
  .hero-top-row {
    transform: translateX(-10px);
    grid-template-columns: minmax(0, 1fr) auto;
    direction: ltr;
    gap: 26px;
  }
  .hero-logo-block { justify-self: end; }
  .hero-copy { text-align: right; justify-self: start; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-logo-img { max-width: min(38vw, 360px); height: clamp(130px, 18vw, 190px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vision-advantages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-wrap { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: center; padding: 0 20px; gap: 16px; }
  .nav-logo img { width: 118px; height: 38px; }
  .hero-top-row {
    transform: translateX(-6px);
    grid-template-columns: minmax(0, 1fr) auto;
    direction: ltr;
    gap: 12px;
  }
  .hero-logo-block { order: 0; justify-self: end; }
  .hero-copy { text-align: right; justify-self: start; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-logo-img { max-width: 30vw; height: 120px; }
  .hero-type-line { font-size: 20px; }
  .hero-desc { font-size: 15px; line-height: 1.8; }
  .services-grid { grid-template-columns: 1fr; }
  .quick-cards { grid-template-columns: 1fr; max-width: 400px; }
  .hero-stats { gap: 12px; flex-wrap: wrap; }
  .hero-stat-item { min-width: calc(50% - 8px); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .vision-advantages { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  #section-quick, #section-services, #section-vision, #section-cta { padding: 70px 20px; }
  footer { padding: 50px 20px 28px; }
}
@media (max-width: 480px) {
  .announcement-strip .strip-inner { gap: 8px; }
  .hero-top-row {
    transform: none;
    grid-template-columns: 1fr;
    direction: rtl;
    gap: 18px;
  }
  .hero-copy { text-align: center; justify-self: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-logo-block { margin-bottom: 0; }
  .hero-logo-block img { height: 136px; }
  .hero-desc { font-size: 16px; }
  .hero-type-line { font-size: 22px; }
  .hero-product-slider { height: 180px; border-radius: 18px; }
  .hero-slide span { right: 16px; bottom: 14px; }
  .hero-stat-item { min-width: 100%; }
  .navbar { top: 32px; }
  .navbar.scrolled { top: 0; }
}
