/* Fading Text Animation Styles */
.fade-text-section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.fade-text-container {
    position: relative;
    text-align: center;
    height: 200px; /* Fixed height container to prevent layout shifts */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fade-text-line {
    font-family: 'Poppins', sans-serif;
    font-size: 5vw;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    opacity: 0;
    width: 100%;
    text-align: center;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-text-line.visible {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

@media (max-width: 768px) {
    .fade-text-line {
        font-size: 8vw;
    }
}
