html {
            scroll-behavior: smooth;
        }
        .flink:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .service-card:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
        }
        .nav-link.active {
            color: #0ea5e9;
            font-weight: 600;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
        }
        .testimonial-card {
            box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        @media (max-width: 768px) {
            .mobile-menu {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .mobile-menu.open {
                max-height: 500px;
            }
        }
