*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body{
    font-family: 'poppins', cursive;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    min-height: 100vh;
}
  
.Navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px; 
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

.logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.nav-links li a {
    text-decoration: none;
    color: aqua;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
  }
  
  .nav-links li a:hover {
    color: #f0f0f0;
  }
