.dual-carousel-wrapper-2c64f63f {
    width: 100%;
    overflow: hidden !important;
    position: relative;
    padding: 30px 0;
}

.dual-carousel-row-container {
    position: relative;
    width: 100%;
}

.dual-carousel-row-container.row-1 {
    margin-bottom: 40px; /* customizable default */
}

/* Stagger offset default */
.dual-carousel-row-container.row-2 {
    margin-bottom: 0;
    margin-left: 80px;
}

.dual-carousel-wrapper-2c64f63f .swiper {
    overflow: visible !important;
    width: 100%;
}

.dual-carousel-wrapper-2c64f63f .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.dual-carousel-wrapper-2c64f63f .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.dual-carousel-wrapper-2c64f63f .carousel-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.dual-carousel-wrapper-2c64f63f .carousel-image:hover {
    transform: scale(1.02);
}

/* Linear continuous scroll marquee */
.dual-carousel-wrapper-2c64f63f .swiper-wrapper-linear .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Custom Navigation Arrow Styles */
.dual-carousel-wrapper-2c64f63f .swiper-button-prev,
.dual-carousel-wrapper-2c64f63f .swiper-button-next {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.2s;
    z-index: 100;
}

.dual-carousel-wrapper-2c64f63f .swiper-button-prev:hover,
.dual-carousel-wrapper-2c64f63f .swiper-button-next:hover {
    background-color: #fff;
    transform: scale(1.08);
}

.dual-carousel-wrapper-2c64f63f .swiper-button-prev::after,
.dual-carousel-wrapper-2c64f63f .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* Beautiful custom Lightbox Styles */
.custom-lightbox-container-2c64f63f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-lightbox-container-2c64f63f .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.custom-lightbox-container-2c64f63f .lightbox-content-box {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-lightbox-container-2c64f63f .lightbox-main-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    user-select: none;
    animation: zoomInLightbox 0.25s ease-out;
}

.custom-lightbox-container-2c64f63f .lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-lightbox-container-2c64f63f .lightbox-close:hover {
    color: #ddd;
}

.custom-lightbox-container-2c64f63f .lightbox-prev,
.custom-lightbox-container-2c64f63f .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s, transform 0.2s;
}

.custom-lightbox-container-2c64f63f .lightbox-prev {
    left: -80px;
}

.custom-lightbox-container-2c64f63f .lightbox-next {
    right: -80px;
}

.custom-lightbox-container-2c64f63f .lightbox-prev:hover,
.custom-lightbox-container-2c64f63f .lightbox-next:hover {
    color: #ccc;
    transform: translateY(-50%) scale(1.1);
}

@keyframes zoomInLightbox {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .custom-lightbox-container-2c64f63f .lightbox-prev {
        left: 10px;
    }
    .custom-lightbox-container-2c64f63f .lightbox-next {
        right: 10px;
    }
    .custom-lightbox-container-2c64f63f .lightbox-close {
        top: -40px;
        right: 10px;
    }
}
