/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
}
h1, h2, h3, p {
  margin: 0 0 15px;
}
.btn {
  background: #0ff;
  color: #111;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.btn:hover {
  background: #08c;
  color: #fff;
}
/* Navigation */
.navbar {
  background: #111;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #0ff;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.navbar .nav-links li a:hover, .navbar .nav-links li a.active {
  color: #0ff;
}
/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.hero h1 {
  font-size: 3em;
  color: #0ff;
}
.hero p {
  max-width: 600px;
}
/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
}
.feature-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.feature-box h2 {
  color: #0ff;
}
/* Contact Page */
.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.form-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  width: 400px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.form-card h2 {
  margin-bottom: 10px;
  color: #0ff;
}
.form-card p {
  color: #eee;
  margin-bottom: 20px;
}
.form-card input, .form-card textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
}
.form-card .btn {
  background: #0ff;
  color: #111;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.form-card .btn:hover {
  background: #08c;
  color: #fff;
}