/* Base Styling */
.ngo-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ngo-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.ngo-logo-img {
    height: 60px;
}

/* Desktop Menu */
.ngo-menu-center {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ngo-menu-center li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.ngo-menu-center li a:hover {
    color: #ff0af3;
        
}
.ngo-navbar-right{
    display: flex;
}
.language-switcher a {
    font-weight: bold;
    color: #222;
    padding: 4px 8px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
}
.language-switcher{
  padding: 10px 10px;
}

.language-switcher a.active-lang {
    background: #f0c040;
    color: #000;
}

.language-switcher a:hover {
    background-color: #ffe08a;
    color: #000;
}

.mobile-lang-switch {
    margin-top: 10px;
    text-align: center;
}


/* Donate Button */
.ngo-donate-btn {
    background-color: #fa00cc;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.ngo-donate-btn:hover {
    background-color: #eede05;

}

/* Hamburger */
.ngo-hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: 20px;
}

/* Mobile Menu */
.ngo-mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.ngo-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ngo-mobile-menu ul li {
    margin: 15px 0;
}

.ngo-mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

/* Mobile Donate */
.ngo-donate-btn-mobile {
    display: inline-block;
    margin-top: 10px;
    background-color: #eede05;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

/* Toggle Active Class */
.ngo-mobile-menu.active {
    display: flex;
}

/* Responsive Rules */
@media screen and (max-width: 768px) {
    .ngo-menu-center,
    .ngo-donate-btn {
        display: none;
    }

    .ngo-hamburger {
        display: block;
    }
}
