/* Header */
header {
    background: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    z-index: 1100; /* Ensure logo stays above mobile menu */
  }

  .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
  }

  nav a:hover {
    color: #007bff;
  }

  /* Hamburger menu - hidden by default */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1100; /* Above mobile menu */
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
  }

  /* Mobile menu styles */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #1a1a1a;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 0;
      margin: 0;
    }

    .nav-links.active {
      left: 0;
    }

    .nav-links li {
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.4s ease;
    }

    .nav-links.active li {
      opacity: 1;
      transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) {
      transition-delay: 0.1s;
    }
    .nav-links.active li:nth-child(2) {
      transition-delay: 0.2s;
    }
    .nav-links.active li:nth-child(3) {
      transition-delay: 0.3s;
    }
    .nav-links.active li:nth-child(4) {
      transition-delay: 0.4s;
    }
    .nav-links.active li:nth-child(5) {
      transition-delay: 0.5s;
    }
  }

  @media (max-width: 480px) {
    .logo {
      font-size: 20px;
    }

    .logo-circle {
      width: 30px;
      height: 30px;
    }
  }

  /* Footer */
  
      /* Footer */
      footer {
        background: #1a1a1a;
        color: white;
        padding: 60px 0 20px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-section h3 {
        margin-bottom: 20px;
        font-size: 1.3rem;
        font-weight: 600;
      }

      .footer-section p,
      .footer-section a {
        color: #ccc;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
      }

      .footer-section a:hover {
        color: #007bff;
      }

      .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        color: #999;
      }
