/* Responsive Menu Styles */
.responsive_menu {
    display: none;
}

/* Show responsive menu on mobile and tablet */
@media (max-width: 1024px) {
    .menu_logo {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .responsive_menu {
    display: block;
} 

    .menu_logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 20px;
        background: var(--ink);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .responsive_logo img {
        height: 40px;
        width: auto;
    }

    .open_menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--teal-dim);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid var(--teal-dim);
    }

    .open_menu:hover {
        background: var(--teal);
        border-color: var(--teal);
    }

    .open_menu svg {
        width: 24px;
        height: 24px;
        fill: var(--teal);
        transition: fill 0.3s;
    }

    .open_menu:hover svg {
        fill: var(--ink);
    }

    .side_menu {
        position: fixed;
        top: 0;
        right: -340px;
        width: 340px;
        height: 100%;
        background: #131829;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        padding: 25px;
        overflow-y: auto;
        border-left: 1px solid var(--border);
    }

    .side_menu.active {
        right: 0;
    }

    .close_menu {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #ffff;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid rgb(255 255 255 / 8%);
    }

    .close_menu:hover {
        background: #00c2a8;
        border-color: #00c2a8;
        color: #fff;
    }

    .close_menu svg {
        width: 20px;
        height: 20px;
        fill: var(--slate);
        transition: fill 0.3s;
    }

    .close_menu:hover svg {
        fill: var(--ink);
    }

    .side_form {
        display: flex;
        align-items: center;
        margin: 60px 0 25px;
        padding: 12px 16px;
        background: #1b2236;
        border: 1px solid var(--border);
        border-radius: 10px;
        transition: border-color 0.3s;
    }

    .side_form:focus-within {
        border-color: var(--teal);
    }

    .side_form button {
        background: none;
        border: none;
        cursor: pointer;
        margin-right: 12px;
        display: flex;
        align-items: center;
    }

    .side_form button svg {
        width: 18px;
        height: 18px;
        fill: antiquewhite;
    }

    .side_form input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        font-size: 14px;
        color: var(--white);
        font-family: 'Outfit', sans-serif;
    }

    .side_form input::placeholder {
        color: var(--slate);
    }

    .side_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side_menu ul li {
        margin-bottom: 4px;
    }

    .side_menu ul li a {
        display: flex;
        align-items: center;
        padding: 10px 8px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        font-family: 'Outfit', sans-serif;
        border-radius: 8px;
        transition: all 0.3s;
        border: 1px solid transparent;
    }

    .side_menu ul li a:hover {
        background: var(--teal-dim);
        color: #00c2a8;
        border-color: var(--teal-dim);
        transform: translateX(5px);
    }

    .side_menu ul li a::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--teal);
        border-radius: 50%;
        margin-right: 12px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .side_menu ul li a:hover::before {
        opacity: 1;
    }

    .side_auth_buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid var(--border);
    }

    .side_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        font-family: 'Outfit', sans-serif;
        transition: all 0.3s;
        text-align: center;
    }

    .side_btn_ghost {
        background: transparent;
        color: var(--slate);
        border: 1px solid var(--border);
    }

    .side_btn_ghost:hover {
        background: var(--teal-dim);
        color: var(--teal);
        border-color: var(--teal-dim);
    }

    .side_btn_teal {
        background: var(--grad-teal);
        color: var(--ink);
        border: none;
        font-weight: 600;
    }

    .side_btn_teal:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px var(--teal-glow);
    }

    .responsive_overly {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(12, 15, 26, 0.8);
        backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .responsive_overly.active {
        opacity: 1;
        visibility: visible;
    }
    .side_auth_buttons .btn {justify-content: center;}
    
    

.side_auth_buttons a {
    justify-content: center;
}
.announce {
    display: none;
}

header.site-header {
    display: none;
}

    .menu_logo a.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

d {
}

.brand-mark {
    width: 33px;
    height: 33px;
    background: #03c1a8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 20px;
}

.menu_logo a.brand small {
    display: block;
    line-height: 1;
    font-size: 11px;
}

.res_block {
    display: block;
}

.job-card {
    margin-bottom: 20px;
}
}

/* Hide main nav on mobile/tablet when responsive menu is active */
@media (max-width: 1024px) {
    #top-nav {
        display: none;
    }
}




    .close_menu:hover svg
    
    .close_menu:hover svg {
    fill: #000;
}

.close_menu svg {
    fill: #000 !important;
#000:;
}