html {
            scroll-behavior: smooth;
        }
        .flink {
            @apply px-4 py-2 bg-gray-100 hover:bg-primary hover:text-white rounded-lg transition-all duration-300 text-neutral-700 font-medium;
        }
        .card-hover {
            @apply transition-transform duration-300 hover:-translate-y-2 hover:shadow-xl;
        }
        .nav-link {
            @apply relative after:absolute after:left-0 after:-bottom-1 after:h-0.5 after:w-0 after:bg-secondary after:transition-all after:duration-300 hover:after:w-full;
        }
        .section-padding {
            @apply py-12 lg:py-20;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
        }
