/* Brand Logo Styling for Consistent Display */
.brand-two__img {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-two__img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-two__img img,
.client-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
    transform: scale(1.4) !important;
    transition: transform 0.3s ease;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.brand-two__img img {
    display: block;
    margin: 0 auto;
    filter: brightness(1.05);
    opacity: 1;
    transition: box-shadow 0.3s, filter 0.3s;
    background: transparent;
    border-radius: 4px;
}

/* Ensure carousel items have enough space */
.brand-two__carousel .item {
    padding: 10px;
}

/* Make sure all carousel slides maintain consistent spacing */
.brand-two__single {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.brand-two__single a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 10;
    text-decoration: none;
}

.brand-two__img, .brand-two__single {
    pointer-events: auto;
}



/* Ensure carousel is responsive */
@media (max-width: 767px) {
    .brand-two__img,
    .client-item {
        height: 80px;
        width: 140px;
        margin: 0 auto;
        padding: 5px !important;
    }
    .brand-two__img img,
    .client-item img {
        width: 100% !important;
        height: 100% !important;
        transform: scale(1.5) !important;
    }
}
