/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: black;
  }
  
  /* Navbar Styles */
  /*.navbar {
    position: fixed;
    margin-bottom: 20px;
  padding: 10px 20px;

    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
     border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(247, 248, 248, 0.729);
    padding: 0px 0px;
    z-index: 999;
  }*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin-bottom: 20px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(247, 248, 248, 0.729);
  
}









  /* Logo + Name */
  .logo-name {
    display: flex;
    align-items: center;
  }
  
  .logo {
    
    height: 62px;
    width: auto;
    margin-right: 10px;
    
  }
  
  .brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #f5f2f2;
  }
  
  /* Nav Links */
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #f2f1f1;
    padding: 6px 12px;
    transition: all 0.5s ease;
    font-weight: bold;
  }
  
  .nav-links li a:hover {
    background-color: #00f7ff;
    border-radius: 6px;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(244, 243, 243, 0.602);
  }
  
  /* Hamburger (Mobile) */
  .hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    user-select: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 30px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      padding: 15px;
      width: 220px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }
  

