/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
nav {
  background-color: #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
  text-decoration: none;
}

nav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav .nav-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #00ffcc;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 10%, transparent 10.01%);
  background-size: 30px 30px;
  transform: rotate(45deg);
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 204, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 255, 204, 0.05) 50%, rgba(0, 255, 204, 0.05) 75%, transparent 75%, transparent);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #00ffcc;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #cccccc;
}

.cta-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  color: #0a0a0a;
  background-color: #00ffcc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00e6b8;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.services h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #00ffcc;
}

.service-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00ffcc;
}

.card p {
  font-size: 1rem;
  color: #cccccc;
}

/* Contact Form Section */
.contact-form {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.contact-form h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #00ffcc;
}

.contact-form p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #cccccc;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #cccccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #cccccc;
}

footer p {
  margin: 5px 0;
}