header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 80px;
    margin-right: 80px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #00000052;
    text-decoration: none;
    font-size: 20px;
}


.logo {
    font-size: 36px;
}

#nav-logo1 {
    background: -webkit-linear-gradient(#132128, #041738);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#nav-logo2 {
    background: -webkit-linear-gradient(#80A4C6, #065679);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar button {
    width: 113px;
    height: 44px;
    border-radius: 25px;
    background: #00316D;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFFCC;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: none;
    background: transparent !important;
    border: none !important;
    font-size: 25px !important;
    cursor: pointer;
    color: #00316D;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {

    .navbar {
        padding: 10px;
        margin-left: 15px;
        margin-right: 15px;
        position: relative;
    }

    .logo {
        font-size: 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
    }

    .sign-in-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }
}