.header .logo {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    padding-right: 8rem;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
}
header.scrolled {
    background-color: #222;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* max-height: 40px; */
    
    z-index: 10;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #08C0F9;
}

/* .nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s ease;
    
} */

.nav-item:hover::after {
    width: 100%;
}

.header .custom-btn {
    padding: 1rem 1rem;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.3s ease;
}
.header .custom-btn:hover {
    color: #333;
    background: #ff9800;
}



.language-toggle {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    background: none;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    height: min-content;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.lang-btn.active {
    color: #fff;
    font-weight: bold;
    display: none;
}

.lang-btn:hover {
    color: #ff9800;
    border: 1px solid #ff9800;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: #888;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #222;
    padding: 4rem 1rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: -4rem;
    font-size: 2.5;
}

.mobile-nav-menu a{
    width: 100%;
    font-size: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.mobile-nav-item {
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eeeeee0a;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-language-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    /* border-top: 1px solid #eee; */
}

@media (max-width: 768px) {

    .nav-menu,
    .language-toggle {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}