


.carousel {
    position: relative;
    width: 665px;
    height: 220px;
    overflow: hidden;
    border: 0px solid #ddd;
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%; /* Ensure inner content takes full height */
}

.carousel-item {
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure each item takes full height */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item img.zoom-out {
    transform: translateY(-100px) scale(0.85); /* Zoom out more */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
    background: none;
    z-index: 11;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
