.elementor-103 .elementor-element.elementor-element-1819f0a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-103 .elementor-element.elementor-element-6c99435{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 40px) 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6c99435 *//* --- Header Variables --- */
:root {
    --f18-primary: #0F4C75;    /* Deep Blue */
    --f18-accent: #3282B8;     /* Lighter Blue */
    --f18-white: #ffffff;
    --f18-text: #333333;
    --header-height: 80px;
}

/* --- Base Header Structure --- */
.f18-header {
    background-color: var(--f18-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: var(--header-height);
    width: 100%;
    position: fixed; /* Sticky Header */
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, sans-serif;
    box-sizing: border-box;
}

.f18-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */
.f18-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--f18-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.f18-logo .highlight {
    color: var(--f18-accent);
}

/* --- Navigation --- */
.f18-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links, .nav-actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Text Links (Home, About...) */
.nav-item {
    text-decoration: none;
    color: var(--f18-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--f18-primary);
}

/* --- Action Buttons (The Forms) --- */
.f18-btn {
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevents text wrapping */
}

/* Employer Button (Outline) */
.btn-outline {
    color: var(--f18-primary);
    border: 2px solid var(--f18-primary);
    background: transparent;
}

.btn-outline:hover {
    background: #f0f8ff;
}

/* Employee Button (Filled) */
.btn-fill {
    color: white;
    background: var(--f18-primary);
    border: 2px solid var(--f18-primary);
    box-shadow: 0 4px 10px rgba(15, 76, 117, 0.2);
}

.btn-fill:hover {
    background: var(--f18-accent);
    border-color: var(--f18-accent);
    transform: translateY(-2px);
}

/* --- Mobile Toggle (Hamburger) --- */
.f18-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.f18-mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--f18-primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 992px) {
    .f18-mobile-toggle {
        display: flex;
    }

    .f18-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 0; /* More padding top/bottom */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        gap: 25px;
        
        /* Animation Logic */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

    .f18-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-item {
        font-size: 18px; /* Larger text for mobile */
        display: block;
        padding: 5px 0;
    }

    /* --- MOBILE BUTTON FIX --- */
    .nav-actions {
        flex-direction: column; /* Stack buttons vertically */
        width: 100%;
        gap: 15px; /* Space between buttons */
        margin-top: 10px;
    }

    .nav-actions li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .f18-btn {
        display: block;
        width: 85%;       /* Buttons take up 85% of screen width */
        max-width: 350px; /* But don't get too wide on tablets */
        text-align: center;
        padding: 14px 0;  /* Taller buttons for easy tapping */
        font-size: 16px;
    }
}/* End custom CSS */