
/* styles.css */
.brand-logo-container {
    position: relative;
    text-align: center;
}

.brand-logo {
    max-height: 100px;
    margin: auto;
}

.brand-title {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
}

.brand-logo-container:hover .brand-title,
.brand-logo-container:focus .brand-title {
    display: block;
}

.carousel-inner {
    overflow-x: hidden;
    white-space: nowrap;
}

.carousel-item {
    display: flex;
}

.flex-shrink-0 {
    width: 33.33%; /* Mobile: 3 Logos */
    max-width: 200px;
}

@media (min-width: 768px) {
    .flex-shrink-0 {
        width: 16.66%;
    }
}
