﻿/* Slider Container */
.slider {
    margin-top:-17px;
    padding-top:0px;
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

/* Individual Slides */
.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    animation: fade 12s infinite;
}

/* Smooth Fade Animation */



/* Text Overlay */
.slider-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

    /* Text Enhancements */
    .slider-text h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .slider-text p {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 18px;
        font-weight: 800;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider {
        height: 350px;
    }

    .slider-text {
        bottom: 10%;
        padding: 15px;
    }

        .slider-text h2 {
            font-size: 24px;
        }

        .slider-text p {
            font-size: 16px;
        }
}
