@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

:root {
  --bg: #0b0e12;
  --primary: #00aef0;
  --secondary: #6a5acd;
  --text: #e2e8f0;
  --muted: #a0aec0;
  --card: #121722;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
}

/* رأس الموقع */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 14, 20, 0.9);
  border-bottom: 1px solid #1f2633;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.navbar img {
  width: 36px;
}

.navbar nav a {
  margin: 0 15px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.navbar nav a:hover {
  color: var(--primary);
}

/* القسم الرئيسي */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #10151f 0%, #0b0e12 100%);
  position: relative;
}
.hero .glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(circle, rgba(0,174,255,0.3), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}
.hero h1 {
  font-size: 2.2em;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero p {
  font-size: 1.1em;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.btn.primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
}
.btn.primary:hover {
  opacity: 0.85;
}

/* المميزات */
.container { max-width: 1100px; margin: auto; padding: 60px 20px; }
.features h2, .about h2, .contact h2 {
  text-align: center;
  font-size: 1.8em;
  color: var(--primary);
  margin-bottom: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1f2633;
  text-align: center;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-6px); }
.card h3 { color: var(--secondary); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95em; }

/* من نحن */
.about p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
  text-align: center;
}

/* اتصل بنا */
.contact p {
  text-align: center;
  color: var(--muted);
  margin: 8px 0;
}

/* التذييل */
.footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1f2633;
  font-size: 0.9em;
  color: var(--muted);
}
