﻿
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}



.brand-img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Reduce height on mobile screens */
@media (max-width: 575.98px) {
    .brand-img {
        height: 100px;
    }
}



.brand-box {
    text-align: center;
}


    .brand-img:hover {
        border-color: #bbb;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }
.brand-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .brand-scroll-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
