.btn-custom {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}


.btn-custom :hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

.client-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.client-box img {
    max-width: 100%;
    height: auto;
}
.client-box.with-text {
    justify-content: flex-start;
}
.client-box.with-text img {
    max-width: 90px;
    margin-right: 15px;
}


.iit-bombay-txt {
    margin-top: 1rem;
    font-weight: 500;
    color: #0955a2;
    font-size: 30px;
}

.swarabharathi-txt {
    margin-top: 1rem;
    font-weight: 500;
    color: #f46a24;
    font-size: 25px;
}

.myfin-txt {
    margin-top: 1rem;
    font-weight: 500;
    color: #1a4338;
    font-size: 25px;
}