{"id":2236,"date":"2025-06-26T20:04:27","date_gmt":"2025-06-26T16:04:27","guid":{"rendered":"https:\/\/windowedu.in\/blog\/?p=2236"},"modified":"2025-06-27T00:53:06","modified_gmt":"2025-06-26T20:53:06","slug":"circle-of-influence-assess-your-self","status":"publish","type":"post","link":"https:\/\/windowedu.in\/blog\/?p=2236","title":{"rendered":"CIRCLE OF INFLUENCE: ASSESS YOUR SELF"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"ml\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>PSC Self-Assessment Tool<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        .assessment-container {\n            font-family: 'Segoe UI', 'Noto Sans Malayalam', Arial, sans-serif;\n            max-width: 800px;\n            margin: 0 auto;\n            padding: 20px;\n            background: #ffffff;\n            border-radius: 16px;\n            box-shadow: 0 8px 32px rgba(0,0,0,0.1);\n            line-height: 1.6;\n        }\n\n        .header {\n            text-align: center;\n            margin-bottom: 30px;\n            padding: 25px 20px;\n            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n            border-radius: 16px;\n            color: white;\n        }\n\n        .header h1 {\n            font-size: clamp(20px, 4vw, 26px);\n            font-weight: 700;\n            margin-bottom: 10px;\n            line-height: 1.3;\n        }\n\n        .subtitle {\n            font-size: clamp(14px, 3vw, 16px);\n            opacity: 0.9;\n        }\n\n        .intro {\n            background: #f8fafc;\n            padding: 20px;\n            border-radius: 12px;\n            margin-bottom: 30px;\n            border-left: 4px solid #3b82f6;\n        }\n\n        .intro p {\n            color: #374151;\n            margin-bottom: 10px;\n            font-size: 15px;\n        }\n\n        .question-container {\n            background: #ffffff;\n            border: 2px solid #e5e7eb;\n            border-radius: 12px;\n            padding: 20px;\n            margin-bottom: 20px;\n            transition: all 0.3s ease;\n        }\n\n        .question-container.answered {\n            border-color: #3b82f6;\n            background: #f8fafc;\n        }\n\n        .question-number {\n            display: inline-block;\n            background: #3b82f6;\n            color: white;\n            padding: 4px 12px;\n            border-radius: 20px;\n            font-size: 12px;\n            font-weight: 600;\n            margin-bottom: 12px;\n        }\n\n        .question-text {\n            font-size: clamp(15px, 3.5vw, 17px);\n            font-weight: 600;\n            color: #1f2937;\n            margin-bottom: 15px;\n            line-height: 1.4;\n        }\n\n        .options-container {\n            display: grid;\n            gap: 10px;\n            margin-top: 15px;\n        }\n\n        .option {\n            background: #f9fafb;\n            border: 2px solid #e5e7eb;\n            border-radius: 8px;\n            padding: 12px 16px;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            font-size: 14px;\n            color: #374151;\n            display: flex;\n            align-items: center;\n            gap: 12px;\n        }\n\n        .option:hover {\n            background: #f3f4f6;\n            border-color: #d1d5db;\n        }\n\n        .option.selected {\n            background: #eff6ff;\n            border-color: #3b82f6;\n            color: #1e40af;\n        }\n\n        .option-number {\n            background: #e5e7eb;\n            color: #6b7280;\n            padding: 4px 8px;\n            border-radius: 50%;\n            font-size: 12px;\n            font-weight: 600;\n            min-width: 24px;\n            text-align: center;\n        }\n\n        .option.selected .option-number {\n            background: #3b82f6;\n            color: white;\n        }\n\n        .progress-section {\n            background: #f8fafc;\n            padding: 20px;\n            border-radius: 12px;\n            margin: 30px 0;\n            text-align: center;\n        }\n\n        .progress-bar {\n            width: 100%;\n            height: 12px;\n            background: #e5e7eb;\n            border-radius: 6px;\n            overflow: hidden;\n            margin: 15px 0;\n        }\n\n        .progress-fill {\n            height: 100%;\n            background: linear-gradient(90deg, #3b82f6, #10b981);\n            width: 0%;\n            transition: width 0.5s ease;\n            border-radius: 6px;\n        }\n\n        .progress-text {\n            font-size: 16px;\n            font-weight: 600;\n            color: #374151;\n        }\n\n        .submit-button {\n            display: block;\n            width: 100%;\n            max-width: 300px;\n            margin: 30px auto;\n            padding: 15px 30px;\n            background: #3b82f6;\n            color: white;\n            border: none;\n            border-radius: 8px;\n            font-size: 16px;\n            font-weight: 600;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            opacity: 0.5;\n            pointer-events: none;\n        }\n\n        .submit-button.ready {\n            opacity: 1;\n            pointer-events: auto;\n        }\n\n        .submit-button:hover.ready {\n            background: #2563eb;\n            transform: translateY(-1px);\n        }\n\n        .results-container {\n            display: none;\n            background: #ffffff;\n            border-radius: 12px;\n            padding: 30px;\n            margin-top: 30px;\n            box-shadow: 0 4px 20px rgba(0,0,0,0.1);\n        }\n\n        .results-container.show {\n            display: block;\n            animation: fadeInUp 0.6s ease;\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .score-display {\n            text-align: center;\n            margin-bottom: 30px;\n        }\n\n        .score-circle {\n            display: inline-block;\n            width: 120px;\n            height: 120px;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 24px;\n            font-weight: 700;\n            color: white;\n            margin-bottom: 15px;\n        }\n\n        .score-excellent {\n            background: linear-gradient(135deg, #10b981, #059669);\n        }\n\n        .score-good {\n            background: linear-gradient(135deg, #f59e0b, #d97706);\n        }\n\n        .score-average {\n            background: linear-gradient(135deg, #3b82f6, #2563eb);\n        }\n\n        .score-needs-work {\n            background: linear-gradient(135deg, #ef4444, #dc2626);\n        }\n\n        .result-title {\n            font-size: clamp(20px, 4vw, 24px);\n            font-weight: 700;\n            margin-bottom: 15px;\n            text-align: center;\n        }\n\n        .result-description {\n            font-size: 16px;\n            color: #6b7280;\n            text-align: center;\n            margin-bottom: 30px;\n            line-height: 1.6;\n        }\n\n        .suggestions-section {\n            background: #f8fafc;\n            padding: 25px;\n            border-radius: 12px;\n            margin-top: 25px;\n        }\n\n        .suggestions-title {\n            font-size: 18px;\n            font-weight: 700;\n            color: #1f2937;\n            margin-bottom: 20px;\n            display: flex;\n            align-items: center;\n            gap: 10px;\n        }\n\n        .suggestion-item {\n            background: #ffffff;\n            border-left: 4px solid #3b82f6;\n            padding: 15px 20px;\n            margin-bottom: 15px;\n            border-radius: 8px;\n            box-shadow: 0 2px 8px rgba(0,0,0,0.05);\n        }\n\n        .suggestion-item h4 {\n            color: #1f2937;\n            font-weight: 600;\n            margin-bottom: 8px;\n        }\n\n        .suggestion-item p {\n            color: #6b7280;\n            font-size: 14px;\n            line-height: 1.5;\n        }\n\n        .reset-button {\n            display: block;\n            margin: 25px auto 0;\n            padding: 10px 25px;\n            background: #6b7280;\n            color: white;\n            border: none;\n            border-radius: 6px;\n            font-size: 14px;\n            cursor: pointer;\n            transition: all 0.3s ease;\n        }\n\n        .reset-button:hover {\n            background: #4b5563;\n        }\n\n        .tip-box {\n            background: #fefce8;\n            border: 1px solid #facc15;\n            border-radius: 12px;\n            padding: 20px;\n            margin-top: 25px;\n        }\n\n        .tip-box h4 {\n            color: #a16207;\n            margin-bottom: 12px;\n            font-size: 16px;\n        }\n\n        .tip-box p {\n            color: #92400e;\n            font-size: 14px;\n        }\n\n        \/* Mobile optimizations *\/\n        @media (max-width: 768px) {\n            .assessment-container {\n                padding: 16px;\n            }\n            \n            .question-container {\n                padding: 16px;\n            }\n            \n            .option {\n                padding: 12px;\n                font-size: 14px;\n            }\n            \n            .score-circle {\n                width: 100px;\n                height: 100px;\n                font-size: 20px;\n            }\n            \n            .suggestions-section {\n                padding: 20px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"assessment-container\">\n        <div class=\"header\">\n            <h1>\ud83e\udde0 PSC Self-Assessment Tool<\/h1>\n            <p class=\"subtitle\">\u0d38\u0d4d\u0d35\u0d3e\u0d27\u0d40\u0d28\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 vs \u0d06\u0d36\u0d19\u0d4d\u0d15\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 &#8211; \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 Score \u0d15\u0d23\u0d4d\u0d1f\u0d46\u0d24\u0d4d\u0d24\u0d41\u0d15<\/p>\n        <\/div>\n\n        <div class=\"intro\">\n            <p><strong>\ud83c\udfaf \u0d08 Assessment-\u0d28\u0d4d\u0d31\u0d46 \u0d32\u0d15\u0d4d\u0d37\u0d4d\u0d2f\u0d02:<\/strong> \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 proactive \u0d06\u0d2f\u0d3f PSC \u0d24\u0d2f\u0d4d\u0d2f\u0d3e\u0d31\u0d46\u0d1f\u0d41\u0d2a\u0d4d\u0d2a\u0d3f\u0d7d \u0d0f\u0d7c\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4d \u0d0e\u0d28\u0d4d\u0d28\u0d4d \u0d05\u0d31\u0d3f\u0d2f\u0d3e\u0d7b.<\/p>\n            <p><strong>\ud83d\udcdd \u0d0e\u0d19\u0d4d\u0d19\u0d28\u0d46 \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d3e\u0d02:<\/strong> \u0d13\u0d30\u0d4b \u0d1a\u0d4b\u0d26\u0d4d\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d28\u0d41\u0d02 1-5 scale-\u0d7d \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d38\u0d24\u0d4d\u0d2f\u0d38\u0d28\u0d4d\u0d27\u0d2e\u0d3e\u0d2f \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15.<\/p>\n        <\/div>\n\n        <div class=\"progress-section\">\n            <div class=\"progress-text\" id=\"progressText\">Progress: 0\/10<\/div>\n            <div class=\"progress-bar\">\n                <div class=\"progress-fill\" id=\"progressFill\"><\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"questionsContainer\">\n            <!-- Questions will be dynamically generated here -->\n        <\/div>\n\n        <button class=\"submit-button\" id=\"submitBtn\" onclick=\"calculateResults()\">\n            \ud83d\udcca \u0d0e\u0d28\u0d4d\u0d31\u0d46 Results \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15\n        <\/button>\n\n        <div class=\"results-container\" id=\"resultsContainer\">\n            <div class=\"score-display\">\n                <div class=\"score-circle\" id=\"scoreCircle\">\n                    <span id=\"scorePercentage\">0%<\/span>\n                <\/div>\n                <div class=\"result-title\" id=\"resultTitle\"><\/div>\n                <div class=\"result-description\" id=\"resultDescription\"><\/div>\n            <\/div>\n\n            <div class=\"suggestions-section\" id=\"suggestionsSection\">\n                <div class=\"suggestions-title\">\n                    \ud83d\udca1 \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e\u0d15\u0d4d\u0d15\u0d41\u0d33\u0d4d\u0d33 Personalized Suggestions\n                <\/div>\n                <div id=\"suggestionsList\"><\/div>\n            <\/div>\n\n            <button class=\"reset-button\" onclick=\"resetAssessment()\">\n                \ud83d\udd04 \u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02 Assessment \u0d0e\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15\n            <\/button>\n        <\/div>\n\n        <div class=\"tip-box\">\n            <h4>\ud83d\udca1 Pro Tip<\/h4>\n            <p>\u0d38\u0d24\u0d4d\u0d2f\u0d38\u0d28\u0d4d\u0d27\u0d2e\u0d3e\u0d2f\u0d3f \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15! \u0d07\u0d24\u0d4d \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 personal development-\u0d28\u0d41\u0d33\u0d4d\u0d33\u0d24\u0d3e\u0d23\u0d4d, \u0d2e\u0d31\u0d4d\u0d31\u0d3e\u0d30\u0d41\u0d02 \u0d15\u0d3e\u0d23\u0d41\u0d28\u0d4d\u0d28\u0d3f\u0d32\u0d4d\u0d32. \u0d36\u0d30\u0d3f\u0d2f\u0d3e\u0d2f feedback \u0d15\u0d3f\u0d1f\u0d4d\u0d1f\u0d23\u0d2e\u0d46\u0d19\u0d4d\u0d15\u0d3f\u0d7d honest \u0d06\u0d2f\u0d3f\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15! \ud83c\udfaf<\/p>\n        <\/div>\n    <\/div>\n\n    <script>\n        const questions = [\n            {\n                id: 1,\n                text: \"\u0d2a\u0d30\u0d40\u0d15\u0d4d\u0d37\u0d3e \u0d2b\u0d32\u0d24\u0d4d\u0d24\u0d46\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d06\u0d36\u0d19\u0d4d\u0d15\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d3e\u0d7b \u0d0e\u0d24\u0d4d\u0d30 \u0d38\u0d2e\u0d2f\u0d02 \u0d1a\u0d46\u0d32\u0d35\u0d34\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"negative\", \/\/ Lower score is better\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\", \n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 2,\n                text: \"\u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \u0d2a\u0d20\u0d28 \u0d2a\u0d26\u0d4d\u0d27\u0d24\u0d3f \u0d09\u0d23\u0d4d\u0d1f\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4b?\",\n                type: \"positive\", \/\/ Higher score is better\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\", \n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 3,\n                text: \"\u0d2e\u0d31\u0d4d\u0d31\u0d41\u0d33\u0d4d\u0d33\u0d35\u0d30\u0d41\u0d1f\u0d46 \u0d2a\u0d41\u0d30\u0d4b\u0d17\u0d24\u0d3f\u0d2f\u0d46\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 \u0d1a\u0d3f\u0d28\u0d4d\u0d24\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"negative\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\", \n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 4,\n                text: \"\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d2a\u0d20\u0d28 \u0d30\u0d40\u0d24\u0d3f \u0d2e\u0d46\u0d1a\u0d4d\u0d1a\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d3e\u0d7b \u0d28\u0d1f\u0d2a\u0d1f\u0d3f \u0d0e\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4b?\",\n                type: \"positive\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 5,\n                text: \"PSC \u0d28\u0d2f\u0d19\u0d4d\u0d19\u0d33\u0d3f\u0d32\u0d46 \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d19\u0d4d\u0d19\u0d33\u0d46\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d0e\u0d24\u0d4d\u0d30 \u0d06\u0d36\u0d19\u0d4d\u0d15\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"negative\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 6,\n                text: \"\u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \u0d0e\u0d24\u0d4d\u0d30 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c \u0d2b\u0d32\u0d2a\u0d4d\u0d30\u0d26\u0d2e\u0d3e\u0d2f\u0d3f \u0d2a\u0d20\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"positive\",\n                options: [\n                    \"1 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d31\u0d3f\u0d7d \u0d24\u0d3e\u0d34\u0d46\",\n                    \"1-2 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c\", \n                    \"3-4 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c\",\n                    \"5-6 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c\",\n                    \"6+ \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c\"\n                ]\n            },\n            {\n                id: 7,\n                text: \"Rank List \u0d15\u0d3e\u0d32\u0d24\u0d3e\u0d2e\u0d38\u0d24\u0d4d\u0d24\u0d46\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 stress \u0d06\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"negative\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 8,\n                text: \"\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d15\u0d34\u0d3f\u0d35\u0d41\u0d15\u0d7e \u0d2e\u0d46\u0d1a\u0d4d\u0d1a\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d3e\u0d7b \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d35\u0d34\u0d3f\u0d15\u0d7e \u0d15\u0d23\u0d4d\u0d1f\u0d46\u0d24\u0d4d\u0d24\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4b?\",\n                type: \"positive\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 9,\n                text: \"Vacancy \u0d15\u0d41\u0d31\u0d35\u0d3f\u0d28\u0d46\u0d15\u0d4d\u0d15\u0d41\u0d31\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 \u0d35\u0d3f\u0d37\u0d2e\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41?\",\n                type: \"negative\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            },\n            {\n                id: 10,\n                text: \"\u0d2a\u0d4d\u0d30\u0d24\u0d3f\u0d26\u0d3f\u0d28\u0d02 \u0d38\u0d4d\u0d35\u0d2f\u0d02 \u0d2e\u0d42\u0d32\u0d4d\u0d2f\u0d28\u0d3f\u0d7c\u0d23\u0d2f\u0d02 \u0d28\u0d1f\u0d24\u0d4d\u0d24\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4b?\",\n                type: \"positive\",\n                options: [\n                    \"\u0d12\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d32\u0d41\u0d2e\u0d3f\u0d32\u0d4d\u0d32\",\n                    \"\u0d05\u0d2a\u0d42\u0d7c\u0d35\u0d4d\u0d35\u0d2e\u0d3e\u0d2f\u0d3f\",\n                    \"\u0d1a\u0d3f\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d7e\",\n                    \"\u0d2a\u0d32\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\",\n                    \"\u0d0e\u0d2a\u0d4d\u0d2a\u0d4b\u0d34\u0d41\u0d02\"\n                ]\n            }\n        ];\n\n        let answers = {};\n        let currentProgress = 0;\n\n        function initializeAssessment() {\n            const container = document.getElementById('questionsContainer');\n            \n            questions.forEach(question => {\n                const questionDiv = document.createElement('div');\n                questionDiv.className = 'question-container';\n                questionDiv.innerHTML = `\n                    <div class=\"question-number\">Question ${question.id}<\/div>\n                    <div class=\"question-text\">${question.text}<\/div>\n                    <div class=\"options-container\">\n                        ${question.options.map((option, index) => `\n                            <div class=\"option\" onclick=\"selectOption(${question.id}, ${index + 1})\">\n                                <div class=\"option-number\">${index + 1}<\/div>\n                                <div>${option}<\/div>\n                            <\/div>\n                        `).join('')}\n                    <\/div>\n                `;\n                container.appendChild(questionDiv);\n            });\n        }\n\n        function selectOption(questionId, value) {\n            answers[questionId] = value;\n            \n            \/\/ Update UI\n            const questionContainer = document.querySelector(`[data-question=\"${questionId}\"]`) || \n                                   document.querySelector(`.question-container:nth-child(${questionId})`);\n            \n            \/\/ Remove previous selections\n            const allOptions = questionContainer.querySelectorAll('.option');\n            allOptions.forEach(opt => opt.classList.remove('selected'));\n            \n            \/\/ Add selection to clicked option\n            const selectedOption = allOptions[value - 1];\n            selectedOption.classList.add('selected');\n            \n            \/\/ Mark container as answered\n            questionContainer.classList.add('answered');\n            \n            updateProgress();\n        }\n\n        function updateProgress() {\n            currentProgress = Object.keys(answers).length;\n            const progressPercent = (currentProgress \/ questions.length) * 100;\n            \n            document.getElementById('progressText').textContent = `Progress: ${currentProgress}\/${questions.length}`;\n            document.getElementById('progressFill').style.width = `${progressPercent}%`;\n            \n            const submitBtn = document.getElementById('submitBtn');\n            if (currentProgress === questions.length) {\n                submitBtn.classList.add('ready');\n            } else {\n                submitBtn.classList.remove('ready');\n            }\n        }\n\n        function calculateResults() {\n            if (currentProgress < questions.length) {\n                alert('\u0d15\u0943\u092a\u092f\u093e \u0938\u092d\u0940 \u0938\u0935\u093e\u0932\u094b\u0902 \u0915\u093e \u091c\u0935\u093e\u092c \u0926\u0947\u0902!');\n                return;\n            }\n\n            let totalScore = 0;\n            \n            questions.forEach(question => {\n                const answer = answers[question.id];\n                if (question.type === 'positive') {\n                    totalScore += answer;\n                } else {\n                    totalScore += (6 - answer); \/\/ Reverse scoring for negative questions\n                }\n            });\n\n            const maxScore = questions.length * 5;\n            const percentage = Math.round((totalScore \/ maxScore) * 100);\n            \n            displayResults(percentage, totalScore, maxScore);\n        }\n\n        function displayResults(percentage, score, maxScore) {\n            const resultsContainer = document.getElementById('resultsContainer');\n            const scoreCircle = document.getElementById('scoreCircle');\n            const scorePercentage = document.getElementById('scorePercentage');\n            const resultTitle = document.getElementById('resultTitle');\n            const resultDescription = document.getElementById('resultDescription');\n            \n            scorePercentage.textContent = `${percentage}%`;\n            \n            let category, title, description, suggestions;\n            \n            if (percentage >= 80) {\n                category = 'excellent';\n                title = '\ud83c\udf1f \u0d38\u0d4d\u0d35\u0d3e\u0d27\u0d40\u0d28\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32 \u0d35\u0d3f\u0d26\u0d17\u0d4d\u0d27\u0d7b!';\n                description = '\u0d05\u0d2d\u0d3f\u0d28\u0d28\u0d4d\u0d26\u0d28\u0d19\u0d4d\u0d19\u0d7e! \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d07\u0d24\u0d3f\u0d28\u0d15\u0d02 \u0d24\u0d28\u0d4d\u0d28\u0d46 proactive approach \u0d38\u0d4d\u0d35\u0d40\u0d15\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d3f\u0d30\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41! \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 PSC \u0d35\u0d3f\u0d1c\u0d2f\u0d02 \u0d09\u0d31\u0d2a\u0d4d\u0d2a\u0d3e\u0d23\u0d4d! \ud83c\udfc6';\n                suggestions = [\n                    {\n                        title: '\u2705 \u0d28\u0d3f\u0d32\u0d35\u0d3f\u0d32\u0d46 Approach \u0d24\u0d41\u0d1f\u0d30\u0d41\u0d15',\n                        desc: '\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d \u0d35\u0d33\u0d30\u0d46 \u0d28\u0d32\u0d4d\u0d32\u0d24\u0d3e\u0d23\u0d4d. \u0d08 consistency maintain \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udc65 \u0d2e\u0d31\u0d4d\u0d31\u0d41\u0d33\u0d4d\u0d33\u0d35\u0d30\u0d46 Mentor \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15',\n                        desc: '\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 experience \u0d2e\u0d31\u0d4d\u0d31\u0d4d students-\u0d28\u0d46 \u0d38\u0d39\u0d3e\u0d2f\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udcc8 Advanced Techniques \u0d2a\u0d30\u0d40\u0d15\u0d4d\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: 'Speed reading, memory techniques \u0d2a\u0d4b\u0d32\u0d41\u0d33\u0d4d\u0d33 advanced methods \u0d36\u0d4d\u0d30\u0d2e\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15.'\n                    }\n                ];\n            } else if (percentage >= 60) {\n                category = 'good';\n                title = '\ud83d\udc4d \u0d28\u0d32\u0d4d\u0d32 \u0d2a\u0d41\u0d30\u0d4b\u0d17\u0d24\u0d3f!';\n                description = '\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d36\u0d30\u0d3f\u0d2f\u0d3e\u0d2f \u0d2a\u0d3e\u0d24\u0d2f\u0d3f\u0d32\u0d3e\u0d23\u0d4d! \u0d1a\u0d3f\u0d32 \u0d2e\u0d47\u0d16\u0d32\u0d15\u0d33\u0d3f\u0d7d \u0d15\u0d42\u0d1f\u0d41\u0d24\u0d7d \u0d36\u0d4d\u0d30\u0d26\u0d4d\u0d27 \u0d15\u0d47\u0d28\u0d4d\u0d26\u0d4d\u0d30\u0d40\u0d15\u0d30\u0d3f\u0d1a\u0d4d\u0d1a\u0d3e\u0d7d excellence \u0d28\u0d47\u0d1f\u0d3e\u0d02! \ud83d\udcaa';\n                suggestions = [\n                    {\n                        title: '\ud83c\udfaf Daily Planning \u0d15\u0d42\u0d1f\u0d41\u0d24\u0d7d Systematic \u0d06\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: '\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \u0d30\u0d3e\u0d35\u0d3f\u0d32\u0d46 15 \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d planning-\u0d28\u0d41 \u0d35\u0d15\u0d2f\u0d3f\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udcda Study Hours \u0d35\u0d7c\u0d27\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: '\u0d28\u0d3f\u0d32\u0d35\u0d3f\u0d32\u0d47\u0d24\u0d3f\u0d28\u0d47\u0d15\u0d4d\u0d15\u0d3e\u0d7e 1-2 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c \u0d15\u0d42\u0d1f\u0d41\u0d24\u0d7d \u0d2a\u0d20\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d36\u0d4d\u0d30\u0d2e\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udeab Comparison \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d28\u0d4d\u0d28 \u0d38\u0d2e\u0d2f\u0d02 \u0d15\u0d41\u0d31\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: '\u0d2e\u0d31\u0d4d\u0d31\u0d41\u0d33\u0d4d\u0d33\u0d35\u0d30\u0d41\u0d2e\u0d3e\u0d2f\u0d3f compare \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d28\u0d4d\u0d28\u0d24\u0d4d \u0d28\u0d3f\u0d7c\u0d24\u0d4d\u0d24\u0d3f \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 progress-\u0d7d focus \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    }\n                ];\n            } else if (percentage >= 40) {\n                category = 'average';\n                title = '\u26a1 \u0d2e\u0d46\u0d1a\u0d4d\u0d1a\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d3e\u0d7b \u0d38\u0d3e\u0d27\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d02!';\n                description = '\u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d3f\u0d7d \u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d4b\u0d1f\u0d4d\u0d1f\u0d4d \u0d2a\u0d4b\u0d15\u0d3e\u0d28\u0d41\u0d33\u0d4d\u0d33 \u0d15\u0d34\u0d3f\u0d35\u0d41\u0d23\u0d4d\u0d1f\u0d4d! \u0d1a\u0d3f\u0d32 \u0d15\u0d3e\u0d30\u0d4d\u0d2f\u0d19\u0d4d\u0d19\u0d7e \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d3f\u0d2f\u0d3e\u0d7d \u0d35\u0d32\u0d3f\u0d2f \u0d35\u0d4d\u0d2f\u0d24\u0d4d\u0d2f\u0d3e\u0d38\u0d02 \u0d35\u0d30\u0d41\u0d24\u0d4d\u0d24\u0d3e\u0d02! \ud83d\ude80';\n                suggestions = [\n                    {\n                        title: '\ud83d\udcc5 Daily 30 \u0d2e\u0d3f\u0d28\u0d3f\u0d31\u0d4d\u0d31\u0d4d Planning Time Fix \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15',\n                        desc: '\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \u0d12\u0d30\u0d47 \u0d38\u0d2e\u0d2f\u0d24\u0d4d\u0d24\u0d4d \u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d26\u0d3f\u0d35\u0d38\u0d24\u0d4d\u0d24\u0d46 plan \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udcd6 Study Hours 4+ \u0d06\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d36\u0d4d\u0d30\u0d2e\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: 'Quality study time \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d41\u0d15. Short breaks \u0d0e\u0d1f\u0d41\u0d24\u0d4d\u0d24\u0d4d concentration improve \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\u270d\ufe0f Daily Self-Assessment \u0d06\u0d30\u0d02\u0d2d\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15',\n                        desc: '\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \"\u0d07\u0d28\u0d4d\u0d28\u0d4d \u0d1e\u0d3e\u0d7b \u0d0e\u0d28\u0d4d\u0d24\u0d4d control \u0d1a\u0d46\u0d2f\u0d4d\u0d24\u0d41?\" \u0d0e\u0d28\u0d4d\u0d28\u0d4d \u0d0e\u0d34\u0d41\u0d24\u0d41\u0d15.'\n                    }\n                ];\n            } else {\n                category = 'needs-work';\n                title = '\ud83d\udd25 \u0d2a\u0d41\u0d24\u0d3f\u0d2f \u0d24\u0d41\u0d1f\u0d15\u0d4d\u0d15\u0d02!';\n                description = '\u0d07\u0d24\u0d4d \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 transformation-\u0d28\u0d4d\u0d31\u0d46 \u0d06\u0d30\u0d02\u0d2d\u0d2e\u0d3e\u0d23\u0d4d! \u0d13\u0d30\u0d4b \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 \u0d1a\u0d46\u0d31\u0d3f\u0d2f \u0d2e\u0d3e\u0d31\u0d4d\u0d31\u0d19\u0d4d\u0d19\u0d7e \u0d35\u0d32\u0d3f\u0d2f \u0d35\u0d3f\u0d1c\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d28\u0d2f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d02! \ud83c\udf05';\n                suggestions = [\n                    {\n                        title: '\ud83c\udfaf \u0d07\u0d28\u0d4d\u0d28\u0d4d \u0d24\u0d28\u0d4d\u0d28\u0d46 2 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c Quality Study Time Fix \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15',\n                        desc: '\u0d1a\u0d46\u0d31\u0d41\u0d24\u0d3e\u0d2f\u0d3f \u0d24\u0d41\u0d1f\u0d19\u0d4d\u0d19\u0d41\u0d15. \u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 2 \u0d2e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d42\u0d7c focused study ensure \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udeab Others-\u0d28\u0d4d\u0d31\u0d46 Progress Tracking \u0d28\u0d3f\u0d7c\u0d24\u0d4d\u0d24\u0d41\u0d15',\n                        desc: 'Social media-\u0d2f\u0d3f\u0d7d PSC groups avoid \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15. \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 journey-\u0d2f\u0d3f\u0d7d \u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 focus \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udcdd Tomorrow-\u0d28\u0d4d 3 Achievable Goals \u0d0e\u0d34\u0d41\u0d24\u0d41\u0d15',\n                        desc: '\u0d35\u0d33\u0d30\u0d46 \u0d1a\u0d46\u0d31\u0d3f\u0d2f, achievable goals set \u0d1a\u0d46\u0d2f\u0d4d\u0d24\u0d4d \u0d06\u0d24\u0d4d\u0d2e\u0d35\u0d3f\u0d36\u0d4d\u0d35\u0d3e\u0d38\u0d02 \u0d15\u0d42\u0d1f\u0d4d\u0d1f\u0d41\u0d15.'\n                    },\n                    {\n                        title: '\ud83d\udcaa \"\u0d1e\u0d3e\u0d7b \u0d15\u0d34\u0d3f\u0d2f\u0d41\u0d02\" Affirmation \u0d2a\u0d4d\u0d30\u0d24\u0d3f\u0d26\u0d3f\u0d28\u0d02',\n                        desc: '\u0d0e\u0d32\u0d4d\u0d32\u0d3e \u0d26\u0d3f\u0d35\u0d38\u0d35\u0d41\u0d02 10 \u0d24\u0d35\u0d23 \"\u0d1e\u0d3e\u0d7b PSC crack \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d02\" \u0d0e\u0d28\u0d4d\u0d28\u0d4d \u0d2a\u0d31\u0d2f\u0d41\u0d15.'\n                    }\n                ];\n            }\n\n            scoreCircle.className = `score-circle score-${category}`;\n            resultTitle.textContent = title;\n            resultDescription.textContent = description;\n\n            \/\/ Display suggestions\n            const suggestionsList = document.getElementById('suggestionsList');\n            suggestionsList.innerHTML = suggestions.map(suggestion => `\n                <div class=\"suggestion-item\">\n                    <h4>${suggestion.title}<\/h4>\n                    <p>${suggestion.desc}<\/p>\n                <\/div>\n            `).join('');\n\n            resultsContainer.classList.add('show');\n            \n            \/\/ Scroll to results\n            setTimeout(() => {\n                resultsContainer.scrollIntoView({ behavior: 'smooth' });\n            }, 300);\n        }\n\n        function resetAssessment() {\n            answers = {};\n            currentProgress = 0;\n            \n            \/\/ Reset UI\n            document.querySelectorAll('.question-container').forEach(container => {\n                container.classList.remove('answered');\n                container.querySelectorAll('.option').forEach(opt => {\n                    opt.classList.remove('selected');\n                });\n            });\n            \n            document.getElementById('resultsContainer').classList.remove('show');\n            updateProgress();\n            \n            \/\/ Scroll to top\n            window.scrollTo({ top: 0, behavior: 'smooth' });\n        }\n\n        \/\/ Initialize the assessment when page loads\n        document.addEventListener('DOMContentLoaded', initializeAssessment);\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>PSC Self-Assessment Tool \ud83e\udde0 PSC Self-Assessment Tool \u0d38\u0d4d\u0d35\u0d3e\u0d27\u0d40\u0d28\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 vs \u0d06\u0d36\u0d19\u0d4d\u0d15\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 &#8211; \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 Score \u0d15\u0d23\u0d4d\u0d1f\u0d46\u0d24\u0d4d\u0d24\u0d41\u0d15 \ud83c\udfaf \u0d08 Assessment-\u0d28\u0d4d\u0d31\u0d46 \u0d32\u0d15\u0d4d\u0d37\u0d4d\u0d2f\u0d02: \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 proactive \u0d06\u0d2f\u0d3f PSC \u0d24\u0d2f\u0d4d\u0d2f\u0d3e\u0d31\u0d46\u0d1f\u0d41\u0d2a\u0d4d\u0d2a\u0d3f\u0d7d \u0d0f\u0d7c\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4d \u0d0e\u0d28\u0d4d\u0d28\u0d4d \u0d05\u0d31\u0d3f\u0d2f\u0d3e\u0d7b. \ud83d\udcdd \u0d0e\u0d19\u0d4d\u0d19\u0d28\u0d46 \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d3e\u0d02: \u0d13\u0d30\u0d4b \u0d1a\u0d4b\u0d26\u0d4d\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d28\u0d41\u0d02 1-5 scale-\u0d7d \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d38\u0d24\u0d4d\u0d2f\u0d38\u0d28\u0d4d\u0d27\u0d2e\u0d3e\u0d2f \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15. Progress: 0\/10 \ud83d\udcca \u0d0e\u0d28\u0d4d\u0d31\u0d46 Results \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15 0% \ud83d\udca1 \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e\u0d15\u0d4d\u0d15\u0d41\u0d33\u0d4d\u0d33 Personalized Suggestions \ud83d\udd04 \u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02 Assessment [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"content-type":"","om_disable_all_campaigns":false,"_uag_custom_page_level_css":"","ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2236","post","type-post","status-publish","format-standard","hentry","category-uncategorized","entry"],"aioseo_notices":[],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"ocean-thumb-m":false,"ocean-thumb-ml":false,"ocean-thumb-l":false},"uagb_author_info":{"display_name":"raghumadambath","author_link":"https:\/\/windowedu.in\/blog\/?author=1"},"uagb_comment_info":3,"uagb_excerpt":"PSC Self-Assessment Tool \ud83e\udde0 PSC Self-Assessment Tool \u0d38\u0d4d\u0d35\u0d3e\u0d27\u0d40\u0d28\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 vs \u0d06\u0d36\u0d19\u0d4d\u0d15\u0d3e \u0d2e\u0d23\u0d4d\u0d21\u0d32\u0d02 &#8211; \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 Score \u0d15\u0d23\u0d4d\u0d1f\u0d46\u0d24\u0d4d\u0d24\u0d41\u0d15 \ud83c\udfaf \u0d08 Assessment-\u0d28\u0d4d\u0d31\u0d46 \u0d32\u0d15\u0d4d\u0d37\u0d4d\u0d2f\u0d02: \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e \u0d0e\u0d24\u0d4d\u0d30\u0d2e\u0d3e\u0d24\u0d4d\u0d30\u0d02 proactive \u0d06\u0d2f\u0d3f PSC \u0d24\u0d2f\u0d4d\u0d2f\u0d3e\u0d31\u0d46\u0d1f\u0d41\u0d2a\u0d4d\u0d2a\u0d3f\u0d7d \u0d0f\u0d7c\u0d2a\u0d4d\u0d2a\u0d46\u0d1f\u0d41\u0d28\u0d4d\u0d28\u0d41\u0d23\u0d4d\u0d1f\u0d4d \u0d0e\u0d28\u0d4d\u0d28\u0d4d \u0d05\u0d31\u0d3f\u0d2f\u0d3e\u0d7b. \ud83d\udcdd \u0d0e\u0d19\u0d4d\u0d19\u0d28\u0d46 \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d3e\u0d02: \u0d13\u0d30\u0d4b \u0d1a\u0d4b\u0d26\u0d4d\u0d2f\u0d24\u0d4d\u0d24\u0d3f\u0d28\u0d41\u0d02 1-5 scale-\u0d7d \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d33\u0d41\u0d1f\u0d46 \u0d38\u0d24\u0d4d\u0d2f\u0d38\u0d28\u0d4d\u0d27\u0d2e\u0d3e\u0d2f \u0d09\u0d24\u0d4d\u0d24\u0d30\u0d02 \u0d28\u0d7d\u0d15\u0d41\u0d15. Progress: 0\/10 \ud83d\udcca \u0d0e\u0d28\u0d4d\u0d31\u0d46 Results \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15 0% \ud83d\udca1 \u0d28\u0d3f\u0d19\u0d4d\u0d19\u0d7e\u0d15\u0d4d\u0d15\u0d41\u0d33\u0d4d\u0d33 Personalized Suggestions \ud83d\udd04 \u0d35\u0d40\u0d23\u0d4d\u0d1f\u0d41\u0d02 Assessment&hellip;","_links":{"self":[{"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2236","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2236"}],"version-history":[{"count":3,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2236\/revisions"}],"predecessor-version":[{"id":2261,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2236\/revisions\/2261"}],"wp:attachment":[{"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windowedu.in\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}