/* Wrapper - Force 100vw to break out of containers */
.nc-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* Slide Inner Layout */
.nc-slide-inner {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-height: 400px;
    max-height: 600px;
}

@media (min-width: 992px) {
    .nc-slide-inner {
        flex-direction: row;
        align-items: stretch;
        max-height: 600px;
    }
}

/* Content Column */
.nc-slide-content-col {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .nc-slide-content-col {
        padding: 60px 40px 120px 20px;
        /* 120px bottom padding to clear the navigation */
        align-items: flex-end;
        /* Push content box to the center of the screen */
    }
}

.nc-slide-content-box {
    width: 100%;
    max-width: 570px;
    /* Half of typical 1140px container */
}

@media (min-width: 992px) {
    .nc-slide-content-box {
        margin: 0;
    }
}

/* Typography & Button */
.nc-label {
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #010708;
}

.nc-title {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #000;
    margin: 0 0 20px 0;
}

@media (min-width: 992px) {
    .nc-title {
        font-size: 42px;
    }
}

.nc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.nc-btn {
    display: inline-block;
    background-color: #00ffff;
    /* Cyan color */
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.nc-btn:hover {
    background-color: #00cccc;
    color: #000;
}

/* Image Column */
.nc-slide-image-col {
    flex: 1;
    position: relative;
    display: flex;
    align-items: stretch;
}

.nc-slide-image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.nc-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
    position: absolute;
    top: 0;
    left: 0;
}

/* Global Navigation Overlay */
.nc-nav-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Space for the navigation at the bottom */
    pointer-events: none;
    /* Let clicks pass to the slider */
    z-index: 10;
    display: flex;
    align-items: center;
}

.nc-nav-overlay-col {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .nc-nav-overlay-col {
        width: 50%;
        /* Only on the left half */
        justify-content: flex-end;
        /* Align with the content box */
        padding: 0 40px 0 20px;
    }
}

.nc-nav-container {
    pointer-events: auto;
    /* Re-enable clicks for buttons */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 570px;
}

/* Pagination (Dots) */
.nc-swiper-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nc-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #000;
    opacity: 1;
    margin: 0 !important;
}

.nc-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00ffff;
}

/* Navigation Arrows */
.nc-arrows {
    display: flex;
    gap: 15px;
}

.nc-swiper-button-prev,
.nc-swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
    color: #000;
}

.nc-swiper-button-prev:hover,
.nc-swiper-button-next:hover {
    background-color: #000;
    color: #fff;
}

.nc-swiper-button-prev svg,
.nc-swiper-button-next svg {
    width: 20px;
    height: 20px;
}