/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Navbar Container */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  /* Logo Styles */
  .logo img {
    height: 70px;
    width: auto;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    justify-content: flex-start;
  }
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: rgba(255, 204, 0, 0.8);
  }
  
  /* Menu Toggle (Hamburger Icon) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  
  .bar {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      width: 100%;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 15px 0;
      text-align: center;
    }
  
    .menu-toggle {
      display: flex;
    }
  }
  