.client-card {
    height: 100%;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 0;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.client-logo {
    width: 80px;
    height: auto;
}

.gradient-1 {
    background: linear-gradient(180deg, #E6EBFE 20%, #ffffff 80%)
}

.badge-sap{
    background-color: #DBEAFE;
    color: #2647B2;
}

.badge-it {
    background-color: #F3E8FF;
    color: #6E25AA;
}

.client-card .badge {
    font-size: 0.75rem;
    padding: 0.65em 0.9em;
    border-radius: 25px;
    display: inline-block;
}

.client-card .text-muted.small {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.logo-square {
    width: 70px;
    height: 70px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.client-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.client-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    /* text-align: justify; */
}

@media (max-width: 768px) {
    .client-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}