/* ============================================
   BRANDS SECTION - SINGLE ROW
   ============================================ */

.brands-section {
    padding: 60px 20px;
    background: #fff;
}

.brands-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

/* Single Row Container */
.brands-single-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Brand Circle */
.brand-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
}

.brand-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 123, 216, 0.2);
    border-color: #8b7bd8;
}

.brand-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1400px) {
    .brand-circle {
        width: 80px;
        height: 80px;
    }

    .brands-single-row {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .brand-circle {
        width: 70px;
        height: 70px;
    }

    .brands-single-row {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .brands-single-row {
        gap: 10px;
    }

    .brand-circle {
        width: 60px;
        height: 60px;
    }
}