html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            color: #D4AF37;
            border-bottom-color: #D4AF37;
            transform: translateY(-2px);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #D4AF37;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 153, 204, 0.8) 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .section-divider {
            height: 4px;
            background: linear-gradient(to right, #003366, #D4AF37, #0099CC);
            width: 100px;
            margin: 2rem auto;
        }
        .stat-number {
            background: linear-gradient(90deg, #003366, #0099CC);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
