/* ============================================================
   Custom styles — Easy Rent It
   ============================================================ */

/* --- Who's Using section ---------------------------------- */
.section-clients {
    background: #fff;
}

.card-client {
    border: 1px solid #e8eef4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,69,101,0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card-client:hover {
    box-shadow: 0 6px 24px rgba(0,161,237,0.15);
    transform: translateY(-3px);
}

.card-client .card-screenshot {
    overflow: hidden;
    border-bottom: 1px solid #e8eef4;
    aspect-ratio: 16 / 10;
    background: #f0f5f8;
}

.card-client .card-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-client:hover .card-screenshot img {
    transform: scale(1.03);
}

.card-client .card-body {
    padding: 1rem 1.1rem 1.1rem;
}

.card-client .card-body h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #004565;
    margin-bottom: 0.25rem;
}

.card-client .card-body .btn-outline-primary {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
}
