/* ============================================
   BRAND SECTION STYLES
   Original: From trusted brands section
   Optimized: Clean organization, no overlays
============================================ */

.pro-brand-section {
    background: #fff;
    padding: 25px 0;
}

.brand-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    text-align: center;
}

/* Main box container */
.brand-box {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 15px 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Carousel items */
.brand-carousel .brand-item {
    text-align: center;
    padding: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-carousel .brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Logo wrapper */
.brand-logo-wrap {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid #eee;
    background: transparent !important;
}

/* Logo image - force no filter/overlay */
.brand-logo-wrap img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.25s ease;
    filter: none !important;
    opacity: 1 !important;
}

.brand-item:hover img {
    transform: scale(1.08);
    filter: none !important;
    opacity: 1 !important;
}

/* Navigation buttons */
.brand-prev,
.brand-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.brand-prev:hover,
.brand-next:hover {
    background: #5fa30f;
    color: #fff;
    border-color: #5fa30f;
}

.brand-prev {
    left: 10px;
}

.brand-next {
    right: 10px;
}

.brand-prev i,
.brand-next i {
    font-size: 16px;
    color: #333;
}

/* Clean up any overlays */
.brand-carousel .owl-stage,
.brand-carousel .owl-stage .owl-item {
    background: transparent !important;
}

.brand-carousel .owl-item img {
    filter: none !important;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 576px) {
    .brand-box {
        padding: 10px 30px;
    }
    .brand-prev, .brand-next {
        width: 32px;
        height: 32px;
    }
    .brand-prev i, .brand-next i {
        font-size: 14px;
    }
    .brand-logo-wrap {
        width: 50px;
        height: 50px;
    }
    .brand-logo-wrap img {
        max-height: 40px;
    }
}