/* Desktop Slider: Set a fixed height and adjust images */
#desktop-slider {
    width: 100%;
    height: 450px; /* Smaller height for desktop */
    overflow: hidden;
    position: relative;
}

/* Ensure each slide takes up the full slider area */
#desktop-slider .slide {
    width: 100%;
    height: 100%;
    background-size: contain;  /* Ensures the image fits within the slider without being cut */
    background-repeat: no-repeat;
    background-position: center center;
}

/* Hide the mobile slider by default on larger screens */
.mobile-slider {
    display: none;
}

/* Show the desktop slider by default */
.desktop-slider {
    display: block;
}

/* Media query for screens 768px or less */
@media screen and (max-width: 768px) {
    /* Hide the desktop slider */
    .desktop-slider {
        display: none;
    }

    /* Show the mobile slider */
    .mobile-slider {
        display: block;
    }
}
