@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


.site-header {
    width: 100%;
    background: transparent;
}


.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #17233c;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #4c5870;
    font-size: 18px;
}

.nav-links a:hover {
    color: #347ff5;
}

/* ========================= DESKTOP NAVBAR ========================= */ .navbar { display: flex !important; align-items: center !important; justify-content: space-between !important; } .nav-links { display: flex !important; align-items: center !important; gap: 30px !important; list-style: none !important; margin: 0 !important; padding: 0 !important; } .nav-links li { display: block !important; } .nav-links a { text-decoration: none !important; } /* Hide burger on desktop */ .burger { display: none !important; } .burger-menu { display: none !important; } /* ========================= MOBILE ========================= */ @media (max-width: 768px) { /* Hide normal navigation */ .nav-links { display: none !important; } /* Show burger */ .burger { display: block !important; margin-left: auto !important; background: none !important; border: none !important; font-size: 28px !important; cursor: pointer !important; } /* Burger dropdown */ .burger-menu { display: none !important; width: 100% !important; padding: 20px 0 !important; text-align: center !important; background: white !important; } .burger-menu.active { display: block !important; } .burger-menu a { display: block !important; padding: 12px !important; text-decoration: none !important; color: #222 !important; } .burger-menu a:hover { color: var(--blue) !important; } }