/* ===================================
   OUR CLIENTS SECTION
   =================================== */
.clients-section {
    background: #1a1a1a;
    padding: 55px 0px;
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-heading {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 30px !important;
    letter-spacing: 0.02em;
}

.clients-heading .highlight {
    color: #FF677E;
    font-weight: 500;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {

    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 115px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 103, 126, 0.2);
}

.client-card img {
    max-width: 100%;

    width: auto;
    height: auto;
    object-fit: contain;
}

/* Last row centered (2 items) */
.clients-grid .client-card:nth-last-child(-n+2) {
    grid-column: span 3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-grid .client-card:nth-last-child(-n+2) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }

    .clients-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-card {

        margin-bottom: 20px;
        min-height: 100px;
    }

    .client-card img {
        max-height: auto;
    }

    .clients-grid .client-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .client-card {
        margin-bottom: 20px;
        min-height: 80px;
    }

    .client-card img {
        max-height: auto;
    }
}