:root {
    --white: #ffffff;
    --primary-color: #0066ff;
    --accent-color: #0044cc;
    --text-color: #333;
}

/* Base Header Styles */
.header_home {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.container_home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav_home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo_home {
    display: flex;
    align-items: center;
}

.logo_home img {
    height: 40px;
    margin-right: 10px;
}

.logo_text_home {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav_links_home {
    display: flex;
    gap: 30px;
}

.nav_link_home {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav_link_home:hover {
    color: var(--primary-color);
}

.cta_button_home {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.cta_button_home:hover {
    background-color: var(--accent-color);
}

/* Hamburger Button */
.mobile_menu_button_home {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu_icon_home {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
}

.menu_icon_home:before,
.menu_icon_home:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.menu_icon_home:before {
    top: -8px;
}

.menu_icon_home:after {
    top: 8px;
}
.nav_content_home{
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo_text_home {
        display: none;
    }

    /* Hide top nav links in mobile */
    .nav_home > .nav_links_home {
        display: none;
    }

    .mobile_menu_button_home {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta_button_home {
        position: absolute;
        right: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Hamburger animation */
    .nav_home.menu-open .menu_icon_home {
        background-color: transparent;
    }

    .nav_home.menu-open .menu_icon_home:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav_home.menu-open .menu_icon_home:after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Mobile Drawer */
    .nav_content_home {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    .nav_home.menu-open .nav_content_home {
        right: 0;
    }

    .nav_content_home .nav_links_home {
        display: flex;
        flex-direction: column;
    }

    .nav_content_home .nav_link_home {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #f1f1f1;
    }
}
