.parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1518199266791-5375a83190b7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.typing-effect::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Timeline specific styles */
.timeline-card {
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .border-2-2 {
        left: 50% !important;
    }
}