:root {
            --primary: #2563eb;
            --secondary: #0ea5e9;
            --accent: #8b5cf6;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .service-card {
            border-left: 4px solid var(--primary);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: #f8fafc;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        .flink:hover {
            background: #e0f2fe;
            border-color: var(--secondary);
        }
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        .mobile-menu.active {
            max-height: 500px;
        }
