/*--------------------------------------------------------------
# Hero Carousel Section
--------------------------------------------------------------*/
.jbhero {
    --background-color: rgba(255, 255, 255, 255);
    color: var(--default-color);
    background-color: var(--background-color);
}

/* Container */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 24px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Track */
.hero-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

/* Each slide */
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    user-select: none;
}

.hero-slide img {
    width: 100%;
    display: block;
    height: auto;
}

/* Prev/Next buttons */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 5;
}

.hero-prev {
    left: 14px;
}

.hero-next {
    right: 14px;
}

.hero-prev:focus,
.hero-next:focus {
    outline: 2px solid #fff;
}

/* Dots */
.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 6;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.hero-dot.is-active {
    background: rgba(255, 255, 255, 1);
}

/* Pause on hover */
.hero-carousel:hover .hero-prev,
.hero-carousel:hover .hero-next {
    opacity: 1;
}

/* Small screens tweak */
@media (max-width: 600px) {

    .hero-prev,
    .hero-next {
        padding: 8px 10px;
        font-size: 18px;
    }
}

/* Feature Boxes*/
.hero .feature-boxes .feature-box .feature-icon {
    background-color: #5D57F4;
}

.hero .feature-boxes .feature-box .feature-icon i {
    color: #fff !important;
}

.hero .feature-boxes .feature-box {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 0%);
}