﻿/* --------------- Clients Section --------------- */
.clients-section {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.clients-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003b5c;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

    .clients-logos img {
        max-width: 140px;
        max-height: 60px;
        opacity: 0.8;
        transition: transform 0.3s ease, opacity 0.3s ease;
        filter: grayscale(100%);
    }

        .clients-logos img:hover {
            transform: scale(1.05);
            opacity: 1;
            filter: none;
        }
