/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Glass Card Base Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Delays */
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Navbar Link Hover Effect */
.nav-link {
    color: #d1d5db; /* gray-300 */
    transition: all 0.3s ease;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    letter-spacing: 0.025em;
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #00f2ea, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-link {
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00f2ea;
}