/* Custom Styles for Nexus Advisory */

.animation-slow-zoom {
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

html {
    scroll-behavior: smooth;
}

/* Glassmorphism utility for navbar */
.glass-nav {
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}