body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0b0b0c;
  color: #fff;
}

a {
  text-decoration: none;
}

/* Nav */
.navbar {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #00ffe5;
}

nav a {
  color: #ccc;
  margin-left: 2rem;
  font-weight: 600;
}

nav a:hover {
  color: #00ffe5;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(#101820, #000);
}

.hero h1 {
  font-size: 2.5rem;
  color: #00ffe5;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #aaa;
}

.btn {
  background-color: #00ffe5;
  color: #000;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background-color: #00e6d1;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Tools */
.tools {
  padding: 3rem 2rem;
  background: #121212;
  text-align: center;
}

.tools h2 {
  font-size: 1.8rem;
  color: #00ffe5;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 0 10px #00ffe520;
  transition: 0.3s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px #00ffe5aa;
}

.tool-card h3 {
  color: #00ffe5;
}

/* Contact & Partner */
.contact, .partner {
  padding: 2rem;
  background: #0b0b0c;
  text-align: center;
}

.contact a, .partner a {
  color: #00ffe5;
  font-weight: bold;
}

.contact a:hover, .partner a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  background: #0b0b0c;
}
/* Hero Video Background */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  color: #00ffe5;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
  color: #ccc;
}

