@layer utilities {
            .text-shadow {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .card-hover {
                @apply transition-all duration-300 hover:shadow-xl hover:-translate-y-1;
            }
            .btn-effect {
                @apply transform transition-all duration-300 hover:scale-105 hover:shadow-lg;
            }
            .nav-item {
                @apply px-3 py-2 rounded-md transition-all duration-200 hover:bg-primary/10;
            }
            .section-gap {
                @apply py-10 md:py-16;
            }
        }
