:root {
    --primary: #0A84FF;
    --primary-dark: #0060C7;
    --accent: #00E5FF;
    --dark: #050D1A;
    --dark2: #0B1627;
    --text: #E8F0FF;
    --text-muted: #7A9BBF;
    --glass: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
  }
 
  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 100;
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 13, 26, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }
 
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }
 
  .logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(10,132,255,0.4);
  }
 
  .logo-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text);
  }
  .logo-text span { color: var(--primary); }
 
  nav { display: flex; align-items: center; gap: 8px; }
 
  nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
    letter-spacing: 0.3px;
  }
  nav a:hover {
    color: var(--text);
    background: var(--glass);
  }
 
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), #0073E6);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(10,132,255,0.35);
    transition: all 0.3s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10,132,255,0.5);
  }
 
  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
  }
 
  /* Animated background */
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(10,132,255,0.18) 0%, transparent 65%);
    animation: pulse 6s ease-in-out infinite;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 65%);
    animation: pulse 8s ease-in-out infinite reverse;
  }
 
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
  }
 
  /* Grid lines bg */
  .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(10,132,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,132,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
  }
 
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
 
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,132,255,0.12);
    border: 1px solid rgba(10,132,255,0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .badge::before { content: '✦'; font-size: 10px; }
 
  .hero-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
  }
 
  .hero-title .line-accent {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 480px;
    animation: fadeUp 0.8s ease 0.2s both;
  }
 
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }
 
  .btn-ghost {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: 50px;
    padding: 11px 26px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-ghost:hover {
    background: var(--glass);
    border-color: rgba(10,132,255,0.4);
    transform: translateY(-2px);
  }
 
  /* Hero visual side */
  .hero-visual {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    animation: float 5s ease-in-out infinite;
  }
 
  @keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-52%) translateX(-10px); }
  }
 
  .orbit-card {
    width: 320px; height: 320px;
    position: relative;
  }
 
  .orbit-ring {
    position: absolute; inset: 0;
    border: 1px dashed rgba(10,132,255,0.25);
    border-radius: 50%;
    animation: spin 20s linear infinite;
  }
  .orbit-ring:nth-child(2) {
    inset: 30px;
    border-color: rgba(0,229,255,0.15);
    animation-duration: 14s;
    animation-direction: reverse;
  }
 
  .orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    box-shadow: 0 0 60px rgba(10,132,255,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  }
 
  .orbit-dot {
    position: absolute;
    width: 36px; height: 36px;
    background: var(--dark2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(10px);
  }
  .orbit-dot:nth-child(3) { top: 0; left: 50%; transform: translateX(-50%); }
  .orbit-dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
  .orbit-dot:nth-child(5) { right: 0; top: 50%; transform: translateY(-50%); }
  .orbit-dot:nth-child(6) { left: 0; top: 50%; transform: translateY(-50%); }
 
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
 
  /* Stats bar */
  .stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2px;
    margin: 60px 60px 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
 
  .stat-item {
    flex: 1;
    padding: 28px 32px;
    text-align: center;
    border-left: 1px solid var(--glass-border);
    transition: background 0.3s;
  }
  .stat-item:last-child { border-left: none; }
  .stat-item:hover { background: rgba(10,132,255,0.08); }
 
  .stat-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
  }
 
  /* ===== SERVICES ===== */
  .services {
    padding: 100px 60px;
    position: relative;
  }
 
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
 
  .section-tag {
    display: inline-block;
    background: rgba(10,132,255,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
 
  .section-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
  }
 
  .section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }
 
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
 
  .service-card {
    background: var(--dark2);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
 
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.35s;
  }
 
  .service-card:hover {
    border-color: rgba(10,132,255,0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10,132,255,0.12);
  }
  .service-card:hover::before { opacity: 1; }
 
  .service-card.featured {
    background: linear-gradient(135deg, rgba(10,132,255,0.15), rgba(0,229,255,0.05));
    border-color: rgba(10,132,255,0.3);
    grid-column: span 1;
  }
 
  .card-icon {
    width: 56px; height: 56px;
    background: rgba(10,132,255,0.12);
    border: 1px solid rgba(10,132,255,0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.3s;
  }
  .service-card:hover .card-icon {
    background: rgba(10,132,255,0.2);
    transform: scale(1.1);
  }
 
  .card-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
  }
 
  .card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
  }
 
  .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(6px);
    transition: all 0.3s;
  }
  .service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
  }
 
  /* ===== CTA ===== */
  .cta {
    margin: 0 60px 100px;
    background: linear-gradient(135deg, rgba(10,132,255,0.2), rgba(0,229,255,0.08));
    border: 1px solid rgba(10,132,255,0.3);
    border-radius: 28px;
    padding: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .cta::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(10,132,255,0.3), transparent 70%);
    pointer-events: none;
  }
 
  .cta h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
  }
 
  .cta p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 36px;
    position: relative;
  }
 
  .cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
  }
 
  /* ===== FOOTER ===== */
  footer {
    background: var(--dark2);
    border-top: 1px solid var(--glass-border);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
 
  .footer-text {
    font-size: 14px;
    color: var(--text-muted);
  }
 
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--primary); }
 
  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
  margin-top: 60px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: rgba(10,132,255,0.35);
  transform: translateX(-6px);
  box-shadow: 0 10px 40px rgba(10,132,255,0.1);
}

.contact-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-card-info { flex: 1; }

.contact-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.contact-card-arrow {
  color: var(--primary);
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.contact-card:hover .contact-card-arrow { opacity: 1; }

.map-wrap {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-wrap iframe {
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

.map-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(10,132,255,0.4);
  transition: all 0.3s;
}
.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,132,255,0.5);
}

/* ===== SOCIAL BUTTONS ===== */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10,132,255,0.4);
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {

  /* Header */
  header {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
  }
  nav a {
    padding: 6px 10px;
    font-size: 12px;
  }
  .btn-primary {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 60px;
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    position: relative;
    left: auto; top: auto;
    transform: none;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    animation: none;
  }
  .orbit-card {
    width: 220px; height: 220px;
  }
  .orbit-center {
    width: 80px; height: 80px;
    font-size: 32px;
  }
  .orbit-dot {
    width: 28px; height: 28px;
    font-size: 12px;
  }

  /* Stats */
  .stats-bar {
    margin: 30px 20px 0;
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 45%;
    padding: 18px 10px;
    border-left: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .stat-num { font-size: 26px; }

  /* Services */
  .services {
    padding: 60px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section {
    padding: 60px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    height: 260px;
  }

  /* CTA */
  .cta {
    margin: 0 20px 60px;
    padding: 40px 24px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  footer {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-social { justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  /* Badge */
  .badge { font-size: 11px; }
}