﻿
.simple-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.simpleslider {
    display: flex;
    transition: transform 0.5s ease;
}

.simpleslide {
    min-width: 25%; /* Show 4 images at a time */
    box-sizing: border-box;
}

    .simpleslide img {
        width: 100%;
        height: auto;
        display: block;
        padding: 5px;
    }


.Infraprevious, .Infranext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    padding: 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 900;
}

.Infraprevious {
    left: 10px;
}

.Infranext {
    right: 10px;
}

.Infrastructures {
    color: #002147;
    font-size: 30px;
    margin: 20px;
}
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background-color: #002147; /* Active color */
    }
@media (max-width: 768px) {
    .simpleslide {
        min-width: 100%; 
    }
}