html {
            scroll-behavior: smooth;
        }
        .nav-scroll {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .flink {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            color: #475569;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #1e3a8a;
            color: white;
            border-color: #1e3a8a;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, #1e3a8a, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
