/* Navigation Glass Effect */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animated Blobs */
.blob {
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Line */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e2e8f0;
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-line::before {
        left: 20px;
    }
}