* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  background-image:
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

.logo {
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.04),
      transparent 45%
    ),
    linear-gradient(to bottom, #000000, #0f0f0f);
  background-size: 200% 200%;
  animation: heroGlow 18s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #f5f5f5;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
}

.hero p {
  color: #9a9a9a;
  letter-spacing: 1.5px;
  font-size: 14px;
  text-transform: uppercase;
}

.section {
  padding: 140px 10%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.dark {
  background: #111;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  padding: 30px;
  border: 1px solid #222;
  transition: 0.3s;
}

.card:hover {
  border-color: #555;
  transform: translateY(-5px);
}

.brand-name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

footer {
  text-align: center;
  padding: 40px;
  background: #000;
  color: #666;

}

@keyframes heroGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  color: #d8d8d8;
}

/* ===== Global content clarity fix ===== */

body {
  color: #d8d8d8;
}

.section {
  position: relative;
  z-index: 2;
}

h1, h2, h3 {
  color: #f2f2f2;
}
