/********** Template CSS **********/
:root {
    --primary: #198754;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

.navbar-dark {position: initial;}
.navbar-dark .navbar-nav .nav-link{color: var(--primary);}
.features_sec .service-item{background: #e0fff1;}
.cta-section{
    position:relative;
    padding:85px 0;
    overflow:hidden;

    background-image:url('../img/cta-bg.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    background-attachment:fixed; /* Parallax */
}

.cta-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.15);
    z-index:1;
}

.cta-section .container{
    z-index:2;
}

.vendor-carousel img{
    max-width:100%;
    max-height:90px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.3s;
    /*filter:grayscale(100%);*/
}

.vendor-carousel img:hover{
    /*filter:none;*/
    transform:scale(1.05);
}

#home-ngos .vendor-logo-item{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.logo-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.footer-logo-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    border:3px solid rgba(255,255,255,.2);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/*WhatsApp button styles*/
.wa-float{ position:fixed; width:45px; height:45px; bottom:20px; left:15px; z-index:100;}
a.wa-float:hover{color: #FFF;}
.my-float{margin-top:16px;}
.fd-float{ position:fixed; width:100px; height:106px; bottom:34px; left:0; z-index:100;}
.wa-float img, .fd-float img{height: 100%, width: auto;}

.page_shed{font-size: 1.5rem; font-weight: 700;}

/*Our clients*/
.client-card{
    border:1px solid #eee;
    background:#fff;
    border-radius:6px;
    padding:12px;
    height:220px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:0.3s;
}

.client-card:hover{
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo-img-box{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.client-logo{
    max-width:100%;
    max-height:100px;
    object-fit:contain;
    border:none !important;
    box-shadow:none !important;
}

.client-name{
    margin-top:10px;
    font-size:13px;
    font-weight:600;
    line-height:18px;
    color:#333;

    height:54px;
    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

    text-align:center;
    word-break:break-word;

    cursor:pointer;
}

.client-logo-box{
    margin-bottom:25px;
}

.pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    list-style:none;
    padding:0;
    margin-top:30px;
    margin-bottom:50px;
}

.pagination li a{
    display:block;
    padding:8px 14px;
    border:1px solid #ddd;
    color:#333;
    text-decoration:none;
    border-radius:4px;
}

.pagination li.active a{
    background:#198653;
    color:#fff;
    border-color:#198653;
}

.pagination li a:hover{
    background:#198653;
    color: #fff;
}