
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .process-card:hover .process-icon {
            transform: scale(1.1) rotate(5deg);
            background-color: #CE033A;
            color: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #17139E;
            border-radius: 10px;
        }

        /* Quality Path Line */
        .quality-line {
            height: 2px;
            background: linear-gradient(90deg, #17139E 0%, #CE033A 100%);
            width: 0;
            transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active .quality-line {
            width: 100%;
        }