    /* ===== Client Section ===== */
    .client-section {
        padding: 50px 0;
        background-color: #ffffff;
    }

    /* Header */
    .client-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .client-header h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
    }
    .client-header p {
        font-size: 1.1rem;
        color: #666;
    }

    /* Grid Columns */
    #clients-row .col {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* Client Card */
    .client-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        width: 100%;
        max-width: 220px;
        height: 200px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    /* Client Logo */
    .client-logo {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
        margin-bottom: 10px;
    }

    /* Client Name */
    .client-card p {
        margin: 0;
        font-weight: 600;
        color: #333;
        font-size: 1rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .client-card { max-width: 180px; height: 180px; }
        .client-logo { max-height: 70px; }
    }

    @media (max-width: 576px) {
        .client-card { max-width: 150px; height: 160px; }
        .client-logo { max-height: 60px; }
    }
