.language-flag {
    width: 24px;
    height: 18px;
    margin-right: 8px;
}

/* Make the navigation container a flexbox */
.navigation-portrait {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Keep the language dropdown and header button aligned at the top */
.nav-header,
.nav-menus-wrapper,
.dropdown,
.button-box {
    order: 0;
}

/* Add a proper layout for mobile screens */
@media (max-width: 990px) {
    .nav-header {
        display: flex;
        justify-content: space-between;
    }

    .nav-menus-wrapper {
        margin-top: 30px;  /* Space between menu and header */
    }

    /* Adjust the dropdown and button to fit better */
    .dropdown, .button-box {
        margin-top: 30px;
    }

    .button-box {
        position: absolute;
        bottom: 20px; /* Keep it above the footer */
        width: 100%;
    }
}




/* Add WA floating button CSS */
.floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.floating:hover {
    background-color: #1ebc5b; /* Slightly darker shade of green */
    color: #fff;
}

.fab-icon {
    margin-top: 16px;
}