 .container-main {
            max-width: 100%;
            margin: 0 auto;
        }

        .process-card-roi {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px 0 0 20px;
            padding: 40px !important;

        }

        .card-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 35px;
        }

        .icon-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .slider-group {
            margin-bottom: 30px;
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 15px;
        }

        .slider-label {
            font-size: 18px;
            color: #555;

            font-weight: 500;
        }

        .slider-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Value display next to slider */
        .value-display {
            min-width: 40px;
            padding: 5px 8px;
            border: 1px solid #ccc;
            text-align: center;
            border-radius: 4px;
        }

        /* Responsive: stack sliders vertically on mobile */
        @media (max-width: 768px) {
            .slider-container {
                flex-direction: column;
                /* stack vertically */
                align-items: flex-start;
                /* align left */
            }

            .slider-wrapper {
                margin-top: 10px;
                width: 100%;
            }

            .value-display {
                margin-top: 5px;
                /* spacing under slider */
            }
        }

        .slider-wrapper {
            flex: 1;
            position: relative;
        }

        input[type="range"].slider1 {
            width: 100%;
            height: 2.5px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        input[type="range"].slider2 {
            width: 100%;
            height: 2.5px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        input[type="range"].slider3 {
            width: 100%;
            height: 3px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        input[type="range"].slider4 {
            width: 100%;
            height: 3.20px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        /* Dots for range start & end */
        .slider-wrapper::before,
        .slider-wrapper::after {
            content: "";
            position: absolute;
            top: 69%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            z-index: 0;
            /* stays behind the thumb */
        }

        /* Slightly move dots outside so they don't overlap the thumb */
        .slider-wrapper::before {
            left: -6px;
            /* pushes start dot slightly left */
        }

        .slider-wrapper::after {
            right: -6px;
            /* pushes end dot slightly right */
            background-color: #c2c2c2;

        }

        /* Match each slider's color theme */
        .slider-wrapper:has(.slider1)::before {
            background-color: #4ade80;
        }

        .slider-wrapper:has(.slider2)::before {
            background-color: #3b82f6;
        }

        .slider-wrapper:has(.slider3)::before {
            background-color: #fb923c;
        }

        .slider-wrapper:has(.slider4)::before {
            background-color: #a855f7;
        }


        input[type="range"].slider1::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #4ade80;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider2::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #3b82f6;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider3::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #fb923c;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider4::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #a855f7;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider1::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #4ade80;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider2::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #3b82f6;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider3::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #fb923c;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        input[type="range"].slider4::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            border: 3px solid #a855f7;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }


        .slider1 {
            background: linear-gradient(to right, #4ade80 0%, #4ade80 13%, #e5e7eb 13%, #e5e7eb 100%);
        }

        .slider1::-webkit-slider-thumb {
            border-color: #4ade80;
        }

        .slider1::-moz-range-thumb {
            border-color: #4ade80;
        }

        .slider2 {
            background: linear-gradient(to right, #3b82f6 0%, #3b82f6 75%, #e5e7eb 75%, #e5e7eb 100%);
        }

        .slider2::-webkit-slider-thumb {
            border-color: #3b82f6;
        }

        .slider2::-moz-range-thumb {
            border-color: #3b82f6;
        }

        .slider3 {
            background: linear-gradient(to right, #fb923c 0%, #fb923c 8%, #e5e7eb 8%, #e5e7eb 100%);
        }

        .slider3::-webkit-slider-thumb {
            border-color: #fb923c;
        }

        .slider3::-moz-range-thumb {
            border-color: #fb923c;
        }

        .slider4 {
            background: linear-gradient(to right, #a855f7 0%, #a855f7 20%, #e5e7eb 20%, #e5e7eb 100%);
        }

        .slider4::-webkit-slider-thumb {
            border-color: #a855f7;
        }

        .slider4::-moz-range-thumb {
            border-color: #a855f7;
        }

        .value-display {
            background: #ffffff;
            border-radius: 10px;
            padding: 10px 10px;
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            min-width: 100px;
            text-align: center;
            border: 1px solid rgb(212, 212, 212);

            transition: all 0.3s ease;
        }

        .value-display:focus {
            outline: none;

            background: white;
            border: 1px solid #667eea;
        }

        .results-card {
            background: linear-gradient(135deg, #2f69f2 0%, #bf1fff 100%);
            border-radius: 0 20px 20px 0;
            padding: 40px !important;


        }

        .results-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 35px;
        }




        @media (max-width: 992px) {
            .container-main {
                flex-direction: column;
            }
        }

        .otherAppResult {
            padding: 6% !important;
            border-radius: 15px !important;
            margin-bottom: 50px;
        }

        .otherAppResult,
        .yoroflowResult p {

            font-size: 18px;
        }

        .yoroflowResult {
            padding: 6% !important;
            border-radius: 15px !important;

        }

        .roivalue {
            color: #007bff;
            font-size: 23px;
            font-weight: 600;
            padding: 5px;
        }