
        /* Custom scrollbar & smooth transitions */
        html { scroll-behavior: smooth; }
        body { font-family: 'Cairo', sans-serif; background-color: #fcfaf5; color: #212529; }
        .fade-in { animation: fadeIn 0.3s ease-in-out forwards; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Custom modal backdrop */
        .modal-backdrop { background-color: rgba(27, 67, 50, 0.5); backdrop-filter: blur(4px); }
    