.mello-carousel-wrapper-3a214329 {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mello-carousel-track-3a214329 {
    display: flex;
    justify-content: flex-start; /* FIXED: pehle "center" tha, isse 3+ slides pe alignment out hoti thi */
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.mello-carousel-slide-3a214329 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    opacity: 0.5;
    transform: scale(0.85);
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
}

.mello-carousel-slide-3a214329 img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
}

.mello-carousel-slide-3a214329.active {
    opacity: 1;
    transform: scale(1.2);
    z-index: 2;
}

.mello-carousel-nav-3a214329 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}

.mello-dot-3a214329 {
    width: 40px;
    height: 4px;
    background-color: #333333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.mello-dot-3a214329.active {
    background-color: #707D41;
}