body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
header nav .logo img{
    width: 90px;
    height: auto;
}
header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Beautiful metallic hover effect matching your button style */
header nav ul li a:hover {
    color: #111;
    font-weight: 600;
    background: linear-gradient(145deg, #d7d7d7, #b0b7c0, #f0f0f0);
    border: 1px solid #888;
    box-shadow: 
        inset 1px 1px 2px rgba(255,255,255,0.6),
        inset -2px -2px 4px rgba(0,0,0,0.3),
        0 4px 10px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

/*==================right-side====================*/
header nav .right-side .nav-icons a{
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.5s ease;
}
header nav .right-side .nav-icons a:hover{
    transform: scale(1.1);
}
/* header nav .right-side .nav-icons .account{
    border: 1px solid #ff6347;
    padding: 5px;
}
header nav .right-side .nav-icons .account:hover{
    background-color: #ff634754;
}
header nav .right-side .nav-icons .login-button{
    border: 1px solid #05f651;
    padding: 5px;
}
header nav .right-side .nav-icons .login-button:hover{
    background-color: #05f65133;
} */

header nav .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
header nav .nav-icons a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    transition: color 0.3s ease;
}

/* header nav .nav-icons a .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
} */

/* Hide burger by default */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
.right-side {
    display: flex;
    align-items: center;
    gap: 15px; /* space between icons and burger */
}

/* Responsive styles */
@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 65px; /* height of header */
        right: 0;
        width: 100%;
        background: #333333cd;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-radius: 10px;
        display: none; /* hidden by default */
    }

    .nav-links.show {
        display: flex; /* show when toggled */
    }

    header nav {
        position: relative;
    }
}