

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

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    
    /* Because the container is now strictly 16:9, 'cover' will fit 
       16:9 images perfectly edge-to-edge without any cropping! */
    object-fit: cover; 
}

/* --- Navigation Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    font-size: 24px;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-arrow:hover { background: #00A651; }
.prev-arrow { left: 0; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.next-arrow { right: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; }

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

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

.dot.active, .dot:hover {
    background: #ffffff;
    transform: scale(1.2); 
}