.jas-slider-scope {
    position: relative;
    width: 100%;
    max-width: 1200://;
    margin: 0 auto 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.jas-slider-container {
    position: relative;
    width: 100%;
}

.jas-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.jas-slide {
    min-width: 100%;
    position: relative;
    box-sizing: border-box;
}

    .jas-slide img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
    }

.jas-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 30px 25px;
    font-family: sans-serif;
}

    .jas-slide-caption h3 {
        margin: 0 0 8px 0;
        font-size: 1.5rem;
    }

    .jas-slide-caption p {
        margin: 0;
        font-size: 0.95rem;
        opacity: 0.9;
    }

/* Navigation Arrows */
.jas-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

    .jas-slider-btn:hover {
        background: rgba(255,255,255,0.6);
        color: #333;
    }

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Pagination Dots */
.jas-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.jas-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

    .jas-dot.active {
        background: #fff;
        transform: scale(1.2);
    }
