/* Custom styles for Subria Virtual Landing Page */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #060F21;
    color: #F1F5F9;
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(11, 19, 43, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(42, 59, 92, 0.6);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #060F21;
}

::-webkit-scrollbar-thumb {
    background: #1C2541;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0F52BA;
}

/* Counter animation styles */
.counter {
    display: inline-block;
    transition: all 0.5s ease-out;
}
