/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 03 2026 | 06:53:27 */
/* Make carousel full width */
.imagecc {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

/* Remove unwanted spacing */
.imagecc .swiper,
.imagecc .elementor-image-carousel-wrapper {
    width: 100%;
}

/* Force images to fully cover */
.imagecc img {
    width: 100%;
    height: 85vh; /* Adjust height here */
    object-fit: cover;
}

/* Style navigation arrows */
.imagecc .swiper-button-prev,
.imagecc .swiper-button-next {
    background: rgba(255, 255, 255, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #000;
    transition: 0.3s ease;
}

.imagecc .swiper-button-prev:hover,
.imagecc .swiper-button-next:hover {
    background: #000;
    color: #fff;
}

/* Center arrows vertically */
.imagecc .swiper-button-prev,
.imagecc .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

/* Style dots */
.imagecc .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    opacity: 1;
}

.imagecc .swiper-pagination-bullet-active {
    background: #ffffff;
}