.navbar-brand {
    display: flex;
    align-items: center;
    /* vertically align image + text */
    gap: 10px;
    /* space between logo and text */
    text-decoration: none;
}

.navbar-brand img.logo-display {
    height: 45px;
    /* Adjust height to match the screenshot */
    width: auto;
}

.navbar-brand h2 {
    font-size: 32px;
    /* bold, bigger font like your screenshot */
    margin: 0;
    padding: 0;
    font-weight: 700;
    /* bold text */
    color: #000;
    /* black text */
}

/* FORCE NAVBAR TO DISPLAY FLEX (OVERRIDE ANY THEME) */
#navbar-menu .navbar-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
}

/* FORCE DONATE BUTTON TO BE VISIBLE */
#navbar-menu .donate-btn-nav {
    display: block !important;
}

#navbar-menu .donate-now-btn {
    background: #bf3654 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FIX IF ANOTHER STYLESHEET HIDES <li> OR <a> */
#navbar-menu li.donate-btn-nav,
#navbar-menu li.donate-btn-nav a {
    float: none !important;
    position: relative !important;
    z-index: 99999 !important;
}

/* FIX NAVBAR HEIGHT SO BUTTON DOESN’T GET CUT */
.navbar,
.navbar-header,
#navbar-menu {
    min-height: 80px !important;
}


.clients-items .single-item {
    width: 180px;
    /* same width for all items */
    height: 120px;
    /* same height for all items */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-items .single-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* keeps logo ratio */
    object-position: center;
    padding: 10px;
    /* give space inside */
    background: white;
    /* optional: clean bg */
}

footer {
    background: #111418;   /* dark footer */
    position: relative;
}

/* Ensure proper row alignment */
footer .f-items {
    display: flex;
    flex-wrap: wrap;
}

/* Fix column spacing */
footer .f-items {
    display: flex;
    justify-content: space-between; /* EVEN spacing */
    align-items: flex-start;
    gap: 60px;                      /* space between the two blocks */
}


footer.default-padding-top {
    padding-bottom: 40px;   /* controlled bottom spacing */
}

footer .f-item.link ul {
    padding-left: 0;
    list-style: none;
}

footer .f-item.link ul li {
    margin-bottom: 12px;
}

footer .f-item.link ul li a {
    color: #cfd3d8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    text-decoration: none;
}

footer .f-item.link ul li a:hover {
    color: #bf3654;   /* matches Donate button */
    padding-left: 5px;
}

footer .f-items .col-md-5 {
    flex: 0 0 45%;   /* About Us */
    max-width: 45%;
}

footer .f-items .col-md-3 {
    flex: 0 0 35%;   /* Quick Links */
    max-width: 35%;
}

footer .container {
    max-width: 1200px;
}

footer .f-item.link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    column-gap: 30px;
    row-gap: 12px;
    padding-left: 0;
    list-style: none;
}


/* ================================
   FOOTER RESPONSIVE FIX
   ================================ */

/* Tablets & below */
@media (max-width: 768px) {

    footer .f-items {
        gap: 30px;
    }

    footer .f-items .col-md-5,
    footer .f-items .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    footer .f-item.link ul {
        grid-template-columns: repeat(2, 1fr);
    }

     #navbar-menu {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    #navbar-menu .navbar-nav {
        display: block !important;   /* 🔥 KEY FIX */
        width: 100%;
        padding: 10px 30px;
    }

    #navbar-menu .navbar-nav > li {
        float: none;
        width: 100%;
    }

    #navbar-menu .navbar-nav > li > a {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    /* Dropdown fix */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none;
    }

    /* Donate button fix */
    .donate-btn-nav {
        padding: 10px 15px;
    }

    .donate-now-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Mobile phones */
@media (max-width: 430px) {

    /* Stack footer columns */
    footer .f-items {
        flex-direction: column;
        gap: 35px;
    }

    /* About + Quick Links full width */
    footer .f-items .col-md-5,
    footer .f-items .col-md-3 {
        width: 100%;
        max-width: 100%;
    }

    /* 🔴 MAIN FIX: Quick Links ONE column */
    footer .f-item.link ul {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    footer .f-item.link ul li a {
        font-size: 14px;
    }

    footer .f-item h4,
    footer .f-item h5 {
        margin-bottom: 15px;
    }
}


/* ===============================
   FOOTER FIX FOR SMALL SCREENS
   =============================== */

@media (max-width: 430px) {

    /* Stack footer columns */
    footer .f-items {
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Full width for all footer columns */
    footer .f-items .col-md-5,
    footer .f-items .col-md-3,
    footer .f-items [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* FIX QUICK LINKS (right side / 6 section) */
    footer .f-item.link ul {
        display: block !important;   /* disable grid */
    }

    footer .f-item.link ul li {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* Improve touch spacing */
    footer .f-item.link ul li a {
        font-size: 15px;
        display: block;
    }

}
