:root {
  --primary-color: #00ff9d;
  --secondary-color: #ff00ff;
  --accent-color: #00ffff;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --text-color: #ffffff;
  --neon-glow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color),
    0 0 30px var(--primary-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Share Tech Mono", monospace;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: var(--neon-glow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, var(--darker-bg), var(--dark-bg));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        90deg,
        transparent 1px,
        rgba(0, 255, 157, 0.1) 1px
      )
      0 0 / 20px 20px,
    linear-gradient(0deg, transparent 1px, rgba(0, 255, 157, 0.1) 1px) 0 0 /
      20px 20px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--accent-color);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--darker-bg);
}

.services h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(10, 10, 10, 0.8);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 157, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Workflow Section */
.workflow {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.workflow h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-content {
  background: rgba(10, 10, 10, 0.8);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  position: relative;
  width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--neon-glow);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -40px;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--darker-bg);
}

.about h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 50px;
}

.about-text {
  width: 100%;
  text-align: center;
}

.about-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-details {
  margin-top: 40px;
  text-align: left;
}

.about-details h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 30px 0 15px;
  text-shadow: var(--neon-glow);
  text-align: center;
}

.about-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-details ul {
  list-style: none;
  margin: 15px 0 25px;
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

.about-details ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about-details ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1.4;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  min-width: 150px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.contact h2 {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: var(--text-color);
  font-family: "Share Tech Mono", monospace;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: var(--neon-glow);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: var(--neon-glow);
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  padding: 50px 0 20px;
  border-top: 1px solid var(--primary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu i {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .about-content {
    padding: 0 20px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .timeline-content::before {
    left: -40px !important;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-details h3 {
    font-size: 1.5rem;
  }

  .about-details p {
    font-size: 1rem;
  }

  .about-details ul li {
    font-size: 1rem;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 100%;
    max-width: 300px;
  }
}
