/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: #e5e5e5;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  /* Navigation */
  nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 255, 170, 0.1);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .logo {
    color: #00ffaa;
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #00ffaa;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    background-color: #1a1a1a;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 255, 170, 0.15);
    margin-bottom: 40px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    color: #00ffaa;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* Sections */
  section {
    max-width: 1000px;
    margin: 0 auto 40px auto;
  }
  
  section h2 {
    color: #00ffaa;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  section h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  section p {
    margin-bottom: 15px;
  }
  
  ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
  }
  
  ul li::before {
    content: "✔";
    color: #00ffaa;
    position: absolute;
    left: 0;
  }
  
  /* Service Cards */
  .service {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
  }
  
  .service h3 span {
    color: #00ffaa;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    color: #666;
    border-top: 1px solid #222;
  }
  
  footer a {
    color: #00ffaa;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 10px; /* shifted slightly in from the right edge */
      background-color: #0d0d0d;
      text-align: left;
      padding: 1px 1px;  /* 👈 space on sides + top/bottom */
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 255, 170, 0.15);
      min-width: 160px;  /* 👈 ensures width fits all links neatly */
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      padding: 10px 0;
    }
  
    .nav-links li a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s;
    }
  
    .nav-links li a:hover {
      color: #00ffaa;
      animation: slideFade 0.25s ease-in-out;
    }
  }

  @keyframes slideFade {
    0% {
      opacity: 0;
      transform: translateY(-8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  