/* Custom Utilities */

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* Glassmorphism for Navbar */

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.dark .glass-nav {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}


/* Gradient Text */

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #4f46e5, #06b6d4);
}