/* Global Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ffff;
}

nav a {
  color: #00ffff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffcc;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at 10% 20%, #00ffff 0%, transparent 70%);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.glow-button {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s;
}

.glow-button:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff;
}
.glow-button a:visited
 {
  color: #00ffff; /* Color for visited links */
}

/* Feature Cards */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00ffff;
}

.feature-cards {
  display: flex;
  text-align: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  align-content: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00ffff;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* Contact Form */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

#contact input, #contact textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  color: #888;
}
