.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.fill-1 {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Manrope', sans-serif;
}

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

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

.slider-container {
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-line {
    height: 2px;
    width: 40px;
    background: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-line.active {
    width: 80px;
    background: #3c83f6;
}