.clients-page {
    padding: 60px 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-header h1 {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.clients-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* CLIENT CARD */
.client-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px; /* reduced from 30px */
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* LARGER LOGO */
.client-logo {
    width: 200px;   /* increased */
    height: 140px;  /* increased */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* PLACEHOLDER */
.client-logo.placeholder {
    background: #f8f8f8;
    border: 2px dashed #ddd;
    border-radius: 8px;
}

.client-logo.placeholder i {
    font-size: 55px; /* bigger icon */
    color: #ccc;
}

/* SMALLER TEXT */
.client-name {
    color: #1a1a1a;
    font-size: 16px; /* reduced */
    font-weight: 600;
    margin-bottom: 3px;
}

.client-location {
    color: #f4862a;
    font-size: 13px; /* reduced */
    font-weight: 500;
}

.clients-section-title {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f4862a;
    display: inline-block;
}

.trusted-by {
    text-align: center;
    margin-top: 60px;
    padding: 35px 0;
    background: #f8f8f8;
    border-radius: 15px;
}

.trusted-by h2 {
    color: #1a1a1a;
    font-size: 26px;
    margin-bottom: 10px;
}

.trusted-by p {
    color: #666;
    margin-bottom: 25px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #f4862a;
}

.stat-label {
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .clients-header h1 {
        font-size: 26px;
    }

    .client-logo {
        width: 170px;
        height: 120px;
    }

    .stats-container {
        gap: 25px;
    }

    .stat-number {
        font-size: 34px;
    }
}