/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0F19; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6366f1; 
}

/* Glassmorphism Utilities */
.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Background Blob Animations */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Timeline specific styles */
.group.is-active .glass-card {
    position: relative;
}
/* Connect the dots for the timeline line */
@media (min-width: 768px) {
    .group.is-active .glass-card::before {
        content: "";
        position: absolute;
        top: 50%;
        width: 2rem;
        height: 1px;
        background: rgba(255,255,255,0.2);
    }
    .group:nth-child(odd) .glass-card::before {
        right: -2rem;
    }
    .group:nth-child(even) .glass-card::before {
        left: -2rem;
    }
}