/* Homepage Image Slider Styles */

.image-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

/* Stack images on top of each other */
.image-slider img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Active image is visible */
.image-slider img.active {
    opacity: 1;
    position: relative;
}