
        #pppworksbox {
            background-color: #f4f6f9;
            color: #333;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .prppcontainer {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        /* Header Section */
        .prpptop-badge {
            display: inline-flex;
            align-items: center;
            background: #1a1a1a;
            color: #fff;
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .prpptop-badge span {
            background: #ff9800;
            color: #fff;
            padding: 2px 10px;
            border-radius: 20px;
            margin-left: 8px;
            font-size: 12px;
            text-transform: uppercase;
        }

        h1 {
            font-size: 42px;
            font-weight: 800;
            color: #111;
            margin-bottom: 10px;
        }

        h1 span {
            color: #0066ff;
        }

        .prppsubtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 50px;
        }

        /* Process Grid */
        .prppprocess-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            margin-bottom: 50px;
        }

        .prppprocess-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            border-bottom:1vh solid #ffc107;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .prppprocess-card:hover {
            transform: translateY(-5px);
        }

        /* Step Number Badge */
        .prppstep-badge {
            position: absolute;
            top: 1vw;
            left:1vw;
            background: #111;
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        /* Image Container */
        .prppcard-img-container {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px 10px 20px;
        }

        .prppcard-img-container img {
            max-width: 84%;
            max-height: auto%;
            object-fit: contain;
        }

        /* Bottom Dark Section with Wave */
        .prppcard-bottom {
            background: linear-gradient(135deg, #222 0%, #111 100%);
            width: 100%;
            padding: 30px 20px 25px 20px;
            color: #fff;
            position: relative;
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
            margin-top: -15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .prppcard-icon {
            background: #1a1a1a;
            border: 2px solid #ff9800;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff9800;
            font-size: 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .prppcard-iconimg-container img {
            padding-top:1vw;
            max-width: 30%;
            max-height: auto;
            object-fit: contain;
        }


        .prppcard-bottom h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .prppcard-bottom p {
            font-size: 13px;
            color: #bbb;
            line-height: 1.5;
        }

        /* Connecting Arrows */
        .prpparrow-btn {
            position: absolute;
            top: 45%;
            width: 36px;
            height: 36px;
            background: #0066ff;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.4);
            z-index: 10;
            transform: translateY(-50%);
        }

        .prpparrow-1 { right: -18px; }
        .prpparrow-2 { left: calc(50% - 18px); /* adjusted via grid */ }

        /* Feature Bar Footer */
        .prppfeature-bar {
            background: #111;
            border-radius: 16px;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .prppfeature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
        }

        .prppfeature-icon {
            width: 45px;
            height: 45px;
            background: #222;
            border: 2px solid #ff9800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff9800;
            font-size: 18px;
            flex-shrink: 0;
        }

        .prppfeature-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }

        .prppfeature-text p {
            font-size: 12px;
            color: #aaa;
        }

        .prppfeature-divider {
            width: 1px;
            height: 35px;
            background: #333;
        }

        /* Responsive Design */
        @keyframes placeholder {
            0% { background-color: #eee; }
            100% { background-color: #e2e2e2; }
        }

        @media (max-width: 1024px) {
            .prppprocess-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            .prppfeature-bar {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            .prppfeature-divider {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .prppprocess-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 32px;
            }
        }