/* .hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust based on your design 
    overflow: hidden;
} */

/* .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    padding-top: 15%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
} */

.background-image:nth-child(1) {
    background-image: url('../img/man-power-supply.jpg');
    animation: fadeInOut 15s infinite;
}

.background-image:nth-child(2) {
    background-image: url('../img/about-image2.jpg');
    animation: fadeInOut 15s infinite 5s;
}


@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    33%, 66% {
        opacity: 1;
    }
}
