:root {
    --main-color: rgb(119, 195, 107);
    --second-color: #45494c;
}
body,
body * {
    color: var(--second-color) !important;
}

/*--------------------------global  styling ------------------------ */
.second-color {
    color: var(--second-color) !important;
}
.main-color {
    color: var(--main-color) !important;
}

/*--------------------------end global  styling ------------------------ */

/*-------------------------- Navbar styling ------------------------ */
.navbar {
}

/* Mobile dropdown button */
#mobileDropdownBtn {
    background-color: var(--main-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 8px 20px !important;
}

#mobileDropdownBtn i {
    font-size: 20px !important;
}

/* Mobile dropdown menu */
.custom-dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    padding: 0.5rem;
    margin: 0;
    z-index: 1000;
    background: transparent;
    width: auto;
    border: none;

    /* Flex for mobile layout */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dropdown items */
.custom-dropdown-menu .dropdown-item {
    background-color: var(--main-color);
    color: #fff;
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    width: max-content;
}

/* Dropdown item icons */
.custom-dropdown-menu .dropdown-item i {
    margin-right: 0.5rem;
}

/* Left/right positioning */
.dropdown-left {
    right: -100px;
    top: 35px;
}

.dropdown-right {
    left: -159px;
    top: 10px;
}

/* Mobile language button */
#mobileDropdownMenu a.dropdown-item:first-child {
    background-color: var(--second-color) !important;
    color: white !important;
    border-radius: 8px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Globe icon */
.fa-globe {
    color: white !important;
    font-size: 20px !important;
}

/* Language toggle button */
.lang-switcher {
    background-color: var(--second-color) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px !important;
}

/* Site title and login button */
.pos,
.login {
    color: white !important;
    background-color: var(--main-color) !important;
    padding: 8px 28px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
}
@media (min-width: 992px) {
    .navbar {
        position: absolute; /* Overlay content */
        top: 0; /* Stick to top */
        left: 0; /* Start from left edge */
        width: 100%; /* Full width */
        z-index: 1050; /* Ensure it stays above other content */
    }
}

/*-------------------------- End Navbar styling ------------------------ */
/*-------------------------- hero  styling ------------------------ */
.hero-title {
    color: var(--second-color) !important;
    font-size: 31px !important;
}

/*--------------------------end hero  styling ------------------------ */

/*-------------------------- about styling ------------------------ */

/*-------------------------- end about styling ------------------------ */
