html {
            scroll-behavior: smooth;
        }
        .nav-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .text-shadow {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: white;
            border-radius: 50px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            font-weight: 500;
        }
        .flink:hover {
            background: #6a11cb;
            color: white;
            border-color: #6a11cb;
        }
        .service-card {
            border-left: 4px solid #6a11cb;
        }
        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
