/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Code', monospace;
}

body {
  background: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #00ff99;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}
nav ul li a:hover, nav ul li a.active {
  color: #00ff99;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #0f0f0f, #1e1e1e);
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content span {
  color: #00ff99;
}
.hero-content .btn {
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #00ff99;
  color: #121212;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}
.btn:hover {
  background: #00cc7a;
  transform: scale(1.05);
}

/* Features */
.features {
  padding: 3rem 2rem;
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s;
}
.feature:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  padding: 3rem;
  text-align: center;
  background: #0f0f0f;
}

/* Page Headers */
.page-header {
  padding: 3rem;
  text-align: center;
  background: #1e1e1e;
}

/* Contact Form */
.contact-form {
  padding: 2rem;
  display: flex;
  justify-content: center;
}
.contact-form form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
}
.contact-form button {
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #1e1e1e;
  margin-top: 2rem;
}
