/* Our Clients Section */
.our-clients {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.our-clients h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.client {
    width: 180px;
    text-align: center;
}

.client img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.client p {
    font-size: 18px;
    color: #555;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .client {
        width: 100%;
    }
}
