.elementor-858 .elementor-element.elementor-element-2ec0adf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-bf6bb2d */body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0px;
}

.client-showcase-container {
    max-width: 1500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.client-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.client-filters select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.client-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.client-card:hover {
    transform: scale(1.05);
}

.client-card img {
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.client-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 0.9em; /* Reduced font size */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-card p {
    color: #666;
    font-size: 0.8em;
}

/* Existing styles for larger screens */
.client-filters {
    display: flex;
    gap: 10px; /* Adjust spacing as needed */
    margin-bottom: 20px; /* Adjust margin as needed */
}

.client-filters select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex-grow: 1; /* Allow selects to take equal width on larger screens */
}

/* Media query for smaller screens (e.g., tablets and phones) */
@media (max-width: 768px) {
    .client-filters {
        flex-direction: column; /* Stack filters vertically */
        gap: 18px; /* Adjust vertical spacing */
    }

    .client-filters select {
        width: 100%; /* Make selects take full width on smaller screens */
        flex-grow: 0; /* Reset flex-grow */
    }
}

/* Other existing styles for client cards, grid, etc. would remain *//* End custom CSS */