
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.about-us-hero {
    position: relative;
    background-image: url('../img/fotonos.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 80vh; 
    display: flex;
    align-items: center;
    padding: 4rem 0;
    color: white;
    overflow-x: hidden;
}

.about-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-us-logo {
    display: inline-block;
    width: 280px;
    border-radius: 50%;
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 0.2s forwards;
}

.about-us-text {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: slideInFromRight 1s ease-out 0.5s forwards;
}

.about-us-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-us-hero {
        text-align: center;
    }
}