.main-div {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.scroll-container {
    height: 550px;
    width: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 25%, black 75%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 25%, black 75%, rgba(0, 0, 0, 0));
}

.image-container {
    width: 100%;
    min-height: var(--image-height, 250px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-image {
    width: 100% !important;
    height: var(--image-height, 250px) !important; /* Controlled by Elementor */
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

/* Hover Effect */
.scroll-container:hover {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.01);
}
