/* styles.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0f1a;
  color: white;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(12, 15, 26, 0.85);
  backdrop-filter: blur(10px);
}

.navbar .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.navbar .nav-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 40px 80px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-left {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #dbeafe;
}

.hero p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 30px;
}

.hero-buttons a {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-outline {
  background: white;
  color: #0c0f1a;
}

.btn-dark {
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.stat-box {
  position: absolute;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(6px);
  color: #e0f2fe;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}