/* Futuristic Glassmorphism Styling */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 182, 212, 0.5);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(6, 182, 212, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(6, 182, 212, 0.2);
    }
}

.glow-cyan {
    animation: glow 3s infinite;
}

.section-hidden {
    display: none !important;
}


.nav-link-custom {
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #06b6d4;
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}