html {
            scroll-behavior: smooth;
        }
        .hero-bg {
            background: linear-gradient(rgba(13, 74, 141, 0.85), rgba(23, 162, 184, 0.8)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
        }
        .section-bg-light {
            background-color: #f8fbfe;
        }
        .flink {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            padding: 0.75rem 1rem;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
        }
        .flink:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #0d4a8d;
        }
        .service-card, .team-card, .blog-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover, .team-card:hover, .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .nav-link-active {
            color: #0d4a8d !important;
            border-bottom: 2px solid #0d4a8d;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #0d4a8d, #17a2b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .stat-number { font-size: 2rem; }
        }
