.slider {
    position: relative;
    width: 100%;
    height: 50vw;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slides {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slide 10s infinite;
}

.slide {
    width: 50%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5%;
    box-sizing: border-box;
}

.text-overlay h2 {
    font-size: 3vw;
    margin-bottom: 1.5vw;
    font-weight: bold;
    line-height: 1.1;
}

.text-overlay h1 {
    font-size: 5vw;
    margin-bottom: 2vw;
    font-weight: bolder;
    line-height: 1.1;
}

.text-overlay p {
    font-size: 2vw;
    margin-bottom: 3vw;
    line-height: 1.3;
}

.our-products-button,
.contact-us-button {
    background-color: #ff8c00;
    color: white;
    padding: 1vw 2vw;
    border: none;
    border-radius: 0.5vw;
    font-size: 1.8vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.our-products-button:hover,
.contact-us-button:hover {
    background-color: #2c1800;
}

@keyframes slide {
    0% {
        margin-left: 0;
    }

    33% {
        margin-left: 0;
    }

    50% {
        margin-left: -100%;
    }

    83% {
        margin-left: -100%;
    }

    100% {
        margin-left: 0;
    }
}

/* Mobile-specific adjustments for even smaller sizes */
@media (max-width: 768px) {
    .slider {
        height: 60vw;
    }

    .text-overlay h2 {
        font-size: 4vw;
        margin-bottom: 2vw;
    }

    .text-overlay h1 {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .text-overlay p {
        font-size: 2.5vw;
        margin-bottom: 4vw;
    }

    .our-products-button,
    .contact-us-button {
        padding: 2vw 4vw;
        font-size: 2.8vw;
        border-radius: 1vw;
    }
}