
        @keyframes gradientShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .details-tbl {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(40px);
            border-radius: 9px;
            box-shadow: 
                0 0 0 1px rgba(59, 130, 246, 0.1),
                0 30px 100px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            max-width: 800px;
            width: 100%;
            overflow: hidden;
            position: relative;
            animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(59, 130, 246, 0.15);
        }

        @keyframes cardEntrance {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
                filter: blur(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .details-tbl::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent,
                #6c7dea,
                #8b5cf6,
                #343e49,
                transparent
            );
            background-size: 200% 100%;
            animation: borderFlow 20s linear infinite;
        }
        @keyframes borderFlow {
            0% { background-position: 0 200%; }
            50% { background-position: 200% 0; }
            100% { background-position:  0 200%; }
        }

        .details-tbl::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent 50%),
                        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05), transparent 50%); */
            pointer-events: none;
        }

        .request-summary {
            list-style: none;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .request-summary li {
            display: grid;
            grid-template-columns: 112px 1fr;
            gap: 24px;
            padding: 28px;
            border-radius: 9px;
            margin-bottom: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%); */
            background:#fff;
            border: 1px solid rgba(226, 232, 240, 0.8);
            overflow: hidden;
            cursor: pointer;
        }

        .request-summary li::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(59, 130, 246, 0.1), 
                transparent
            );
            transition: left 0.6s ease;
        }

        .request-summary li:hover::before {
            left: 100%;
        }

        .request-summary li::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #3b82f6, #8b5cf6, #ec4899);
            opacity: 0;
            transition: opacity 0.4s ease;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }

        .request-summary li:hover {
            background: linear-gradient(135deg, rgba(239, 246, 255, 1) 0%, rgba(224, 242, 254, 1) 100%);
            transform: translateX(6px) scale(1.01);
            box-shadow: 
                0 20px 40px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .request-summary li:hover::after {
            opacity: 1;
        }

        .request-summary label {
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            /* text-transform: uppercase; */
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            position: relative;
            opacity: 0;
            animation: labelFadeIn 0.5s ease forwards;
        }

        @keyframes labelFadeIn {
            to { opacity: 1; }
        }

        .request-summary li:nth-child(1) label { animation-delay: 0.1s; }
        .request-summary li:nth-child(2) label { animation-delay: 0.2s; }
        .request-summary li:nth-child(3) label { animation-delay: 0.3s; }
        .request-summary li:nth-child(4) label { animation-delay: 0.4s; }
        .request-summary li:nth-child(5) label { animation-delay: 0.5s; }

        .request-summary label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 50%;
            margin: 7px;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        .request-summary strong {
            font-size: 12px;
            color: #0f172a;
            font-weight: 600;
            display: flex;
            align-items: center;
            word-break: break-word;
            line-height: 1.6;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            opacity: 0;
            animation: valueFadeIn 0.5s ease forwards;
        }

        @keyframes valueFadeIn {
            to { opacity: 1; }
        }

        .request-summary li:nth-child(1) strong { animation-delay: 0.15s; }
        .request-summary li:nth-child(2) strong { animation-delay: 0.25s; }
        .request-summary li:nth-child(3) strong { animation-delay: 0.35s; }
        .request-summary li:nth-child(4) strong { animation-delay: 0.45s; }
        .request-summary li:nth-child(5) strong { animation-delay: 0.55s; }

        .request-number {
            background: linear-gradient(135deg, rgba(239, 246, 255, 1) 0%, rgba(219, 234, 254, 1) 100%);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .request-number strong {
            color: #273143;
            font-weight: 700;
            font-size: 13px;
            font-family: 'Monaco', 'Courier New', monospace;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
        }

        .request-number .icon-badge {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-4px); }
        }

        .request-status strong {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0px 2px;
            /* background: linear-gradient(135deg, #10b981 0%, #059669 100%); */
            color: #000;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            /* box-shadow: 
                0 8px 24px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2); */
            /* text-transform: uppercase; */
            letter-spacing: 0.8px;
            position: relative;
            overflow: hidden;
        }

        .request-status strong::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: statusShine 3s ease-in-out infinite;
        }

        @keyframes statusShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .request-status .check-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            font-size: 12px;
            animation: checkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes checkPop {
            0% { transform: scale(0) rotate(-180deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        .request-title strong {
            color: #1e293b;
            font-size: 12px;
            font-weight: 600;
        }

        .icon-badge {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.15));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }

        .request-summary li:hover .icon-badge {
            transform: translateY(-50%) scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(109, 40, 217, 0.25));
        }

        @media (max-width: 600px) {
            .request-summary li {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 24px 20px;
            }

            .request-summary label {
                font-size: 10px;
            }

            .request-summary strong {
                font-size: 16px;
            }

            .request-number strong {
                font-size: 18px;
            }

            .icon-badge,
            .request-number .icon-badge {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }
.request-summary , .completed-steps{
background-color: #fff;
border: 2px solid #ffffff;
}

