/* Clients Section Styling */
.clients-section {
    padding: 20px 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);

}

.clients-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}
