{"id":855,"date":"2026-04-30T17:45:57","date_gmt":"2026-04-30T17:45:57","guid":{"rendered":"https:\/\/kahfkids.com\/blog\/?page_id=855"},"modified":"2026-04-30T17:46:14","modified_gmt":"2026-04-30T17:46:14","slug":"demo-learn","status":"publish","type":"page","link":"https:\/\/kahfkids.com\/blog\/demo-learn\/","title":{"rendered":"demo learn"},"content":{"rendered":"\n!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Muslim Kids Learning &#8211; The Grand Journey (Ultimate Juice Edition)<\/title>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Nunito:wght@400;700;900&#038;display=swap\" rel=\"stylesheet\">\n    <style>\n        :root {\n            --primary-blue: #4A90E2;\n            --secondary-green: #27AE60;\n            --accent-yellow: #F1C40F;\n            --accent-orange: #E67E22;\n            --bg-color: #f0f4f8;\n            --text-dark: #2C3E50;\n            --white: #ffffff;\n            --shadow-depth: 0 10px 0 rgba(0,0,0,0.1);\n            --node-active: var(--secondary-green);\n            --node-current: var(--primary-blue);\n            --node-locked: #BDC3C7;\n            --danger-red: #FF4B4B;\n        }\n\n        [data-theme=\"dark\"] {\n            --bg-color: #1A1A1A;\n            --text-dark: #ECF0F1;\n            --white: #2C3E50;\n            --primary-blue: #3498DB;\n            --secondary-green: #2ECC71;\n            --shadow-depth: 0 10px 0 rgba(0,0,0,0.4);\n        }\n\n        * { box-sizing: border-box; margin: 0; padding: 0; }\n\n        body {\n            font-family: 'Nunito', sans-serif;\n            background: #85C1E9;\n            color: var(--text-dark);\n            margin: 0;\n            transition: background 0.5s, color 0.3s;\n            overflow-x: hidden;\n            min-height: 100vh;\n        }\n\n        \/* --- Transitions --- *\/\n        .screen {\n            display: none;\n            flex-direction: column;\n            animation: fadeIn 0.4s ease-out;\n            padding-bottom: 120px;\n            min-height: 100vh;\n            position: relative;\n            z-index: 10;\n        }\n        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }\n\n        \/* --- Immersive HUD --- *\/\n        header {\n            display: none;\n            justify-content: space-between;\n            padding: 20px 30px;\n            position: sticky;\n            top: 0;\n            z-index: 1000;\n        }\n\n        .hud-item {\n            background: rgba(255, 255, 255, 0.9);\n            padding: 10px 20px;\n            border-radius: 20px;\n            box-shadow: var(--shadow-depth);\n            display: flex;\n            align-items: center;\n            gap: 12px;\n            font-weight: 900;\n            color: #2C3E50;\n            border: 4px solid white;\n            cursor: pointer;\n            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n        }\n        .hud-item:hover { transform: scale(1.1); }\n\n        .hud-item svg {\n            width: 30px;\n            height: 30px;\n            filter: drop-shadow(0 2px 0 rgba(0,0,0,0.1));\n        }\n\n        \/* --- Environment Layers --- *\/\n        #env-layers {\n            position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1;\n        }\n        .cloud {\n            position: absolute; background: white; width: 150px; height: 50px; border-radius: 50px; opacity: 0.8;\n            animation: moveCloud 20s linear infinite;\n        }\n        .cloud::before, .cloud::after { content: ''; position: absolute; background: white; border-radius: 50%; }\n        .cloud::before { width: 80px; height: 80px; top: -40px; left: 20px; }\n        .cloud::after { width: 60px; height: 60px; top: -30px; right: 20px; }\n        @keyframes moveCloud { from { left: -200px; } to { left: 110%; } }\n\n        .star {\n            position: absolute; width: 3px; height: 3px; background: white; border-radius: 50%;\n            box-shadow: 0 0 10px white; animation: twinkle 3s infinite;\n        }\n        @keyframes twinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; transform: scale(1.5); } }\n\n        .torch { position: absolute; width: 10px; height: 30px; background: #873600; z-index: 5; }\n        .torch::after {\n            content: ''; position: absolute; top: -15px; left: -5px; width: 20px; height: 20px;\n            background: orange; border-radius: 50% 50% 20% 50%; box-shadow: 0 0 20px orange; animation: flicker 0.2s infinite;\n        }\n        @keyframes flicker { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }\n\n        .grid-bg {\n            position: absolute; width: 100%; height: 100%;\n            background-image: linear-gradient(rgba(0, 242, 255, 0.1) 1px, transparent 1px),\n                              linear-gradient(90deg, rgba(0, 242, 255, 0.1) 1px, transparent 1px);\n            background-size: 50px 50px; opacity: 0; transition: opacity 1s;\n        }\n\n        \/* --- Landing Screen --- *\/\n        #screen-landing { flex: 1; align-items: center; justify-content: center; text-align: center; }\n        .landing-card { \n            background: white; color: #333; padding: 40px; border-radius: 40px; \n            box-shadow: 0 30px 60px rgba(0,0,0,0.3); max-width: 600px; width: 95%; \n            border: 10px solid var(--primary-blue);\n            animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n        }\n        @keyframes bounceIn {\n            0% { opacity: 0; transform: scale(0.3); }\n            50% { opacity: 1; transform: scale(1.05); }\n            70% { transform: scale(0.9); }\n            100% { transform: scale(1); }\n        }\n        .landing-card h1 { font-size: 3rem; margin-bottom: 10px; color: var(--primary-blue); font-weight: 900; text-shadow: 0 4px 0 rgba(0,0,0,0.1); }\n        .age-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }\n        .age-btn { \n            background: #F8F9FA; border: 4px solid #E5E7E9; padding: 30px; border-radius: 30px; cursor: pointer; \n            transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); \n            text-align: center; box-shadow: 0 10px 0 #E5E7E9;\n        }\n        .age-btn:hover { transform: translateY(-5px) scale(1.05); border-color: var(--primary-blue); box-shadow: 0 15px 0 var(--primary-blue); }\n        .age-btn:active { transform: translateY(10px); box-shadow: 0 0 0 var(--primary-blue); }\n        .age-btn h3 { font-weight: 900; color: var(--primary-blue); font-size: 1.6rem; }\n\n        \/* --- Map View (Floating Islands) --- *\/\n        .map-container { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; padding-top: 60px; perspective: 1000px; }\n        \n        .unit-section { width: 100%; margin-bottom: 100px; display: flex; flex-direction: column; align-items: center; position: relative; }\n        .unit-header { \n            background: var(--accent-orange); color: white; padding: 20px 60px; border-radius: 30px; \n            font-weight: 900; text-transform: uppercase; margin-bottom: 80px; box-shadow: 0 12px 0 #A04000;\n            font-size: 1.5rem; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,0.2);\n            position: relative; z-index: 50;\n        }\n\n        .island-node {\n            width: 180px; height: 110px; border-radius: 50% \/ 40%; position: relative;\n            box-shadow: 0 20px 0 #999, 0 40px 50px rgba(0,0,0,0.3);\n            animation: float 4s ease-in-out infinite; cursor: pointer;\n            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n            display: flex; flex-direction: column; justify-content: center; align-items: center;\n            margin-bottom: 120px;\n        }\n        .island-node::before {\n            content: ''; position: absolute; top: 8px; left: 15px; right: 15px; bottom: 25px;\n            background: rgba(255, 255, 255, 0.2); border-radius: 50%; pointer-events: none;\n        }\n        .island-node.active { background: var(--secondary-green); box-shadow: 0 20px 0 #1E8449, 0 40px 50px rgba(0,0,0,0.3); }\n        .island-node.current { background: var(--primary-blue); box-shadow: 0 20px 0 #2E5A8E, 0 0 40px var(--accent-yellow); border: 4px solid white; }\n        .island-node.locked { background: #BDC3C7; box-shadow: 0 20px 0 #7F8C8D; opacity: 0.9; cursor: not-allowed; }\n        \n        .island-node:hover:not(.locked) { transform: scale(1.15) translateY(-15px); }\n        .island-node:active:not(.locked) { transform: translateY(15px); box-shadow: 0 5px 0 rgba(0,0,0,0.2); }\n\n        .island-icon { font-size: 3.5rem; z-index: 10; filter: drop-shadow(0 5px 5px rgba(0,0,0,0.3)); }\n        .island-label {\n            position: absolute; bottom: -50px; background: white; padding: 10px 20px; border-radius: 20px;\n            font-weight: 900; font-size: 0.9rem; color: #2C3E50; box-shadow: var(--shadow-depth);\n            white-space: nowrap; border: 3px solid var(--primary-blue);\n        }\n\n        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }\n\n        \/* --- Mission Brief Modal --- *\/\n        .modal-overlay {\n            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); \n            z-index: 5000; display: none; align-items: center; justify-content: center;\n        }\n        .brief-card {\n            background: white; padding: 40px; border-radius: 50px; max-width: 550px; width: 95%; \n            text-align: center; border: 12px solid var(--accent-yellow); animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n            box-shadow: 0 40px 80px rgba(0,0,0,0.5); position: relative;\n        }\n        .brief-card .mascot-container { width: 120px; height: 120px; margin: 0 auto 20px; }\n        .brief-card h3 { text-transform: uppercase; color: var(--accent-orange); font-weight: 900; margin-bottom: 10px; letter-spacing: 2px; }\n        .brief-card h2 { font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 20px; font-weight: 900; }\n        .brief-card p { font-size: 1.2rem; line-height: 1.6; margin-bottom: 30px; color: #333; font-weight: 700; }\n\n        \/* --- Game Screen --- *\/\n        #screen-game { flex: 1; padding: 30px; align-items: center; background: rgba(255,255,255,0.95); border-radius: 50px 50px 0 0; margin-top: 30px; box-shadow: 0 -20px 40px rgba(0,0,0,0.1); }\n        .game-nav { width: 100%; max-width: 800px; display: flex; align-items: center; gap: 25px; margin-bottom: 40px; }\n        \n        .juice-progress { flex: 1; height: 30px; background: rgba(0,0,0,0.1); border-radius: 15px; padding: 5px; border: 4px solid white; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }\n        .juice-bar { height: 100%; background: linear-gradient(to right, #2ECC71, #27AE60); border-radius: 10px; box-shadow: inset 0 5px 0 rgba(255,255,255,0.3); transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); width: 0%; }\n        \n        .btn-exit { background: none; border: none; font-size: 4rem; line-height: 1; cursor: pointer; color: var(--text-dark); font-weight: 900; transition: transform 0.2s; }\n        .btn-exit:hover { transform: scale(1.2) rotate(90deg); color: var(--danger-red); }\n\n        .question-box { width: 100%; max-width: 800px; text-align: center; }\n        .question-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; color: var(--primary-blue); text-shadow: 0 2px 0 rgba(255,255,255,1); }\n        \n        .options-list { display: flex; flex-direction: column; gap: 15px; width: 100%; }\n        .opt-btn { \n            background: white; border: 4px solid #E5E7E9; border-radius: 30px; padding: 20px 30px; \n            font-size: 1.4rem; font-weight: 700; cursor: pointer; text-align: left; transition: all 0.2s;\n            box-shadow: 0 10px 0 #E5E7E9; display: flex; align-items: center; gap: 20px; color: #2C3E50;\n        }\n        .opt-btn:hover:not(.disabled) { border-color: var(--primary-blue); background: #F0F7FF; transform: translateY(-3px); box-shadow: 0 13px 0 #D4E6F1; }\n        .opt-btn:active:not(.disabled) { transform: translateY(8px); box-shadow: 0 2px 0 #E5E7E9; }\n        .opt-btn.correct { background: #E8F8F5; border-color: var(--secondary-green); color: var(--secondary-green); box-shadow: 0 10px 0 var(--secondary-green); }\n        .opt-btn.wrong { background: #FDEDEC; border-color: var(--danger-red); color: var(--danger-red); box-shadow: 0 10px 0 var(--danger-red); }\n        .opt-btn.disabled { cursor: default; opacity: 0.8; }\n\n        \/* --- Juicy Buttons --- *\/\n        .btn-juicy {\n            background-color: var(--accent-orange); color: white; border: none; padding: 20px 50px;\n            font-size: 1.6rem; font-weight: 900; border-radius: 30px; box-shadow: 0 12px 0 #A04000;\n            cursor: pointer; transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275); \n            text-transform: uppercase; letter-spacing: 2px;\n        }\n        .btn-juicy:hover { transform: translateY(2px) scale(1.02); box-shadow: 0 10px 0 #A04000; }\n        .btn-juicy:active { transform: translateY(12px); box-shadow: 0 0 0 #A04000; }\n\n        \/* --- Feedback Footer --- *\/\n        .footer-bar { \n            position: fixed; bottom: 0; left: 0; width: 100%; padding: 40px 20px; background: white; \n            border-top: 8px solid #EEE; display: none; justify-content: center; z-index: 2000;\n            transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n        }\n        .footer-bar.active { transform: translateY(0); display: flex; }\n        .footer-bar.correct { background: #D7FFB8; border-color: #A5E075; color: #3E7206; }\n        .footer-bar.wrong { background: #FFDFE0; border-color: #F2A2A2; color: #A91E1E; }\n        .footer-content { width: 100%; max-width: 800px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }\n        .footer-info h3 { font-size: 2.2rem; font-weight: 900; }\n        .footer-info p { font-size: 1.3rem; font-weight: 700; margin-top: 8px; }\n\n        \/* --- VFX --- *\/\n        .vfx-star {\n            position: fixed; pointer-events: none; z-index: 10000;\n            animation: explode 1s cubic-bezier(0, 0, 0.2, 1) forwards;\n        }\n        @keyframes explode {\n            0% { transform: translate(0,0) scale(1); opacity: 1; }\n            100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0); opacity: 0; }\n        }\n        .screen-shake { animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both; }\n        @keyframes shake {\n            10%, 90% { transform: translate3d(-2px, 0, 0); }\n            20%, 80% { transform: translate3d(4px, 0, 0); }\n            30%, 50%, 70% { transform: translate3d(-8px, 0, 0); }\n            40%, 60% { transform: translate3d(8px, 0, 0); }\n        }\n\n        \/* --- MashaAllah Badge Modal --- *\/\n        .mashaallah-modal { \n            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); \n            z-index: 6000; display: none; align-items: center; justify-content: center; text-align: center;\n        }\n        .badge-container { \n            background: white; padding: 50px; border-radius: 60px; max-width: 500px; width: 95%; \n            border: 15px solid var(--secondary-green); animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); \n            box-shadow: 0 50px 100px rgba(0,0,0,0.6);\n        }\n        .badge-glow { \n            width: 200px; height: 200px; background: radial-gradient(circle, var(--accent-yellow), transparent); \n            margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%;\n            animation: rotateGlow 4s linear infinite;\n        }\n        @keyframes rotateGlow { from { filter: hue-rotate(0deg); } to { filter: hue-rotate(360deg); } }\n        .badge-svg-main { width: 140px; height: 140px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }\n        .mashaallah-modal h2 { font-size: 3rem; font-weight: 900; color: var(--secondary-green); margin-bottom: 20px; }\n\n        \/* --- Mascot & Bubble --- *\/\n        .mascot-speaker { position: fixed; bottom: 40px; right: 40px; display: flex; flex-direction: column; align-items: center; z-index: 500; cursor: pointer; }\n        .speech-bubble {\n            background: white; padding: 15px 25px; border-radius: 20px; color: #2C3E50; font-weight: 900;\n            position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.2); margin-bottom: 20px; opacity: 0; transform: scale(0); transition: all 0.3s;\n            max-width: 250px; text-align: center; border: 3px solid var(--primary-blue);\n        }\n        .speech-bubble.active { opacity: 1; transform: scale(1); }\n        .speech-bubble::after {\n            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);\n            border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid white;\n        }\n        .mascot-svg-wrap { width: 120px; height: 120px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); transition: transform 0.2s; }\n        .mascot-svg-wrap:hover { transform: scale(1.1) rotate(-5deg); }\n\n        #zaid-eyes circle, #zaynab-eyes circle { animation: blink 4s infinite; }\n        @keyframes blink { 0%, 90%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } }\n        #zaid-arm { transform-origin: 100px 130px; animation: wave 2s ease-in-out infinite; }\n        @keyframes wave { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-20deg); } }\n        .zaid-body { animation: breathe 3s ease-in-out infinite; }\n        @keyframes breathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }\n        .zaynab-head { transform-origin: 100px 80px; animation: tilt 4s ease-in-out infinite; }\n        @keyframes tilt { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }\n        #zaynab-heart { transform-origin: center; animation: beat 1.5s ease-in-out infinite; fill: #E74C3C; }\n        @keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }\n\n        \/* --- Responsive --- *\/\n        @media (max-width: 500px) {\n            .island-node { width: 140px; height: 90px; margin-bottom: 60px; }\n            .unit-header { font-size: 1.1rem; padding: 15px 30px; }\n            .question-title { font-size: 1.8rem; }\n            .landing-card h1 { font-size: 2.2rem; }\n            .age-btn { padding: 20px; }\n            .hud-item { padding: 10px 15px; font-size: 0.9rem; gap: 8px; }\n        }\n\n        \/* --- Mechanics --- *\/\n        .drag-box {\n            padding: 25px; background: white; border-radius: 30px; border: 5px dashed var(--primary-blue);\n            font-size: 1.6rem; font-weight: 900; color: var(--primary-blue); margin: 20px 0;\n            cursor: grab; transition: transform 0.2s;\n        }\n        .drag-box:active { cursor: grabbing; transform: scale(1.1); }\n        .drop-zone {\n            padding: 40px; background: rgba(255,255,255,0.5); border-radius: 40px; border: 5px solid #E5E7E9;\n            margin-top: 20px; font-size: 1.2rem; color: #666; font-weight: 700; transition: all 0.3s;\n        }\n        .drop-zone.over { background: rgba(74, 144, 226, 0.1); border-color: var(--primary-blue); transform: scale(1.02); }\n    \n        \/* --- Roadmap Modal --- *\/\n        .roadmap-tabs { display: flex; gap: 10px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 10px; }\n        .roadmap-tab {\n            padding: 10px 20px; background: #EBEDEF; border: none; border-radius: 15px;\n            font-weight: 900; cursor: pointer; transition: all 0.2s; white-space: nowrap;\n        }\n        .roadmap-tab.active { background: var(--primary-blue); color: white; }\n        .roadmap-content { background: #F8F9F9; padding: 20px; border-radius: 20px; border: 3px solid #EBEDEF; max-height: 50vh; overflow-y: auto; }\n        .milestone-list { margin: 15px 0; padding-left: 20px; text-align: left; }\n        .milestone-list li { margin-bottom: 8px; font-weight: 700; color: #555; }\n        .units-roadmap-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 0.85rem; background: white; }\n        .units-roadmap-table th, .units-roadmap-table td { border: 1px solid #D5DBDB; padding: 10px; text-align: left; }\n        .units-roadmap-table th { background: #EAEDED; font-weight: 900; color: var(--text-dark); }\n        .roadmap-unit-title { color: var(--primary-blue); font-weight: 900; display: block; margin-bottom: 5px; }\n        .obj-tag { display: inline-block; padding: 2px 6px; border-radius: 6px; font-size: 0.65rem; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; margin-right: 4px; }\n        .tag-acad { background: #EBF5FB; color: #2980B9; }\n        .tag-spir { background: #E8F8F5; color: #16A085; }\n        .tag-life { background: #FEF9E7; color: #D4AC0D; }\n    <\/style>\n<\/head>\n<body id=\"main-body\">\n\n    <div id=\"env-layers\">\n        <div id=\"clouds-layer\"><\/div>\n        <div id=\"stars-layer\"><\/div>\n        <div id=\"torches-layer\"><\/div>\n        <div id=\"grid-layer\" class=\"grid-bg\"><\/div>\n    <\/div>\n\n    <header id=\"app-header\">\n        <div style=\"display: flex; gap: 15px;\">\n            <div class=\"hud-item\" onclick=\"app.toggleTheme()\">\n                <span>\ud83c\udf13<\/span>\n            <\/div>\n            <div class=\"hud-item\" onclick=\"app.openParentPortal()\">\n                <span>\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66 Parents<\/span>\n            <\/div>\n        <\/div>\n        <div style=\"display: flex; gap: 15px;\">\n            <div class=\"hud-item\" onclick=\"app.showScreen('recovery')\">\n                <svg viewBox=\"0 0 24 24\"><path d=\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\" fill=\"#FF4B4B\"\/><\/svg>\n                <span id=\"stat-hearts\">5<\/span>\n            <\/div>\n            <div class=\"hud-item\">\n                <svg viewBox=\"0 0 24 24\"><path d=\"M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z\" fill=\"#F1C40F\"\/><\/svg>\n                <span id=\"stat-xp\">0<\/span>\n            <\/div>\n        <\/div>\n    <\/header>\n\n    <!-- Landing -->\n    <div id=\"screen-landing\" class=\"screen\" style=\"display: flex;\">\n        <div class=\"landing-card\">\n            <h1>\ud83c\udf19 Grand Journey<\/h1>\n            <p style=\"font-weight: 800; color: #555; margin-bottom: 20px; font-size: 1.3rem;\">The Ultimate Immersive Learning Quest<\/p>\n            <div class=\"age-grid\">\n                <div class=\"age-btn\" onclick=\"app.selectBranch('explorers')\">\n                    <h3>Explorers<\/h3>\n                    <p>Ages 3-6<\/p>\n                <\/div>\n                <div class=\"age-btn\" onclick=\"app.selectBranch('achievers')\">\n                    <h3>Achievers<\/h3>\n                    <p>Ages 7-10<\/p>\n                <\/div>\n                <div class=\"age-btn\" onclick=\"app.selectBranch('leaders')\">\n                    <h3>Leaders<\/h3>\n                    <p>Ages 11-14<\/p>\n                <\/div>\n                <div class=\"age-btn\" onclick=\"app.selectBranch('visionaries')\">\n                    <h3>Visionaries<\/h3>\n                    <p>Ages 15-18<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <!-- Map -->\n    <div id=\"screen-map\" class=\"screen\">\n        <div class=\"map-container\" id=\"nodes-container\"><\/div>\n    <\/div>\n\n    <!-- Game -->\n    <div id=\"screen-game\" class=\"screen\">\n        <div class=\"game-nav\">\n            <button class=\"btn-exit\" onclick=\"app.showScreen('map')\">\u00d7<\/button>\n            <div class=\"juice-progress\">\n                <div id=\"game-progress\" class=\"juice-bar\"><\/div>\n            <\/div>\n        <\/div>\n        <div id=\"game-content\" class=\"question-box\"><\/div>\n    <\/div>\n\n    <!-- Recovery -->\n    <div id=\"screen-recovery\" class=\"screen\">\n        <div class=\"landing-card\" style=\"border-color: var(--accent-yellow); max-width: 500px;\">\n            <h2 style=\"font-size: 2.5rem; margin-bottom: 15px;\">Dua &#038; Focus \ud83e\udd32<\/h2>\n            <p style=\"font-size: 1.3rem; font-weight: 700; color: #444;\">Recite &#8216;SubhanAllah&#8217; as you tap the Tasbih to regain energy.<\/p>\n            <div class=\"island-node active\" style=\"margin: 50px auto; width: 160px; height: 160px; background: var(--accent-yellow); box-shadow: 0 20px 0 #D4AC0D;\" onclick=\"app.tapTasbih(this)\">\n                <span style=\"font-size: 5rem;\">\ud83d\udcff<\/span>\n            <\/div>\n            <h3 id=\"recovery-taps\" style=\"font-weight: 900; color: var(--accent-orange); font-size: 1.8rem;\">Taps: 10<\/h3>\n            <br>\n            <button class=\"btn-juicy\" style=\"background: #95A5A6; box-shadow: 0 10px 0 #7F8C8D;\" onclick=\"app.showScreen('map')\">Back<\/button>\n        <\/div>\n    <\/div>\n\n    <!-- Parent Portal Modal -->\n    <div id=\"modal-portal\" class=\"portal-overlay\">\n        <div class=\"portal-card\">\n            <div class=\"close-btn\" onclick=\"app.closeParentPortal()\">&times;<\/div>\n            <div class=\"portal-header\">\n                <h1 id=\"portal-title\">Parental Dashboard<\/h1>\n                <p id=\"portal-subtitle\">Tracking the Grand Journey<\/p>\n            <\/div>\n\n            <div class=\"lang-switcher\">\n                <button id=\"lang-en\" class=\"lang-btn active\" onclick=\"app.setLanguage('en')\">English<\/button>\n                <button id=\"lang-bn\" class=\"lang-btn\" onclick=\"app.setLanguage('bn')\">\u09ac\u09be\u0982\u09b2\u09be<\/button>\n            <\/div>\n\n            <div class=\"stats-grid\">\n                <div class=\"progress-section\">\n                    <h3 style=\"margin-bottom:15px;\" id=\"stats-title\">Progress Overview<\/h3>\n                    <div id=\"portal-stats-container\"><\/div>\n                <\/div>\n                <div class=\"tree-section\">\n                    <h3 style=\"margin-bottom:10px;\" id=\"tree-title\">Growth Tree<\/h3>\n                    <div id=\"tree-container\">\n                        <svg class=\"tree-svg\" viewBox=\"0 0 200 200\">\n                            <path d=\"M90 190 L110 190 L105 100 L95 100 Z\" fill=\"#795548\" \/>\n                            <path d=\"M100 130 L130 110\" stroke=\"#795548\" stroke-width=\"5\" fill=\"none\" \/>\n                            <path d=\"M100 150 L70 130\" stroke=\"#795548\" stroke-width=\"5\" fill=\"none\" \/>\n                            <circle cx=\"100\" cy=\"80\" r=\"30\" fill=\"#2ECC71\" opacity=\"0.6\" id=\"leaf-1\" \/>\n                            <circle cx=\"130\" cy=\"110\" r=\"20\" fill=\"#27AE60\" opacity=\"0.6\" id=\"leaf-2\" \/>\n                            <circle cx=\"70\" cy=\"130\" r=\"25\" fill=\"#2ECC71\" opacity=\"0.6\" id=\"leaf-3\" \/>\n                        <\/svg>\n                    <\/div>\n                    <p id=\"tree-desc\" style=\"font-size:0.8rem; font-weight:700; color:#666; margin-top:10px;\">Your child&#8217;s knowledge is growing!<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"roadmap-section\">\n                <h3 style=\"margin-bottom:15px; color:var(--primary-blue);\" id=\"roadmap-section-title\">Learning Roadmap<\/h3>\n                <p id=\"roadmap-intro\" style=\"font-size:0.9rem; margin-bottom:20px; font-weight:700; color:#555; text-align:left;\"><\/p>\n                \n                <div class=\"roadmap-tabs\" id=\"roadmap-tabs\"><\/div>\n                <div class=\"roadmap-content\" id=\"roadmap-content\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <!-- Mission Brief Modal -->\n    <div id=\"modal-brief\" class=\"modal-overlay\">\n        <div class=\"brief-card\">\n            <div class=\"mascot-container\" id=\"brief-mascot\"><\/div>\n            <h3>Mission Briefing<\/h3>\n            <h2 id=\"brief-title\">Title<\/h2>\n            <p id=\"brief-text\">Brief description here&#8230;<\/p>\n            <button class=\"btn-juicy\" onclick=\"app.startMission()\">Begin Quest!<\/button>\n        <\/div>\n    <\/div>\n\n    <!-- MashaAllah Modal -->\n    <div id=\"mashaallah-modal\" class=\"mashaallah-modal\">\n        <div class=\"badge-container\">\n            <div class=\"badge-glow\" id=\"badge-display\"><\/div>\n            <h2>MashaAllah!<\/h2>\n            <p id=\"reward-text\" style=\"font-size: 1.5rem; font-weight: 800; color: #444;\">Mission Accomplished!<\/p>\n            <br>\n            <button class=\"btn-juicy\" style=\"background: var(--secondary-green); box-shadow: 0 12px 0 #1E8449;\" onclick=\"app.closeMashaAllah()\">Continue<\/button>\n        <\/div>\n    <\/div>\n\n    <!-- Footer Feedback -->\n    <div id=\"footer-feedback\" class=\"footer-bar\">\n        <div class=\"footer-content\">\n            <div class=\"footer-info\">\n                <h3 id=\"feedback-status\">Correct!<\/h3>\n                <p id=\"feedback-fact\"><\/p>\n            <\/div>\n            <button id=\"btn-footer-continue\" class=\"btn-juicy\" onclick=\"app.nextStep()\">Continue<\/button>\n        <\/div>\n    <\/div>\n\n    <!-- Mascot Speaker -->\n    <div class=\"mascot-speaker\" id=\"mascot-speaker\" onclick=\"app.mascotTalk()\">\n        <div class=\"speech-bubble\" id=\"speech-bubble\">Assalamu Alaikum!<\/div>\n        <div class=\"mascot-svg-wrap\" id=\"floating-mascot\"><\/div>\n    <\/div>\n\n    <script>\n        const curriculum = {\"explorers\": {\"mission_brief\": {\"en\": \"Welcome, young Explorer! Zaid and Zaynab are going on a grand adventure to discover the treasures of Faith and Knowledge. Will you join them?\", \"bn\": \"\\u09b8\\u09cd\\u09ac\\u09be\\u0997\\u09a4\\u09ae, \\u099b\\u09cb\\u099f \\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a4\\u09cd\\u09b0\\u09c0! \\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u098f\\u09ac\\u0982 \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u0988\\u09ae\\u09be\\u09a8 \\u0993 \\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09ad\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995 \\u09ae\\u09b9\\u09be \\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997 \\u09a6\\u09c7\\u09ac\\u09c7?\"}, \"background_asset\": \"\/batch1\/garden_bg.png\", \"units\": [{\"id\": \"exp_u1\", \"title\": {\"en\": \"Unit 1: The Secret Garden of Faith\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e7: \\u0988\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cb\\u09aa\\u09a8 \\u09ac\\u09be\\u0997\\u09be\\u09a8\"}, \"mission_brief\": {\"en\": \"Zaid and Zaynab have found a hidden garden. To make it bloom, we need to learn the building blocks of our faith and language!\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u098f\\u09ac\\u0982 \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c1\\u0995\\u09be\\u09a8\\u09cb \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09c7\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u099f\\u09bf \\u09ab\\u09c1\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0988\\u09ae\\u09be\\u09a8 \\u0993 \\u09ad\\u09be\\u09b7\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u0997\\u09c1\\u09b2\\u09cb \\u09b6\\u09bf\\u0996\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7!\"}, \"background_asset\": \"\/batch1\/garden_bg.png\", \"nodes\": [{\"id\": \"exp_u1_n1\", \"title\": {\"en\": \"Mission: The Letter Bloom\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0985\\u0995\\u09cd\\u09b7\\u09b0 \\u09ab\\u09cb\\u099f\\u09be\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"A mysterious mist has covered the garden! Click the glowing flowers to reveal the Arabic letters and see which animals come to visit.\", \"bn\": \"\\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b0\\u09b9\\u09b8\\u09cd\\u09af\\u09ae\\u09af\\u09bc \\u0995\\u09c1\\u09af\\u09bc\\u09be\\u09b6\\u09be \\u09a2\\u09c7\\u0995\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u0986\\u09b0\\u09ac\\u09bf \\u0985\\u0995\\u09cd\\u09b7\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b6 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0\\u09be \\u0986\\u09b8\\u09c7 \\u09a4\\u09be \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09ab\\u09c1\\u09b2\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"SubhanAllah! Arabic letters are like the seeds of the Quran. Each one is special!\", \"bn\": \"\\u09b8\\u09c1\\u09ac\\u09b9\\u09be\\u09a8\\u09be\\u09b2\\u09cd\\u09b2\\u09be\\u09b9! \\u0986\\u09b0\\u09ac\\u09bf \\u0985\\u0995\\u09cd\\u09b7\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7\\u09b0 \\u09ac\\u09c0\\u099c\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb\\u0964 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf\\u0987 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7!\"}, \"items\": [{\"id\": \"alif\", \"label\": {\"en\": \"\\u0623 (Alif)\", \"bn\": \"\\u0986\\u09b2\\u09bf\\u09ab\"}, \"reveal\": {\"en\": \"A brave Lion (Asad) appears!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09be\\u09b9\\u09b8\\u09c0 \\u09b8\\u09bf\\u0982\\u09b9 (\\u0986\\u09b8\\u09be\\u09a6) \\u09b9\\u09be\\u099c\\u09bf\\u09b0!\"}, \"icon\": \"\\ud83e\\udd81\", \"asset\": \"\/alphabet\/lion_asad.png\"}, {\"id\": \"ba\", \"label\": {\"en\": \"\\u0628 (Ba)\", \"bn\": \"\\u09ac\\u09be\"}, \"reveal\": {\"en\": \"A cozy House (Bait) grows!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09af\\u09bc\\u0995 \\u0998\\u09b0 (\\u09ac\\u09be\\u0987\\u09a4) \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83c\\udfe0\", \"asset\": \"\/alphabet\/house_bait.png\"}, {\"id\": \"ta\", \"label\": {\"en\": \"\\u062a (Ta)\", \"bn\": \"\\u09a4\\u09be\"}, \"reveal\": {\"en\": \"A crunchy Apple (Tuffah) falls!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09c1\\u099a\\u09ae\\u09c1\\u099a\\u09c7 \\u0986\\u09aa\\u09c7\\u09b2 (\\u09a4\\u09c1\\u09ab\\u09ab\\u09be\\u09b9) \\u09aa\\u09a1\\u09bc\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83c\\udf4e\", \"asset\": \"\/alphabet\/apple_tuffah.png\"}, {\"id\": \"tha\", \"label\": {\"en\": \"\\u062b (Tha)\", \"bn\": \"\\u09b8\\u09be\"}, \"reveal\": {\"en\": \"A warm Garment (Thawb) appears!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u0997\\u09b0\\u09ae \\u09aa\\u09cb\\u09b6\\u09be\\u0995 (\\u09b8\\u09be\\u0993\\u09ac) \\u0986\\u09b8\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83d\\udc55\"}, {\"id\": \"jim\", \"label\": {\"en\": \"\\u062c (Jim)\", \"bn\": \"\\u099c\\u09c0\\u09ae\"}, \"reveal\": {\"en\": \"A patient Camel (Jamal) arrives!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09a7\\u09c8\\u09b0\\u09cd\\u09af\\u09b6\\u09c0\\u09b2 \\u0989\\u099f (\\u099c\\u09be\\u09ae\\u09be\\u09b2) \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83d\\udc2b\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"exp_u1_n2\", \"title\": {\"en\": \"Mission: The ABC Parade\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09b0\\u09cd\\u09a3\\u09ae\\u09be\\u09b2\\u09be \\u09aa\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u09a1\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"The garden animals are having a parade! They are carrying English letters. Can you find them all?\", \"bn\": \"\\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u09a1 \\u0995\\u09b0\\u099b\\u09c7! \\u09a4\\u09be\\u09b0\\u09be \\u0987\\u0982\\u09b0\\u09c7\\u099c\\u09bf \\u09ac\\u09b0\\u09cd\\u09a3 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u099b\\u09c7\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09b8\\u09ac \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7?\"}, \"data\": {\"fact\": {\"en\": \"Alhamdulillah! Learning ABCs helps us read wonderful stories about Allah's world.\", \"bn\": \"\\u0986\\u09b2\\u09b9\\u09be\\u09ae\\u09a6\\u09c1\\u09b2\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9! \\u0987\\u0982\\u09b0\\u09c7\\u099c\\u09bf \\u09ac\\u09b0\\u09cd\\u09a3\\u09ae\\u09be\\u09b2\\u09be \\u09b6\\u09bf\\u0996\\u09b2\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099a\\u09ae\\u09ce\\u0995\\u09be\\u09b0 \\u0997\\u09b2\\u09cd\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09cb\\u0964\"}, \"items\": [{\"id\": \"a\", \"label\": \"A\", \"reveal\": {\"en\": \"Ants are marching!\", \"bn\": \"\\u09aa\\u09bf\\u0981\\u09aa\\u09a1\\u09bc\\u09be\\u09b0\\u09be \\u09ae\\u09be\\u09b0\\u09cd\\u099a \\u0995\\u09b0\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udc1c\", \"asset\": \"\/fruits\/fruit_set.png\"}, {\"id\": \"b\", \"label\": \"B\", \"reveal\": {\"en\": \"Busy Bees are buzzing!\", \"bn\": \"\\u09ac\\u09cd\\u09af\\u09b8\\u09cd\\u09a4 \\u09ae\\u09cc\\u09ae\\u09be\\u099b\\u09bf\\u09b0\\u09be \\u0997\\u09c1\\u09a8\\u0997\\u09c1\\u09a8 \\u0995\\u09b0\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udc1d\"}, {\"id\": \"c\", \"label\": \"C\", \"reveal\": {\"en\": \"Cute Cats are purring!\", \"bn\": \"\\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09bf\\u09a1\\u09bc\\u09be\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u09ae\\u0989 \\u09ae\\u0989 \\u0995\\u09b0\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udc31\"}, {\"id\": \"d\", \"label\": \"D\", \"reveal\": {\"en\": \"Dashing Ducks are splashing!\", \"bn\": \"\\u099a\\u099f\\u09aa\\u099f\\u09c7 \\u09b9\\u09be\\u0981\\u09b8\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u099b\\u09bf\\u099f\\u09be\\u099a\\u09cd\\u099b\\u09c7!\"}, \"icon\": \"\\ud83e\\udd86\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"exp_u1_n3\", \"title\": {\"en\": \"Mission: Nature's Wonders\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09cd\\u09b0\\u0995\\u09c3\\u09a4\\u09bf\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Zaid looks at the sky and Zaynab looks at the grass. Everything we see is a gift! Let's find the hidden wonders.\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u0986\\u0995\\u09be\\u09b6\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09be\\u09af\\u09bc \\u0986\\u09b0 \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u0998\\u09be\\u09b8\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7\\u0964 \\u09af\\u09be \\u0995\\u09bf\\u099b\\u09c1 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09c7\\u0996\\u09bf \\u09b8\\u09ac\\u0987 \\u0989\\u09aa\\u09b9\\u09be\\u09b0! \\u099a\\u09b2\\u09cb \\u09b2\\u09c1\\u0995\\u09be\\u09a8\\u09cb \\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09bf\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Allah is Al-Khaliq, the Creator of everything in the universe!\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u0986\\u09b2-\\u0996\\u09be\\u09b2\\u09bf\\u0995, \\u09ae\\u09b9\\u09be\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u09b8\\u09ac\\u0995\\u09bf\\u099b\\u09c1\\u09b0 \\u09b8\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be!\"}, \"items\": [{\"id\": \"sun\", \"label\": {\"en\": \"The Sun\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\"}, \"reveal\": {\"en\": \"It warms us up!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u09b7\\u09cd\\u09a3 \\u0995\\u09b0\\u09c7!\"}, \"icon\": \"\\u2600\\ufe0f\"}, {\"id\": \"rain\", \"label\": {\"en\": \"The Rain\", \"bn\": \"\\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\"}, \"reveal\": {\"en\": \"It gives the plants a drink!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0997\\u09be\\u099b\\u09aa\\u09be\\u09b2\\u09be\\u0995\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09c7\\u09df!\"}, \"icon\": \"\\ud83c\\udf27\\ufe0f\"}, {\"id\": \"moon\", \"label\": {\"en\": \"The Moon\", \"bn\": \"\\u099a\\u09be\\u0981\\u09a6\"}, \"reveal\": {\"en\": \"It's a night light for the world!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u0986\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83c\\udf19\"}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u1_n4\", \"title\": {\"en\": \"Mission: The Fruit Feast\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ab\\u09b2 \\u0989\\u09ce\\u09b8\\u09ac\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The trees are full of fruit! Zaynab wants to share them with her friends. Can you help her count them?\", \"bn\": \"\\u0997\\u09be\\u099b\\u0997\\u09c1\\u09b2\\u09cb \\u09ab\\u09b2\\u09c7 \\u09ad\\u09b0\\u09aa\\u09c1\\u09b0! \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u09a4\\u09be\\u09b0 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09a4\\u09be\\u0995\\u09c7 \\u0997\\u09c1\\u09a8\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7?\"}, \"data\": {\"fact\": {\"en\": \"Eating healthy fruit makes our bodies strong, MashaAllah!\", \"bn\": \"\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0 \\u09ab\\u09b2 \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09b9\\u09af\\u09bc, \\u09ae\\u09be\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9!\"}, \"pairs\": [{\"id\": \"q1\", \"label\": \"\\ud83c\\udf4e + \\ud83c\\udf4e\", \"match\": \"2\", \"asset\": \"\/fruits\/fruit_set.png\"}, {\"id\": \"q2\", \"label\": \"\\ud83c\\udf4e + \\ud83c\\udf4e + \\ud83c\\udf4e\", \"match\": \"3\"}, {\"id\": \"q3\", \"label\": \"\\ud83c\\udf4e\", \"match\": \"1\"}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u1_n5\", \"title\": {\"en\": \"Mission: The Key of Bismillah\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Zaid wants to start his day. To open the doors of blessing, he needs the magic words. Can you find them?\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u09a4\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09af\\u09bc\\u0964 \\u09ac\\u09b0\\u0995\\u09a4\\u09c7\\u09b0 \\u09a6\\u09b0\\u099c\\u09be \\u0996\\u09c1\\u09b2\\u09a4\\u09c7 \\u09a4\\u09be\\u09b0 \\u099c\\u09be\\u09a6\\u09c1 \\u09b6\\u09ac\\u09cd\\u09a6\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09b0\\u0995\\u09be\\u09b0\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7?\"}, \"data\": {\"fact\": {\"en\": \"Bismillah means 'In the name of Allah'. It makes everything better!\", \"bn\": \"\\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09ae\\u09be\\u09a8\\u09c7 '\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a8\\u09be\\u09ae\\u09c7'\\u0964 \\u098f\\u099f\\u09bf \\u09b8\\u09ac\\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09c7 \\u0986\\u09b0\\u0993 \\u09ad\\u09be\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7!\"}, \"items\": [{\"id\": \"eat\", \"label\": {\"en\": \"Eating\", \"bn\": \"\\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\"}, \"reveal\": {\"en\": \"Say Bismillah!\", \"bn\": \"\\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09ac\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83c\\udf7d\\ufe0f\", \"asset\": \"\/manners\/manners_icons.png\"}, {\"id\": \"sleep\", \"label\": {\"en\": \"Sleeping\", \"bn\": \"\\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\"}, \"reveal\": {\"en\": \"Say Bismillah!\", \"bn\": \"\\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09ac\\u09b2\\u09cb!\"}, \"icon\": \"\\ud83d\\ude34\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"exp_u1_n6\", \"title\": {\"en\": \"Mission: Shape Detective\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0986\\u0995\\u09c3\\u09a4\\u09bf \\u0997\\u09cb\\u09af\\u09bc\\u09c7\\u09a8\\u09cd\\u09a6\\u09be\"}, \"mechanic\": \"Memory\", \"mission_brief\": {\"en\": \"The garden has hidden paths. Match the shapes to unlock the gate to the next adventure!\", \"bn\": \"\\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u09b2\\u09c1\\u0995\\u09be\\u09a8\\u09cb \\u09aa\\u09a5 \\u0986\\u099b\\u09c7\\u0964 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0997\\u09c7\\u099f\\u099f\\u09bf \\u0996\\u09c1\\u09b2\\u09a4\\u09c7 \\u0986\\u0995\\u09c3\\u09a4\\u09bf\\u0997\\u09c1\\u09b2\\u09cb \\u09ae\\u09c7\\u09b2\\u09be\\u0993!\"}, \"data\": {\"fact\": {\"en\": \"Shapes are the patterns Allah used to build the world!\", \"bn\": \"\\u0986\\u0995\\u09c3\\u09a4\\u09bf \\u09b9\\u09b2\\u09cb \\u09b8\\u09c7\\u0987 \\u09a8\\u0995\\u09b6\\u09be \\u09af\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u0997\\u09a1\\u09bc\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8!\"}, \"items\": [{\"en\": \"\\ud83d\\udd34 Circle\", \"bn\": \"\\ud83d\\udd34 \\u09ac\\u09c3\\u09a4\\u09cd\\u09a4\"}, {\"en\": \"\\ud83d\\udfe6 Square\", \"bn\": \"\\ud83d\\udfe6 \\u09ac\\u09b0\\u09cd\\u0997\"}, {\"en\": \"\\ud83d\\udd3a Triangle\", \"bn\": \"\\ud83d\\udd3a \\u09a4\\u09cd\\u09b0\\u09bf\\u09ad\\u09c1\\u099c\"}, {\"en\": \"\\u2b50 Star\", \"bn\": \"\\u2b50 \\u09a4\\u09be\\u09b0\\u09be\"}], \"asset\": \"\/shapes\/shapes_set.png\"}, \"category\": \"STEM\"}], \"sector\": \"Islamic & Language\", \"reward\": {\"id\": \"seed_faith\", \"title\": {\"en\": \"Seed of Faith\", \"bn\": \"\\u0988\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09ac\\u09c0\\u099c\"}}}, {\"id\": \"exp_u2\", \"title\": {\"en\": \"Unit 2: The Ark of Adventure\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e8: \\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u09a8\\u09cc\\u0995\\u09be\"}, \"mission_brief\": {\"en\": \"A great flood is coming in our story! We must join Prophet Nuh (AS) and learn the logic of the world to build the Ark.\", \"bn\": \"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09b2\\u09cd\\u09aa\\u09c7 \\u098f\\u0995 \\u09ac\\u09bf\\u09b6\\u09be\\u09b2 \\u09ac\\u09a8\\u09cd\\u09af\\u09be \\u0986\\u09b8\\u099b\\u09c7! \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09c2\\u09b9 (\\u0986\\u0983) \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a8\\u09cc\\u0995\\u09be \\u09a4\\u09c8\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09b0 \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09b6\\u09bf\\u0996\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\"}, \"background_asset\": \"\/batch1\/ark_bg.png\", \"nodes\": [{\"id\": \"exp_u2_n1\", \"title\": {\"en\": \"Mission: Loading the Ark\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a8\\u09cc\\u0995\\u09be\\u09df \\u09b2\\u09cb\\u09a1 \\u0995\\u09b0\\u09be\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The animals are arriving in pairs! Match the pairs to help them get onto the Ark safely.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0\\u09be \\u099c\\u09cb\\u09a1\\u09bc\\u09be\\u09af\\u09bc \\u099c\\u09cb\\u09a1\\u09bc\\u09be\\u09af\\u09bc \\u0986\\u09b8\\u099b\\u09c7! \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6\\u09c7 \\u09a8\\u09cc\\u0995\\u09be\\u09af\\u09bc \\u0989\\u09a0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u099c\\u09cb\\u09a1\\u09bc\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u09ae\\u09c7\\u09b2\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Prophet Nuh (AS) was very patient and brave. He built the Ark to save the believers.\", \"bn\": \"\\u09a8\\u09c2\\u09b9 (\\u0986\\u0983) \\u0996\\u09c1\\u09ac \\u09a7\\u09c8\\u09b0\\u09cd\\u09af\\u09b6\\u09c0\\u09b2 \\u0993 \\u09b8\\u09be\\u09b9\\u09b8\\u09c0 \\u099b\\u09bf\\u09b2\\u09c7\\u09a8\\u0964 \\u09a4\\u09bf\\u09a8\\u09bf \\u09ae\\u09c1\\u09ae\\u09bf\\u09a8\\u09a6\\u09c7\\u09b0 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09a8\\u09cc\\u0995\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u09b2\\u09c7\\u09a8\\u0964\"}, \"pairs\": [{\"id\": \"lion\", \"label\": {\"en\": \"Lion\", \"bn\": \"\\u09b8\\u09bf\\u0982\\u09b9\"}, \"match\": {\"en\": \"Lioness\", \"bn\": \"\\u09b8\\u09bf\\u0982\\u09b9\\u09c0\"}}, {\"id\": \"elephant\", \"label\": {\"en\": \"Elephant\", \"bn\": \"\\u09b9\\u09be\\u09a4\\u09bf\"}, \"match\": {\"en\": \"Elephant\", \"bn\": \"\\u09b9\\u09be\\u09a4\\u09bf\"}}, {\"id\": \"bird\", \"label\": {\"en\": \"Bird\", \"bn\": \"\\u09aa\\u09be\\u0996\\u09bf\"}, \"match\": {\"en\": \"Bird\", \"bn\": \"\\u09aa\\u09be\\u0996\\u09bf\"}}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u2_n2\", \"title\": {\"en\": \"Mission: The Rainbow Logic\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b0\\u0982\\u09a7\\u09a8\\u09c1 \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\"}, \"mechanic\": \"Sequence\", \"mission_brief\": {\"en\": \"The storm is over, but we need a rainbow! Follow the color sequence to paint the sky.\", \"bn\": \"\\u099d\\u09a1\\u09bc \\u09b6\\u09c7\\u09b7 \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b0\\u0982\\u09a7\\u09a8\\u09c1 \\u09a6\\u09b0\\u0995\\u09be\\u09b0! \\u0986\\u0995\\u09be\\u09b6 \\u09b0\\u09be\\u0999\\u09be\\u09a4\\u09c7 \\u09b0\\u0999\\u09c7\\u09b0 \\u0995\\u09cd\\u09b0\\u09ae \\u0985\\u09a8\\u09c1\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"A rainbow is a sign of hope and a promise from Allah.\", \"bn\": \"\\u09b0\\u0982\\u09a7\\u09a8\\u09c1 \\u09b9\\u09b2\\u09cb \\u0986\\u09b6\\u09be\\u09b0 \\u099a\\u09bf\\u09b9\\u09cd\\u09a8 \\u098f\\u09ac\\u0982 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7 \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b6\\u09cd\\u09b0\\u09c1\\u09a4\\u09bf\\u0964\"}, \"sequence\": [\"\\ud83d\\udd34\", \"\\ud83d\\udfe0\", \"\\ud83d\\udfe1\", \"\\ud83d\\udfe2\", \"\\ud83d\\udd35\"]}, \"category\": \"STEM\"}, {\"id\": \"exp_u2_n3\", \"title\": {\"en\": \"Mission: Helping Hands\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Zaid and Zaynab want to help on the Ark. Match the kind acts to the friends who need them.\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u0993 \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u09a8\\u09cc\\u0995\\u09be\\u09af\\u09bc \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09af\\u09bc\\u0964 \\u09af\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09b0\\u0995\\u09be\\u09b0 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a6\\u09af\\u09bc\\u09be\\u09b2\\u09c1 \\u0995\\u09be\\u099c\\u0997\\u09c1\\u09b2\\u09cb \\u09ae\\u09c7\\u09b2\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Allah loves it when we help each other. Kindness is a superpower!\", \"bn\": \"\\u0986\\u09ae\\u09b0\\u09be \\u09af\\u0996\\u09a8 \\u098f\\u0995\\u09c7 \\u0985\\u09aa\\u09b0\\u0995\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09bf \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09a4\\u09be \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u09a8\\u0964 \\u09a6\\u09af\\u09bc\\u09be \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0!\"}, \"pairs\": [{\"id\": \"water\", \"label\": {\"en\": \"Thirsty Friend\", \"bn\": \"\\u09a4\\u09c3\\u09b7\\u09cd\\u09a3\\u09be\\u09b0\\u09cd\\u09a4 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\"}, \"match\": {\"en\": \"Give Water\", \"bn\": \"\\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09be\\u0993\"}}, {\"id\": \"smile\", \"label\": {\"en\": \"Sad Friend\", \"bn\": \"\\u09a6\\u09c1\\u0983\\u0996\\u09c0 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\"}, \"match\": {\"en\": \"Give a Smile\", \"bn\": \"\\u09b9\\u09be\\u09b8\\u09bf \\u09a6\\u09be\\u0993\"}}]}, \"category\": \"Life Skills\"}, {\"id\": \"exp_u2_n4\", \"title\": {\"en\": \"Mission: The Robot Navigator\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b0\\u09cb\\u09ac\\u099f \\u09a8\\u09c7\\u09ad\\u09bf\\u0997\\u09c7\\u099f\\u09b0\"}, \"mechanic\": \"Sequence\", \"mission_brief\": {\"en\": \"The Ark is looking for land! Program the tiny helper robot to navigate through the waves.\", \"bn\": \"\\u09a8\\u09cc\\u0995\\u09be\\u099f\\u09bf \\u09b8\\u09cd\\u09a5\\u09b2\\u09ad\\u09be\\u0997 \\u0996\\u09c1\\u0981\\u099c\\u099b\\u09c7! \\u09a2\\u09c7\\u0989\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09a5 \\u099a\\u09b2\\u09a4\\u09c7 \\u099b\\u09cb\\u099f \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b0\\u09cb\\u09ac\\u099f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Computers follow steps just like we follow instructions in our Deen.\", \"bn\": \"\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09a0\\u09bf\\u0995 \\u09b8\\u09c7\\u09ad\\u09be\\u09ac\\u09c7\\u0987 \\u09a7\\u09be\\u09aa\\u0997\\u09c1\\u09b2\\u09cb \\u0985\\u09a8\\u09c1\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09af\\u09c7\\u09ae\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09cd\\u09ac\\u09c0\\u09a8\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09a8\\u09be \\u0985\\u09a8\\u09c1\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09bf\\u0964\"}, \"sequence\": [{\"en\": \"\\u2b06\\ufe0f Forward\", \"bn\": \"\\u2b06\\ufe0f \\u09b8\\u09be\\u09ae\\u09a8\\u09c7\"}, {\"en\": \"\\u27a1\\ufe0f Turn Right\", \"bn\": \"\\u27a1\\ufe0f \\u09a1\\u09be\\u09a8\\u09c7 \\u0998\\u09cb\\u09b0\\u09cb\"}, {\"en\": \"\\u2b06\\ufe0f Forward\", \"bn\": \"\\u2b06\\ufe0f \\u09b8\\u09be\\u09ae\\u09a8\\u09c7\"}, {\"en\": \"\\ud83c\\udfc1 Land!\", \"bn\": \"\\ud83c\\udfc1 \\u09b8\\u09cd\\u09a5\\u09b2\\u09ad\\u09be\\u0997!\"}], \"asset\": \"\/robot\/robot_assets.png\"}, \"category\": \"STEM\"}, {\"id\": \"exp_u2_n5\", \"title\": {\"en\": \"Mission: Jungle Gym\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u099c\\u0999\\u09cd\\u0997\\u09b2 \\u099c\\u09bf\\u09ae\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The animals are finally on land! They are so happy, they want to exercise. Can you copy their moves?\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0\\u09be \\u0985\\u09ac\\u09b6\\u09c7\\u09b7\\u09c7 \\u09b8\\u09cd\\u09a5\\u09b2\\u09ad\\u09be\\u0997\\u09c7 \\u09aa\\u09cc\\u0981\\u099b\\u09c7\\u099b\\u09c7! \\u09a4\\u09be\\u09b0\\u09be \\u0996\\u09c1\\u09ac \\u0996\\u09c1\\u09b6\\u09bf, \\u09a4\\u09be\\u09b0\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09a1\\u09bc\\u09be\\u099a\\u09a1\\u09bc\\u09be \\u09a8\\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7?\"}, \"data\": {\"fact\": {\"en\": \"Staying active keeps our bodies healthy, which is a gift from Allah.\", \"bn\": \"\\u09b8\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc \\u09a5\\u09be\\u0995\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09c7, \\u09af\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7 \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0\\u0964\"}, \"items\": [{\"id\": \"jump\", \"label\": {\"en\": \"Jump like a Frog!\", \"bn\": \"\\u09ac\\u09cd\\u09af\\u09be\\u0999\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b2\\u09be\\u09ab \\u09a6\\u09be\\u0993!\"}, \"reveal\": \"Boing! Boing!\", \"icon\": \"\\ud83d\\udc38\"}, {\"id\": \"stretch\", \"label\": {\"en\": \"Stretch like a Giraffe!\", \"bn\": \"\\u099c\\u09bf\\u09b0\\u09be\\u09ab\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09aa\\u09cd\\u09b0\\u09b8\\u09be\\u09b0\\u09bf\\u09a4 \\u09b9\\u0993!\"}, \"reveal\": {\"en\": \"Reach high!\", \"bn\": \"\\u0989\\u0981\\u099a\\u09c1\\u09a4\\u09c7 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u0993!\"}, \"icon\": \"\\ud83e\\udd92\"}]}, \"category\": \"Health\"}, {\"id\": \"exp_u2_n6\", \"title\": {\"en\": \"Mission: The Story Tree\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0997\\u09b2\\u09cd\\u09aa\\u09c7\\u09b0 \\u0997\\u09be\\u099b\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"The adventure is ending under a giant tree. Click the leaves to hear the most beautiful stories of the Quran.\", \"bn\": \"\\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09bf\\u09b6\\u09be\\u09b2 \\u0997\\u09be\\u099b\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 \\u09b6\\u09c7\\u09b7 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u0964 \\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0997\\u09b2\\u09cd\\u09aa\\u0997\\u09c1\\u09b2\\u09cb \\u09b6\\u09c1\\u09a8\\u09a4\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09af\\u09bc \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Quran is the best storybook because every word is true!\", \"bn\": \"\\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09c7\\u09b0\\u09be \\u0997\\u09b2\\u09cd\\u09aa\\u09c7\\u09b0 \\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b6\\u09ac\\u09cd\\u09a6 \\u09b8\\u09a4\\u09cd\\u09af!\"}, \"items\": [{\"id\": \"whale\", \"label\": {\"en\": \"The Whale\", \"bn\": \"\\u09a4\\u09bf\\u09ae\\u09bf\"}, \"reveal\": {\"en\": \"It protected Prophet Younus!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0987\\u0989\\u09a8\\u09c1\\u09b8 (\\u0986\\u0983)-\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u09b2!\"}, \"icon\": \"\\ud83d\\udc0b\"}, {\"id\": \"spider\", \"label\": {\"en\": \"The Spider\", \"bn\": \"\\u09ae\\u09be\\u0995\\u09a1\\u09bc\\u09b8\\u09be\"}, \"reveal\": {\"en\": \"It hid the Prophet in the cave!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0997\\u09c1\\u09b9\\u09be\\u09af\\u09bc \\u09a8\\u09ac\\u09c0\\u0995\\u09c7 \\u09b2\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7\\u099b\\u09bf\\u09b2!\"}, \"icon\": \"\\ud83d\\udd77\\ufe0f\"}]}, \"category\": \"Islamic Knowledge\"}], \"sector\": \"Stem & Logic\", \"reward\": {\"id\": \"seed_logic\", \"title\": {\"en\": \"Seed of Logic\", \"bn\": \"\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u09ac\\u09c0\\u099c\"}}}, {\"id\": \"exp_u3\", \"title\": {\"en\": \"Unit 3: The Sky of Wonders\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e9: \\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u0986\\u0995\\u09be\\u09b6\"}, \"mission_brief\": {\"en\": \"Look up! The sky is full of secrets from Allah. Let's fly high and discover them!\", \"bn\": \"\\u0989\\u09aa\\u09b0\\u09c7 \\u09a4\\u09be\\u0995\\u09be\\u0993! \\u0986\\u0995\\u09be\\u09b6 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a6\\u09c7\\u0993\\u09df\\u09be \\u09b0\\u09b9\\u09b8\\u09cd\\u09af\\u09c7 \\u0998\\u09c7\\u09b0\\u09be\\u0964 \\u099a\\u09b2\\u09cb \\u0989\\u0981\\u099a\\u09c1\\u09a4\\u09c7 \\u0989\\u09dc\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09bf!\"}, \"background_asset\": \"\/batch1\/sky_bg.png\", \"nodes\": [{\"id\": \"exp_u3_n1\", \"title\": {\"en\": \"Mission: Starry Night\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a4\\u09be\\u09b0\\u09be\\u09ae\\u09df \\u09b0\\u09be\\u09a4\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"The stars are shining! Click them to reveal the patterns Allah made in the sky.\", \"bn\": \"\\u09a4\\u09be\\u09b0\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u099d\\u09bf\\u0995\\u09ae\\u09bf\\u0995 \\u0995\\u09b0\\u099b\\u09c7! \\u0986\\u0995\\u09be\\u09b6\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09af\\u09c7 \\u09a8\\u0995\\u09b6\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8 \\u09a4\\u09be \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b6 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Every star is a giant sun far away. SubhanAllah!\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09a4\\u09be\\u09b0\\u09be \\u09b9\\u09b2\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09a6\\u09c2\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09bf\\u09b6\\u09be\\u09b2 \\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u0964 \\u09b8\\u09c1\\u09ac\\u09b9\\u09be\\u09a8\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9!\"}, \"items\": [{\"id\": \"star1\", \"label\": {\"en\": \"Twinkle Star\", \"bn\": \"\\u099d\\u09bf\\u0995\\u09ae\\u09bf\\u0995 \\u09a4\\u09be\\u09b0\\u09be\"}, \"reveal\": {\"en\": \"It's so bright!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2!\"}, \"icon\": \"\\u2b50\"}, {\"id\": \"moon\", \"label\": {\"en\": \"Crescent Moon\", \"bn\": \"\\u0985\\u09b0\\u09cd\\u09a7\\u099a\\u09a8\\u09cd\\u09a6\\u09cd\\u09b0\"}, \"reveal\": {\"en\": \"A sign for Ramadan!\", \"bn\": \"\\u09b0\\u09ae\\u099c\\u09be\\u09a8\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u099a\\u09bf\\u09b9\\u09cd\\u09a8!\"}, \"icon\": \"\\ud83c\\udf19\"}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u3_n2\", \"title\": {\"en\": \"Mission: Raindrop Race\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ac\\u09bf\\u09a8\\u09cd\\u09a6\\u09c1 \\u09a6\\u09cc\\u09a1\\u09bc\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The plants are thirsty! Help the raindrops fall on the right flowers.\", \"bn\": \"\\u0997\\u09be\\u099b\\u0997\\u09c1\\u09b2\\u09cb \\u09a4\\u09c3\\u09b7\\u09cd\\u09a3\\u09be\\u09b0\\u09cd\\u09a4! \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ab\\u09cb\\u0981\\u099f\\u09be\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09ab\\u09c1\\u09b2\\u09c7 \\u09aa\\u09dc\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Rain is a mercy from Allah that makes everything grow.\", \"bn\": \"\\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09b9\\u09b2\\u09cb \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09b0\\u09b9\\u09ae\\u09a4 \\u09af\\u09be \\u09b8\\u09ac\\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09c7 \\u09ac\\u09dc \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\"}, \"pairs\": [{\"id\": \"r1\", \"label\": \"\\ud83d\\udca7\", \"match\": \"\\ud83c\\udf37\"}, {\"id\": \"r2\", \"label\": \"\\ud83d\\udca7\", \"match\": \"\\ud83c\\udf3b\"}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u3_n3\", \"title\": {\"en\": \"Mission: Animal Sounds\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0 \\u09b6\\u09ac\\u09cd\\u09a6\"}, \"mechanic\": \"Memory\", \"mission_brief\": {\"en\": \"Match the animals to the sounds they make in the forest.\", \"bn\": \"\\u09ac\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09b0\\u09be \\u09af\\u09c7 \\u09b6\\u09ac\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b2\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Allah gave every animal its own special voice.\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u0995\\u09c7 \\u09a4\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09a3\\u09cd\\u09a0 \\u09a6\\u09bf\\u09df\\u09c7\\u099b\\u09c7\\u09a8\\u0964\"}, \"items\": [{\"en\": \"\\ud83e\\udd81 Roar\", \"bn\": \"\\ud83e\\udd81 \\u0997\\u09b0\\u09cd\\u099c\\u09a8\"}, {\"en\": \"\\ud83d\\udc26 Chirp\", \"bn\": \"\\ud83d\\udc26 \\u0995\\u09bf\\u099a\\u09bf\\u09b0\\u09ae\\u09bf\\u099a\\u09bf\\u09b0\"}, {\"en\": \"\\ud83d\\udc31 Meow\", \"bn\": \"\\ud83d\\udc31 \\u09ae\\u09bf\\u0989 \\u09ae\\u09bf\\u0989\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"exp_u3_n4\", \"title\": {\"en\": \"Mission: Bird's Eye View\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09be\\u0996\\u09bf\\u09b0 \\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u0996\\u09be\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Fly like a bird! Click the landmarks to help Zaid find his way home.\", \"bn\": \"\\u09aa\\u09be\\u0996\\u09bf\\u09b0 \\u09ae\\u09a4\\u09cb \\u0993\\u09dc\\u09cb! \\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6\\u0995\\u09c7 \\u09ac\\u09be\\u09a1\\u09bc\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09b0 \\u09aa\\u09a5 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09c7\\u09a4\\u09c7 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09cd\\u09a5\\u09be\\u09a8\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"A community is a place where we live and help each other.\", \"bn\": \"\\u09b8\\u09ae\\u09be\\u099c \\u09b9\\u09b2\\u09cb \\u098f\\u09ae\\u09a8 \\u098f\\u0995\\u099f\\u09bf \\u099c\\u09be\\u09df\\u0997\\u09be \\u09af\\u09c7\\u0996\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09bf \\u098f\\u09ac\\u0982 \\u098f\\u0995\\u09c7 \\u0985\\u09aa\\u09b0\\u0995\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09bf\\u0964\"}, \"items\": [{\"id\": \"masjid\", \"label\": {\"en\": \"The Masjid\", \"bn\": \"\\u09ae\\u09b8\\u099c\\u09bf\\u09a6\"}, \"reveal\": {\"en\": \"Where we pray!\", \"bn\": \"\\u09af\\u09c7\\u0996\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u09aa\\u09dc\\u09bf!\"}, \"icon\": \"\\ud83d\\udd4c\"}, {\"id\": \"park\", \"label\": {\"en\": \"The Park\", \"bn\": \"\\u09aa\\u09be\\u09b0\\u09cd\\u0995\"}, \"reveal\": {\"en\": \"Where we play!\", \"bn\": \"\\u09af\\u09c7\\u0996\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09bf!\"}, \"icon\": \"\\ud83c\\udf33\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"exp_u3_n5\", \"title\": {\"en\": \"Mission: Seed to Tree\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09c0\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0997\\u09be\\u099b\"}, \"mechanic\": \"Sequence\", \"mission_brief\": {\"en\": \"Put the steps in order to see how a tiny seed becomes a big tree.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u099b\\u09cb\\u099f \\u09ac\\u09c0\\u099c \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09dc \\u0997\\u09be\\u099b\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df \\u09a4\\u09be \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09a7\\u09be\\u09aa\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09cd\\u09b0\\u09ae\\u09be\\u09a8\\u09c1\\u09b8\\u09be\\u09b0\\u09c7 \\u09b8\\u09be\\u099c\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Trees give us oxygen to breathe and fruit to eat!\", \"bn\": \"\\u0997\\u09be\\u099b \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ab\\u09b2 \\u09a6\\u09c7\\u09df!\"}, \"sequence\": [{\"en\": \"\\ud83c\\udf31 Seed\", \"bn\": \"\\ud83c\\udf31 \\u09ac\\u09c0\\u099c\"}, {\"en\": \"\\ud83d\\udebf Water\", \"bn\": \"\\ud83d\\udebf \\u09aa\\u09be\\u09a8\\u09bf\"}, {\"en\": \"\\ud83c\\udf3f Sprout\", \"bn\": \"\\ud83c\\udf3f \\u0985\\u0999\\u09cd\\u0995\\u09c1\\u09b0\"}, {\"en\": \"\\ud83c\\udf33 Tree\", \"bn\": \"\\ud83c\\udf33 \\u0997\\u09be\\u099b\"}]}, \"category\": \"STEM\"}, {\"id\": \"exp_u3_n6\", \"title\": {\"en\": \"Mission: The Wind's Whisper\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09be\\u09a4\\u09be\\u09b8\\u09c7\\u09b0 \\u09ab\\u09bf\\u09b8\\u09ab\\u09bf\\u09b8\\u09be\\u09a8\\u09bf\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The wind is blowing! See what items the wind can move.\", \"bn\": \"\\u09ac\\u09be\\u09a4\\u09be\\u09b8 \\u09ac\\u0987\\u099b\\u09c7! \\u09a6\\u09c7\\u0996\\u09cb \\u09ac\\u09be\\u09a4\\u09be\\u09b8 \\u0995\\u09cb\\u09a8 \\u099c\\u09bf\\u09a8\\u09bf\\u09b8\\u0997\\u09c1\\u09b2\\u09cb \\u09a8\\u09be\\u09dc\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Air is invisible but it is very strong!\", \"bn\": \"\\u09ac\\u09be\\u09a4\\u09be\\u09b8 \\u0985\\u09a6\\u09c3\\u09b6\\u09cd\\u09af \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u098f\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0!\"}, \"items\": [{\"id\": \"leaf\", \"label\": {\"en\": \"Leaf\", \"bn\": \"\\u09aa\\u09be\\u09a4\\u09be\"}, \"reveal\": {\"en\": \"It flies away!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0989\\u09dc\\u09c7 \\u09af\\u09be\\u09df!\"}, \"icon\": \"\\ud83c\\udf43\"}, {\"id\": \"rock\", \"label\": {\"en\": \"Rock\", \"bn\": \"\\u09aa\\u09be\\u09a5\\u09b0\"}, \"reveal\": {\"en\": \"Too heavy to move!\", \"bn\": \"\\u09a8\\u09dc\\u09be\\u099a\\u09dc\\u09be \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac \\u09ad\\u09be\\u09b0\\u09c0!\"}, \"icon\": \"\\ud83e\\udea8\"}]}, \"category\": \"STEM\"}], \"sector\": \"Nature & Science\", \"reward\": {\"id\": \"seed_nature\", \"title\": {\"en\": \"Seed of Nature\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u0995\\u09c3\\u09a4\\u09bf\\u09b0 \\u09ac\\u09c0\\u099c\"}}}, {\"id\": \"exp_u4\", \"title\": {\"en\": \"Unit 4: The Path of Manners\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09ea: \\u0986\\u09a6\\u09ac-\\u0995\\u09be\\u09df\\u09a6\\u09be\\u09b0 \\u09aa\\u09a5\"}, \"mission_brief\": {\"en\": \"Good manners are like flowers in our heart. Let's learn how to be kind and polite!\", \"bn\": \"\\u0989\\u09a4\\u09cd\\u09a4\\u09ae \\u099a\\u09b0\\u09bf\\u09a4\\u09cd\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c3\\u09a6\\u09af\\u09bc\\u09c7\\u09b0 \\u09ab\\u09c1\\u09b2\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb\\u0964 \\u099a\\u09b2\\u09cb \\u09b6\\u09bf\\u0996\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09a6\\u09af\\u09bc\\u09be\\u09b2\\u09c1 \\u098f\\u09ac\\u0982 \\u09ac\\u09bf\\u09a8\\u09af\\u09bc\\u09c0 \\u09b9\\u09a4\\u09c7 \\u09b9\\u09af\\u09bc!\"}, \"background_asset\": \"\/batch1\/manners_bg.png\", \"nodes\": [{\"id\": \"exp_u4_n1\", \"title\": {\"en\": \"Mission: The Salam Wave\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u09b2\\u09be\\u09ae \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Wave to the neighbors! Click the characters to say 'Assalamu Alaikum'.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09ac\\u09c7\\u09b6\\u09c0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b2\\u09be\\u09ae \\u09a6\\u09be\\u0993! '\\u0986\\u09b8\\u09b8\\u09be\\u09b2\\u09be\\u09ae\\u09c1 \\u0986\\u09b2\\u09be\\u0987\\u0995\\u09c1\\u09ae' \\u09ac\\u09b2\\u09a4\\u09c7 \\u099a\\u09b0\\u09bf\\u09a4\\u09cd\\u09b0\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Saying Salam brings peace and love between people.\", \"bn\": \"\\u09b8\\u09be\\u09b2\\u09be\\u09ae \\u09ac\\u09bf\\u09a8\\u09bf\\u09ae\\u09df \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0993 \\u09ad\\u09be\\u09b2\\u09cb\\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\"}, \"items\": [{\"id\": \"friend\", \"label\": {\"en\": \"Friend\", \"bn\": \"\\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\"}, \"reveal\": {\"en\": \"Wa Alaikum Assalam!\", \"bn\": \"\\u0993\\u09df\\u09be \\u0986\\u09b2\\u09be\\u0987\\u0995\\u09c1\\u09ae \\u0986\\u09b8\\u09b8\\u09be\\u09b2\\u09be\\u09ae!\"}, \"icon\": \"\\ud83e\\uddd2\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"exp_u4_n2\", \"title\": {\"en\": \"Mission: The Sharing Toy-Box\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09be\\u0995\\u09cd\\u09b8\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Zaid and Zaynab are playing. Share the toys equally between them.\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u0993 \\u099c\\u09af\\u09bc\\u09a8\\u09ac \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b8\\u09ae\\u09be\\u09a8\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09c7\\u09b2\\u09a8\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09a6\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Sharing makes us happier than playing alone!\", \"bn\": \"\\u098f\\u0995\\u09be \\u0996\\u09c7\\u09b2\\u09be\\u09b0 \\u099a\\u09c7\\u09df\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09b2\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b6\\u09bf \\u0996\\u09c1\\u09b6\\u09bf \\u0995\\u09b0\\u09c7!\"}, \"pairs\": [{\"id\": \"t1\", \"label\": \"\\ud83e\\uddf8 Toy\", \"match\": \"Zaid\"}, {\"id\": \"t2\", \"label\": \"\\ud83d\\ude97 Car\", \"match\": \"Zaynab\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"exp_u4_n3\", \"title\": {\"en\": \"Mission: Healthy Plate\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0 \\u09a5\\u09be\\u09b2\\u09be\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Fill the plate with colorful veggies and yummy fruit for a strong body.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a5\\u09be\\u09b2\\u09be\\u099f\\u09bf \\u09b0\\u0999\\u09bf\\u09a8 \\u09b8\\u09ac\\u099c\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u09ab\\u09b2\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Eating 'Tayyib' (pure) food keeps our hearts and bodies clean.\", \"bn\": \"'\\u09a4\\u09c8\\u09df\\u09ac' (\\u09ac\\u09bf\\u09b6\\u09c1\\u09a6\\u09cd\\u09a7) \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0996\\u09be\\u0993\\u09df\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c3\\u09a6\\u09df \\u0993 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u099a\\u09cd\\u099b\\u09a8\\u09cd\\u09a8 \\u09b0\\u09be\\u0996\\u09c7\\u0964\"}, \"pairs\": [{\"id\": \"v1\", \"label\": \"\\ud83e\\udd66 Broccoli\", \"match\": \"Healthy\"}, {\"id\": \"v2\", \"label\": \"\\ud83c\\udf69 Donut\", \"match\": \"Sweets\"}]}, \"category\": \"Health\"}, {\"id\": \"exp_u4_n4\", \"title\": {\"en\": \"Mission: The Truth Teller\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09a4\\u09cd\\u09af\\u09ac\\u09be\\u09a6\\u09c0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Zaid found a toy. Click the honest choice to see how it makes everyone happy.\", \"bn\": \"\\u099c\\u09be\\u09af\\u09bc\\u09c7\\u09a6 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u0996\\u09c1\\u09b6\\u09bf \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09b8\\u09ce \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u099f\\u09bf\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Truthfulness is the path to Jannah.\", \"bn\": \"\\u09b8\\u09a4\\u09cd\\u09af\\u09ac\\u09be\\u09a6\\u09bf\\u09a4\\u09be \\u099c\\u09be\\u09a8\\u09cd\\u09a8\\u09be\\u09a4\\u09c7\\u09b0 \\u09aa\\u09a5\\u0964\"}, \"items\": [{\"id\": \"t\", \"label\": {\"en\": \"Tell the Truth\", \"bn\": \"\\u09b8\\u09a4\\u09cd\\u09af \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09cb\"}, \"reveal\": {\"en\": \"Good job! Everyone trusts you.\", \"bn\": \"\\u09b8\\u09be\\u09ac\\u09be\\u09b8! \\u09b8\\u09ac\\u09be\\u0987 \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09c7\\u0964\"}, \"icon\": \"\\u2705\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"exp_u4_n5\", \"title\": {\"en\": \"Mission: Bedtime Stars\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u0986\\u0997\\u09c7 \\u09a4\\u09be\\u09b0\\u09be\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"It's time to sleep. Find the items for the bedtime routine.\", \"bn\": \"\\u098f\\u0996\\u09a8 \\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df\\u0964 \\u09b6\\u09cb\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7 \\u09af\\u09be \\u09af\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09df \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Starting and ending the day with Allah's name is the best way.\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a8\\u09be\\u09ae\\u09c7 \\u09a6\\u09bf\\u09a8 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0993 \\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09be\\u0987 \\u09b9\\u09b2\\u09cb \\u09b8\\u09c7\\u09b0\\u09be \\u0989\\u09aa\\u09be\\u09df\\u0964\"}, \"items\": [{\"id\": \"brush\", \"label\": {\"en\": \"Brush Teeth\", \"bn\": \"\\u09a6\\u09be\\u0981\\u09a4 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 \\u0995\\u09b0\\u09be\"}, \"reveal\": {\"en\": \"Sparkling clean!\", \"bn\": \"\\u099d\\u0995\\u099d\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0!\"}, \"icon\": \"\\ud83e\\udea5\"}, {\"id\": \"dua\", \"label\": {\"en\": \"Say Dua\", \"bn\": \"\\u09a6\\u09cb\\u09df\\u09be \\u09aa\\u09dc\\u09be\"}, \"reveal\": {\"en\": \"Sleep tight!\", \"bn\": \"\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09ae\\u09be\\u0993!\"}, \"icon\": \"\\ud83e\\udd32\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"exp_u4_n6\", \"title\": {\"en\": \"Mission: Helping Grandma\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a6\\u09be\\u09a6\\u09bf\\u0995\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09be\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Grandma is carrying bags. Help her carry them to the door.\", \"bn\": \"\\u09a6\\u09be\\u09a6\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0997 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u099b\\u09c7\\u09a8\\u0964 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09b0\\u099c\\u09be\\u09df \\u09a8\\u09bf\\u09df\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Helping our elders is a great act of kindness.\", \"bn\": \"\\u09ac\\u09dc\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09b9\\u09be\\u09a8 \\u09a6\\u09df\\u09be\\u09b2\\u09c1 \\u0995\\u09be\\u099c\\u0964\"}, \"items\": [{\"id\": \"bag\", \"label\": {\"en\": \"Carry Bag\", \"bn\": \"\\u09ac\\u09cd\\u09af\\u09be\\u0997 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Thank you, dear!\", \"bn\": \"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u09b8\\u09cb\\u09a8\\u09be\\u09ae\\u09a3\\u09bf!\"}, \"icon\": \"\\ud83d\\udecd\\ufe0f\"}]}, \"category\": \"Life Skills\"}], \"sector\": \"Character & Health\", \"reward\": {\"id\": \"seed_manners\", \"title\": {\"en\": \"Seed of Manners\", \"bn\": \"\\u0986\\u09a6\\u09ac\\u09c7\\u09b0 \\u09ac\\u09c0\\u099c\"}}}]}, \"achievers\": {\"mission_brief\": {\"en\": \"Welcome, Achiever! You are now a guardian of the 'Knowledge Fortress'. Monsters of ignorance are trying to invade, and only your smarts can stop them!\", \"bn\": \"\\u09b8\\u09cd\\u09ac\\u09be\\u0997\\u09a4\\u09ae, \\u0985\\u09b0\\u09cd\\u099c\\u09a8\\u0995\\u09be\\u09b0\\u09c0! \\u09a4\\u09c1\\u09ae\\u09bf \\u098f\\u0996\\u09a8 '\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0' \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09b9\\u09b0\\u09c0\\u0964 \\u0985\\u099c\\u09cd\\u099e\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09ac\\u0997\\u09c1\\u09b2\\u09cb \\u0986\\u0995\\u09cd\\u09b0\\u09ae\\u09a3 \\u0995\\u09b0\\u09be\\u09b0 \\u099a\\u09c7\\u09b7\\u09cd\\u099f\\u09be \\u0995\\u09b0\\u099b\\u09c7, \\u098f\\u09ac\\u0982 \\u0995\\u09c7\\u09ac\\u09b2 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09c1\\u09a6\\u09cd\\u09a7\\u09bf\\u0987 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09be\\u09ae\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7!\"}, \"units\": [{\"id\": \"ach_u1\", \"title\": {\"en\": \"Unit 1: The Knowledge Fortress\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e7: \\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\"}, \"mission_brief\": {\"en\": \"To power the fortress shields, you must master the ancient wisdom and the secrets of the natural world.\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u09a2\\u09be\\u09b2\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u099a\\u09c0\\u09a8 \\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u099c\\u0997\\u09a4\\u09c7\\u09b0 \\u09b0\\u09b9\\u09b8\\u09cd\\u09af\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u09a6\\u0995\\u09cd\\u09b7 \\u09b9\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\"}, \"background_asset\": \"\/batch2\/space_bg.png\", \"nodes\": [{\"id\": \"ach_u1_n1\", \"title\": {\"en\": \"Mission: Surah Shield\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09c2\\u09b0\\u09be \\u09a2\\u09be\\u09b2\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The shields are low! Match the Surah names to their order in Juz Amma to reboot the system.\", \"bn\": \"\\u09a2\\u09be\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09c1\\u09b0\\u09cd\\u09ac\\u09b2 \\u09b9\\u09af\\u09bc\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u09b8\\u09bf\\u09b8\\u09cd\\u099f\\u09c7\\u09ae\\u099f\\u09bf \\u09b0\\u09bf\\u09ac\\u09c1\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09ae\\u09cd\\u09aa\\u09be\\u09b0 \\u09b8\\u09c2\\u09b0\\u09be\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09a8\\u09be\\u09ae\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09cd\\u09b0\\u09ae \\u09ae\\u09c7\\u09b2\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Juz Amma contains short Surahs that are perfect for our daily prayers.\", \"bn\": \"\\u0986\\u09ae\\u09cd\\u09aa\\u09be\\u09af\\u09bc \\u099b\\u09cb\\u099f \\u099b\\u09cb\\u099f \\u09b8\\u09c2\\u09b0\\u09be \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0989\\u09aa\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u0964\"}, \"pairs\": [{\"id\": \"s1\", \"label\": {\"en\": \"Surah An-Nas\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u09a8\\u09be\\u09b8\"}, \"match\": \"114\"}, {\"id\": \"s2\", \"label\": {\"en\": \"Surah Al-Falaq\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u09ab\\u09be\\u09b2\\u09be\\u0995\"}, \"match\": \"113\"}, {\"id\": \"s3\", \"label\": {\"en\": \"Surah Al-Ikhlas\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u0987\\u0996\\u09b2\\u09be\\u09b8\"}, \"match\": \"112\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u1_n2\", \"title\": {\"en\": \"Mission: Tajweed Tuning\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a4\\u09be\\u099c\\u09ac\\u09c0\\u09a6 \\u099f\\u09bf\\u0989\\u09a8\\u09bf\\u0982\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"The fortress speakers are fuzzy! Learn the correct sounds of the letters to clear the audio.\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u09b8\\u09cd\\u09aa\\u09bf\\u0995\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u0985\\u09b8\\u09cd\\u09aa\\u09b7\\u09cd\\u099f \\u09b9\\u09df\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u0985\\u09a1\\u09bf\\u0993 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u0995\\u09cd\\u09b7\\u09b0\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09a0\\u09bf\\u0995 \\u0989\\u099a\\u09cd\\u099a\\u09be\\u09b0\\u09a3 \\u09b6\\u09bf\\u0996\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Tajweed means 'to make beautiful'. It helps us recite the Quran perfectly.\", \"bn\": \"\\u09a4\\u09be\\u099c\\u09ac\\u09c0\\u09a6 \\u09ae\\u09be\\u09a8\\u09c7 '\\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09be'\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u09a8\\u09bf\\u0996\\u09c1\\u0981\\u09a4\\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09bf\\u09b2\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\"}, \"items\": [{\"id\": \"q\", \"label\": {\"en\": \"Qalqalah\", \"bn\": \"\\u0995\\u09b2\\u0995\\u09b2\\u09be\\u09b9\"}, \"reveal\": {\"en\": \"The 'bouncing' sound!\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a7\\u09cd\\u09ac\\u09a8\\u09bf \\u09ac\\u09be '\\u09b2\\u09be\\u09ab\\u09be\\u09a8\\u09cb' \\u09b6\\u09ac\\u09cd\\u09a6!\"}, \"icon\": \"\\ud83c\\udfc0\"}, {\"id\": \"g\", \"label\": {\"en\": \"Ghunnah\", \"bn\": \"\\u0997\\u09c1\\u09a8\\u09cd\\u09a8\\u09be\\u09b9\"}, \"reveal\": {\"en\": \"The 'nasal' sound!\", \"bn\": \"\\u09a8\\u09be\\u0995 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u0995\\u09b0\\u09be \\u09b6\\u09ac\\u09cd\\u09a6!\"}, \"icon\": \"\\ud83d\\udc43\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u1_n3\", \"title\": {\"en\": \"Mission: Math Matrix\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0997\\u09a3\\u09bf\\u09a4 \\u09ae\\u09cd\\u09af\\u09be\\u099f\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"The calculating engine is stuck! Solve these multiplication puzzles to unlock the fortress gates.\", \"bn\": \"\\u0997\\u09a3\\u09a8\\u09be \\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u099f\\u09bf \\u0986\\u099f\\u0995\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u0997\\u09c7\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u09b2\\u09a4\\u09c7 \\u098f\\u0987 \\u0997\\u09c1\\u09a3\\u09a8\\u09c7\\u09b0 \\u09a7\\u09be\\u0981\\u09a7\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Muslim scholars like Al-Khwarizmi helped invent the math we use today!\", \"bn\": \"\\u0986\\u09b2-\\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09bf\\u099c\\u09ae\\u09bf\\u09b0 \\u09ae\\u09a4\\u09cb \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae \\u09aa\\u09a3\\u09cd\\u09a1\\u09bf\\u09a4\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u0997\\u09a3\\u09bf\\u09a4 \\u0989\\u09a6\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u09b2\\u09c7\\u09a8!\"}, \"questions\": [{\"text\": \"5 x 5 = ?\", \"options\": [\"20\", \"25\", \"30\"], \"correctIndex\": 1}, {\"text\": \"8 x 4 = ?\", \"options\": [\"32\", \"36\", \"40\"], \"correctIndex\": 0}], \"asset\": \"\/batch2\/space_race\/rocket.png\"}, \"category\": \"STEM\"}, {\"id\": \"ach_u1_n4\", \"title\": {\"en\": \"Mission: Hero's History\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a8\\u09be\\u09af\\u09bc\\u0995\\u09c7\\u09b0 \\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"A hologram of history has appeared! Answer the questions about the Prophet's life to learn from the greatest hero.\", \"bn\": \"\\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b9\\u09b2\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u099c\\u09bf\\u09b0 \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7! \\u09b8\\u09b0\\u09cd\\u09ac\\u09b6\\u09cd\\u09b0\\u09c7\\u09b7\\u09cd\\u09a0 \\u09a8\\u09be\\u09af\\u09bc\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09bf\\u0996\\u09a4\\u09c7 \\u09a8\\u09ac\\u09c0\\u09b0 \\u099c\\u09c0\\u09ac\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09cd\\u09a8\\u09c7\\u09b0 \\u0989\\u09a4\\u09cd\\u09a4\\u09b0 \\u09a6\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet (SAW) was known as 'Al-Amin' - The Trustworthy - even before he was a Prophet.\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u09a8\\u09ac\\u09c0 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0987 '\\u0986\\u09b2-\\u0986\\u09ae\\u09bf\\u09a8' \\u09ac\\u09be \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8\\u09af\\u09cb\\u0997\\u09cd\\u09af \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u09aa\\u09b0\\u09bf\\u099a\\u09bf\\u09a4 \\u099b\\u09bf\\u09b2\\u09c7\\u09a8\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"Where was the Prophet born?\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u0995\\u09cb\\u09a5\\u09be\\u09af\\u09bc \\u099c\\u09a8\\u09cd\\u09ae\\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7\\u09a8?\"}, \"options\": [{\"en\": \"Madinah\", \"bn\": \"\\u09ae\\u09a6\\u09bf\\u09a8\\u09be\"}, {\"en\": \"Makkah\", \"bn\": \"\\u09ae\\u0995\\u09cd\\u0995\\u09be\"}, {\"en\": \"Jerusalem\", \"bn\": \"\\u099c\\u09c7\\u09b0\\u09c1\\u099c\\u09be\\u09b2\\u09c7\\u09ae\"}], \"correctIndex\": 1}, {\"text\": {\"en\": \"Who was his first wife?\", \"bn\": \"\\u09a4\\u09be\\u0981\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c0 \\u0995\\u09c7 \\u099b\\u09bf\\u09b2\\u09c7\\u09a8?\"}, \"options\": [{\"en\": \"Aisha\", \"bn\": \"\\u0986\\u09af\\u09bc\\u09c7\\u09b6\\u09be\"}, {\"en\": \"Khadija\", \"bn\": \"\\u0996\\u09be\\u09a6\\u09bf\\u099c\\u09be\"}, {\"en\": \"Hafsa\", \"bn\": \"\\u09b9\\u09be\\u09ab\\u09b8\\u09be\"}], \"correctIndex\": 1}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u1_n5\", \"title\": {\"en\": \"Mission: Greenhouse Growth\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0997\\u09cd\\u09b0\\u09bf\\u09a8\\u09b9\\u09be\\u0989\\u09b8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The fortress gardens need oxygen! Simulate the growth of plants to keep the air fresh.\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8 \\u09a6\\u09b0\\u0995\\u09be\\u09b0! \\u09ac\\u09be\\u09a4\\u09be\\u09b8 \\u09a4\\u09be\\u099c\\u09be \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u09b2\\u09be\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09b0 \\u09b8\\u09bf\\u09ae\\u09c1\\u09b2\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Photosynthesis is the process where plants turn sunlight into food. SubhanAllah!\", \"bn\": \"\\u09b8\\u09be\\u09b2\\u09cb\\u0995\\u09b8\\u0982\\u09b6\\u09cd\\u09b2\\u09c7\\u09b7\\u09a3 \\u09b9\\u09b2\\u09cb \\u098f\\u09ae\\u09a8 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be \\u09af\\u09c7\\u0996\\u09be\\u09a8\\u09c7 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u09b2\\u09be \\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u0995\\u0995\\u09c7 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u0995\\u09b0\\u09c7\\u0964 \\u09b8\\u09c1\\u09ac\\u09b9\\u09be\\u09a8\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9!\"}, \"items\": [{\"id\": \"seed\", \"label\": {\"en\": \"Plant a Seed\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09c0\\u099c \\u09ac\\u09aa\\u09a8 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"It needs water and soil!\", \"bn\": \"\\u098f\\u099f\\u09bf\\u09b0 \\u09aa\\u09be\\u09a8\\u09bf \\u098f\\u09ac\\u0982 \\u09ae\\u09be\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8!\"}, \"icon\": \"\\ud83c\\udf31\"}, {\"id\": \"sun\", \"label\": {\"en\": \"Add Sunlight\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u0995 \\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"The plant makes its own food!\", \"bn\": \"\\u0997\\u09be\\u099b\\u099f\\u09bf \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a8\\u09bf\\u099c\\u09c7\\u0987 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7!\"}, \"icon\": \"\\ud83c\\udf1e\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u1_n6\", \"title\": {\"en\": \"Mission: The Scribe's Scroll\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b2\\u09c7\\u0996\\u0995\\u09c7\\u09b0 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"A messenger has sent an encrypted scroll! Use your grammar skills to decode the message.\", \"bn\": \"\\u098f\\u0995\\u099c\\u09a8 \\u09ac\\u09be\\u09b0\\u09cd\\u09a4\\u09be\\u09ac\\u09be\\u09b9\\u0995 \\u098f\\u0995\\u099f\\u09bf \\u098f\\u09a8\\u0995\\u09cd\\u09b0\\u09bf\\u09aa\\u09cd\\u099f\\u09c7\\u09a1 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2 \\u09aa\\u09be\\u09a0\\u09bf\\u09df\\u09c7\\u099b\\u09c7\\u09a8! \\u09ac\\u09be\\u09b0\\u09cd\\u09a4\\u09be\\u099f\\u09bf \\u09a1\\u09bf\\u0995\\u09cb\\u09a1 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u09b0\\u09a3 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Words are powerful tools. Being a good writer helps you share the truth.\", \"bn\": \"\\u09b6\\u09ac\\u09cd\\u09a6 \\u0996\\u09c1\\u09ac \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09b9\\u09be\\u09a4\\u09bf\\u09af\\u09bc\\u09be\\u09b0\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09ad\\u09be\\u09b2\\u09cb \\u09b2\\u09c7\\u0996\\u0995 \\u09b9\\u0993\\u09af\\u09bc\\u09be \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u09b8\\u09a4\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u099a\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"Identify the Noun:\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09cd\\u09af (Noun) \\u099a\\u09bf\\u09b9\\u09cd\\u09a8\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb:\"}, \"options\": [{\"en\": \"Jump\", \"bn\": \"\\u09b2\\u09be\\u09ab\\u09be\\u09a8\\u09cb\"}, {\"en\": \"Apple\", \"bn\": \"\\u0986\\u09aa\\u09c7\\u09b2\"}, {\"en\": \"Quickly\", \"bn\": \"\\u09a6\\u09cd\\u09b0\\u09c1\\u09a4\"}], \"correctIndex\": 1}, {\"text\": {\"en\": \"Identify the Verb:\", \"bn\": \"\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be (Verb) \\u099a\\u09bf\\u09b9\\u09cd\\u09a8\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb:\"}, \"options\": [{\"en\": \"Blue\", \"bn\": \"\\u09a8\\u09c0\\u09b2\"}, {\"en\": \"House\", \"bn\": \"\\u0998\\u09b0\"}, {\"en\": \"Run\", \"bn\": \"\\u09a6\\u09cc\\u09a1\\u09bc\\u09be\\u09a8\\u09cb\"}], \"correctIndex\": 2}]}, \"category\": \"Academic Learning\"}], \"sector\": \"Quran & Academic\", \"reward\": {\"id\": \"gem_fortress\", \"title\": {\"en\": \"Fortress Gem\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u09ae\\u09a3\\u09bf\"}}}, {\"id\": \"ach_u2\", \"title\": {\"en\": \"Unit 2: The Digital City of Adab\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e8: \\u0986\\u09a6\\u09ac\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u09b6\\u09b9\\u09b0\"}, \"mission_brief\": {\"en\": \"You have entered the Digital City. To keep it safe and beautiful, you must follow the laws of Internet Safety and the Manners of a Muslim.\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u09b6\\u09b9\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09c7\\u09b6 \\u0995\\u09b0\\u09c7\\u099b\\u09cb\\u0964 \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u0987\\u09a8\\u09cd\\u099f\\u09be\\u09b0\\u09a8\\u09c7\\u099f \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a4\\u09cd\\u09a4\\u09be \\u098f\\u09ac\\u0982 \\u098f\\u0995\\u099c\\u09a8 \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae\\u09c7\\u09b0 \\u0986\\u09a6\\u09ac \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u0986\\u0987\\u09a8 \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\"}, \"nodes\": [{\"id\": \"ach_u2_n1\", \"title\": {\"en\": \"Mission: The 99 Lights\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ef\\u09ef\\u099f\\u09bf \\u0986\\u09b2\\u09cb\"}, \"mechanic\": \"Memory\", \"mission_brief\": {\"en\": \"The city lights are flickering! Match the Names of Allah to their meanings to bring back the light.\", \"bn\": \"\\u09b6\\u09b9\\u09b0\\u09c7\\u09b0 \\u0986\\u09b2\\u09cb\\u0997\\u09c1\\u09b2\\u09cb \\u09ae\\u09bf\\u099f\\u09ae\\u09bf\\u099f \\u0995\\u09b0\\u099b\\u09c7! \\u0986\\u09b2\\u09cb \\u09ab\\u09bf\\u09b0\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a8\\u09a4\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a8\\u09be\\u09ae\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5 \\u09ae\\u09c7\\u09b2\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Knowing Allah's names helps us feel closer to Him every day.\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a8\\u09be\\u09ae\\u0997\\u09c1\\u09b2\\u09cb \\u099c\\u09be\\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u0981\\u09b0 \\u0986\\u09b0\\u0993 \\u0995\\u09be\\u099b\\u09be\\u0995\\u09be\\u099b\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\"}, \"items\": [{\"en\": \"Ar-Rahman (The Merciful)\", \"bn\": \"\\u0986\\u09b0-\\u09b0\\u09b9\\u09ae\\u09be\\u09a8 (\\u09aa\\u09b0\\u09ae \\u09a6\\u09af\\u09bc\\u09be\\u09b2\\u09c1)\"}, {\"en\": \"Al-Khaliq (The Creator)\", \"bn\": \"\\u0986\\u09b2-\\u0996\\u09be\\u09b2\\u09bf\\u0995 (\\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u09cd\\u09a4\\u09be)\"}, {\"en\": \"As-Salam (Source of Peace)\", \"bn\": \"\\u0986\\u09b8-\\u09b8\\u09be\\u09b2\\u09be\\u09ae (\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09b0 \\u0989\\u09ce\\u09b8)\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u2_n2\", \"title\": {\"en\": \"Mission: Cyber Shield\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a2\\u09be\\u09b2\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"A virus is trying to enter the city! Defeat it by choosing the safest way to browse the web.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b8 \\u09b6\\u09b9\\u09b0\\u09c7 \\u09a2\\u09cb\\u0995\\u09be\\u09b0 \\u099a\\u09c7\\u09b7\\u09cd\\u099f\\u09be \\u0995\\u09b0\\u099b\\u09c7! \\u0993\\u09af\\u09bc\\u09c7\\u09ac \\u09ac\\u09cd\\u09b0\\u09be\\u0989\\u099c \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u0989\\u09aa\\u09be\\u09af\\u09bc \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u098f\\u0995\\u09c7 \\u09aa\\u09b0\\u09be\\u099c\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Your private information is an 'Amanah' (a trust). Keep it safe!\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf\\u0997\\u09a4 \\u09a4\\u09a5\\u09cd\\u09af \\u098f\\u0995\\u099f\\u09bf '\\u0986\\u09ae\\u09be\\u09a8\\u09a4'\\u0964 \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09b0\\u09be\\u0996\\u09cb!\"}, \"questions\": [{\"text\": {\"en\": \"A stranger asks for your password. Do you:\", \"bn\": \"\\u098f\\u0995\\u099c\\u09a8 \\u0985\\u09aa\\u09b0\\u09bf\\u099a\\u09bf\\u09a4 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09aa\\u09be\\u09b8\\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09cd\\u09a1 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u0995\\u09b0\\u09ac\\u09c7?\"}, \"options\": [{\"en\": \"Give it\", \"bn\": \"\\u09a6\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u09ac\"}, {\"en\": \"Say no and tell parents\", \"bn\": \"\\u09a8\\u09be \\u09ac\\u09b2\\u09ac\\u09cb \\u098f\\u09ac\\u0982 \\u09ac\\u09be\\u09ac\\u09be-\\u09ae\\u09be\\u0995\\u09c7 \\u099c\\u09be\\u09a8\\u09be\\u09ac\\u09cb\"}, {\"en\": \"Ask for theirs\", \"bn\": \"\\u09a4\\u09be\\u09a6\\u09c7\\u09b0\\u099f\\u09be \\u099a\\u09be\\u0987\\u09ac\\u09cb\"}], \"correctIndex\": 1}, {\"text\": {\"en\": \"Should you share your home address online?\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u0995\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09b6\\u09c7\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4?\"}, \"options\": [{\"en\": \"Yes\", \"bn\": \"\\u09b9\\u09cd\\u09af\\u09be\\u0981\"}, {\"en\": \"Only with friends\", \"bn\": \"\\u0995\\u09c7\\u09ac\\u09b2 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\"}, {\"en\": \"No, never\", \"bn\": \"\\u09a8\\u09be, \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09a8\\u09be\"}], \"correctIndex\": 2}], \"asset\": \"\/batch2\/web_safety\/safety_icons.png\"}, \"category\": \"STEM\"}, {\"id\": \"ach_u2_n3\", \"title\": {\"en\": \"Mission: The Treasure Chest\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a7\\u09a8\\u09ad\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"You've earned some gold coins! Decide which ones to save, spend, or give to charity.\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf\\u099b\\u09c1 \\u09b8\\u09cd\\u09ac\\u09b0\\u09cd\\u09a3\\u09ae\\u09c1\\u09a6\\u09cd\\u09b0\\u09be \\u0985\\u09b0\\u09cd\\u099c\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09cb! \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u09a8\\u09be\\u0993 \\u0995\\u09cb\\u09a8\\u099f\\u09bf \\u099c\\u09ae\\u09be\\u09ac\\u09c7, \\u0996\\u09b0\\u099a \\u0995\\u09b0\\u09ac\\u09c7 \\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Sadaqah (Charity) never decreases wealth; it brings more blessing!\", \"bn\": \"\\u09b8\\u09a6\\u0995\\u09be (\\u09a6\\u09be\\u09a8) \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6 \\u0995\\u09ae\\u09be\\u09af\\u09bc \\u09a8\\u09be; \\u098f\\u099f\\u09bf \\u0986\\u09b0\\u0993 \\u09ac\\u09b0\\u0995\\u09a4 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7!\"}, \"pairs\": [{\"id\": \"charity\", \"label\": {\"en\": \"$1 for Poor\", \"bn\": \"\\u0997\\u09b0\\u09bf\\u09ac\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09e7 \\u099f\\u09be\\u0995\\u09be\"}, \"match\": {\"en\": \"Give (Sadaqah)\", \"bn\": \"\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09cb (\\u09b8\\u09a6\\u0995\\u09be)\"}}, {\"id\": \"save\", \"label\": {\"en\": \"$1 for later\", \"bn\": \"\\u09aa\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09e7 \\u099f\\u09be\\u0995\\u09be\"}, \"match\": {\"en\": \"Save\", \"bn\": \"\\u099c\\u09ae\\u09be\\u0993\"}}], \"asset\": \"\/batch2\/allowance\/money_icons.png\"}, \"category\": \"Life Skills\"}, {\"id\": \"ach_u2_n4\", \"title\": {\"en\": \"Mission: Logic Blocks\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b2\\u099c\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u0995\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The city's power grid is broken! Connect the coding blocks in the right order to restore power.\", \"bn\": \"\\u09b6\\u09b9\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09bf\\u09a1\\u099f\\u09bf \\u09ad\\u09c7\\u0999\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09ab\\u09bf\\u09b0\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a8\\u09a4\\u09c7 \\u0995\\u09cb\\u09a1\\u09bf\\u0982 \\u09ac\\u09cd\\u09b2\\u0995\\u0997\\u09c1\\u09b2\\u09cb \\u09b8\\u09a0\\u09bf\\u0995 \\u0995\\u09cd\\u09b0\\u09ae\\u09c7 \\u09b8\\u0982\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Algorithm is a fancy word for a set of instructions.\", \"bn\": \"\\u0985\\u09cd\\u09af\\u09be\\u09b2\\u0997\\u09b0\\u09bf\\u09a6\\u09ae \\u09b9\\u09b2\\u09cb \\u098f\\u0995\\u0997\\u09c1\\u099a\\u09cd\\u099b \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0997\\u09be\\u09b2\\u09ad\\u09b0\\u09be \\u09a8\\u09be\\u09ae\\u0964\"}, \"pairs\": [{\"id\": \"if\", \"label\": {\"en\": \"If it is raining\", \"bn\": \"\\u09af\\u09a6\\u09bf \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09b9\\u09af\\u09bc\"}, \"match\": {\"en\": \"Wear a jacket\", \"bn\": \"\\u099c\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099f \\u09aa\\u09b0\\u09cb\"}}, {\"id\": \"loop\", \"label\": {\"en\": \"Repeat 5 times\", \"bn\": \"\\u09eb \\u09ac\\u09be\\u09b0 \\u09aa\\u09c1\\u09a8\\u09b0\\u09be\\u09ac\\u09c3\\u09a4\\u09cd\\u09a4\\u09bf \\u0995\\u09b0\\u09cb\"}, \"match\": {\"en\": \"Jump!\", \"bn\": \"\\u09b2\\u09be\\u09ab \\u09a6\\u09be\\u0993!\"}}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u2_n5\", \"title\": {\"en\": \"Mission: The Speaker's Podium\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u0995\\u09cd\\u09a4\\u09be\\u09b0 \\u09aa\\u09cb\\u09a1\\u09bf\\u09af\\u09bc\\u09be\\u09ae\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The city council needs to hear your ideas! Practice your speech to convince them to build a new park.\", \"bn\": \"\\u09b8\\u09bf\\u099f\\u09bf \\u0995\\u09be\\u0989\\u09a8\\u09cd\\u09b8\\u09bf\\u09b2\\u09c7\\u09b0 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09a7\\u09be\\u09b0\\u09a3\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u09b6\\u09cb\\u09a8\\u09be \\u09a6\\u09b0\\u0995\\u09be\\u09b0! \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09a4\\u09c1\\u09a8 \\u09aa\\u09be\\u09b0\\u09cd\\u0995 \\u09a4\\u09c8\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u09be\\u099c\\u09bf \\u0995\\u09b0\\u09be\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09a4\\u09c3\\u09a4\\u09be \\u0985\\u09a8\\u09c1\\u09b6\\u09c0\\u09b2\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Prophet Musa (AS) asked Allah to help him speak clearly. Confidence comes from Allah!\", \"bn\": \"\\u09ae\\u09c1\\u09b8\\u09be (\\u0986\\u0983) \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09b0\\u09cd\\u09a5\\u09a8\\u09be \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u09b2\\u09c7\\u09a8 \\u09af\\u09be\\u09a4\\u09c7 \\u09a4\\u09bf\\u09a8\\u09bf \\u09b8\\u09cd\\u09aa\\u09b7\\u09cd\\u099f\\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09a4\\u09cd\\u09ae\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b8\\u09c7!\"}, \"items\": [{\"id\": \"eye\", \"label\": {\"en\": \"Look at the Audience\", \"bn\": \"\\u09b6\\u09cd\\u09b0\\u09cb\\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09be\\u0993\"}, \"reveal\": {\"en\": \"Eye contact is key!\", \"bn\": \"\\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09b8\\u0982\\u09af\\u09cb\\u0997\\u0987 \\u0986\\u09b8\\u09b2!\"}, \"icon\": \"\\ud83d\\udc40\"}, {\"id\": \"voice\", \"label\": {\"en\": \"Speak Loudly\", \"bn\": \"\\u099c\\u09cb\\u09b0\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09cb\"}, \"reveal\": {\"en\": \"Make sure they hear you!\", \"bn\": \"\\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb \\u09a4\\u09be\\u09b0\\u09be \\u09af\\u09c7\\u09a8 \\u09b6\\u09c1\\u09a8\\u09a4\\u09c7 \\u09aa\\u09be\\u09df!\"}, \"icon\": \"\\ud83d\\udce2\"}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ach_u2_n6\", \"title\": {\"en\": \"Mission: The Health Traffic\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u099f\\u09cd\\u09b0\\u09be\\u09ab\\u09bf\\u0995\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The city market is full of food! Sort them by the traffic light system to keep the citizens healthy.\", \"bn\": \"\\u09b6\\u09b9\\u09b0\\u09c7\\u09b0 \\u09ac\\u09be\\u099c\\u09be\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7 \\u09ad\\u09b0\\u09aa\\u09c1\\u09b0! \\u09a8\\u09be\\u0997\\u09b0\\u09bf\\u0995\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u099f\\u09cd\\u09b0\\u09be\\u09ab\\u09bf\\u0995 \\u09b2\\u09be\\u0987\\u099f \\u09b8\\u09bf\\u09b8\\u09cd\\u099f\\u09c7\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09b8\\u09be\\u099c\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Your body is a gift from Allah. Fuel it with 'Tayyib' (pure and good) food.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7 \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0\\u0964 \\u098f\\u0995\\u09c7 '\\u09a4\\u09c8\\u09df\\u09ac' (\\u09ac\\u09bf\\u09b6\\u09c1\\u09a6\\u09cd\\u09a7 \\u0993 \\u0989\\u09a4\\u09cd\\u09a4\\u09ae) \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09a6\\u09be\\u0993\\u0964\"}, \"pairs\": [{\"id\": \"green\", \"label\": {\"en\": \"Spinach\", \"bn\": \"\\u09aa\\u09be\\u09b2\\u0982 \\u09b6\\u09be\\u0995\"}, \"match\": {\"en\": \"Green (Go!)\", \"bn\": \"\\u09b8\\u09ac\\u09c1\\u099c (\\u099a\\u09b2\\u09cb!)\"}}, {\"id\": \"red\", \"label\": {\"en\": \"Candy\", \"bn\": \"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09bf\"}, \"match\": {\"en\": \"Red (Rarely)\", \"bn\": \"\\u09b2\\u09be\\u09b2 (\\u09ae\\u09be\\u099d\\u09c7 \\u09ae\\u09be\\u099d\\u09c7)\"}}]}, \"category\": \"Health\"}], \"sector\": \"Adab & Web Safety\", \"reward\": {\"id\": \"gem_safety\", \"title\": {\"en\": \"Shield of Safety\", \"bn\": \"\\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a4\\u09cd\\u09a4\\u09be\\u09b0 \\u09a2\\u09be\\u09b2\"}}}, {\"id\": \"ach_u3\", \"title\": {\"en\": \"Unit 3: The Galaxy of Science\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e9: \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09bf\"}, \"mission_brief\": {\"en\": \"Prepare for blast-off! We are exploring the wonders of physics, biology, and astronomy in the great beyond.\", \"bn\": \"\\u0989\\u09ce\\u0995\\u09cd\\u09b7\\u09c7\\u09aa\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u09b9\\u0993! \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09a6\\u09be\\u09b0\\u09cd\\u09a5\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u099c\\u09c0\\u09ac\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u099c\\u09cd\\u09af\\u09cb\\u09a4\\u09bf\\u09b0\\u09cd\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\\u0997\\u09c1\\u09b2\\u09cb \\u0985\\u09a8\\u09cd\\u09ac\\u09c7\\u09b7\\u09a3 \\u0995\\u09b0\\u099b\\u09bf\\u0964\"}, \"background_asset\": \"\/batch2\/galaxy_bg.png\", \"nodes\": [{\"id\": \"ach_u3_n1\", \"title\": {\"en\": \"Mission: Gravity Glider\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0985\\u09ad\\u09bf\\u0995\\u09b0\\u09cd\\u09b7 \\u0997\\u09cd\\u09b2\\u09be\\u0987\\u09a1\\u09be\\u09b0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Launch the glider! Change the weight and see how gravity pulls it back to the planet.\", \"bn\": \"\\u0997\\u09cd\\u09b2\\u09be\\u0987\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0989\\u09ce\\u0995\\u09cd\\u09b7\\u09c7\\u09aa\\u09a3 \\u0995\\u09b0\\u09cb! \\u0993\\u099c\\u09a8 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09cb \\u098f\\u09ac\\u0982 \\u09a6\\u09c7\\u0996\\u09cb \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0985\\u09ad\\u09bf\\u0995\\u09b0\\u09cd\\u09b7 \\u098f\\u0995\\u09c7 \\u0997\\u09cd\\u09b0\\u09b9\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7 \\u099f\\u09c7\\u09a8\\u09c7 \\u0986\\u09a8\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Gravity is the force that keeps our feet on the ground and planets in orbit.\", \"bn\": \"\\u0985\\u09ad\\u09bf\\u0995\\u09b0\\u09cd\\u09b7 \\u09b9\\u09b2\\u09cb \\u09b8\\u09c7\\u0987 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09be\\u099f\\u09bf\\u09a4\\u09c7 \\u0986\\u099f\\u0995\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \\u098f\\u09ac\\u0982 \\u0997\\u09cd\\u09b0\\u09b9\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u0995\\u0995\\u09cd\\u09b7\\u09aa\\u09a5\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\u0964\"}, \"items\": [{\"id\": \"heavy\", \"label\": {\"en\": \"Heavy Weight\", \"bn\": \"\\u09ad\\u09be\\u09b0\\u09c0 \\u0993\\u099c\\u09a8\"}, \"reveal\": {\"en\": \"Falls fast!\", \"bn\": \"\\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09a8\\u09bf\\u099a\\u09c7 \\u09aa\\u09dc\\u09c7!\"}, \"icon\": \"\\u2696\\ufe0f\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u3_n2\", \"title\": {\"en\": \"Mission: Water Cycle Wizard\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u099c\\u09b2\\u099a\\u0995\\u09cd\\u09b0 \\u099c\\u09be\\u09a6\\u09c1\\u0995\\u09b0\"}, \"mechanic\": \"Sequence\", \"mission_brief\": {\"en\": \"Put the water cycle in order to make it rain in the fortress gardens.\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0986\\u09a8\\u09a4\\u09c7 \\u099c\\u09b2\\u099a\\u0995\\u09cd\\u09b0\\u09c7\\u09b0 \\u09a7\\u09be\\u09aa\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09cd\\u09b0\\u09ae\\u09be\\u09a8\\u09c1\\u09b8\\u09be\\u09b0\\u09c7 \\u09b8\\u09be\\u099c\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The water we drink today is the same water that has been on Earth for millions of years!\", \"bn\": \"\\u0986\\u09ae\\u09b0\\u09be \\u0986\\u099c \\u09af\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09bf \\u09a4\\u09be \\u09b2\\u0995\\u09cd\\u09b7 \\u09b2\\u0995\\u09cd\\u09b7 \\u09ac\\u099b\\u09b0 \\u09a7\\u09b0\\u09c7 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u098f\\u0995\\u0987 \\u09aa\\u09be\\u09a8\\u09bf!\"}, \"sequence\": [{\"en\": \"\\u2600\\ufe0f Evaporation\", \"bn\": \"\\u2600\\ufe0f \\u09ac\\u09be\\u09b7\\u09cd\\u09aa\\u09c0\\u09ad\\u09ac\\u09a8\"}, {\"en\": \"\\u2601\\ufe0f Condensation\", \"bn\": \"\\u2601\\ufe0f \\u0998\\u09a8\\u09c0\\u09ad\\u09ac\\u09a8\"}, {\"en\": \"\\ud83c\\udf27\\ufe0f Precipitation\", \"bn\": \"\\ud83c\\udf27\\ufe0f \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09aa\\u09be\\u09a4\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u3_n3\", \"title\": {\"en\": \"Mission: Solar System Scavenger\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cc\\u09b0\\u099c\\u0997\\u09a4 \\u0985\\u09a8\\u09c1\\u09b8\\u09a8\\u09cd\\u09a7\\u09be\\u09a8\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Click the planets to learn their names and what makes them special.\", \"bn\": \"\\u0997\\u09cd\\u09b0\\u09b9\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09a8\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4\\u09cd\\u09ac \\u099c\\u09be\\u09a8\\u09a4\\u09c7 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The sun is so big that about 1.3 million Earths could fit inside it!\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af \\u098f\\u09a4 \\u09ac\\u09dc \\u09af\\u09c7 \\u098f\\u09b0 \\u09ad\\u09c7\\u09a4\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e9 \\u09b2\\u0995\\u09cd\\u09b7 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u098f\\u0981\\u099f\\u09c7 \\u09af\\u09be\\u09ac\\u09c7!\"}, \"items\": [{\"id\": \"mars\", \"label\": {\"en\": \"Mars\", \"bn\": \"\\u09ae\\u0999\\u09cd\\u0997\\u09b2\"}, \"reveal\": {\"en\": \"The Red Planet!\", \"bn\": \"\\u09b2\\u09be\\u09b2 \\u0997\\u09cd\\u09b0\\u09b9!\"}, \"icon\": \"\\ud83d\\udd34\"}, {\"id\": \"saturn\", \"label\": {\"en\": \"Saturn\", \"bn\": \"\\u09b6\\u09a8\\u09bf\"}, \"reveal\": {\"en\": \"It has beautiful rings!\", \"bn\": \"\\u098f\\u09b0 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09ac\\u09b2\\u09df \\u0986\\u099b\\u09c7!\"}, \"icon\": \"\\ud83e\\ude90\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u3_n4\", \"title\": {\"en\": \"Mission: Magnifying Mystery\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b0\\u09b9\\u09b8\\u09cd\\u09af \\u0989\\u09a8\\u09cd\\u09ae\\u09cb\\u099a\\u09a8\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Look through the lens! Click the cells and leaves to see the microscopic world.\", \"bn\": \"\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8\\u09c7\\u09b0 \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09be\\u0995\\u09be\\u0993! \\u0985\\u09a3\\u09c1\\u09ac\\u09c0\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u099c\\u0997\\u09ce \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0995\\u09cb\\u09b7 \\u098f\\u09ac\\u0982 \\u09aa\\u09be\\u09a4\\u09be\\u09df \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Every living thing is made of tiny building blocks called cells.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u099c\\u09c0\\u09ac \\u0995\\u09cb\\u09b7 \\u09a8\\u09be\\u09ae\\u0995 \\u099b\\u09cb\\u099f \\u099b\\u09cb\\u099f \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\"}, \"items\": [{\"id\": \"cell\", \"label\": {\"en\": \"Plant Cell\", \"bn\": \"\\u0989\\u09a6\\u09cd\\u09ad\\u09bf\\u09a6 \\u0995\\u09cb\\u09b7\"}, \"reveal\": {\"en\": \"It has a strong wall!\", \"bn\": \"\\u098f\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09aa\\u09cd\\u09b0\\u09be\\u099a\\u09c0\\u09b0 \\u0986\\u099b\\u09c7!\"}, \"icon\": \"\\ud83e\\udda0\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u3_n5\", \"title\": {\"en\": \"Mission: Circuit Connect\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09bf\\u099f \\u09b8\\u0982\\u09af\\u09cb\\u0997\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Connect the battery to the lightbulb to make the fortress shine.\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u099f\\u09bf \\u0986\\u09b2\\u09cb\\u0995\\u09bf\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b2\\u09be\\u0987\\u099f\\u09ac\\u09be\\u09b2\\u09cd\\u09ac \\u09b8\\u0982\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Electricity flows in a loop called a circuit.\", \"bn\": \"\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c1\\u09aa \\u09ac\\u09be \\u099a\\u0995\\u09cd\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09be\\u09b9\\u09bf\\u09a4 \\u09b9\\u09df \\u09af\\u09be\\u0995\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09bf\\u099f \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964\"}, \"pairs\": [{\"id\": \"wire\", \"label\": \"\\ud83d\\udd0c Wire\", \"match\": \"Battery\"}, {\"id\": \"bulb\", \"label\": \"\\ud83d\\udca1 Bulb\", \"match\": \"Light\"}]}, \"category\": \"STEM\"}, {\"id\": \"ach_u3_n6\", \"title\": {\"en\": \"Mission: The Great Invention\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ae\\u09b9\\u09be\\u09a8 \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Discover how Muslim scientists used the stars to find the Qibla using the Astrolabe.\", \"bn\": \"\\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2\\u09c7\\u09ac \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c0\\u09b0\\u09be \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09a8\\u0995\\u09cd\\u09b7\\u09a4\\u09cd\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u0995\\u09bf\\u09ac\\u09b2\\u09be \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09c7\\u09a4\\u09c7\\u09a8 \\u09a4\\u09be \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Astrolabe was the GPS of the ancient world!\", \"bn\": \"\\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2\\u09c7\\u09ac \\u099b\\u09bf\\u09b2 \\u09aa\\u09cd\\u09b0\\u09be\\u099a\\u09c0\\u09a8 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u099c\\u09bf\\u09aa\\u09bf\\u098f\\u09b8 (GPS)!\"}, \"items\": [{\"id\": \"astro\", \"label\": {\"en\": \"Astrolabe\", \"bn\": \"\\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2\\u09c7\\u09ac\"}, \"reveal\": {\"en\": \"It measures the height of stars!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u09a8\\u0995\\u09cd\\u09b7\\u09a4\\u09cd\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a\\u09a4\\u09be \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09aa \\u0995\\u09b0\\u09c7!\"}, \"icon\": \"\\ud83e\\udded\"}]}, \"category\": \"STEM\"}], \"sector\": \"Stem & Invention\", \"reward\": {\"id\": \"gem_stars\", \"title\": {\"en\": \"Star of Science\", \"bn\": \"\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09be\\u09b0\\u09be\"}}}, {\"id\": \"ach_u4\", \"title\": {\"en\": \"Unit 4: The Heroes of Islam\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09ea: \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09ac\\u09c0\\u09b0\"}, \"mission_brief\": {\"en\": \"Travel back in time to meet the greatest men and women in history and learn from their bravery.\", \"bn\": \"\\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\\u09c7\\u09b0 \\u09b6\\u09cd\\u09b0\\u09c7\\u09b7\\u09cd\\u09a0 \\u09a8\\u09be\\u09b0\\u09c0 \\u0993 \\u09aa\\u09c1\\u09b0\\u09c1\\u09b7\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a6\\u09c7\\u0996\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u09a4\\u09c0\\u09a4\\u09c7 \\u09ab\\u09bf\\u09b0\\u09c7 \\u09af\\u09be\\u0993 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c0\\u09b0\\u09a4\\u09cd\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u09a8\\u09be\\u0993\\u0964\"}, \"background_asset\": \"\/batch2\/heroes_bg.png\", \"nodes\": [{\"id\": \"ach_u4_n1\", \"title\": {\"en\": \"Mission: Companions' Quest\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u09b9\\u09be\\u09ac\\u09c0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a7\\u09be\\u09a8\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Learn about the four Rightly Guided Caliphs and their great deeds.\", \"bn\": \"\\u099a\\u09be\\u09b0\\u099c\\u09a8 \\u0996\\u09cb\\u09b2\\u09be\\u09ab\\u09be\\u09df\\u09c7 \\u09b0\\u09be\\u09b6\\u09c7\\u09a6\\u09c0\\u09a8 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09b9\\u09be\\u09a8 \\u0995\\u09be\\u099c\\u0997\\u09c1\\u09b2\\u09cb \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09be\\u09a8\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Caliphs were the closest friends and leaders after the Prophet (SAW).\", \"bn\": \"\\u0996\\u09b2\\u09bf\\u09ab\\u09be\\u09b0\\u09be \\u099b\\u09bf\\u09b2\\u09c7\\u09a8 \\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983)-\\u098f\\u09b0 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u0995\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1 \\u098f\\u09ac\\u0982 \\u09a8\\u09c7\\u09a4\\u09be\\u0964\"}, \"items\": [{\"id\": \"abu\", \"label\": {\"en\": \"Abu Bakr (RA)\", \"bn\": \"\\u0986\\u09ac\\u09c1 \\u09ac\\u0995\\u09b0 (\\u09b0\\u09be\\u0983)\"}, \"reveal\": {\"en\": \"The Truthful One (As-Siddiq).\", \"bn\": \"\\u09aa\\u09b0\\u09ae \\u09b8\\u09a4\\u09cd\\u09af\\u09ac\\u09be\\u09a6\\u09c0 (\\u0986\\u09b8-\\u09b8\\u09bf\\u09a6\\u09cd\\u09a6\\u09bf\\u0995)\\u0964\"}, \"icon\": \"\\ud83d\\udcdc\"}, {\"id\": \"omar\", \"label\": {\"en\": \"Umar (RA)\", \"bn\": \"\\u0989\\u09ae\\u09b0 (\\u09b0\\u09be\\u0983)\"}, \"reveal\": {\"en\": \"The Just One (Al-Faruq).\", \"bn\": \"\\u09a8\\u09cd\\u09af\\u09be\\u09df\\u09aa\\u09b0\\u09be\\u09df\\u09a3 (\\u0986\\u09b2-\\u09ab\\u09be\\u09b0\\u09c1\\u0995)\\u0964\"}, \"icon\": \"\\u2696\\ufe0f\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u4_n2\", \"title\": {\"en\": \"Mission: Hadith Hunter\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b9\\u09be\\u09a6\\u09bf\\u09b8 \\u09b6\\u09bf\\u0995\\u09be\\u09b0\\u09bf\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Find the scrolls with the Prophet's (SAW) sayings about kindness to neighbors.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09ac\\u09c7\\u09b6\\u09c0\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09a6\\u09af\\u09bc\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983)-\\u098f\\u09b0 \\u09ac\\u09be\\u09a3\\u09c0\\u09b0 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet (SAW) said: 'He is not a believer whose neighbor is not safe from his harm.'\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u09ac\\u09b2\\u09c7\\u099b\\u09c7\\u09a8: '\\u09b8\\u09c7 \\u0988\\u09ae\\u09be\\u09a8\\u09a6\\u09be\\u09b0 \\u09a8\\u09df \\u09af\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09ac\\u09c7\\u09b6\\u09c0 \\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09bf\\u09b7\\u09cd\\u099f \\u09a5\\u09c7\\u0995\\u09c7 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09a8\\u09df\\u0964'\"}, \"items\": [{\"id\": \"h1\", \"label\": {\"en\": \"Kindness\", \"bn\": \"\\u09a6\\u09df\\u09be\"}, \"reveal\": {\"en\": \"Smiling is Sadaqah!\", \"bn\": \"\\u09b9\\u09be\\u09b8\\u09bf \\u09a6\\u09c7\\u0993\\u09df\\u09be\\u0993 \\u09b8\\u09a6\\u0995\\u09be!\"}, \"icon\": \"\\ud83d\\ude0a\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u4_n3\", \"title\": {\"en\": \"Mission: Masjid Explorer\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ae\\u09b8\\u099c\\u09bf\\u09a6 \\u09ad\\u09cd\\u09b0\\u09ae\\u09a3\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Visit the Great Masjids of the world and see their beautiful architecture.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u09ae\\u09b9\\u09be\\u09a8 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u0997\\u09c1\\u09b2\\u09cb \\u09ad\\u09cd\\u09b0\\u09ae\\u09a3 \\u0995\\u09b0\\u09cb \\u098f\\u09ac\\u0982 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a4\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet's Mosque in Madinah was the first center of the Islamic community.\", \"bn\": \"\\u09ae\\u09a6\\u09bf\\u09a8\\u09be\\u09b0 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u09c7 \\u09a8\\u09ac\\u09ac\\u09c0 \\u099b\\u09bf\\u09b2 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09b8\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u0995\\u09c7\\u09a8\\u09cd\\u09a6\\u09cd\\u09b0\\u0964\"}, \"items\": [{\"id\": \"m1\", \"label\": {\"en\": \"Al-Haram\", \"bn\": \"\\u0986\\u09b2-\\u09b9\\u09be\\u09b0\\u09be\\u09ae\"}, \"reveal\": {\"en\": \"The Kaaba is here!\", \"bn\": \"\\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0995\\u09be\\u09ac\\u09be \\u09b6\\u09b0\\u09c0\\u09ab \\u0985\\u09ac\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4!\"}, \"icon\": \"\\ud83d\\udd4b\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u4_n4\", \"title\": {\"en\": \"Mission: Charity Challenge\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a6\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u099e\\u09cd\\u099c\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Calculate how much to share with those in need from your treasure chest.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09a7\\u09a8\\u09ad\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0985\\u09ad\\u09be\\u09ac\\u09c0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09be \\u0997\\u09a3\\u09a8\\u09be \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Zakat is one of the Five Pillars of Islam. It purifies our wealth.\", \"bn\": \"\\u09af\\u09be\\u0995\\u09be\\u09a4 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09aa\\u09be\\u0981\\u099a\\u099f\\u09bf \\u09b8\\u09cd\\u09a4\\u09ae\\u09cd\\u09ad\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6\\u0995\\u09c7 \\u09aa\\u09ac\\u09bf\\u09a4\\u09cd\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\"}, \"pairs\": [{\"id\": \"z1\", \"label\": \"$100 Gold\", \"match\": \"$2.50 Zakat\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u4_n5\", \"title\": {\"en\": \"Mission: Brave Hearts\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09be\\u09b9\\u09b8\\u09c0 \\u09b9\\u09c3\\u09a6\\u09df\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Learn about the bravery of Khalid bin Walid and other heroes.\", \"bn\": \"\\u0996\\u09be\\u09b2\\u09bf\\u09a6 \\u09ac\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u09a6 \\u098f\\u09ac\\u0982 \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af \\u09ac\\u09c0\\u09b0\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c0\\u09b0\\u09a4\\u09cd\\u09ac \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09be\\u09a8\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"True bravery is standing up for what is right, even when it's hard.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u0995\\u09c3\\u09a4 \\u09ac\\u09c0\\u09b0\\u09a4\\u09cd\\u09ac \\u09b9\\u09b2\\u09cb \\u09b8\\u09a0\\u09bf\\u0995\\u09c7\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7\\u09c7 \\u09a6\\u09be\\u0981\\u09dc\\u09be\\u09a8\\u09cb, \\u098f\\u09ae\\u09a8\\u0995\\u09bf \\u09af\\u0996\\u09a8 \\u09a4\\u09be \\u0995\\u09a0\\u09bf\\u09a8 \\u09b9\\u09df \\u09a4\\u0996\\u09a8\\u0993\\u0964\"}, \"items\": [{\"id\": \"k\", \"label\": {\"en\": \"Khalid (RA)\", \"bn\": \"\\u0996\\u09be\\u09b2\\u09bf\\u09a6 (\\u09b0\\u09be\\u0983)\"}, \"reveal\": {\"en\": \"The Sword of Allah!\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09a4\\u09b2\\u09cb\\u09df\\u09be\\u09b0!\"}, \"icon\": \"\\u2694\\ufe0f\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ach_u4_n6\", \"title\": {\"en\": \"Mission: The Message of Peace\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09b0 \\u09ac\\u09be\\u09a3\\u09c0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Discover the 5 Pillars of Islam and how they bring us closer to Allah.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09eb\\u099f\\u09bf \\u09b8\\u09cd\\u09a4\\u09ae\\u09cd\\u09ad \\u098f\\u09ac\\u0982 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09be\\u0995\\u09be\\u099b\\u09bf \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u09c7 \\u09a4\\u09be \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Islam means 'Submission to Allah' and 'Peace'.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae \\u09ae\\u09be\\u09a8\\u09c7 '\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0986\\u09a4\\u09cd\\u09ae\\u09b8\\u09ae\\u09b0\\u09cd\\u09aa\\u09a3' \\u098f\\u09ac\\u0982 '\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf'\\u0964\"}, \"items\": [{\"id\": \"p1\", \"label\": {\"en\": \"Shahadah\", \"bn\": \"\\u09b6\\u09be\\u09b9\\u09be\\u09a6\\u09be\\u09b9\"}, \"reveal\": {\"en\": \"Faith in One Allah.\", \"bn\": \"\\u098f\\u0995 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0993\\u09aa\\u09b0 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8\\u0964\"}, \"icon\": \"\\u261d\\ufe0f\"}]}, \"category\": \"Islamic Knowledge\"}], \"sector\": \"Islamic History\", \"reward\": {\"id\": \"gem_history\", \"title\": {\"en\": \"Scroll of Heroes\", \"bn\": \"\\u09ac\\u09c0\\u09b0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\"}}}]}, \"leaders\": {\"mission_brief\": {\"en\": \"Salute, Leader! You are a member of the 'Wisdom Watch'. Your task is to investigate the mysteries of the past and the challenges of the future to lead the world with justice.\", \"bn\": \"\\u09b8\\u09be\\u09b2\\u09be\\u09ae, \\u09a8\\u09c7\\u09a4\\u09be! \\u09a4\\u09c1\\u09ae\\u09bf '\\u0989\\u0987\\u099c\\u09a1\\u09ae \\u0993\\u09af\\u09bc\\u09be\\u099a'-\\u098f\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af\\u0964 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u099c \\u09b9\\u09b2\\u09cb \\u0985\\u09a4\\u09c0\\u09a4 \\u0993 \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u09b0\\u09b9\\u09b8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b8\\u09a8\\u09cd\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u09a8\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09ac\\u09bf\\u099a\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u0995\\u09c7 \\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u0964\"}, \"units\": [{\"id\": \"ldr_u1\", \"title\": {\"en\": \"Unit 1: The Library of Wisdom\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e7: \\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09a8\\u09cd\\u09a5\\u09be\\u0997\\u09be\\u09b0\"}, \"mission_brief\": {\"en\": \"Deep in the library, ancient scrolls hold the secrets of Fiqh, Science, and History. Can you master them?\", \"bn\": \"\\u0997\\u09cd\\u09b0\\u09a8\\u09cd\\u09a5\\u09be\\u0997\\u09be\\u09b0\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u099a\\u09c0\\u09a8 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u09ab\\u09bf\\u0995\\u09b9, \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\\u09c7\\u09b0 \\u0997\\u09cb\\u09aa\\u09a8 \\u09b0\\u09b9\\u09b8\\u09cd\\u09af \\u09a7\\u09b0\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7\\u099b\\u09c7\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb\\u09a4\\u09c7 \\u09a6\\u0995\\u09cd\\u09b7 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7?\"}, \"background_asset\": \"\/teens\/library_bg.png\", \"nodes\": [{\"id\": \"ldr_u1_n1\", \"title\": {\"en\": \"Mission: Tafsir Scroll\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Find the golden scrolls in the library to unlock the deep meanings of the verses you memorize.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ae\\u09c1\\u0996\\u09b8\\u09cd\\u09a5 \\u0995\\u09b0\\u09be \\u0986\\u09af\\u09bc\\u09be\\u09a4\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5 \\u0989\\u09a8\\u09cd\\u09ae\\u09cb\\u099a\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u0997\\u09cd\\u09b0\\u09a8\\u09cd\\u09a5\\u09be\\u0997\\u09be\\u09b0\\u09c7 \\u09b8\\u09cb\\u09a8\\u09be\\u09b2\\u09c0 \\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09cb\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Quran is like an ocean; the deeper you dive, the more treasures you find.\", \"bn\": \"\\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09ae\\u09c1\\u09a6\\u09cd\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb; \\u09a4\\u09c1\\u09ae\\u09bf \\u09af\\u09a4 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u09a1\\u09c1\\u09ac \\u09a6\\u09c7\\u09ac\\u09c7, \\u09a4\\u09a4 \\u09ac\\u09c7\\u09b6\\u09bf \\u09a7\\u09a8\\u09ad\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u0964\"}, \"items\": [{\"id\": \"t1\", \"label\": {\"en\": \"Surah Al-Ikhlas\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u0987\\u0996\\u09b2\\u09be\\u09b8\"}, \"reveal\": {\"en\": \"It is equal to 1\/3 of the Quran in reward!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u09b8\\u0993\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7\\u09b0 \\u098f\\u0995-\\u09a4\\u09c3\\u09a4\\u09c0\\u09af\\u09bc\\u09be\\u0982\\u09b6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09be\\u09a8!\"}, \"icon\": \"\\u261d\\ufe0f\"}, {\"id\": \"t2\", \"label\": {\"en\": \"Surah Al-Falaq\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u09ab\\u09be\\u09b2\\u09be\\u0995\"}, \"reveal\": {\"en\": \"It protects us from the 'darkness' of envy.\", \"bn\": \"\\u098f\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09bf\\u0982\\u09b8\\u09be\\u09b0 '\\u0985\\u09a8\\u09cd\\u09a7\\u0995\\u09be\\u09b0' \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\"}, \"icon\": \"\\ud83d\\udee1\\ufe0f\"}], \"asset\": \"\/teens\/ancient_scroll.png\"}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ldr_u1_n2\", \"title\": {\"en\": \"Mission: The Algebra Key\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"A locked chest requires a numerical code. Solve the algebraic equations to find the numbers.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09a4\\u09be\\u09b2\\u09be\\u09ac\\u09a6\\u09cd\\u09a7 \\u09b8\\u09bf\\u09a8\\u09cd\\u09a6\\u09c1\\u0995 \\u0996\\u09c1\\u09b2\\u09a4\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u0982\\u0996\\u09cd\\u09af\\u09be\\u09b8\\u09c2\\u099a\\u0995 \\u0995\\u09cb\\u09a1 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u0964 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09c7\\u09a4\\u09c7 \\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09c0\\u0995\\u09b0\\u09a3\\u0997\\u09c1\\u09b2\\u09cb \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Algebra comes from the Arabic word 'Al-Jabr', meaning 'restoration'.\", \"bn\": \"\\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4 \\u09ac\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09b2\\u099c\\u09c7\\u09ac\\u09cd\\u09b0\\u09be \\u09b6\\u09ac\\u09cd\\u09a6\\u099f\\u09bf \\u0986\\u09b0\\u09ac\\u09bf \\u09b6\\u09ac\\u09cd\\u09a6 '\\u0986\\u09b2-\\u099c\\u09be\\u09ac\\u09b0' \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09c7, \\u09af\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5 '\\u09aa\\u09c1\\u09a8\\u09b0\\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a8'\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"2x + 5 = 15. Solve for x:\", \"bn\": \"2x + 5 = 15\\u0964 x \\u098f\\u09b0 \\u09ae\\u09be\\u09a8 \\u0995\\u09a4?\"}, \"options\": [\"x=5\", \"x=10\", \"x=2\"], \"correctIndex\": 0}, {\"text\": {\"en\": \"3y - 4 = 11. Solve for y:\", \"bn\": \"3y - 4 = 11\\u0964 y \\u098f\\u09b0 \\u09ae\\u09be\\u09a8 \\u0995\\u09a4?\"}, \"options\": [\"y=3\", \"y=5\", \"y=4\"], \"correctIndex\": 1}]}, \"category\": \"STEM\"}, {\"id\": \"ldr_u1_n3\", \"title\": {\"en\": \"Mission: Time Travelers\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09ae\\u09af\\u09bc \\u09ad\\u09cd\\u09b0\\u09ae\\u09a3\\u0995\\u09be\\u09b0\\u09c0\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"The timeline of the Islamic Golden Age is messed up! Place the great inventions in their correct centuries.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09b8\\u09cd\\u09ac\\u09b0\\u09cd\\u09a3\\u09af\\u09c1\\u0997\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc\\u09b0\\u09c7\\u0996\\u09be \\u098f\\u09b2\\u09cb\\u09ae\\u09c7\\u09b2\\u09cb \\u09b9\\u09af\\u09bc\\u09c7 \\u0997\\u09c7\\u099b\\u09c7! \\u09b8\\u09a0\\u09bf\\u0995 \\u09b6\\u09a4\\u09be\\u09ac\\u09cd\\u09a6\\u09c0\\u09a4\\u09c7 \\u09ae\\u09b9\\u09be\\u09a8 \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"While Europe was in the Dark Ages, the Muslim world was in the middle of a scientific revolution!\", \"bn\": \"\\u09af\\u0996\\u09a8 \\u0987\\u0989\\u09b0\\u09cb\\u09aa \\u0985\\u09a8\\u09cd\\u09a7\\u0995\\u09be\\u09b0 \\u09af\\u09c1\\u0997\\u09c7 \\u099b\\u09bf\\u09b2, \\u09a4\\u0996\\u09a8 \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u099b\\u09bf\\u09b2 \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995 \\u09ac\\u09bf\\u09aa\\u09cd\\u09b2\\u09ac\\u09c7\\u09b0 \\u09a4\\u09c1\\u0999\\u09cd\\u0997\\u09c7!\"}, \"pairs\": [{\"id\": \"camera\", \"label\": {\"en\": \"Camera Obscura\", \"bn\": \"\\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09c7\\u09b0\\u09be \\u0985\\u09ac\\u09b8\\u09cd\\u0995\\u09c1\\u09b0\\u09be\"}, \"match\": {\"en\": \"Ibn al-Haytham\", \"bn\": \"\\u0987\\u09ac\\u09a8\\u09c1\\u09b2 \\u09b9\\u09be\\u0987\\u09b8\\u09be\\u09ae\"}}, {\"id\": \"medicine\", \"label\": {\"en\": \"The Canon of Medicine\", \"bn\": \"\\u0995\\u09be\\u09a8\\u09c1\\u09a8 \\u09ab\\u09bf\\u09a4 \\u09a4\\u09bf\\u09ac\"}, \"match\": {\"en\": \"Ibn Sina\", \"bn\": \"\\u0987\\u09ac\\u09a8\\u09c7 \\u09b8\\u09bf\\u09a8\\u09be\"}}]}, \"category\": \"STEM\"}, {\"id\": \"ldr_u1_n4\", \"title\": {\"en\": \"Mission: Force & Friction\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09b2 \\u098f\\u09ac\\u0982 \\u0998\\u09b0\\u09cd\\u09b7\\u09a3\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"A giant boulder is blocking the path to the next library room! Use the laws of physics to move it.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09bf\\u09b6\\u09be\\u09b2 \\u09aa\\u09be\\u09a5\\u09b0 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b2\\u09be\\u0987\\u09ac\\u09cd\\u09b0\\u09c7\\u09b0\\u09bf \\u0995\\u0995\\u09cd\\u09b7\\u09c7\\u09b0 \\u09aa\\u09a5 \\u0986\\u099f\\u0995\\u09c7 \\u0986\\u099b\\u09c7! \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09b8\\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09a6\\u09be\\u09b0\\u09cd\\u09a5\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c2\\u09a4\\u09cd\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Gravity is the invisible hand that keeps us on Earth. SubhanAllah!\", \"bn\": \"\\u09ae\\u09b9\\u09be\\u0995\\u09b0\\u09cd\\u09b7 \\u09b9\\u09b2\\u09cb \\u09b8\\u09c7\\u0987 \\u0985\\u09a6\\u09c3\\u09b6\\u09cd\\u09af \\u09b9\\u09be\\u09a4 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09a4\\u09c7 \\u09b8\\u09cd\\u09a5\\u09bf\\u09b0 \\u09b0\\u09be\\u0996\\u09c7\\u0964 \\u09b8\\u09c1\\u09ac\\u09b9\\u09be\\u09a8\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9!\"}, \"items\": [{\"id\": \"f\", \"label\": {\"en\": \"Add Force\", \"bn\": \"\\u09ac\\u09b2 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"The boulder starts to roll!\", \"bn\": \"\\u09aa\\u09be\\u09a5\\u09b0\\u099f\\u09bf \\u0998\\u09c1\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\ude9c\"}, {\"id\": \"g\", \"label\": {\"en\": \"Reduce Friction\", \"bn\": \"\\u0998\\u09b0\\u09cd\\u09b7\\u09a3 \\u0995\\u09ae\\u09be\\u0993\"}, \"reveal\": {\"en\": \"It slides easily now!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u098f\\u0996\\u09a8 \\u09b8\\u09b9\\u099c\\u09c7\\u0987 \\u09aa\\u09bf\\u099b\\u09b2\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7!\"}, \"icon\": \"\\u26f8\\ufe0f\"}]}, \"category\": \"STEM\"}, {\"id\": \"ldr_u1_n5\", \"title\": {\"en\": \"Mission: Fiqh Challenge\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ab\\u09bf\\u0995\\u09b9 \\u099a\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u099e\\u09cd\\u099c\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"A community is asking for guidance on how to perform their prayers. Use your knowledge of Fiqh to help them.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u0997\\u09cb\\u09b7\\u09cd\\u09a0\\u09c0 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09a6\\u09be\\u09af\\u09bc \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09af\\u09bc \\u09b8\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09a8\\u09be \\u099a\\u09be\\u0987\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ab\\u09bf\\u0995\\u09b9 \\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Fiqh is not just rules; it's understanding how to live in a way that pleases Allah.\", \"bn\": \"\\u09ab\\u09bf\\u0995\\u09b9 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09a8\\u09af\\u09bc; \\u098f\\u099f\\u09bf \\u09b9\\u09b2\\u09cb \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09be \\u09ac\\u09cb\\u099d\\u09be\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"How many Rakats in Maghrib?\", \"bn\": \"\\u09ae\\u09be\\u0997\\u09b0\\u09bf\\u09ac\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0995\\u09af\\u09bc \\u09b0\\u09be\\u0995\\u09be\\u09a4?\"}, \"options\": [\"2\", \"3\", \"4\"], \"correctIndex\": 1}, {\"text\": {\"en\": \"What is the direction of Qibla?\", \"bn\": \"\\u0995\\u09bf\\u09ac\\u09b2\\u09be\\u09b0 \\u09a6\\u09bf\\u0995 \\u0995\\u09cb\\u09a8\\u099f\\u09bf?\"}, \"options\": [{\"en\": \"Jerusalem\", \"bn\": \"\\u099c\\u09c7\\u09b0\\u09c1\\u099c\\u09be\\u09b2\\u09c7\\u09ae\"}, {\"en\": \"Makkah\", \"bn\": \"\\u09ae\\u0995\\u09cd\\u0995\\u09be\"}, {\"en\": \"Madinah\", \"bn\": \"\\u09ae\\u09a6\\u09bf\\u09a8\\u09be\"}], \"correctIndex\": 1}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"ldr_u1_n6\", \"title\": {\"en\": \"Mission: The Bridge of Words\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b6\\u09ac\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c7\\u09a4\\u09c1\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"To cross the chasm of confusion, you must build a bridge of logic using parts of an essay.\", \"bn\": \"\\u09ac\\u09bf\\u09ad\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09b0 \\u0997\\u09b9\\u09cd\\u09ac\\u09b0 \\u09aa\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09b9\\u09b2\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b0\\u099a\\u09a8\\u09be\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u0982\\u09b6 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u09b8\\u09c7\\u09a4\\u09c1 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"A good argument is like a strong building; it needs a solid foundation.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09a6\\u09be\\u09b2\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb; \\u098f\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u0964\"}, \"pairs\": [{\"id\": \"intro\", \"label\": {\"en\": \"Introduction\", \"bn\": \"\\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be\"}, \"match\": {\"en\": \"Hook & Thesis\", \"bn\": \"\\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09b6\\u09c1\\u09b0\\u09c1 \\u0993 \\u09ae\\u09c2\\u09b2 \\u09ac\\u09bf\\u09b7\\u09df\"}}, {\"id\": \"body\", \"label\": {\"en\": \"Body Paragraphs\", \"bn\": \"\\u09ae\\u09c2\\u09b2 \\u0985\\u0982\\u09b6\"}, \"match\": {\"en\": \"Evidence & Facts\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09ae\\u09be\\u09a3 \\u0993 \\u09a4\\u09a5\\u09cd\\u09af\"}}]}, \"category\": \"Academic Learning\"}], \"sector\": \"Tafsir & Science\", \"reward\": {\"id\": \"crystal_wisdom\", \"title\": {\"en\": \"Crystal of Wisdom\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be\\u09b0 \\u09b8\\u09cd\\u09ab\\u099f\\u09bf\\u0995\"}}}, {\"id\": \"ldr_u2\", \"title\": {\"en\": \"Unit 2: The Lab of Innovation\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e8: \\u0989\\u09a6\\u09cd\\u09ad\\u09be\\u09ac\\u09a8 \\u09b2\\u09cd\\u09af\\u09be\\u09ac\"}, \"mission_brief\": {\"en\": \"Welcome to the Lab! Here, we build the future. You'll need coding skills, resilience, and a creative mind.\", \"bn\": \"\\u09b2\\u09cd\\u09af\\u09be\\u09ac\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u0997\\u09a4\\u09ae! \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09ce \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09bf\\u0964 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09a1\\u09bf\\u0982 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be, \\u09b8\\u09b9\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u098f\\u09ac\\u0982 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09c3\\u099c\\u09a8\\u09b6\\u09c0\\u09b2 \\u09ae\\u09a8\\u0964\"}, \"background_asset\": \"\/teens\/cyber_bg.png\", \"nodes\": [{\"id\": \"ldr_u2_n1\", \"title\": {\"en\": \"Mission: Bug Hunter\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09be\\u0997 \\u09b6\\u09bf\\u0995\\u09be\\u09b0\\u09bf\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"The lab's AI is glitching! Find the bugs in the JavaScript code to fix the mainframe.\", \"bn\": \"\\u09b2\\u09cd\\u09af\\u09be\\u09ac\\u09c7\\u09b0 \\u098f\\u0986\\u0987 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u0995\\u09b0\\u099b\\u09c7! \\u09ae\\u09c7\\u0987\\u09a8\\u09ab\\u09cd\\u09b0\\u09c7\\u09ae \\u09a0\\u09bf\\u0995 \\u0995\\u09b0\\u09a4\\u09c7 \\u099c\\u09be\\u09ad\\u09be\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09aa\\u09cd\\u099f \\u0995\\u09cb\\u09a1\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Bugs are just hidden lessons in your code. Don't give up!\", \"bn\": \"\\u09ac\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0986\\u09b8\\u09b2\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09cb\\u09a1\\u09c7\\u09b0 \\u09b2\\u09c1\\u0995\\u09be\\u09a8\\u09cb \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be\\u0964 \\u09b9\\u09be\\u09b2 \\u099b\\u09c7\\u09dc\\u09cb \\u09a8\\u09be!\"}, \"questions\": [{\"text\": {\"en\": \"Which one defines a constant?\", \"bn\": \"\\u0995\\u09cb\\u09a8\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u09a7\\u09cd\\u09b0\\u09c1\\u09ac\\u0995 (constant) \\u09b8\\u0982\\u099c\\u09cd\\u099e\\u09be\\u09af\\u09bc\\u09bf\\u09a4 \\u0995\\u09b0\\u09c7?\"}, \"options\": [\"let\", \"const\", \"var\"], \"correctIndex\": 1}, {\"text\": {\"en\": \"Identify the error: 'if (x = 5)'\", \"bn\": \"\\u09ad\\u09c1\\u09b2\\u099f\\u09bf \\u099a\\u09bf\\u09b9\\u09cd\\u09a8\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb: 'if (x = 5)'\"}, \"options\": [{\"en\": \"Missing semicolon\", \"bn\": \"\\u09b8\\u09c7\\u09ae\\u09bf\\u0995\\u09cb\\u09b2\\u09a8 \\u09a8\\u09c7\\u0987\"}, {\"en\": \"Should be == or ===\", \"bn\": \"== \\u09ac\\u09be === \\u09b9\\u0993\\u09df\\u09be \\u0989\\u099a\\u09bf\\u09a4\"}, {\"en\": \"No error\", \"bn\": \"\\u0995\\u09cb\\u09a8\\u09cb \\u09ad\\u09c1\\u09b2 \\u09a8\\u09c7\\u0987\"}], \"correctIndex\": 1}], \"asset\": \"\/teens\/coding_ui.png\"}, \"category\": \"STEM\"}, {\"id\": \"ldr_u2_n2\", \"title\": {\"en\": \"Mission: The Map of Change\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u099a\\u09bf\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"The world map is changing! Discover how modern history has shaped our world today.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u099a\\u09bf\\u09a4\\u09cd\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7! \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u0995\\u09c7 \\u09b0\\u09c2\\u09aa \\u09a6\\u09bf\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09a4\\u09be \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"History is a mirror that shows us where we came from and where we are going.\", \"bn\": \"\\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8 \\u09b9\\u09b2\\u09cb \\u098f\\u0995\\u099f\\u09bf \\u0986\\u09af\\u09bc\\u09a8\\u09be \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u0996\\u09be\\u09af\\u09bc \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a5\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u098f\\u09ac\\u0982 \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a5\\u09be\\u09af\\u09bc \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09bf\\u0964\"}, \"items\": [{\"id\": \"h1\", \"label\": {\"en\": \"The Internet Age\", \"bn\": \"\\u0987\\u09a8\\u09cd\\u099f\\u09be\\u09b0\\u09a8\\u09c7\\u099f \\u09af\\u09c1\\u0997\"}, \"reveal\": {\"en\": \"Connecting the Ummah!\", \"bn\": \"\\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u0995\\u09c7 \\u09b8\\u0982\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u099b\\u09c7!\"}, \"icon\": \"\\ud83c\\udf10\"}, {\"id\": \"h2\", \"label\": {\"en\": \"Space Exploration\", \"bn\": \"\\u09ae\\u09b9\\u09be\\u0995\\u09be\\u09b6 \\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\"}, \"reveal\": {\"en\": \"Looking at the signs in the stars!\", \"bn\": \"\\u09a8\\u0995\\u09cd\\u09b7\\u09a4\\u09cd\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a8\\u09bf\\u09a6\\u09b0\\u09cd\\u09b6\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09c7\\u0996\\u09be!\"}, \"icon\": \"\\ud83d\\ude80\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"ldr_u2_n3\", \"title\": {\"en\": \"Mission: Resilience Trainer\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09b9\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u09aa\\u09cd\\u09b0\\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u0995\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"A project failed! Don't let your morale drop. Use resilience strategies to bounce back.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u099c\\u09c7\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09b0\\u09cd\\u09a5 \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7! \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ae\\u09a8\\u09cb\\u09ac\\u09b2 \\u0995\\u09ae\\u09a4\\u09c7 \\u09a6\\u09bf\\u0993 \\u09a8\\u09be\\u0964 \\u0998\\u09c1\\u09b0\\u09c7 \\u09a6\\u09be\\u0981\\u09a1\\u09bc\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be\\u09b0 \\u0995\\u09cc\\u09b6\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Sabr (Patience) is not just waiting; it's keeping a good attitude while waiting.\", \"bn\": \"\\u09b8\\u09ac\\u09b0 (\\u09a7\\u09c8\\u09b0\\u09cd\\u09af) \\u09ae\\u09be\\u09a8\\u09c7 \\u09b6\\u09c1\\u09a7\\u09c1 \\u0985\\u09aa\\u09c7\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09be \\u09a8\\u09af\\u09bc; \\u0985\\u09aa\\u09c7\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09a8\\u09cb\\u09ad\\u09be\\u09ac \\u09ac\\u099c\\u09be\\u09df \\u09b0\\u09be\\u0996\\u09be\\u0987 \\u09b8\\u09ac\\u09b0\\u0964\"}, \"items\": [{\"id\": \"b\", \"label\": {\"en\": \"Take a Deep Breath\", \"bn\": \"\\u0997\\u09ad\\u09c0\\u09b0 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09a8\\u09be\\u0993\"}, \"reveal\": {\"en\": \"Oxygen helps your brain think!\", \"bn\": \"\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u0995\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7!\"}, \"icon\": \"\\ud83c\\udf2c\\ufe0f\"}, {\"id\": \"p\", \"label\": {\"en\": \"Try a New Path\", \"bn\": \"\\u09a8\\u09a4\\u09c1\\u09a8 \\u09aa\\u09a5 \\u099a\\u09c7\\u09b7\\u09cd\\u099f\\u09be \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Failure is just another way that didn't work!\", \"bn\": \"\\u09ac\\u09cd\\u09af\\u09b0\\u09cd\\u09a5\\u09a4\\u09be \\u09ae\\u09be\\u09a8\\u09c7 \\u0985\\u09a8\\u09cd\\u09af \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a5 \\u09af\\u09be \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u09a8\\u09bf!\"}, \"icon\": \"\\ud83d\\udee4\\ufe0f\"}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u2_n4\", \"title\": {\"en\": \"Mission: Budget Battle\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09be\\u099c\\u09c7\\u099f \\u09af\\u09c1\\u09a6\\u09cd\\u09a7\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The lab has a limited budget for the new robot. Allocate the funds wisely to succeed.\", \"bn\": \"\\u09a8\\u09a4\\u09c1\\u09a8 \\u09b0\\u09cb\\u09ac\\u099f\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b2\\u09cd\\u09af\\u09be\\u09ac\\u09c7\\u09b0 \\u09ac\\u09be\\u099c\\u09c7\\u099f \\u09b8\\u09c0\\u09ae\\u09bf\\u09a4\\u0964 \\u09b8\\u09ab\\u09b2 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09b9\\u09ac\\u09bf\\u09b2 \\u09ac\\u09b0\\u09be\\u09a6\\u09cd\\u09a6 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Managing money is an 'Amanah'. Be fair and be smart.\", \"bn\": \"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09bf '\\u0986\\u09ae\\u09be\\u09a8\\u09a4'\\u0964 \\u09a8\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09aa\\u09b0\\u09be\\u09af\\u09bc\\u09a3 \\u098f\\u09ac\\u0982 \\u09ac\\u09c1\\u09a6\\u09cd\\u09a7\\u09bf\\u09ae\\u09be\\u09a8 \\u09b9\\u0993\\u0964\"}, \"items\": [{\"id\": \"n\", \"label\": {\"en\": \"Buy Needs First\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09c7 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09c7\\u09a8\\u09cb\"}, \"reveal\": {\"en\": \"The robot needs a battery!\", \"bn\": \"\\u09b0\\u09cb\\u09ac\\u099f\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09a6\\u09b0\\u0995\\u09be\\u09b0!\"}, \"icon\": \"\\ud83d\\udd0b\"}, {\"id\": \"w\", \"label\": {\"en\": \"Wait on Wants\", \"bn\": \"\\u09b6\\u0996\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"The shiny stickers can wait!\", \"bn\": \"\\u099a\\u0995\\u099a\\u0995\\u09c7 \\u09b8\\u09cd\\u099f\\u09bf\\u0995\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u0985\\u09aa\\u09c7\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7!\"}, \"icon\": \"\\u2728\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"ldr_u2_n5\", \"title\": {\"en\": \"Mission: Conflict Resolver\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a6\\u09cd\\u09ac\\u09a8\\u09cd\\u09a6\\u09cd\\u09ac \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Two scientists are arguing! Use your diplomacy skills to help them find a middle ground.\", \"bn\": \"\\u09a6\\u09c1\\u099c\\u09a8 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c0 \\u099d\\u0997\\u09a1\\u09bc\\u09be \\u0995\\u09b0\\u099b\\u09c7\\u09a8! \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09aa\\u09c7\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09c2\\u099f\\u09a8\\u09c0\\u09a4\\u09bf \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Prophet Muhammad (SAW) said: 'The best of you are those who reconcile people.'\", \"bn\": \"\\u09a8\\u09ac\\u09c0 \\u09ae\\u09c1\\u09b9\\u09be\\u09ae\\u09cd\\u09ae\\u09a6 (\\u09b8\\u09be\\u0983) \\u09ac\\u09b2\\u09c7\\u099b\\u09c7\\u09a8: '\\u09a4\\u09cb\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a4\\u09be\\u09b0\\u09be\\u0987 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u09a4\\u09cd\\u09a4\\u09ae \\u09af\\u09be\\u09b0\\u09be \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09ac\\u09bf\\u09ac\\u09be\\u09a6 \\u09ae\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u09df\\u0964'\"}, \"items\": [{\"id\": \"l\", \"label\": {\"en\": \"Listen to Both Sides\", \"bn\": \"\\u0989\\u09ad\\u09af\\u09bc \\u09aa\\u0995\\u09cd\\u09b7 \\u09b6\\u09cb\\u09a8\\u09cb\"}, \"reveal\": {\"en\": \"Every story has two sides!\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0997\\u09b2\\u09cd\\u09aa\\u09c7\\u09b0 \\u09a6\\u09c1\\u099f\\u09bf \\u09a6\\u09bf\\u0995 \\u09a5\\u09be\\u0995\\u09c7!\"}, \"icon\": \"\\ud83d\\udc42\"}, {\"id\": \"e\", \"label\": {\"en\": \"Show Empathy\", \"bn\": \"\\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf \\u09a6\\u09c7\\u0996\\u09be\\u0993\"}, \"reveal\": {\"en\": \"Understand their feelings!\", \"bn\": \"\\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09cb\\u099d\\u09be\\u09b0 \\u099a\\u09c7\\u09b7\\u09cd\\u099f\\u09be \\u0995\\u09b0\\u09cb!\"}, \"icon\": \"\\u2764\\ufe0f\"}], \"asset\": \"\/batch3\/portraits\/characters.png\"}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u2_n6\", \"title\": {\"en\": \"Mission: Digital Canvas\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09ad\\u09be\\u09b8\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"The lab needs a logo! Use your creativity to design something that represents wisdom and light.\", \"bn\": \"\\u09b2\\u09cd\\u09af\\u09be\\u09ac\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09cb\\u0997\\u09cb \\u09a6\\u09b0\\u0995\\u09be\\u09b0! \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b2\\u09cb\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf\\u09a4\\u09cd\\u09ac \\u0995\\u09b0\\u09c7 \\u098f\\u09ae\\u09a8 \\u0995\\u09bf\\u099b\\u09c1 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09c3\\u099c\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Creativity is a form of 'Ihsan' - doing things with excellence and beauty.\", \"bn\": \"\\u09b8\\u09c3\\u099c\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u09b9\\u09b2\\u09cb '\\u0987\\u09b9\\u09b8\\u09be\\u09a8'-\\u098f\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09b0\\u09c2\\u09aa - \\u0995\\u09be\\u099c\\u0995\\u09c7 \\u09b6\\u09cd\\u09b0\\u09c7\\u09b7\\u09cd\\u09a0\\u09a4\\u09cd\\u09ac \\u098f\\u09ac\\u0982 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09b0\\u09be\\u0964\"}, \"items\": [{\"id\": \"c\", \"label\": {\"en\": \"Choose a Color Palette\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u099f \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09be\\u0993\"}, \"reveal\": {\"en\": \"Blue for peace, Gold for wisdom!\", \"bn\": \"\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09c0\\u09b2, \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09cb\\u09a8\\u09be\\u09b2\\u09c0!\"}, \"icon\": \"\\ud83c\\udfa8\"}, {\"id\": \"p\", \"label\": {\"en\": \"Add Islamic Patterns\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09a8\\u0995\\u09b6\\u09be \\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Geometry is the math of beauty!\", \"bn\": \"\\u099c\\u09cd\\u09af\\u09be\\u09ae\\u09bf\\u09a4\\u09bf \\u09b9\\u09b2\\u09cb \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u0997\\u09a3\\u09bf\\u09a4!\"}, \"icon\": \"\\ud83d\\udcd0\"}]}, \"category\": \"Creativity\"}], \"sector\": \"Stem & Coding\", \"reward\": {\"id\": \"crystal_code\", \"title\": {\"en\": \"Code Matrix\", \"bn\": \"\\u0995\\u09cb\\u09a1 \\u09ae\\u09cd\\u09af\\u09be\\u099f\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\"}}}, {\"id\": \"ldr_u3\", \"title\": {\"en\": \"Unit 3: The Council of Leaders\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e9: \\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6\"}, \"mission_brief\": {\"en\": \"Step into the Council Room. It's time to master teamwork, empathy, and the art of decision making.\", \"bn\": \"\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u09b8\\u09bf\\u09b2 \\u09b0\\u09c1\\u09ae\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09c7\\u09b6 \\u0995\\u09b0\\u09cb\\u0964 \\u098f\\u0996\\u09a8 \\u09a6\\u09b2\\u0997\\u09a4 \\u0995\\u09be\\u099c, \\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b6\\u09bf\\u09b2\\u09cd\\u09aa\\u09c7 \\u09a6\\u0995\\u09cd\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u0964\"}, \"background_asset\": \"\/teens\/council_bg.png\", \"nodes\": [{\"id\": \"ldr_u3_n1\", \"title\": {\"en\": \"Mission: Teamwork Tower\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a6\\u09b2\\u0997\\u09a4 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u09ae\\u09bf\\u09a8\\u09be\\u09b0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Build a tower with your team. Balance the blocks so everyone's ideas are included.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09a6\\u09b2\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09bf\\u09a8\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09cb\\u0964 \\u09ac\\u09cd\\u09b2\\u0995\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09ad\\u09be\\u09b0\\u09b8\\u09be\\u09ae\\u09cd\\u09af \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09cb \\u09af\\u09be\\u09a4\\u09c7 \\u09b8\\u09ac\\u09be\\u09b0 \\u09a7\\u09be\\u09b0\\u09a3\\u09be \\u0985\\u09a8\\u09cd\\u09a4\\u09b0\\u09cd\\u09ad\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09df\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet (SAW) said: 'The believers are like a solid structure, each part strengthening the other.'\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u09ac\\u09b2\\u09c7\\u099b\\u09c7\\u09a8: '\\u09ae\\u09c1\\u09ae\\u09bf\\u09a8\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09a6\\u09be\\u09b2\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb, \\u09af\\u09be\\u09b0 \\u098f\\u0995 \\u0985\\u0982\\u09b6 \\u0985\\u09a8\\u09cd\\u09af \\u0985\\u0982\\u09b6\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\\u0964'\"}, \"items\": [{\"id\": \"b1\", \"label\": {\"en\": \"Add Idea\", \"bn\": \"\\u09a7\\u09be\\u09b0\\u09a3\\u09be \\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"The tower grows stronger!\", \"bn\": \"\\u09ae\\u09bf\\u09a8\\u09be\\u09b0\\u099f\\u09bf \\u0986\\u09b0\\u0993 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09b9\\u099a\\u09cd\\u099b\\u09c7!\"}, \"icon\": \"\\ud83e\\uddf1\"}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u3_n2\", \"title\": {\"en\": \"Mission: The Empathy Map\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf\\u09b0 \\u09ae\\u09be\\u09a8\\u099a\\u09bf\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Read the facial expressions and choose the most empathetic response to your friends.\", \"bn\": \"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0985\\u09ad\\u09bf\\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09dc\\u09cb \\u098f\\u09ac\\u0982 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf\\u09b6\\u09c0\\u09b2 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be\\u099f\\u09bf \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Empathy is feeling what others feel. It was a key trait of our Prophet (SAW).\", \"bn\": \"\\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf \\u09b9\\u09b2\\u09cb \\u0985\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u0985\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09be\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983)-\\u098f\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09a4\\u09ae \\u0997\\u09c1\\u09a3 \\u099b\\u09bf\\u09b2\\u0964\"}, \"items\": [{\"id\": \"sad\", \"label\": {\"en\": \"Sad Face\", \"bn\": \"\\u09a6\\u09c1\\u0983\\u0996\\u09bf\\u09a4 \\u09ae\\u09c1\\u0996\"}, \"reveal\": {\"en\": \"Are you okay? How can I help?\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u09a0\\u09bf\\u0995 \\u0986\\u099b? \\u0986\\u09ae\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09bf?\"}, \"icon\": \"\\ud83d\\ude1f\"}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u3_n3\", \"title\": {\"en\": \"Mission: Time Master\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u09ae\\u09be\\u09b8\\u09cd\\u099f\\u09be\\u09b0\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Prioritize your tasks in the daily schedule to balance your life.\", \"bn\": \"\\u099c\\u09c0\\u09ac\\u09a8\\u0995\\u09c7 \\u09ad\\u09be\\u09b0\\u09b8\\u09be\\u09ae\\u09cd\\u09af\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09b0\\u09c1\\u099f\\u09bf\\u09a8\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0 \\u09a6\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Time is a gift from Allah that we will be asked about on the Day of Judgment.\", \"bn\": \"\\u09b8\\u09ae\\u09df \\u09b9\\u09b2\\u09cb \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09aa\\u0995\\u09cd\\u09b7 \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09af\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u0995\\u09bf\\u09df\\u09be\\u09ae\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u099c\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09b8\\u09be \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964\"}, \"pairs\": [{\"id\": \"p1\", \"label\": \"\\ud83d\\udd4c Salah\", \"match\": \"Highest Priority\"}, {\"id\": \"p2\", \"label\": \"\\ud83c\\udfae Gaming\", \"match\": \"Free Time\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"ldr_u3_n4\", \"title\": {\"en\": \"Mission: The Fair Judge\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a8\\u09cd\\u09af\\u09be\\u09df\\u09ac\\u09bf\\u099a\\u09be\\u09b0\\u0995\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"Listen to two friends' stories and find a fair solution that helps both.\", \"bn\": \"\\u09a6\\u09c1\\u099c\\u09a8 \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1\\u09b0 \\u0997\\u09b2\\u09cd\\u09aa \\u09b6\\u09cb\\u09a8\\u09cb \\u098f\\u09ac\\u0982 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09cd\\u09af\\u09be\\u09df\\u09b8\\u0999\\u09cd\\u0997\\u09a4 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb \\u09af\\u09be \\u0989\\u09ad\\u09df\\u0995\\u09c7\\u0987 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Justice is the foundation of a peaceful society.\", \"bn\": \"\\u09a8\\u09cd\\u09af\\u09be\\u09df\\u09ac\\u09bf\\u099a\\u09be\\u09b0 \\u09b9\\u09b2\\u09cb \\u098f\\u0995\\u099f\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf\\u09ae\\u09df \\u09b8\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"Both friends want the same book. You:\", \"bn\": \"\\u0989\\u09ad\\u09df \\u09ac\\u09a8\\u09cd\\u09a7\\u09c1 \\u098f\\u0995\\u0987 \\u09ac\\u0987 \\u099a\\u09be\\u09df\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09bf \\u0995\\u09b0\\u09ac\\u09c7?\"}, \"options\": [{\"en\": \"Give it to the strongest\", \"bn\": \"\\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0\\u0995\\u09c7 \\u09a6\\u09c7\\u09ac\"}, {\"en\": \"Suggest they take turns\", \"bn\": \"\\u09aa\\u09be\\u09b2\\u09be\\u0995\\u09cd\\u09b0\\u09ae\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u09a6\\u09c7\\u09ac\"}], \"correctIndex\": 1}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u3_n5\", \"title\": {\"en\": \"Mission: Public Speaking Pro\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u0995\\u09cd\\u09a4\\u09c3\\u09a4\\u09be\\u09df \\u09a6\\u0995\\u09cd\\u09b7\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Use the right body language and voice to deliver a speech about protecting the environment.\", \"bn\": \"\\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ac\\u0995\\u09cd\\u09a4\\u09c3\\u09a4\\u09be \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ad\\u09be\\u09b7\\u09be \\u098f\\u09ac\\u0982 \\u0995\\u09a3\\u09cd\\u09a0\\u09b8\\u09cd\\u09ac\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Effective communication is 70% body language and tone.\", \"bn\": \"\\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u09ed\\u09e6% \\u09b9\\u09b2\\u09cb \\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ad\\u09be\\u09b7\\u09be \\u098f\\u09ac\\u0982 \\u0995\\u09a3\\u09cd\\u09a0\\u09b8\\u09cd\\u09ac\\u09b0\\u0964\"}, \"items\": [{\"id\": \"v1\", \"label\": {\"en\": \"Confident Voice\", \"bn\": \"\\u0986\\u09a4\\u09cd\\u09ae\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8\\u09c0 \\u0995\\u09a3\\u09cd\\u09a0\"}, \"reveal\": {\"en\": \"People are listening!\", \"bn\": \"\\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u09b6\\u09c1\\u09a8\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udde3\\ufe0f\"}]}, \"category\": \"Soft Skills\"}, {\"id\": \"ldr_u3_n6\", \"title\": {\"en\": \"Mission: Self-Discipline Dojo\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0986\\u09a4\\u09cd\\u09ae-\\u09b8\\u0982\\u09af\\u09ae \\u09a6\\u09cb\\u099c\\u09cb\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Resist the distractions and focus on your goal to earn the 'Sabr' badge.\", \"bn\": \"'\\u09b8\\u09ac\\u09b0' \\u09ac\\u09cd\\u09af\\u09be\\u099c \\u0985\\u09b0\\u09cd\\u099c\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b2\\u09cb\\u09ad\\u09a8 \\u098f\\u09dc\\u09bf\\u09df\\u09c7 \\u099a\\u09b2\\u09cb \\u098f\\u09ac\\u0982 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7 \\u09ae\\u09a8\\u09cb\\u09a8\\u09bf\\u09ac\\u09c7\\u09b6 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Self-discipline is the ability to do what is right even when you don't feel like it.\", \"bn\": \"\\u0986\\u09a4\\u09cd\\u09ae-\\u09b8\\u0982\\u09af\\u09ae \\u09b9\\u09b2\\u09cb \\u09af\\u0996\\u09a8 \\u0987\\u099a\\u09cd\\u099b\\u09c7 \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be \\u09a4\\u0996\\u09a8\\u0993 \\u09b8\\u09a0\\u09bf\\u0995 \\u0995\\u09be\\u099c\\u099f\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be\\u0964\"}, \"items\": [{\"id\": \"d1\", \"label\": {\"en\": \"Ignore Phone\", \"bn\": \"\\u09ab\\u09cb\\u09a8 \\u098f\\u09dc\\u09bf\\u09df\\u09c7 \\u099a\\u09b2\\u09be\"}, \"reveal\": {\"en\": \"Focus increased!\", \"bn\": \"\\u09ae\\u09a8\\u09cb\\u09af\\u09cb\\u0997 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udcf5\"}]}, \"category\": \"Soft Skills\"}], \"sector\": \"Soft Skills & Leadership\", \"reward\": {\"id\": \"crystal_team\", \"title\": {\"en\": \"Unity Stone\", \"bn\": \"\\u0990\\u0995\\u09cd\\u09af\\u09c7\\u09b0 \\u09aa\\u09be\\u09a5\\u09b0\"}}}, {\"id\": \"ldr_u4\", \"title\": {\"en\": \"Unit 4: The Earth Guardians\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09ea: \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u0995\\u09be\\u09b0\\u09c0\"}, \"mission_brief\": {\"en\": \"We are the Khulafa (stewards) of the Earth. Let's use science and ethics to protect our planet.\", \"bn\": \"\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09b0 \\u0996\\u09b2\\u09bf\\u09ab\\u09be (\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf)\\u0964 \\u099a\\u09b2\\u09cb \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09bf\\u0964\"}, \"background_asset\": \"\/teens\/nature_bg.png\", \"nodes\": [{\"id\": \"ldr_u4_n1\", \"title\": {\"en\": \"Mission: Solar Power Station\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cc\\u09b0 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u0995\\u09c7\\u09a8\\u09cd\\u09a6\\u09cd\\u09b0\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Position the solar panels to capture the most sunlight for the city.\", \"bn\": \"\\u09b6\\u09b9\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u0995 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09cc\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u09b2\\u0997\\u09c1\\u09b2\\u09cb \\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The sun provides enough energy in one hour to power the whole world for a year!\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af \\u098f\\u0995 \\u0998\\u09a3\\u09cd\\u099f\\u09be\\u09af\\u09bc \\u09af\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u09a4\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u09aa\\u09c1\\u09b0\\u09cb \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u0995\\u09c7 \\u098f\\u0995 \\u09ac\\u099b\\u09b0 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac!\"}, \"pairs\": [{\"id\": \"s1\", \"label\": \"\\u2600\\ufe0f Sun\", \"match\": \"Panel Orientation\"}]}, \"category\": \"STEM\"}, {\"id\": \"ldr_u4_n2\", \"title\": {\"en\": \"Mission: The Water Guardians\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09be\\u09a8\\u09bf \\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u0995\\u09be\\u09b0\\u09c0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Save water in the Wudu area. Find the ways to be efficient and avoid waste.\", \"bn\": \"\\u0985\\u099c\\u09c1\\u0996\\u09be\\u09a8\\u09be\\u09df \\u09aa\\u09be\\u09a8\\u09bf \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09cb\\u0964 \\u0985\\u09aa\\u099a\\u09df \\u098f\\u09dc\\u09be\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet (SAW) forbade wasting water, even if you are at a flowing river.\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u09aa\\u09be\\u09a8\\u09bf \\u0985\\u09aa\\u099a\\u09df \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u09b7\\u09c7\\u09a7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8, \\u098f\\u09ae\\u09a8\\u0995\\u09bf \\u09a4\\u09c1\\u09ae\\u09bf \\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09ac\\u09be\\u09b9\\u09ae\\u09be\\u09a8 \\u09a8\\u09a6\\u09c0\\u09b0 \\u09a4\\u09c0\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09cb \\u09a4\\u09ac\\u09c1\\u0993\\u0964\"}, \"items\": [{\"id\": \"t1\", \"label\": {\"en\": \"Half-turn Tap\", \"bn\": \"\\u0995\\u09b2\\u099f\\u09bf \\u0985\\u09b0\\u09cd\\u09a7\\u09c7\\u0995 \\u0998\\u09cb\\u09b0\\u09be\\u09a8\\u09cb\"}, \"reveal\": {\"en\": \"Perfect amount!\", \"bn\": \"\\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3!\"}, \"icon\": \"\\ud83d\\udeb0\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"ldr_u4_n3\", \"title\": {\"en\": \"Mission: Recycling Robot\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b0\\u09bf\\u09b8\\u09be\\u0987\\u0995\\u09cd\\u09b2\\u09bf\\u0982 \\u09b0\\u09cb\\u09ac\\u099f\"}, \"mechanic\": \"DragDrop\", \"mission_brief\": {\"en\": \"Sort the trash into the right bins for the robot to process.\", \"bn\": \"\\u09b0\\u09cb\\u09ac\\u099f\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09b8\\u09c7\\u09b8 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ae\\u09df\\u09b2\\u09be\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09ac\\u09bf\\u09a8\\u09c7 \\u09b8\\u09be\\u099c\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Recycling reduces pollution and saves Allah's beautiful creation.\", \"bn\": \"\\u09b0\\u09bf\\u09b8\\u09be\\u0987\\u0995\\u09cd\\u09b2\\u09bf\\u0982 \\u09a6\\u09c2\\u09b7\\u09a3 \\u0995\\u09ae\\u09be\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\"}, \"pairs\": [{\"id\": \"p1\", \"label\": \"\\ud83e\\uddf4 Plastic\", \"match\": \"Blue Bin\"}, {\"id\": \"p2\", \"label\": \"\\ud83c\\udf4e Organic\", \"match\": \"Green Bin\"}]}, \"category\": \"STEM\"}, {\"id\": \"ldr_u4_n4\", \"title\": {\"en\": \"Mission: Planting for the Future\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b0\\u09cb\\u09aa\\u09a3\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Plant trees that will provide shade and fruit for years to come.\", \"bn\": \"\\u098f\\u09ae\\u09a8 \\u0997\\u09be\\u099b \\u09b2\\u09be\\u0997\\u09be\\u0993 \\u09af\\u09be \\u0986\\u0997\\u09be\\u09ae\\u09c0 \\u09ac\\u09b9\\u09c1 \\u09ac\\u099b\\u09b0 \\u099b\\u09be\\u09df\\u09be \\u098f\\u09ac\\u0982 \\u09ab\\u09b2 \\u09a6\\u09c7\\u09ac\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Planting a tree is a Sadaqah Jariyah (ongoing charity).\", \"bn\": \"\\u0997\\u09be\\u099b \\u09b2\\u09be\\u0997\\u09be\\u09a8\\u09cb \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09a6\\u0995\\u09be \\u099c\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b9 (\\u099a\\u09b2\\u09ae\\u09be\\u09a8 \\u09a6\\u09be\\u09a8)\\u0964\"}, \"items\": [{\"id\": \"t1\", \"label\": {\"en\": \"Olive Tree\", \"bn\": \"\\u099c\\u09b2\\u09aa\\u09be\\u0987 \\u0997\\u09be\\u099b\"}, \"reveal\": {\"en\": \"A blessed tree!\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09b0\\u0995\\u09a4\\u09ae\\u09df \\u0997\\u09be\\u099b!\"}, \"icon\": \"\\ud83c\\udf33\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"ldr_u4_n5\", \"title\": {\"en\": \"Mission: Wildlife Rescue\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ac\\u09a8\\u09cd\\u09af\\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0 \\u0989\\u09a6\\u09cd\\u09a7\\u09be\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Learn about the animals mentioned in the Quran and how to protect them.\", \"bn\": \"\\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7 \\u09ac\\u09b0\\u09cd\\u09a3\\u09bf\\u09a4 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09c0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09be\\u09a8\\u09cb \\u098f\\u09ac\\u0982 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df \\u09a4\\u09be \\u09b6\\u09bf\\u0996\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"There is a reward for being kind to every living creature.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u099c\\u09c0\\u09ac\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b8\\u09a6\\u09df \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u0993\\u09df\\u09be\\u09ac \\u09b0\\u09df\\u09c7\\u099b\\u09c7\\u0964\"}, \"items\": [{\"id\": \"e\", \"label\": {\"en\": \"Elephant\", \"bn\": \"\\u09b9\\u09be\\u09a4\\u09bf\"}, \"reveal\": {\"en\": \"Mentioned in Surah Al-Fil.\", \"bn\": \"\\u09b8\\u09c2\\u09b0\\u09be \\u09ab\\u09bf\\u09b2-\\u098f \\u09ac\\u09b0\\u09cd\\u09a3\\u09bf\\u09a4\\u0964\"}, \"icon\": \"\\ud83d\\udc18\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"ldr_u4_n6\", \"title\": {\"en\": \"Mission: The Ethics of Tech\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"Discuss the 'Amanah' of using the internet responsibly and safely.\", \"bn\": \"\\u09a6\\u09be\\u09df\\u09bf\\u09a4\\u09cd\\u09ac\\u09b6\\u09c0\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6\\u09c7 \\u0987\\u09a8\\u09cd\\u099f\\u09be\\u09b0\\u09a8\\u09c7\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 '\\u0986\\u09ae\\u09be\\u09a8\\u09a4' \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Digital footprints stay forever. Use them for good!\", \"bn\": \"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u09aa\\u09a6\\u099a\\u09bf\\u09b9\\u09cd\\u09a8 \\u099a\\u09bf\\u09b0\\u0995\\u09be\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09af\\u09be\\u09df\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09cb \\u09ad\\u09be\\u09b2\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb!\"}, \"questions\": [{\"text\": {\"en\": \"Is cyberbullying allowed in Islam?\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7 \\u0995\\u09bf \\u09b8\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09c1\\u09b2\\u09bf\\u0982 \\u0985\\u09a8\\u09c1\\u09ae\\u09cb\\u09a6\\u09bf\\u09a4?\"}, \"options\": [\"Yes\", \"No\"], \"correctIndex\": 1}]}, \"category\": \"STEM\"}], \"sector\": \"Environment & Ethics\", \"reward\": {\"id\": \"crystal_earth\", \"title\": {\"en\": \"Earth Core\", \"bn\": \"\\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09b0 \\u0995\\u09c7\\u09a8\\u09cd\\u09a6\\u09cd\\u09b0\"}}}]}, \"visionaries\": {\"mission_brief\": {\"en\": \"Greetings, Visionary! As a member of the 'Global Shura', your role is to design sustainable solutions for the Ummah and the world, grounded in Islamic ethics and cutting-edge science.\", \"bn\": \"\\u09b6\\u09c1\\u09ad\\u09c7\\u099a\\u09cd\\u099b\\u09be, \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8\\u09a6\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be! '\\u0997\\u09cd\\u09b2\\u09cb\\u09ac\\u09be\\u09b2 \\u09b6\\u09c1\\u09b0\\u09be'-\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u099c \\u09b9\\u09b2\\u09cb \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0 \\u098f\\u09ac\\u0982 \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u09a4\\u09c7 \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9 \\u0993 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u0964\"}, \"units\": [{\"id\": \"vis_u1\", \"title\": {\"en\": \"Unit 1: The Council of Ethics\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e7: \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6\"}, \"mission_brief\": {\"en\": \"The world faces complex dilemmas. Use the wisdom of Fiqh and Finance to create a just society.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0986\\u099c \\u099c\\u099f\\u09bf\\u09b2 \\u09b8\\u0982\\u0995\\u099f\\u09c7\\u09b0 \\u09ae\\u09c1\\u0996\\u09cb\\u09ae\\u09c1\\u0996\\u09bf\\u0964 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u0995 \\u09b8\\u09ae\\u09be\\u099c \\u0997\\u09a0\\u09a8\\u09c7 \\u09ab\\u09bf\\u0995\\u09b9 \\u098f\\u09ac\\u0982 \\u0985\\u09b0\\u09cd\\u09a5\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"background_asset\": \"\/teens\/council_bg.png\", \"nodes\": [{\"id\": \"vis_u1_n1\", \"title\": {\"en\": \"Mission: Ethics of AI\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u098f\\u0986\\u0987-\\u098f\\u09b0 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"The Council is debating the use of Artificial Intelligence. Guide them on the ethical principles a Muslim should follow.\", \"bn\": \"\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u09b8\\u09bf\\u09b2 \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u09ac\\u09c1\\u09a6\\u09cd\\u09a7\\u09bf\\u09ae\\u09a4\\u09cd\\u09a4\\u09be \\u09ac\\u09be \\u098f\\u0986\\u0987-\\u098f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09bf\\u09a4\\u09b0\\u09cd\\u0995 \\u0995\\u09b0\\u099b\\u09c7\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae\\u09c7\\u09b0 \\u09af\\u09c7 \\u09a8\\u09c8\\u09a4\\u09bf\\u0995 \\u09a8\\u09c0\\u09a4\\u09bf\\u0997\\u09c1\\u09b2\\u09cb \\u0985\\u09a8\\u09c1\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4 \\u09b8\\u09c7 \\u09ac\\u09bf\\u09b7\\u09df\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09a8\\u09be \\u09a6\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"In Islam, technology is a tool. Its value depends on how it is used to serve humanity.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u09b9\\u09be\\u09a4\\u09bf\\u09af\\u09bc\\u09be\\u09b0\\u0964 \\u098f\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09a8\\u09bf\\u09b0\\u09cd\\u09ad\\u09b0 \\u0995\\u09b0\\u09c7 \\u098f\\u099f\\u09bf \\u09ae\\u09be\\u09a8\\u09ac\\u099c\\u09be\\u09a4\\u09bf\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be\\u09af\\u09bc \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09a4\\u09be\\u09b0 \\u0993\\u09aa\\u09b0\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"Should an AI be biased?\", \"bn\": \"\\u098f\\u0986\\u0987-\\u098f\\u09b0 \\u0995\\u09bf \\u09aa\\u0995\\u09cd\\u09b7\\u09aa\\u09be\\u09a4\\u09a6\\u09c1\\u09b7\\u09cd\\u099f \\u09b9\\u0993\\u09af\\u09bc\\u09be \\u0989\\u099a\\u09bf\\u09a4?\"}, \"options\": [\"Yes\", \"No\", \"Depends\"], \"correctIndex\": 1}, {\"text\": {\"en\": \"Who is responsible for an AI's actions?\", \"bn\": \"\\u098f\\u0986\\u0987-\\u098f\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0995\\u09c7 \\u09a6\\u09be\\u09af\\u09bc\\u09c0?\"}, \"options\": [{\"en\": \"The AI\", \"bn\": \"\\u098f\\u0986\\u0987 \\u09a8\\u09bf\\u099c\\u09c7\\u0987\"}, {\"en\": \"The Creator\/User\", \"bn\": \"\\u09b8\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be\/\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u0995\\u09be\\u09b0\\u09c0\"}], \"correctIndex\": 1}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u1_n2\", \"title\": {\"en\": \"Mission: Islamic Finance\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09df\\u09a8\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"A new startup needs funding. Ensure the investment follows the rules of Halal finance.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09a4\\u09c1\\u09a8 \\u09b8\\u09cd\\u099f\\u09be\\u09b0\\u09cd\\u099f\\u0986\\u09aa\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09af\\u09bc\\u09a8 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u0964 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09cb \\u09af\\u09c7 \\u09ac\\u09bf\\u09a8\\u09bf\\u09af\\u09bc\\u09cb\\u0997\\u099f\\u09bf \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09af\\u09bc\\u09a8\\u09c7\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u099b\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Islamic finance prohibits Riba (Interest) and promotes risk-sharing.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u09a5\\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09bf\\u09ac\\u09be (\\u09b8\\u09c1\\u09a6) \\u09a8\\u09bf\\u09b7\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u099d\\u09c1\\u0981\\u0995\\u09bf-\\u0985\\u0982\\u09b6\\u09c0\\u09a6\\u09be\\u09b0\\u09bf\\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0989\\u09ce\\u09b8\\u09be\\u09b9\\u09bf\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\"}, \"items\": [{\"id\": \"m\", \"label\": {\"en\": \"Musharakah (Partnership)\", \"bn\": \"\\u09ae\\u09c1\\u09b6\\u09be\\u09b0\\u09be\\u0995\\u09be\\u09b9 (\\u0985\\u0982\\u09b6\\u09c0\\u09a6\\u09be\\u09b0\\u09bf\\u09a4\\u09cd\\u09ac)\"}, \"reveal\": {\"en\": \"Shared risk, shared reward!\", \"bn\": \"\\u09af\\u09cc\\u09a5 \\u099d\\u09c1\\u0981\\u0995\\u09bf, \\u09af\\u09cc\\u09a5 \\u09aa\\u09c1\\u09b0\\u09b8\\u09cd\\u0995\\u09be\\u09b0!\"}, \"icon\": \"\\ud83e\\udd1d\"}, {\"id\": \"h\", \"label\": {\"en\": \"Avoid Riba\", \"bn\": \"\\u09b8\\u09c1\\u09a6 \\u09aa\\u09b0\\u09bf\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Interest is exploitative.\", \"bn\": \"\\u09b8\\u09c1\\u09a6 \\u09b6\\u09cb\\u09b7\\u09a3\\u09ae\\u09c2\\u09b2\\u0995\\u0964\"}, \"icon\": \"\\ud83d\\udeab\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u1_n3\", \"title\": {\"en\": \"Mission: Dawah Strategy\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a6\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b9 \\u0995\\u09cc\\u09b6\\u09b2\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"You are invited to speak at an interfaith conference. Choose the best way to share the beauty of Islam.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u0986\\u09a8\\u09cd\\u09a4\\u0983\\u09a7\\u09b0\\u09cd\\u09ae\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09ae\\u09c7\\u09b2\\u09a8\\u09c7 \\u09ac\\u0995\\u09cd\\u09a4\\u09ac\\u09cd\\u09af \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ae\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af \\u09a4\\u09c1\\u09b2\\u09c7 \\u09a7\\u09b0\\u09be\\u09b0 \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09aa\\u09be\\u09af\\u09bc\\u099f\\u09bf \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Dawah is not about winning arguments; it's about winning hearts with character.\", \"bn\": \"\\u09a6\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b9 \\u09ae\\u09be\\u09a8\\u09c7 \\u09a4\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09c7\\u09a4\\u09be \\u09a8\\u09af\\u09bc; \\u098f\\u099f\\u09bf \\u09b9\\u09b2\\u09cb \\u099a\\u09b0\\u09bf\\u09a4\\u09cd\\u09b0 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09ae\\u09a8 \\u099c\\u09af\\u09bc \\u0995\\u09b0\\u09be\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"How should you speak to others?\", \"bn\": \"\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09be \\u0989\\u099a\\u09bf\\u09a4?\"}, \"options\": [{\"en\": \"With wisdom and kindness\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be \\u0993 \\u09a6\\u09af\\u09bc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\"}, {\"en\": \"Aggressively\", \"bn\": \"\\u0986\\u0995\\u09cd\\u09b0\\u09ae\\u09a3\\u09be\\u09a4\\u09cd\\u09ae\\u0995\\u09ad\\u09be\\u09ac\\u09c7\"}], \"correctIndex\": 0}, {\"text\": {\"en\": \"Best way to represent Islam?\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf\\u09a4\\u09cd\\u09ac \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u0989\\u09aa\\u09be\\u09af\\u09bc \\u0995\\u09cb\\u09a8\\u099f\\u09bf?\"}, \"options\": [{\"en\": \"Good Manners (Akhlaq)\", \"bn\": \"\\u0989\\u09a4\\u09cd\\u09a4\\u09ae \\u099a\\u09b0\\u09bf\\u09a4\\u09cd\\u09b0 (\\u0986\\u0996\\u09b2\\u09be\\u0995)\"}, {\"en\": \"Just talking\", \"bn\": \"\\u09b6\\u09c1\\u09a7\\u09c1 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09be\"}], \"correctIndex\": 0}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"vis_u1_n4\", \"title\": {\"en\": \"Mission: Calculus of Motion\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0997\\u09a4\\u09bf\\u09b0 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u0995\\u09c1\\u09b2\\u09be\\u09b8\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"To build a faster shuttle, you must calculate the rate of change in speed.\", \"bn\": \"\\u0986\\u09b0\\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4\\u0997\\u09be\\u09ae\\u09c0 \\u098f\\u0995\\u099f\\u09bf \\u09b6\\u09be\\u099f\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u0995\\u09c7 \\u0997\\u09a4\\u09bf\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8\\u09c7\\u09b0 \\u09b9\\u09be\\u09b0 \\u0997\\u09a3\\u09a8\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Calculus helps us understand how the world changes every second. SubhanAllah!\", \"bn\": \"\\u0995\\u09cd\\u09af\\u09be\\u09b2\\u0995\\u09c1\\u09b2\\u09be\\u09b8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\\u09c7 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09bf\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u0964 \\u09b8\\u09c1\\u09ac\\u09b9\\u09be\\u09a8\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9!\"}, \"questions\": [{\"text\": \"What is the derivative of x^2?\", \"options\": [\"x\", \"2x\", \"2\"], \"correctIndex\": 1}, {\"text\": \"Derivative of a constant?\", \"options\": [\"0\", \"1\", \"c\"], \"correctIndex\": 0}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u1_n5\", \"title\": {\"en\": \"Mission: Biology & Bioethics\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u099c\\u09c0\\u09ac\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u0993 \\u099c\\u09c0\\u09ac-\\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"A medical breakthrough is here! Analyze the biological facts and the ethical implications.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u099a\\u09bf\\u0995\\u09bf\\u09ce\\u09b8\\u09be \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8 \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09ac\\u09dc \\u09b8\\u09be\\u09ab\\u09b2\\u09cd\\u09af \\u098f\\u09b8\\u09c7\\u099b\\u09c7! \\u098f\\u09b0 \\u099c\\u09c8\\u09ac\\u09bf\\u0995 \\u09a4\\u09a5\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09a8\\u09c8\\u09a4\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09bf\\u09b6\\u09cd\\u09b2\\u09c7\\u09b7\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Saving one life is like saving all of humanity. (Quran 5:32)\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u099c\\u09c0\\u09ac\\u09a8 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a8\\u09cb \\u09ae\\u09be\\u09a8\\u09c7 \\u09aa\\u09c1\\u09b0\\u09cb \\u09ae\\u09be\\u09a8\\u09ac\\u099c\\u09be\\u09a4\\u09bf\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a8\\u09cb\\u0964 (\\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u09eb:\\u09e9\\u09e8)\"}, \"items\": [{\"id\": \"dna\", \"label\": {\"en\": \"DNA Sequencing\", \"bn\": \"\\u09a1\\u09bf\\u098f\\u09a8\\u098f \\u09b8\\u09bf\\u0995\\u09cb\\u09af\\u09bc\\u09c7\\u09a8\\u09cd\\u09b8\\u09bf\\u0982\"}, \"reveal\": {\"en\": \"The blueprint of life!\", \"bn\": \"\\u099c\\u09c0\\u09ac\\u09a8\\u09c7\\u09b0 \\u09a8\\u09c0\\u09b2 \\u09a8\\u0995\\u09b6\\u09be!\"}, \"icon\": \"\\ud83e\\uddec\"}, {\"id\": \"e\", \"label\": {\"en\": \"Ethics of Cloning\", \"bn\": \"\\u0995\\u09cd\\u09b2\\u09cb\\u09a8\\u09bf\\u0982\\u09df\\u09c7\\u09b0 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"reveal\": {\"en\": \"Respecting the sanctity of life.\", \"bn\": \"\\u099c\\u09c0\\u09ac\\u09a8\\u09c7\\u09b0 \\u09aa\\u09ac\\u09bf\\u09a4\\u09cd\\u09b0\\u09a4\\u09be\\u0995\\u09c7 \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8 \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u0964\"}, \"icon\": \"\\u2696\\ufe0f\"}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u1_n6\", \"title\": {\"en\": \"Mission: Public Speaking\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u099c\\u09a8\\u09b8\\u09ae\\u09cd\\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u0995\\u09cd\\u09a4\\u09ac\\u09cd\\u09af\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"You are addressing the United Nations. Deliver a powerful message on world peace.\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u099c\\u09be\\u09a4\\u09bf\\u09b8\\u0982\\u0998\\u09c7 \\u09ad\\u09be\\u09b7\\u09a3 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u0964 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09ac\\u09be\\u09b0\\u09cd\\u09a4\\u09be \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Words can change the world if they are spoken with truth and sincerity.\", \"bn\": \"\\u09b8\\u09a4\\u09cd\\u09af \\u0993 \\u0986\\u09a8\\u09cd\\u09a4\\u09b0\\u09bf\\u0995\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ac\\u09b2\\u09be \\u09b9\\u09b2\\u09c7 \\u09b6\\u09ac\\u09cd\\u09a6 \\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u0995\\u09c7 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\"}, \"items\": [{\"id\": \"p\", \"label\": {\"en\": \"Structure your speech\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09a4\\u09c3\\u09a4\\u09be\\u09b0 \\u0995\\u09be\\u09a0\\u09be\\u09ae\\u09cb \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Intro, Points, Conclusion!\", \"bn\": \"\\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be, \\u09ae\\u09c2\\u09b2 \\u09aa\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8\\u09ae\\u09c2\\u09b9, \\u0989\\u09aa\\u09b8\\u0982\\u09b9\\u09be\\u09b0!\"}, \"icon\": \"\\ud83d\\udcdd\"}, {\"id\": \"e\", \"label\": {\"en\": \"Engage the Audience\", \"bn\": \"\\u09b6\\u09cd\\u09b0\\u09cb\\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u0995\\u09c3\\u09b7\\u09cd\\u099f \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Use stories and facts!\", \"bn\": \"\\u0997\\u09b2\\u09cd\\u09aa \\u098f\\u09ac\\u0982 \\u09a4\\u09a5\\u09cd\\u09af \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb!\"}, \"icon\": \"\\ud83e\\udd1d\"}]}, \"category\": \"Soft Skills\"}], \"sector\": \"Fiqh & Finance\", \"reward\": {\"id\": \"orb_ethics\", \"title\": {\"en\": \"Orb of Ethics\", \"bn\": \"\\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7\\u09b0 \\u0997\\u09cb\\u09b2\\u0995\"}}}, {\"id\": \"vis_u2\", \"title\": {\"en\": \"Unit 2: Future Horizon\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e8: \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4\"}, \"mission_brief\": {\"en\": \"The final stage of your journey. Build a legacy of leadership, productivity, and vision.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09ab\\u09b0\\u09c7\\u09b0 \\u09b6\\u09c7\\u09b7 \\u09a7\\u09be\\u09aa\\u0964 \\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c2\\u09b0\\u09a6\\u09b0\\u09cd\\u09b6\\u09bf\\u09a4\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09cb\\u0964\"}, \"background_asset\": \"\/teens\/horizon_bg.png\", \"nodes\": [{\"id\": \"vis_u2_n1\", \"title\": {\"en\": \"Mission: Full-Stack Faith\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ab\\u09c1\\u09b2-\\u09b8\\u09cd\\u099f\\u09cd\\u09af\\u09be\\u0995 \\u0988\\u09ae\\u09be\\u09a8\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"You are building an app for the Ummah. Choose the right tech stack and features.\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0995\\u099f\\u09bf \\u0985\\u09cd\\u09af\\u09be\\u09aa \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u099b\\u0964 \\u09b8\\u09a0\\u09bf\\u0995 \\u099f\\u09c7\\u0995 \\u09b8\\u09cd\\u099f\\u09cd\\u09af\\u09be\\u0995 \\u098f\\u09ac\\u0982 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09be\\u0993\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Coding is a modern language of empowerment. Use it for good!\", \"bn\": \"\\u0995\\u09cb\\u09a1\\u09bf\\u0982 \\u09b9\\u09b2\\u09cb \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be\\u09df\\u09a8\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09ad\\u09be\\u09b7\\u09be\\u0964 \\u098f\\u0995\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb!\"}, \"questions\": [{\"text\": {\"en\": \"Frontend vs Backend?\", \"bn\": \"\\u09ab\\u09cd\\u09b0\\u09a8\\u09cd\\u099f\\u098f\\u09a8\\u09cd\\u09a1 \\u09ac\\u09a8\\u09be\\u09ae \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u098f\\u09a8\\u09cd\\u09a1?\"}, \"options\": [{\"en\": \"Visual vs Logic\", \"bn\": \"\\u09a6\\u09c3\\u09b6\\u09cd\\u09af\\u09ae\\u09be\\u09a8 \\u09ac\\u09a8\\u09be\\u09ae \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\"}, {\"en\": \"Colors vs Numbers\", \"bn\": \"\\u09b0\\u0999 \\u09ac\\u09a8\\u09be\\u09ae \\u09b8\\u0982\\u0996\\u09cd\\u09af\\u09be\"}], \"correctIndex\": 0}, {\"text\": {\"en\": \"Best Database?\", \"bn\": \"\\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09be\\u099f\\u09be\\u09ac\\u09c7\\u09b8?\"}, \"options\": [\"SQL\", \"NoSQL\", \"Depends on needs\"], \"correctIndex\": 2}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u2_n2\", \"title\": {\"en\": \"Mission: Robotics & AI\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b0\\u09cb\\u09ac\\u09cb\\u099f\\u09bf\\u0995\\u09cd\\u09b8 \\u0993 \\u098f\\u0986\\u0987\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Design a robot that can help the elderly or the sick.\", \"bn\": \"\\u098f\\u09ae\\u09a8 \\u098f\\u0995\\u099f\\u09bf \\u09b0\\u09cb\\u09ac\\u099f \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09b0\\u09cb \\u09af\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09ac\\u09be \\u0985\\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Al-Jazari was the father of robotics. We are following in his footsteps!\", \"bn\": \"\\u0986\\u09b2-\\u099c\\u09be\\u099c\\u09be\\u09b0\\u09bf \\u099b\\u09bf\\u09b2\\u09c7\\u09a8 \\u09b0\\u09cb\\u09ac\\u09cb\\u099f\\u09bf\\u0995\\u09cd\\u09b8\\u09c7\\u09b0 \\u099c\\u09a8\\u0995\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u09a4\\u09be\\u0981\\u09b0 \\u09aa\\u09a6\\u09be\\u0999\\u09cd\\u0995 \\u0985\\u09a8\\u09c1\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u099b\\u09bf!\"}, \"items\": [{\"id\": \"s\", \"label\": {\"en\": \"Add Sensors\", \"bn\": \"\\u09b8\\u09c7\\u09a8\\u09cd\\u09b8\\u09b0 \\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"It can see the path!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u09aa\\u09a5 \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09aa\\u09be\\u09df!\"}, \"icon\": \"\\ud83d\\udc41\\ufe0f\"}, {\"id\": \"a\", \"label\": {\"en\": \"Add Artificial Intelligence\", \"bn\": \"\\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u09ac\\u09c1\\u09a6\\u09cd\\u09a7\\u09bf\\u09ae\\u09a4\\u09cd\\u09a4\\u09be \\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"It can understand needs!\", \"bn\": \"\\u098f\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7!\"}, \"icon\": \"\\ud83e\\udde0\"}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u2_n3\", \"title\": {\"en\": \"Mission: Career Architect\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b0 \\u09b8\\u09cd\\u09a5\\u09aa\\u09a4\\u09bf\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Plan your future career path. How will you serve Allah through your work?\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09a5 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be \\u0995\\u09b0\\u09cb\\u0964 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a4\\u09c1\\u09ae\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0987\\u09ac\\u09be\\u09a6\\u09a4 \\u0995\\u09b0\\u09ac\\u09c7?\"}, \"data\": {\"fact\": {\"en\": \"Every Halal job can be an act of worship if your intention is pure.\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u0995\\u09be\\u099c\\u0987 \\u0987\\u09ac\\u09be\\u09a6\\u09a4 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09af\\u09a6\\u09bf \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09a4 \\u09ac\\u09bf\\u09b6\\u09c1\\u09a6\\u09cd\\u09a7 \\u09a5\\u09be\\u0995\\u09c7\\u0964\"}, \"items\": [{\"id\": \"d\", \"label\": {\"en\": \"Doctor\", \"bn\": \"\\u09a1\\u09be\\u0995\\u09cd\\u09a4\\u09be\\u09b0\"}, \"reveal\": {\"en\": \"Healing with compassion.\", \"bn\": \"\\u09b8\\u09b9\\u09be\\u09a8\\u09c1\\u09ad\\u09c2\\u09a4\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09af\\u09bc\\u0964\"}, \"icon\": \"\\ud83e\\ude7a\"}, {\"id\": \"e\", \"label\": {\"en\": \"Engineer\", \"bn\": \"\\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u09bf\\u09af\\u09bc\\u09be\\u09b0\"}, \"reveal\": {\"en\": \"Building a better world.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u09a8\\u09bf\\u09b0\\u09cd\\u09ae\\u09be\\u09a3\\u0964\"}, \"icon\": \"\\ud83c\\udfd7\\ufe0f\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u2_n4\", \"title\": {\"en\": \"Mission: Productivity Pro\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Use the 'Barakah Culture' to manage your time and achieve your goals.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0985\\u09b0\\u09cd\\u099c\\u09a8\\u09c7 '\\u09ac\\u09be\\u09b0\\u09be\\u0995\\u09be\\u09b9 \\u0995\\u09be\\u09b2\\u099a\\u09be\\u09b0' \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Time is a trust. Use it wisely and avoid 'Laghw' (useless talk).\", \"bn\": \"\\u09b8\\u09ae\\u09af\\u09bc \\u098f\\u0995\\u099f\\u09bf \\u0986\\u09ae\\u09be\\u09a8\\u09a4\\u0964 \\u098f\\u0995\\u09c7 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb \\u098f\\u09ac\\u0982 '\\u09b2\\u09be\\u0998\\u09ac' (\\u09a8\\u09bf\\u09b0\\u09b0\\u09cd\\u09a5\\u0995 \\u0995\\u09a5\\u09be) \\u09aa\\u09b0\\u09bf\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"items\": [{\"id\": \"f\", \"label\": {\"en\": \"Focus on Fajr\", \"bn\": \"\\u09ab\\u099c\\u09b0\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995\\u09c7 \\u09ae\\u09a8\\u09cb\\u09af\\u09cb\\u0997 \\u09a6\\u09be\\u0993\"}, \"reveal\": {\"en\": \"The early morning has the most blessing!\", \"bn\": \"\\u09ad\\u09cb\\u09b0\\u09ac\\u09c7\\u09b2\\u09be\\u09a4\\u09c7\\u0987 \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09ac\\u09b0\\u0995\\u09a4 \\u09a5\\u09be\\u0995\\u09c7!\"}, \"icon\": \"\\ud83c\\udf05\"}, {\"id\": \"p\", \"label\": {\"en\": \"Plan your Day\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Structure brings success!\", \"bn\": \"\\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be \\u09b8\\u09ab\\u09b2\\u09a4\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7!\"}, \"icon\": \"\\ud83d\\udcc5\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u2_n5\", \"title\": {\"en\": \"Mission: Financial Planning\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0986\\u09b0\\u09cd\\u09a5\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Manage your first paycheck! Allocate for expenses, savings, and Zakat.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09c7\\u09a4\\u09a8 \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09cb! \\u0996\\u09b0\\u099a, \\u09b8\\u099e\\u09cd\\u099a\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u09af\\u09be\\u0995\\u09be\\u09a4\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09b0\\u09be\\u09a6\\u09cd\\u09a6 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Zakat is not a tax; it's a purification of your wealth.\", \"bn\": \"\\u09af\\u09be\\u0995\\u09be\\u09a4 \\u0995\\u09cb\\u09a8\\u09cb \\u0995\\u09b0 \\u09a8\\u09af\\u09bc; \\u098f\\u099f\\u09bf \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6\\u09c7\\u09b0 \\u09aa\\u09ac\\u09bf\\u09a4\\u09cd\\u09b0\\u09a4\\u09be\\u0964\"}, \"items\": [{\"id\": \"z\", \"label\": {\"en\": \"2.5% for Zakat\", \"bn\": \"\\u09e8.\\u09eb% \\u09af\\u09be\\u0995\\u09be\\u09a4\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\"}, \"reveal\": {\"en\": \"Purify your wealth!\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6 \\u09aa\\u09ac\\u09bf\\u09a4\\u09cd\\u09b0 \\u0995\\u09b0\\u09cb!\"}, \"icon\": \"\\ud83d\\udcb0\"}, {\"id\": \"s\", \"label\": {\"en\": \"Invest in Sadaqah Jariyah\", \"bn\": \"\\u09b8\\u09a6\\u0995\\u09be \\u099c\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b9-\\u09a4\\u09c7 \\u09ac\\u09bf\\u09a8\\u09bf\\u09af\\u09bc\\u09cb\\u0997 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Rewards that never stop!\", \"bn\": \"\\u098f\\u09ae\\u09a8 \\u09b8\\u0993\\u09df\\u09be\\u09ac \\u09af\\u09be \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09a5\\u09be\\u09ae\\u09c7 \\u09a8\\u09be!\"}, \"icon\": \"\\u26f2\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u2_n6\", \"title\": {\"en\": \"Mission: The Visionary Legacy\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8\\u09a6\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be\\u09b0 \\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"You have completed your journey. Reflect on the legacy you want to leave behind.\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b8\\u09ab\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09cb\\u0964 \\u09a4\\u09c1\\u09ae\\u09bf \\u09af\\u09c7 \\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u0996\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u099a\\u09be\\u0993 \\u09b8\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The best of people are those who are most beneficial to others.\", \"bn\": \"\\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u09a4\\u09cd\\u09a4\\u09ae \\u09af\\u09c7 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964\"}, \"items\": [{\"id\": \"l\", \"label\": {\"en\": \"Leadership\", \"bn\": \"\\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac\"}, \"reveal\": {\"en\": \"Lead with justice!\", \"bn\": \"\\u09a8\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09ac\\u09bf\\u099a\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac \\u09a6\\u09be\\u0993!\"}, \"icon\": \"\\ud83d\\udc51\"}, {\"id\": \"f\", \"label\": {\"en\": \"Faith\", \"bn\": \"\\u0988\\u09ae\\u09be\\u09a8\"}, \"reveal\": {\"en\": \"Stay firm on the path!\", \"bn\": \"\\u0985\\u09ac\\u09bf\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09cb \\u09aa\\u09a5\\u09c7\\u09b0 \\u0993\\u09aa\\u09b0!\"}, \"icon\": \"\\ud83d\\udd4b\"}]}, \"category\": \"Soft Skills\"}], \"sector\": \"Tech & Innovation\", \"reward\": {\"id\": \"orb_future\", \"title\": {\"en\": \"Future Vision\", \"bn\": \"\\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8\"}}}, {\"id\": \"vis_u3\", \"title\": {\"en\": \"Unit 3: The Global Ummah\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09e9: \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\"}, \"mission_brief\": {\"en\": \"The world is our neighborhood. Discover your role in serving the global Ummah and sharing Islamic wisdom.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09ac\\u09c7\\u09b6\\u09c0\\u0964 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u098f\\u09ac\\u0982 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be \\u09aa\\u09cd\\u09b0\\u099a\\u09be\\u09b0\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u0986\\u09ac\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"background_asset\": \"\/teens\/global_bg.png\", \"nodes\": [{\"id\": \"vis_u3_n1\", \"title\": {\"en\": \"Mission: Humanitarian Hero\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09ae\\u09be\\u09a8\\u09ac\\u09bf\\u0995 \\u09ac\\u09c0\\u09b0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Manage an aid mission to help refugees. Allocate resources wisely.\", \"bn\": \"\\u0989\\u09a6\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a4\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0995\\u099f\\u09bf \\u09a4\\u09cd\\u09b0\\u09be\\u09a3 \\u09ae\\u09bf\\u09b6\\u09a8 \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09cb\\u0964 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6 \\u09ac\\u09b0\\u09be\\u09a6\\u09cd\\u09a6 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The best of people are those who are most beneficial to others.\", \"bn\": \"\\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u09a4\\u09cd\\u09a4\\u09ae \\u09af\\u09c7 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09ac\\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964\"}, \"items\": [{\"id\": \"f\", \"label\": {\"en\": \"Food Supply\", \"bn\": \"\\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9\"}, \"reveal\": {\"en\": \"Essential for survival!\", \"bn\": \"\\u09ac\\u09c7\\u0981\\u099a\\u09c7 \\u09a5\\u09be\\u0995\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09aa\\u09b0\\u09bf\\u09b9\\u09be\\u09b0\\u09cd\\u09af!\"}, \"icon\": \"\\ud83d\\udce6\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u3_n2\", \"title\": {\"en\": \"Mission: Comparative Wisdom\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09ae\\u09c2\\u09b2\\u0995 \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Learn how to talk about Islam respectfully with people of different faiths.\", \"bn\": \"\\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09cd\\u09ae\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09a4\\u09c7 \\u09b9\\u09df \\u09a4\\u09be \\u09b6\\u09bf\\u0996\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Quran says: 'Invite to the way of your Lord with wisdom and good instruction.'\", \"bn\": \"\\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u09ac\\u09b2\\u099b\\u09c7: '\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b0\\u09ac\\u09c7\\u09b0 \\u09aa\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u099c\\u09cd\\u099e\\u09be \\u098f\\u09ac\\u0982 \\u0989\\u09a4\\u09cd\\u09a4\\u09ae \\u0989\\u09aa\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09b9\\u09cd\\u09ac\\u09be\\u09a8 \\u0995\\u09b0\\u09cb\\u0964'\"}, \"items\": [{\"id\": \"d\", \"label\": {\"en\": \"Dialogue\", \"bn\": \"\\u09b8\\u0982\\u09b2\\u09be\\u09aa\"}, \"reveal\": {\"en\": \"Find common ground!\", \"bn\": \"\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb!\"}, \"icon\": \"\\ud83e\\udd1d\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"vis_u3_n3\", \"title\": {\"en\": \"Mission: Islamic Civilization Map\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09b8\\u09ad\\u09cd\\u09af\\u09a4\\u09be \\u09ae\\u09be\\u09a8\\u099a\\u09bf\\u09a4\\u09cd\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Explore the impact of Islamic art, architecture, and science on the world.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u0993\\u09aa\\u09b0 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09b6\\u09bf\\u09b2\\u09cd\\u09aa\\u0995\\u09b2\\u09be, \\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a4\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac \\u0985\\u09a8\\u09cd\\u09ac\\u09c7\\u09b7\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The first university in the world was founded by a Muslim woman, Fatima al-Fihri.\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09be\\u09b2\\u09af\\u09bc \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u09b2\\u09c7\\u09a8 \\u098f\\u0995\\u099c\\u09a8 \\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae \\u09a8\\u09be\\u09b0\\u09c0, \\u09ab\\u09be\\u09a4\\u09bf\\u09ae\\u09be \\u0986\\u09b2-\\u09ab\\u09bf\\u09b9\\u09b0\\u09bf\\u0964\"}, \"items\": [{\"id\": \"c1\", \"label\": {\"en\": \"Algebra\", \"bn\": \"\\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4\"}, \"reveal\": {\"en\": \"The math of modern tech!\", \"bn\": \"\\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u0997\\u09a3\\u09bf\\u09a4!\"}, \"icon\": \"\\ud83d\\udd22\"}]}, \"category\": \"Academic Learning\"}, {\"id\": \"vis_u3_n4\", \"title\": {\"en\": \"Mission: Social Media Strategist\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cb\\u09b6\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09bf\\u09a1\\u09bf\\u09df\\u09be \\u0995\\u09cc\\u09b6\\u09b2\\u09c0\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Create a positive campaign to clear misconceptions about Islam online.\", \"bn\": \"\\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ad\\u09c1\\u09b2 \\u09a7\\u09be\\u09b0\\u09a3\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u0987\\u09a4\\u09bf\\u09ac\\u09be\\u099a\\u0995 \\u09aa\\u09cd\\u09b0\\u099a\\u09be\\u09b0\\u09a3\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Content is king, but character is the soul of content.\", \"bn\": \"\\u0995\\u09a8\\u099f\\u09c7\\u09a8\\u09cd\\u099f \\u09b9\\u09b2\\u09cb \\u09b0\\u09be\\u099c\\u09be, \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u099a\\u09b0\\u09bf\\u09a4\\u09cd\\u09b0 \\u09b9\\u09b2\\u09cb \\u0995\\u09a8\\u099f\\u09c7\\u09a8\\u09cd\\u099f\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u0964\"}, \"items\": [{\"id\": \"c1\", \"label\": {\"en\": \"Create Video\", \"bn\": \"\\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Going viral for good!\", \"bn\": \"\\u09ad\\u09be\\u09b2\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b2 \\u09b9\\u099a\\u09cd\\u099b\\u09c7!\"}, \"icon\": \"\\ud83c\\udfa5\"}]}, \"category\": \"Creativity\"}, {\"id\": \"vis_u3_n5\", \"title\": {\"en\": \"Mission: Ethical Hacking Academy\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u098f\\u09a5\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09b9\\u09cd\\u09af\\u09be\\u0995\\u09bf\\u0982 \\u098f\\u0995\\u09be\\u09a1\\u09c7\\u09ae\\u09bf\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Find the vulnerabilities in a network to protect it from bad actors.\", \"bn\": \"\\u09a8\\u09c7\\u099f\\u0993\\u09df\\u09be\\u09b0\\u09cd\\u0995\\u0995\\u09c7 \\u09ae\\u09a8\\u09cd\\u09a6 \\u09b2\\u09cb\\u0995\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09b0 \\u09a6\\u09c1\\u09b0\\u09cd\\u09ac\\u09b2\\u09a4\\u09be\\u0997\\u09c1\\u09b2\\u09cb \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Cybersecurity is a modern-day defense of the Ummah's infrastructure.\", \"bn\": \"\\u09b8\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b8\\u09bf\\u0995\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09bf \\u09b9\\u09b2\\u09cb \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u0985\\u09ac\\u0995\\u09be\\u09a0\\u09be\\u09ae\\u09cb\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u0964\"}, \"items\": [{\"id\": \"h1\", \"label\": {\"en\": \"Scan Network\", \"bn\": \"\\u09a8\\u09c7\\u099f\\u0993\\u09df\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"Weak password found!\", \"bn\": \"\\u09a6\\u09c1\\u09b0\\u09cd\\u09ac\\u09b2 \\u09aa\\u09be\\u09b8\\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09cd\\u09a1 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u0997\\u09c7\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udd0d\"}]}, \"category\": \"STEM\"}, {\"id\": \"vis_u3_n6\", \"title\": {\"en\": \"Mission: The Justice League\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u099c\\u09be\\u09b8\\u09cd\\u099f\\u09bf\\u09b8 \\u09b2\\u09bf\\u0997\"}, \"mechanic\": \"Quiz\", \"mission_brief\": {\"en\": \"Analyze cases based on Islamic principles of justice and human rights.\", \"bn\": \"\\u09a8\\u09cd\\u09af\\u09be\\u09df\\u09ac\\u09bf\\u099a\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09ae\\u09be\\u09a8\\u09ac\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0\\u09c7\\u09b0 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b0 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u09a4\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0998\\u099f\\u09a8\\u09be \\u09ac\\u09bf\\u09b6\\u09cd\\u09b2\\u09c7\\u09b7\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Islamic law focuses on the preservation of life, intellect, religion, family, and property.\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u0986\\u0987\\u09a8 \\u099c\\u09c0\\u09ac\\u09a8, \\u09ac\\u09c1\\u09a6\\u09cd\\u09a7\\u09bf, \\u09a7\\u09b0\\u09cd\\u09ae, \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6 \\u09b8\\u0982\\u09b0\\u0995\\u09cd\\u09b7\\u09a3\\u09c7\\u09b0 \\u0993\\u09aa\\u09b0 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac \\u09a6\\u09c7\\u09df\\u0964\"}, \"questions\": [{\"text\": {\"en\": \"What is the primary goal of Sharia?\", \"bn\": \"\\u09b6\\u09b0\\u09bf\\u09df\\u09a4\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09c0?\"}, \"options\": [{\"en\": \"Punishment\", \"bn\": \"\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09bf\"}, {\"en\": \"Public Interest (Maslaha)\", \"bn\": \"\\u099c\\u09a8\\u09b8\\u09cd\\u09ac\\u09be\\u09b0\\u09cd\\u09a5 (\\u09ae\\u09be\\u09b8\\u09b2\\u09be\\u09b9\\u09be)\"}], \"correctIndex\": 1}]}, \"category\": \"Islamic Knowledge\"}], \"sector\": \"Global Ummah\", \"reward\": {\"id\": \"orb_ummah\", \"title\": {\"en\": \"Global Heart\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u09b9\\u09c3\\u09a6\\u09df\"}}}, {\"id\": \"vis_u4\", \"title\": {\"en\": \"Unit 4: The Mastery of Self\", \"bn\": \"\\u0985\\u09a7\\u09cd\\u09af\\u09be\\u09af\\u09bc \\u09ea: \\u0986\\u09a4\\u09cd\\u09ae-\\u09b8\\u0982\\u09af\\u09ae \\u0993 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\"}, \"mission_brief\": {\"en\": \"The final journey within. Master your habits, your finances, and your vision for the future.\", \"bn\": \"\\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09ad\\u09c7\\u09a4\\u09b0\\u0995\\u09be\\u09b0 \\u09b6\\u09c7\\u09b7 \\u09b8\\u09ab\\u09b0\\u0964 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0985\\u09ad\\u09cd\\u09af\\u09be\\u09b8, \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5 \\u098f\\u09ac\\u0982 \\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af\\u0995\\u09c7 \\u099c\\u09df \\u0995\\u09b0\\u09cb\\u0964\"}, \"background_asset\": \"\/teens\/horizon_bg.png\", \"nodes\": [{\"id\": \"vis_u4_n1\", \"title\": {\"en\": \"Mission: Entrepreneurship Hub\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0989\\u09a6\\u09cd\\u09af\\u09cb\\u0995\\u09cd\\u09a4\\u09be \\u09b9\\u09be\\u09ac\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Launch a Halal startup. Design the product and find your first customers.\", \"bn\": \"\\u098f\\u0995\\u099f\\u09bf \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u09b8\\u09cd\\u099f\\u09be\\u09b0\\u09cd\\u099f\\u0986\\u09aa \\u099a\\u09be\\u09b2\\u09c1 \\u0995\\u09b0\\u09cb\\u0964 \\u09aa\\u09a3\\u09cd\\u09af\\u099f\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09b0\\u09cb \\u098f\\u09ac\\u0982 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995 \\u0996\\u09c1\\u0981\\u099c\\u09c7 \\u09ac\\u09c7\\u09b0 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"The Prophet (SAW) was a successful businessman known for his honesty.\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u099b\\u09bf\\u09b2\\u09c7\\u09a8 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09ab\\u09b2 \\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09be\\u09df\\u09c0 \\u09af\\u09bf\\u09a8\\u09bf \\u09a4\\u09be\\u09b0 \\u09b8\\u09a4\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u099a\\u09bf\\u09a4 \\u099b\\u09bf\\u09b2\\u09c7\\u09a8\\u0964\"}, \"items\": [{\"id\": \"p\", \"label\": {\"en\": \"Design Product\", \"bn\": \"\\u09aa\\u09a3\\u09cd\\u09af \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09b0\\u09cb\"}, \"reveal\": {\"en\": \"People love it!\", \"bn\": \"\\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u098f\\u099f\\u09bf \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udca1\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u4_n2\", \"title\": {\"en\": \"Mission: Resilience Roadmap\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09b9\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be\\u09b0 \\u09aa\\u09a5\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Navigate through a personal crisis using strategies of Dua and Action.\", \"bn\": \"\\u09a6\\u09cb\\u09df\\u09be \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf\\u0997\\u09a4 \\u09b8\\u0982\\u0995\\u099f \\u09ae\\u09cb\\u0995\\u09be\\u09ac\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Allah does not burden a soul beyond that it can bear. (Quran 2:286)\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u0995\\u09be\\u0989\\u0995\\u09c7 \\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a7\\u09cd\\u09af\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u09ac\\u09cb\\u099d\\u09be \\u099a\\u09be\\u09aa\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u09a8 \\u09a8\\u09be\\u0964 (\\u0995\\u09c1\\u09b0\\u0986\\u09a8 \\u09e8:\\u09e8\\u09ee\\u09ec)\"}, \"items\": [{\"id\": \"r\", \"label\": {\"en\": \"Strategy: Sabr\", \"bn\": \"\\u0995\\u09cc\\u09b6\\u09b2: \\u09b8\\u09ac\\u09b0\"}, \"reveal\": {\"en\": \"Strength found!\", \"bn\": \"\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09be\\u0993\\u09df\\u09be \\u0997\\u09c7\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udee1\\ufe0f\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u4_n3\", \"title\": {\"en\": \"Mission: Financial Freedom\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0986\\u09b0\\u09cd\\u09a5\\u09bf\\u0995 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Plan your investments focusing on Barakah and avoiding Riba.\", \"bn\": \"\\u09b8\\u09c1\\u09a6 \\u098f\\u09dc\\u09bf\\u09df\\u09c7 \\u098f\\u09ac\\u0982 \\u09ac\\u09b0\\u0995\\u09a4\\u09c7\\u09b0 \\u0993\\u09aa\\u09b0 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ac\\u09bf\\u09a8\\u09bf\\u09df\\u09cb\\u0997 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Ethical investing is a key part of Islamic finance.\", \"bn\": \"\\u09a8\\u09c8\\u09a4\\u09bf\\u0995 \\u09ac\\u09bf\\u09a8\\u09bf\\u09df\\u09cb\\u0997 \\u09b9\\u09b2\\u09cb \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u09a5\\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0985\\u0982\\u09b6\\u0964\"}, \"items\": [{\"id\": \"i\", \"label\": {\"en\": \"Halal Stock\", \"bn\": \"\\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u09b8\\u09cd\\u099f\\u0995\"}, \"reveal\": {\"en\": \"Wealth growing with Barakah!\", \"bn\": \"\\u09ac\\u09b0\\u0995\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a6 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7!\"}, \"icon\": \"\\ud83d\\udcc8\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u4_n4\", \"title\": {\"en\": \"Mission: Productivity Systems\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\"}, \"mechanic\": \"Sim\", \"mission_brief\": {\"en\": \"Design a system to balance spiritual and personal goals.\", \"bn\": \"\\u0986\\u09a7\\u09cd\\u09af\\u09be\\u09a4\\u09cd\\u09ae\\u09bf\\u0995 \\u098f\\u09ac\\u0982 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf\\u0997\\u09a4 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09ad\\u09be\\u09b0\\u09b8\\u09be\\u09ae\\u09cd\\u09af \\u09ac\\u099c\\u09be\\u09df \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Prophet (SAW) used to split his night into three parts: for Allah, his family, and himself.\", \"bn\": \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u09a4\\u09be\\u09b0 \\u09b0\\u09be\\u09a4\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09a4\\u09c7\\u09a8: \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u099c\\u09a8\\u09cd\\u09af, \\u09a4\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\"}, \"items\": [{\"id\": \"s\", \"label\": {\"en\": \"System: Deep Work\", \"bn\": \"\\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf: \\u0997\\u09ad\\u09c0\\u09b0 \\u0995\\u09be\\u099c\"}, \"reveal\": {\"en\": \"Tasks finished early!\", \"bn\": \"\\u0995\\u09be\\u099c \\u09a4\\u09be\\u09dc\\u09be\\u09a4\\u09be\\u09dc\\u09bf \\u09b6\\u09c7\\u09b7 \\u09b9\\u09df\\u09c7\\u099b\\u09c7!\"}, \"icon\": \"\\ud83e\\udde0\"}]}, \"category\": \"Life Skills\"}, {\"id\": \"vis_u4_n5\", \"title\": {\"en\": \"Mission: Advanced Tafsir Deep-Dive\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0 \\u09ac\\u09bf\\u09b6\\u09cd\\u09b2\\u09c7\\u09b7\\u09a3\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Explore the linguistic and historical depth of Juz Amma verses.\", \"bn\": \"\\u0986\\u09ae\\u09cd\\u09aa\\u09be\\u09b0 \\u0986\\u09df\\u09be\\u09a4\\u09c7\\u09b0 \\u09ad\\u09be\\u09b7\\u09be\\u0997\\u09a4 \\u098f\\u09ac\\u0982 \\u0990\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\\u09bf\\u0995 \\u0997\\u09ad\\u09c0\\u09b0\\u09a4\\u09be \\u0985\\u09a8\\u09cd\\u09ac\\u09c7\\u09b7\\u09a3 \\u0995\\u09b0\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"Every word in the Quran is chosen with divine precision.\", \"bn\": \"\\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b6\\u09ac\\u09cd\\u09a6 \\u0990\\u09b6\\u09cd\\u09ac\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u0996\\u09c1\\u0981\\u09a4\\u09a4\\u09be\\u09df \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\"}, \"items\": [{\"id\": \"t\", \"label\": {\"en\": \"Tafsir Root\", \"bn\": \"\\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0 \\u09ae\\u09c2\\u09b2\"}, \"reveal\": {\"en\": \"Root word meaning revealed!\", \"bn\": \"\\u09ae\\u09c2\\u09b2 \\u09b6\\u09ac\\u09cd\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a5 \\u0989\\u09a8\\u09cd\\u09ae\\u09cb\\u099a\\u09bf\\u09a4!\"}, \"icon\": \"\\ud83c\\udf33\"}]}, \"category\": \"Islamic Knowledge\"}, {\"id\": \"vis_u4_n6\", \"title\": {\"en\": \"Mission: The Visionary's Legacy\", \"bn\": \"\\u09ae\\u09bf\\u09b6\\u09a8: \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8\\u09a6\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be\\u09b0 \\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0\"}, \"mechanic\": \"Reveal\", \"mission_brief\": {\"en\": \"Write your own 'Mission Statement' for life based on your values.\", \"bn\": \"\\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u09ac\\u09cb\\u09a7\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09cd\\u09a4\\u09bf\\u09a4\\u09c7 \\u09a4\\u09cb\\u09ae\\u09be\\u09b0 \\u099c\\u09c0\\u09ac\\u09a8\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac '\\u09ae\\u09bf\\u09b6\\u09a8 \\u09b8\\u09cd\\u099f\\u09c7\\u099f\\u09ae\\u09c7\\u09a8\\u09cd\\u099f' \\u09b2\\u09c7\\u0996\\u09cb\\u0964\"}, \"data\": {\"fact\": {\"en\": \"What legacy will you leave for the Ummah?\", \"bn\": \"\\u09a4\\u09c1\\u09ae\\u09bf \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0995\\u09c0 \\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u0996\\u09c7 \\u09af\\u09be\\u09ac\\u09c7?\"}, \"items\": [{\"id\": \"l\", \"label\": {\"en\": \"Legacy Planning\", \"bn\": \"\\u0989\\u09a4\\u09cd\\u09a4\\u09b0\\u09be\\u09a7\\u09bf\\u0995\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be\"}, \"reveal\": {\"en\": \"Vision clear!\", \"bn\": \"\\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u09b8\\u09cd\\u09aa\\u09b7\\u09cd\\u099f!\"}, \"icon\": \"\\ud83c\\udf93\"}]}, \"category\": \"Soft Skills\"}], \"sector\": \"Life Skills & Mastery\", \"reward\": {\"id\": \"orb_mastery\", \"title\": {\"en\": \"Mastery Crown\", \"bn\": \"\\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\\u09b0 \\u09ae\\u09c1\\u0995\\u09c1\\u099f\"}}}]}};\n        const badgeAssets = {\"explorer\": \"<svg width=\\\"100\\\" height=\\\"100\\\" viewBox=\\\"0 0 100 100\\\" xmlns=\\\"http:\/\/www.w3.org\/2000\/svg\\\">\\n    <circle cx=\\\"50\\\" cy=\\\"50\\\" r=\\\"45\\\" fill=\\\"#F1C40F\\\" stroke=\\\"#D4AC0D\\\" stroke-width=\\\"5\\\"\/>\\n    <text x=\\\"50\\\" y=\\\"65\\\" font-family=\\\"Arial, sans-serif\\\" font-size=\\\"40\\\" text-anchor=\\\"middle\\\" fill=\\\"white\\\">\\u2b50<\/text>\\n<\/svg>\", \"smarty\": \"<svg width=\\\"100\\\" height=\\\"100\\\" viewBox=\\\"0 0 100 100\\\" xmlns=\\\"http:\/\/www.w3.org\/2000\/svg\\\">\\n    <rect x=\\\"10\\\" y=\\\"10\\\" width=\\\"80\\\" height=\\\"80\\\" rx=\\\"15\\\" fill=\\\"#2ECC71\\\"\/>\\n    <path d=\\\"M30 50L45 65L70 35\\\" stroke=\\\"white\\\" stroke-width=\\\"10\\\" fill=\\\"none\\\" stroke-linecap=\\\"round\\\"\/>\\n<\/svg>\", \"master\": \"<svg width=\\\"100\\\" height=\\\"100\\\" viewBox=\\\"0 0 100 100\\\" xmlns=\\\"http:\/\/www.w3.org\/2000\/svg\\\">\\n    <polygon points=\\\"50,5 95,95 5,95\\\" fill=\\\"#9B59B6\\\"\/>\\n    <text x=\\\"50\\\" y=\\\"80\\\" font-family=\\\"Arial, sans-serif\\\" font-size=\\\"30\\\" text-anchor=\\\"middle\\\" fill=\\\"white\\\">M<\/text>\\n<\/svg>\", \"visionary\": \"<svg width=\\\"100\\\" height=\\\"100\\\" viewBox=\\\"0 0 100 100\\\" xmlns=\\\"http:\/\/www.w3.org\/2000\/svg\\\">\\n    <defs>\\n        <linearGradient id=\\\"grad1\\\" x1=\\\"0%\\\" y1=\\\"0%\\\" x2=\\\"100%\\\" y2=\\\"100%\\\">\\n            <stop offset=\\\"0%\\\" style=\\\"stop-color:#4A90E2;stop-opacity:1\\\" \/>\\n            <stop offset=\\\"100%\\\" style=\\\"stop-color:#9B59B6;stop-opacity:1\\\" \/>\\n        <\/linearGradient>\\n    <\/defs>\\n    <path d=\\\"M50 5 L90 25 L90 75 L50 95 L10 75 L10 25 Z\\\" fill=\\\"url(#grad1)\\\" stroke=\\\"#FFFFFF\\\" stroke-width=\\\"2\\\"\/>\\n    <circle cx=\\\"50\\\" cy=\\\"50\\\" r=\\\"20\\\" fill=\\\"none\\\" stroke=\\\"#FFFFFF\\\" stroke-width=\\\"4\\\"\/>\\n    <path d=\\\"M40 50 L60 50 M50 40 L50 60\\\" stroke=\\\"#FFFFFF\\\" stroke-width=\\\"3\\\" stroke-linecap=\\\"round\\\"\/>\\n    <text x=\\\"50\\\" y=\\\"80\\\" font-family=\\\"Arial, sans-serif\\\" font-size=\\\"12\\\" text-anchor=\\\"middle\\\" fill=\\\"white\\\" font-weight=\\\"bold\\\">VISIONARY<\/text>\\n<\/svg>\"};\n        const mascotAssets = {\"zaid\": \"\\n    <svg viewBox=\\\"0 0 200 200\\\" class=\\\"zaid-body\\\">\\n        <circle cx=\\\"100\\\" cy=\\\"80\\\" r=\\\"45\\\" fill=\\\"#2ECC71\\\" \/>\\n        <path d=\\\"M100 35 L70 55 L130 55 Z\\\" fill=\\\"#27AE60\\\" \/>\\n        <g id=\\\"zaid-eyes\\\">\\n            <circle cx=\\\"85\\\" cy=\\\"85\\\" r=\\\"4\\\" fill=\\\"#2C3E50\\\" \/>\\n            <circle cx=\\\"115\\\" cy=\\\"85\\\" r=\\\"4\\\" fill=\\\"#2C3E50\\\" \/>\\n        <\/g>\\n        <path d=\\\"M85 105 Q100 120 115 105\\\" stroke=\\\"white\\\" stroke-width=\\\"4\\\" fill=\\\"none\\\" stroke-linecap=\\\"round\\\" \/>\\n        <rect x=\\\"65\\\" y=\\\"125\\\" width=\\\"70\\\" height=\\\"60\\\" rx=\\\"15\\\" fill=\\\"#2ECC71\\\" \/>\\n        <rect id=\\\"zaid-arm\\\" x=\\\"40\\\" y=\\\"130\\\" width=\\\"30\\\" height=\\\"15\\\" rx=\\\"7\\\" fill=\\\"#2ECC71\\\" \/>\\n    <\/svg>\\n    \", \"zaynab\": \"\\n    <svg viewBox=\\\"0 0 200 200\\\">\\n        <g class=\\\"zaynab-head\\\">\\n            <circle cx=\\\"100\\\" cy=\\\"80\\\" r=\\\"48\\\" fill=\\\"#9B59B6\\\" \/>\\n            <circle cx=\\\"100\\\" cy=\\\"85\\\" r=\\\"35\\\" fill=\\\"#FAD7A0\\\" \/>\\n            <g id=\\\"zaynab-eyes\\\">\\n                <circle cx=\\\"88\\\" cy=\\\"85\\\" r=\\\"3.5\\\" fill=\\\"#2C3E50\\\" \/>\\n                <circle cx=\\\"112\\\" cy=\\\"85\\\" r=\\\"3.5\\\" fill=\\\"#2C3E50\\\" \/>\\n            <\/g>\\n            <path d=\\\"M90 100 Q100 110 110 100\\\" stroke=\\\"#9B59B6\\\" stroke-width=\\\"3\\\" fill=\\\"none\\\" stroke-linecap=\\\"round\\\" \/>\\n        <\/g>\\n        <path d=\\\"M60 180 L140 180 L130 130 L70 130 Z\\\" fill=\\\"#9B59B6\\\" \/>\\n        <path id=\\\"zaynab-heart\\\" d=\\\"M100 160 Q105 150 110 160 T100 170 T90 160 T100 160\\\" \/>\\n    <\/svg>\\n    \"};\n        const roadmapData = {\"title\": {\"en\": \"Parents Guide & Learning Roadmap\", \"bn\": \"\\u0985\\u09ad\\u09bf\\u09ad\\u09be\\u09ac\\u0995 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09bf\\u0995\\u09be \\u098f\\u09ac\\u0982 \\u09b6\\u09c7\\u0996\\u09be\\u09b0 \\u09b0\\u09cb\\u09a1\\u09ae\\u09cd\\u09af\\u09be\\u09aa\"}, \"introduction\": {\"en\": \"Welcome to the Muslim Kids Learning platform. This guide outlines the educational journey your child will take, balancing Islamic values with academic excellence and essential life skills.\", \"bn\": \"\\u09ae\\u09c1\\u09b8\\u09b2\\u09bf\\u09ae \\u0995\\u09bf\\u09a1\\u09b8 \\u09b2\\u09be\\u09b0\\u09cd\\u09a8\\u09bf\\u0982 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u099f\\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u0997\\u09a4\\u09ae\\u0964 \\u098f\\u0987 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09c7\\u09b6\\u09bf\\u0995\\u09be\\u099f\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09be\\u09a8\\u09c7\\u09b0 \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be\\u09ae\\u09c2\\u09b2\\u0995 \\u09b8\\u09ab\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c2\\u09aa\\u09b0\\u09c7\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7, \\u09af\\u09c7\\u0996\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u09ac\\u09cb\\u09a7\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u098f\\u0995\\u09be\\u09a1\\u09c7\\u09ae\\u09bf\\u0995 \\u09b6\\u09cd\\u09b0\\u09c7\\u09b7\\u09cd\\u09a0\\u09a4\\u09cd\\u09ac \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u09c0\\u09af\\u09bc \\u099c\\u09c0\\u09ac\\u09a8 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\\u09b0 \\u09ad\\u09be\\u09b0\\u09b8\\u09be\\u09ae\\u09cd\\u09af \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\"}, \"age_groups\": [{\"id\": \"explorers\", \"title\": {\"en\": \"Explorers (Ages 3-6)\", \"bn\": \"\\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a4\\u09cd\\u09b0\\u09c0 (\\u09ac\\u09af\\u09bc\\u09b8 \\u09e9-\\u09ec)\"}, \"milestones\": {\"en\": [\"Recognition of Arabic and English alphabets.\", \"Basic counting (1-10) and shape recognition.\", \"Understanding the concept of Allah as the Creator.\", \"Practicing basic manners (Bismillah, Salam, Sharing).\"], \"bn\": [\"\\u0986\\u09b0\\u09ac\\u09bf \\u098f\\u09ac\\u0982 \\u0987\\u0982\\u09b0\\u09c7\\u099c\\u09bf \\u09ac\\u09b0\\u09cd\\u09a3\\u09ae\\u09be\\u09b2\\u09be \\u099a\\u09c7\\u09a8\\u09be\\u0964\", \"\\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u0997\\u09a3\\u09a8\\u09be (\\u09e7-\\u09e7\\u09e6) \\u098f\\u09ac\\u0982 \\u0986\\u0995\\u09c3\\u09a4\\u09bf \\u099a\\u09c7\\u09a8\\u09be\\u0964\", \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0995\\u09c7 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u09cd\\u09a4\\u09be \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u09ac\\u09cb\\u099d\\u09be\\u09b0 \\u09a7\\u09be\\u09b0\\u09a3\\u09be\\u0964\", \"\\u09ae\\u09cc\\u09b2\\u09bf\\u0995 \\u0986\\u09a6\\u09ac-\\u0995\\u09be\\u09df\\u09a6\\u09be \\u0985\\u09a8\\u09c1\\u09b6\\u09c0\\u09b2\\u09a8 (\\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9, \\u09b8\\u09be\\u09b2\\u09be\\u09ae, \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be)\\u0964\"]}, \"units\": [{\"id\": \"exp_u1\", \"title\": {\"en\": \"The Secret Garden of Faith\", \"bn\": \"\\u0988\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cb\\u09aa\\u09a8 \\u09ac\\u09be\\u0997\\u09be\\u09a8\"}, \"objectives\": {\"academic\": {\"en\": \"Alphabet recognition, Shapes, Basic counting\", \"bn\": \"\\u09ac\\u09b0\\u09cd\\u09a3\\u09ae\\u09be\\u09b2\\u09be \\u099a\\u09c7\\u09a8\\u09be, \\u0986\\u0995\\u09c3\\u09a4\\u09bf, \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u0997\\u09a3\\u09a8\\u09be\"}, \"spiritual\": {\"en\": \"Allah as Creator, Starting with Bismillah\", \"bn\": \"\\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u09cd\\u09a4\\u09be \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9, \\u09ac\\u09bf\\u09b8\\u09ae\\u09bf\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09be\"}, \"life_skills\": {\"en\": \"Recognizing gifts in nature\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u0995\\u09c3\\u09a4\\u09bf\\u09b0 \\u0989\\u09aa\\u09b9\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09cb \\u099a\\u09bf\\u09a8\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09be\"}}}, {\"id\": \"exp_u2\", \"title\": {\"en\": \"The Ark of Adventure\", \"bn\": \"\\u0985\\u09ad\\u09bf\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u09a8\\u09cc\\u0995\\u09be\"}, \"objectives\": {\"academic\": {\"en\": \"Patterns, Sequences, Coding logic\", \"bn\": \"\\u09aa\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09cd\\u09a8, \\u09b8\\u09bf\\u0995\\u09cb\\u09af\\u09bc\\u09c7\\u09a8\\u09cd\\u09b8, \\u0995\\u09cb\\u09a1\\u09bf\\u0982 \\u09b2\\u099c\\u09bf\\u0995\"}, \"spiritual\": {\"en\": \"Prophet Nuh (AS), Quranic stories\", \"bn\": \"\\u09a8\\u09c2\\u09b9 (\\u0986\\u0983) \\u098f\\u09b0 \\u099c\\u09c0\\u09ac\\u09a8\\u09c0, \\u0995\\u09c1\\u09b0\\u0986\\u09a8\\u09c7\\u09b0 \\u0997\\u09b2\\u09cd\\u09aa\"}, \"life_skills\": {\"en\": \"Helping others, Physical health\", \"bn\": \"\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09be, \\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\"}}}, {\"id\": \"exp_u3\", \"title\": {\"en\": \"The Sky of Wonders\", \"bn\": \"\\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u0986\\u0995\\u09be\\u09b6\"}, \"objectives\": {\"academic\": {\"en\": \"Astronomy, Water cycle, Geography, Biology\", \"bn\": \"\\u099c\\u09cd\\u09af\\u09cb\\u09a4\\u09bf\\u09b0\\u09cd\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09be, \\u099c\\u09b2\\u099a\\u0995\\u09cd\\u09b0, \\u09ad\\u09c2\\u0997\\u09cb\\u09b2, \\u099c\\u09c0\\u09ac\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\"}, \"spiritual\": {\"en\": \"Wonders of Allah's creation\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09ae\\u09af\\u09bc\"}, \"life_skills\": {\"en\": \"Community awareness\", \"bn\": \"\\u09b8\\u09be\\u09ae\\u09be\\u099c\\u09bf\\u0995 \\u09b8\\u099a\\u09c7\\u09a4\\u09a8\\u09a4\\u09be\"}}}, {\"id\": \"exp_u4\", \"title\": {\"en\": \"The Path of Manners\", \"bn\": \"\\u0986\\u09a6\\u09ac-\\u0995\\u09be\\u09df\\u09a6\\u09be\\u09b0 \\u09aa\\u09a5\"}, \"objectives\": {\"academic\": {\"en\": \"Nutrition basics\", \"bn\": \"\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u09a7\\u09be\\u09b0\\u09a3\\u09be\"}, \"spiritual\": {\"en\": \"Salam, Bedtime Duas\", \"bn\": \"\\u09b8\\u09be\\u09b2\\u09be\\u09ae, \\u09b6\\u09cb\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u09a6\\u09cb\\u09df\\u09be\"}, \"life_skills\": {\"en\": \"Sharing, Honesty, Respecting elders\", \"bn\": \"\\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be, \\u09b8\\u09a4\\u09a4\\u09be, \\u09ac\\u09dc\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8 \\u0995\\u09b0\\u09be\"}}}]}, {\"id\": \"achievers\", \"title\": {\"en\": \"Achievers (Ages 7-10)\", \"bn\": \"\\u0985\\u09b0\\u09cd\\u099c\\u09a8\\u0995\\u09be\\u09b0\\u09c0 (\\u09ac\\u09af\\u09bc\\u09b8 \\u09ed-\\u09e7\\u09e6)\"}, \"milestones\": {\"en\": [\"Memorization and order of Juz Amma Surahs.\", \"Understanding basic Tajweed rules.\", \"Mastery of multiplication and basic grammar.\", \"Knowledge of the Prophet's life and companions.\", \"Digital safety and financial basics (Zakat).\"], \"bn\": [\"\\u0986\\u09ae\\u09cd\\u09aa\\u09be\\u09b0 \\u09b8\\u09c2\\u09b0\\u09be\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09ae\\u09c1\\u0996\\u09b8\\u09cd\\u09a5 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0995\\u09cd\\u09b0\\u09ae \\u09ac\\u099c\\u09be\\u09df \\u09b0\\u09be\\u0996\\u09be\\u0964\", \"\\u09a4\\u09be\\u099c\\u09ac\\u09c0\\u09a6-\\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09ae\\u0997\\u09c1\\u09b2\\u09cb \\u09ac\\u09cb\\u099d\\u09be\\u0964\", \"\\u0997\\u09c1\\u09a3\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u09b0\\u09a3\\u09c7 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\\u0964\", \"\\u09a8\\u09ac\\u09c0 (\\u09b8\\u09be\\u0983) \\u098f\\u09b0 \\u099c\\u09c0\\u09ac\\u09a8\\u09c0 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b9\\u09be\\u09ac\\u09c0\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09cd\\u099e\\u09be\\u09a8\\u0964\", \"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a4\\u09cd\\u09a4\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u09cd\\u09a5\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u09a7\\u09be\\u09b0\\u09a3\\u09be (\\u09af\\u09be\\u0995\\u09be\\u09a4)\\u0964\"]}, \"units\": [{\"id\": \"ach_u1\", \"title\": {\"en\": \"The Knowledge Fortress\", \"bn\": \"\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\"}, \"objectives\": {\"academic\": {\"en\": \"Multiplication, Photosynthesis, English Grammar\", \"bn\": \"\\u0997\\u09c1\\u09a3\\u09a8, \\u09b8\\u09be\\u09b2\\u09cb\\u0995\\u09b8\\u0982\\u09b6\\u09cd\\u09b2\\u09c7\\u09b7\\u09a3, \\u0987\\u0982\\u09b0\\u09c7\\u099c\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u09b0\\u09a3\"}, \"spiritual\": {\"en\": \"Juz Amma, Tajweed, Seerah\", \"bn\": \"\\u0986\\u09ae\\u09cd\\u09aa\\u09be, \\u09a4\\u09be\\u099c\\u09ac\\u09c0\\u09a6, \\u09b8\\u09c0\\u09b0\\u09be\\u09a4\"}, \"life_skills\": {\"en\": \"Learning from historical heroes\", \"bn\": \"\\u0990\\u09a4\\u09bf\\u09b9\\u09be\\u09b8\\u09bf\\u0995 \\u09ac\\u09c0\\u09b0\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u09a8\\u09c7\\u0993\\u09df\\u09be\"}}}, {\"id\": \"ach_u2\", \"title\": {\"en\": \"The Digital City of Adab\", \"bn\": \"\\u0986\\u09a6\\u09ac\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u09b6\\u09b9\\u09b0\"}, \"objectives\": {\"academic\": {\"en\": \"Cyber safety, Financial literacy, Coding (Loops)\", \"bn\": \"\\u09b8\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a4\\u09cd\\u09a4\\u09be, \\u0986\\u09b0\\u09cd\\u09a5\\u09bf\\u0995 \\u09b8\\u09be\\u0995\\u09cd\\u09b7\\u09b0\\u09a4\\u09be, \\u0995\\u09cb\\u09a1\\u09bf\\u0982 (\\u09b2\\u09c1\\u09aa)\"}, \"spiritual\": {\"en\": \"99 Names of Allah\", \"bn\": \"\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u09ef\\u09ef\\u099f\\u09bf \\u09a8\\u09be\\u09ae\"}, \"life_skills\": {\"en\": \"Public speaking, Healthy eating\", \"bn\": \"\\u099c\\u09a8\\u09b8\\u09ae\\u09cd\\u09ae\\u09c1\\u0996\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09be, \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\"}}}, {\"id\": \"ach_u3\", \"title\": {\"en\": \"The Galaxy of Science\", \"bn\": \"\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09bf\"}, \"objectives\": {\"academic\": {\"en\": \"Gravity, Advanced Water cycle, Cells, Electricity\", \"bn\": \"\\u09ae\\u09b9\\u09be\\u0995\\u09b0\\u09cd\\u09b7, \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u099c\\u09b2\\u099a\\u0995\\u09cd\\u09b0, \\u0995\\u09cb\\u09b7, \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce\"}, \"spiritual\": {\"en\": \"Reflecting on creation's complexity\", \"bn\": \"\\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u099c\\u099f\\u09bf\\u09b2\\u09a4\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u0995\\u09b0\\u09be\"}, \"life_skills\": {\"en\": \"History of Science (Astrolabe)\", \"bn\": \"\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8 (\\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2\\u09c7\\u09ac)\"}}}, {\"id\": \"ach_u4\", \"title\": {\"en\": \"The Heroes of Islam\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09ac\\u09c0\\u09b0\"}, \"objectives\": {\"academic\": {\"en\": \"History, Math (Zakat %)\", \"bn\": \"\\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8, \\u0997\\u09a3\\u09bf\\u09a4 (\\u09af\\u09be\\u0995\\u09be\\u09a4 %)\"}, \"spiritual\": {\"en\": \"Hadith, 5 Pillars, Caliphs\", \"bn\": \"\\u09b9\\u09be\\u09a6\\u09bf\\u09b8, \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09c7\\u09b0 \\u09eb\\u099f\\u09bf \\u09b8\\u09cd\\u09a4\\u09ae\\u09cd\\u09ad, \\u0996\\u09b2\\u09bf\\u09ab\\u09be\\u0997\\u09a3\"}, \"life_skills\": {\"en\": \"Charity, Bravery, Ethics\", \"bn\": \"\\u09a6\\u09be\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be, \\u09ac\\u09c0\\u09b0\\u09a4\\u09cd\\u09ac, \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}}}]}, {\"id\": \"leaders\", \"title\": {\"en\": \"Leaders (Ages 11-14)\", \"bn\": \"\\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac (\\u09ac\\u09af\\u09bc\\u09b8 \\u09e7\\u09e7-\\u09e7\\u09ea)\"}, \"milestones\": {\"en\": [\"Deep understanding of Tafsir for Juz Amma.\", \"Solving algebraic equations.\", \"Knowledge of the Islamic Golden Age.\", \"Intermediate coding (JavaScript basics).\", \"Leadership skills (Conflict resolution, Decision making).\"], \"bn\": [\"\\u0986\\u09ae\\u09cd\\u09aa\\u09be\\u09b0 \\u09b8\\u09c2\\u09b0\\u09be\\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cb\\u099d\\u09be\\u0964\", \"\\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4\\u09c0\\u09df \\u09b8\\u09ae\\u09c0\\u0995\\u09b0\\u09a3 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09be\\u0964\", \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09b8\\u09cd\\u09ac\\u09b0\\u09cd\\u09a3\\u09af\\u09c1\\u0997 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u099c\\u09cd\\u099e\\u09be\\u09a8\\u0964\", \"\\u09ae\\u09a7\\u09cd\\u09af\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u0995\\u09cb\\u09a1\\u09bf\\u0982 (\\u099c\\u09be\\u09ad\\u09be\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09aa\\u09cd\\u099f-\\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09a5\\u09ae\\u09bf\\u0995 \\u09a7\\u09be\\u09b0\\u09a3\\u09be)\\u0964\", \"\\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac\\u09c7\\u09b0 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be (\\u09a6\\u09cd\\u09ac\\u09a8\\u09cd\\u09a6\\u09cd\\u09ac \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8, \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u09a8\\u09c7\\u0993\\u09df\\u09be)\\u0964\"]}, \"units\": [{\"id\": \"ldr_u1\", \"title\": {\"en\": \"The Library of Wisdom\", \"bn\": \"\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09a8\\u09cd\\u09a5\\u09be\\u0997\\u09be\\u09b0\"}, \"objectives\": {\"academic\": {\"en\": \"Algebra, Physics, Advanced Writing\", \"bn\": \"\\u09ac\\u09c0\\u099c\\u0997\\u09a3\\u09bf\\u09a4, \\u09aa\\u09a6\\u09be\\u09b0\\u09cd\\u09a5\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b2\\u09c7\\u0996\\u09be\\u09b2\\u09c7\\u0996\\u09bf\"}, \"spiritual\": {\"en\": \"Tafsir, Fiqh (Salah)\", \"bn\": \"\\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0, \\u09ab\\u09bf\\u0995\\u09b9 (\\u09a8\\u09be\\u09ae\\u09be\\u099c)\"}, \"life_skills\": {\"en\": \"Logical argumentation\", \"bn\": \"\\u09af\\u09cc\\u0995\\u09cd\\u09a4\\u09bf\\u0995 \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8\"}}}, {\"id\": \"ldr_u2\", \"title\": {\"en\": \"The Lab of Innovation\", \"bn\": \"\\u0989\\u09a6\\u09cd\\u09ad\\u09be\\u09ac\\u09a8 \\u09b2\\u09cd\\u09af\\u09be\\u09ac\"}, \"objectives\": {\"academic\": {\"en\": \"Programming (JS), Modern History, Graphic Design\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09bf\\u0982 (JS), \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8, \\u0997\\u09cd\\u09b0\\u09be\\u09ab\\u09bf\\u0995 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8\"}, \"spiritual\": {\"en\": \"Sabr as a strategy\", \"bn\": \"\\u0995\\u09cc\\u09b6\\u09b2 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u09b8\\u09ac\\u09b0\"}, \"life_skills\": {\"en\": \"Financial budgeting, Conflict resolution\", \"bn\": \"\\u0986\\u09b0\\u09cd\\u09a5\\u09bf\\u0995 \\u09ac\\u09be\\u099c\\u09c7\\u099f, \\u09a6\\u09cd\\u09ac\\u09a8\\u09cd\\u09a6\\u09cd\\u09ac \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8\"}}}, {\"id\": \"ldr_u3\", \"title\": {\"en\": \"The Council of Leaders\", \"bn\": \"\\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6\"}, \"objectives\": {\"academic\": {\"en\": \"Communication skills\", \"bn\": \"\\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\"}, \"spiritual\": {\"en\": \"Islamic ethics in leadership\", \"bn\": \"\\u09a8\\u09c7\\u09a4\\u09c3\\u09a4\\u09cd\\u09ac\\u09c7\\u09b0 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"life_skills\": {\"en\": \"Teamwork, Time management, Self-discipline\", \"bn\": \"\\u09a6\\u09b2\\u0997\\u09a4 \\u0995\\u09be\\u099c, \\u09b8\\u09ae\\u09df \\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09aa\\u09a8\\u09be, \\u0986\\u09a4\\u09cd\\u09ae-\\u09b8\\u0982\\u09af\\u09ae\"}}}, {\"id\": \"ldr_u4\", \"title\": {\"en\": \"The Earth Guardians\", \"bn\": \"\\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0 \\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u0995\\u09be\\u09b0\\u09c0\"}, \"objectives\": {\"academic\": {\"en\": \"Environmental science, Tech ethics\", \"bn\": \"\\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"spiritual\": {\"en\": \"Khulafa (Stewardship) of Earth\", \"bn\": \"\\u09aa\\u09c3\\u09a5\\u09bf\\u09ac\\u09c0\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf (\\u0996\\u09bf\\u09b2\\u09be\\u09ab\\u09a4) \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u09a6\\u09be\\u09df\\u09bf\\u09a4\\u09cd\\u09ac\"}, \"life_skills\": {\"en\": \"Sustainable living\", \"bn\": \"\\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u099c\\u09c0\\u09ac\\u09a8\\u09af\\u09be\\u09aa\\u09a8\"}}}]}, {\"id\": \"visionaries\", \"title\": {\"en\": \"Visionaries (Ages 15-18)\", \"bn\": \"\\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8\\u09a6\\u09cd\\u09b0\\u09b7\\u09cd\\u099f\\u09be (\\u09ac\\u09af\\u09bc\\u09b8 \\u09e7\\u09eb-\\u09e7\\u09ee)\"}, \"milestones\": {\"en\": [\"Advanced Fiqh and Finance (Halal\/Haram).\", \"Calculus and Bioethics.\", \"Full-stack development and Robotics.\", \"Entrepreneurship and Career planning.\", \"Global Ummah perspective.\"], \"bn\": [\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ab\\u09bf\\u0995\\u09b9 \\u098f\\u09ac\\u0982 \\u0985\\u09b0\\u09cd\\u09a5\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0 (\\u09b9\\u09be\\u09b2\\u09be\\u09b2\/\\u09b9\\u09be\\u09b0\\u09be\\u09ae)\\u0964\", \"\\u0995\\u09cd\\u09af\\u09be\\u09b2\\u0995\\u09c1\\u09b2\\u09be\\u09b8 \\u098f\\u09ac\\u0982 \\u099c\\u09c0\\u09ac-\\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\\u0964\", \"\\u09ab\\u09c1\\u09b2-\\u09b8\\u09cd\\u099f\\u09cd\\u09af\\u09be\\u0995 \\u09a1\\u09c7\\u09ad\\u09c7\\u09b2\\u09aa\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u098f\\u09ac\\u0982 \\u09b0\\u09cb\\u09ac\\u09cb\\u099f\\u09bf\\u0995\\u09cd\\u09b8\\u0964\", \"\\u0989\\u09a6\\u09cd\\u09af\\u09cb\\u0995\\u09cd\\u09a4\\u09be \\u09b9\\u0993\\u09df\\u09be \\u098f\\u09ac\\u0982 \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be\\u0964\", \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u09aa\\u09cd\\u09b0\\u09c7\\u0995\\u09cd\\u09b7\\u09be\\u09aa\\u099f\\u0964\"]}, \"units\": [{\"id\": \"vis_u1\", \"title\": {\"en\": \"The Council of Ethics\", \"bn\": \"\\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6\"}, \"objectives\": {\"academic\": {\"en\": \"Calculus, Biology, Ethics\", \"bn\": \"\\u0995\\u09cd\\u09af\\u09be\\u09b2\\u0995\\u09c1\\u09b2\\u09be\\u09b8, \\u099c\\u09c0\\u09ac\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u09a8\\u09c0\\u09a4\\u09bf\\u09b6\\u09be\\u09b8\\u09cd\\u09a4\\u09cd\\u09b0\"}, \"spiritual\": {\"en\": \"Islamic Finance, Dawah\", \"bn\": \"\\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09df\\u09a8, \\u09a6\\u09be\\u0993\\u09df\\u09be\\u09b9\"}, \"life_skills\": {\"en\": \"Critical thinking on tech\/finance\", \"bn\": \"\\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\/\\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09df\\u09a8\\u09c7\\u09b0 \\u0993\\u09aa\\u09b0 \\u09b8\\u09ae\\u09be\\u09b2\\u09cb\\u099a\\u09a8\\u09be\\u09ae\\u09c2\\u09b2\\u0995 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be\"}}}, {\"id\": \"vis_u2\", \"title\": {\"en\": \"Future Horizon\", \"bn\": \"\\u09ad\\u09ac\\u09bf\\u09b7\\u09cd\\u09af\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4\"}, \"objectives\": {\"academic\": {\"en\": \"Computer Science, Robotics\", \"bn\": \"\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u09b0\\u09cb\\u09ac\\u09cb\\u099f\\u09bf\\u0995\\u09cd\\u09b8\"}, \"spiritual\": {\"en\": \"Barakah culture in productivity\", \"bn\": \"\\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be\\u09af\\u09bc \\u09ac\\u09b0\\u0995\\u09a4 \\u09b8\\u0982\\u09b8\\u09cd\\u0995\\u09c3\\u09a4\\u09bf\"}, \"life_skills\": {\"en\": \"Career planning, Advanced finance\", \"bn\": \"\\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u09a8\\u09be, \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0985\\u09b0\\u09cd\\u09a5\\u09b8\\u0982\\u09b8\\u09cd\\u09a5\\u09be\\u09a8\"}}}, {\"id\": \"vis_u3\", \"title\": {\"en\": \"The Global Ummah\", \"bn\": \"\\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\"}, \"objectives\": {\"academic\": {\"en\": \"History, Sociology, Cybersecurity\", \"bn\": \"\\u0987\\u09a4\\u09bf\\u09b9\\u09be\\u09b8, \\u09b8\\u09ae\\u09be\\u099c\\u09ac\\u09bf\\u099c\\u09cd\\u099e\\u09be\\u09a8, \\u09b8\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a4\\u09cd\\u09a4\\u09be\"}, \"spiritual\": {\"en\": \"Serving the Ummah, Interfaith dialogue\", \"bn\": \"\\u0989\\u09ae\\u09cd\\u09ae\\u09be\\u09b9\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be, \\u0986\\u09a8\\u09cd\\u09a4\\u0983\\u09a7\\u09b0\\u09cd\\u09ae\\u09c0\\u09af\\u09bc \\u09b8\\u0982\\u09b2\\u09be\\u09aa\"}, \"life_skills\": {\"en\": \"Social media literacy, Global citizenship\", \"bn\": \"\\u09b8\\u09cb\\u09b6\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09bf\\u09a1\\u09bf\\u09af\\u09bc\\u09be \\u09b8\\u09be\\u0995\\u09cd\\u09b7\\u09b0\\u09a4\\u09be, \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac \\u09a8\\u09be\\u0997\\u09b0\\u09bf\\u0995\\u09a4\\u09cd\\u09ac\"}}}, {\"id\": \"vis_u4\", \"title\": {\"en\": \"The Mastery of Self\", \"bn\": \"\\u0986\\u09a4\\u09cd\\u09ae-\\u09b8\\u0982\\u09af\\u09ae \\u0993 \\u09a6\\u0995\\u09cd\\u09b7\\u09a4\\u09be\"}, \"objectives\": {\"academic\": {\"en\": \"Business studies\", \"bn\": \"\\u09ac\\u09cd\\u09af\\u09ac\\u09b8\\u09be\\u09af\\u09bc \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be\"}, \"spiritual\": {\"en\": \"Advanced Tafsir, Personal mission\", \"bn\": \"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09a4\\u09be\\u09ab\\u09b8\\u09c0\\u09b0, \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf\\u0997\\u09a4 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af\"}, \"life_skills\": {\"en\": \"Investing, Entrepreneurship, Resilience\", \"bn\": \"\\u09ac\\u09bf\\u09a8\\u09bf\\u09df\\u09cb\\u0997, \\u0989\\u09a6\\u09cd\\u09af\\u09cb\\u0995\\u09cd\\u09a4\\u09be \\u09b9\\u0993\\u09df\\u09be, \\u09b8\\u09b9\\u09a8\\u09b6\\u09c0\\u09b2\\u09a4\\u09be\"}}}]}]};\n\n        const app = {\n            state: {\n                xp: 0,\n                hearts: 5,\n                lastHeartLoss: null,\n                branch: null,\n                progress: {},\n                theme: 'light',\n                lang: 'en',\n                currentRoadmapTab: 'explorers'\n            },\n            currentNode: null,\n            currentBrief: null,\n            step: 0,\n            recoveryTaps: 10,\n\n            init() {\n                this.load();\n                this.updateUI();\n                if(this.state.branch) this.showScreen('map');\n                this.updateMascot('zaid');\n            },\n\n            setLanguage(l) {\n                this.state.lang = l;\n                this.save();\n                this.updateUI();\n                this.renderParentPortal();\n            },\n\n            openParentPortal() {\n                const pass = prompt(this.state.lang === 'en' ? \"Parental Gate: What is 12 + 15?\" : \"\u0985\u09ad\u09bf\u09ad\u09be\u09ac\u0995 \u0997\u09c7\u099f: \u09e7\u09e8 + \u09e7\u09eb \u0995\u09a4?\");\n                if (pass === \"27\") {\n                    document.getElementById('modal-portal').style.display = 'flex';\n                    this.renderParentPortal();\n                } else {\n                    alert(this.state.lang === 'en' ? \"Incorrect!\" : \"\u09ad\u09c1\u09b2 \u0989\u09a4\u09cd\u09a4\u09b0!\");\n                }\n            },\n\n            closeParentPortal() {\n                document.getElementById('modal-portal').style.display = 'none';\n            },\n\n            renderParentPortal() {\n                const l = this.state.lang;\n                document.getElementById('portal-title').innerText = l === 'en' ? \"Parental Dashboard\" : \"\u0985\u09ad\u09bf\u09ad\u09be\u09ac\u0995 \u09a1\u09cd\u09af\u09be\u09b6\u09ac\u09cb\u09b0\u09cd\u09a1\";\n                document.getElementById('portal-subtitle').innerText = l === 'en' ? \"Tracking the Grand Journey\" : \"\u09ae\u09b9\u09be \u09b8\u09ab\u09b0\u09c7\u09b0 \u0985\u0997\u09cd\u09b0\u0997\u09a4\u09bf \u099f\u09cd\u09b0\u09cd\u09af\u09be\u0995\u09bf\u0982\";\n                document.getElementById('stats-title').innerText = l === 'en' ? \"Progress Overview\" : \"\u0985\u0997\u09cd\u09b0\u0997\u09a4\u09bf\u09b0 \u09b8\u0982\u0995\u09cd\u09b7\u09bf\u09aa\u09cd\u09a4 \u09ac\u09bf\u09ac\u09b0\u09a3\";\n                document.getElementById('tree-title').innerText = l === 'en' ? \"Growth Tree\" : \"\u09ac\u09c3\u09a6\u09cd\u09a7\u09bf\u09b0 \u09ac\u09c3\u0995\u09cd\u09b7\";\n                document.getElementById('roadmap-section-title').innerText = roadmapData.title[l];\n                document.getElementById('roadmap-intro').innerText = roadmapData.introduction[l];\n                \n                document.getElementById('lang-en').className = 'lang-btn' + (l === 'en' ? ' active' : '');\n                document.getElementById('lang-bn').className = 'lang-btn' + (l === 'bn' ? ' active' : '');\n\n                const sectors = [\n                    { id: 'isl', label: {en: 'Islamic Knowledge', bn: '\u0987\u09b8\u09b2\u09be\u09ae\u09bf\u0995 \u099c\u09cd\u099e\u09be\u09a8'}, color: '#27AE60' },\n                    { id: 'acad', label: {en: 'Academic Excellence', bn: '\u098f\u0995\u09be\u09a1\u09c7\u09ae\u09bf\u0995 \u09b6\u09cd\u09b0\u09c7\u09b7\u09cd\u09a0\u09a4\u09cd\u09ac'}, color: '#4A90E2' },\n                    { id: 'stem', label: {en: 'STEM & Coding', bn: '\u09b8\u09cd\u099f\u09c7\u09ae \u0993 \u0995\u09cb\u09a1\u09bf\u0982'}, color: '#F1C40F' },\n                    { id: 'life', label: {en: 'Life Skills', bn: '\u099c\u09c0\u09ac\u09a8 \u09a6\u0995\u09cd\u09b7\u09a4\u09be'}, color: '#E67E22' }\n                ];\n\n                const statsContainer = document.getElementById('portal-stats-container');\n                statsContainer.innerHTML = '';\n                \n                sectors.forEach(s => {\n                    let completed = 0;\n                    let total = 0;\n                    if (this.state.branch) {\n                        curriculum[this.state.branch].units.forEach(u => {\n                            u.nodes.forEach(n => {\n                                total++;\n                                if(this.state.progress[n.id] === 'completed') completed++;\n                            });\n                        });\n                    }\n                    const percent = total > 0 ? Math.round((completed\/total)*100) : 0;\n                    \n                    const row = document.createElement('div');\n                    row.className = 'category-row';\n                    row.innerHTML = `\n                        <div class=\"category-info\">\n                            <span>${s.label[l]}<\/span>\n                            <span>${percent}%<\/span>\n                        <\/div>\n                        <div class=\"progress-bar-bg\">\n                            <div class=\"progress-bar-fill\" style=\"width: ${percent}%; background: ${s.color};\"><\/div>\n                        <\/div>\n                    `;\n                    statsContainer.appendChild(row);\n                });\n\n                const totalCompleted = Object.keys(this.state.progress).length;\n                document.getElementById('leaf-1').style.opacity = totalCompleted > 2 ? \"1\" : \"0.3\";\n                document.getElementById('leaf-2').style.opacity = totalCompleted > 5 ? \"1\" : \"0.3\";\n                document.getElementById('leaf-3').style.opacity = totalCompleted > 10 ? \"1\" : \"0.3\";\n\n                const tabsContainer = document.getElementById('roadmap-tabs');\n                tabsContainer.innerHTML = '';\n                roadmapData.age_groups.forEach(ag => {\n                    const btn = document.createElement('button');\n                    btn.className = 'roadmap-tab' + (this.state.currentRoadmapTab === ag.id ? ' active' : '');\n                    btn.innerText = ag.title[l];\n                    btn.onclick = () => {\n                        this.state.currentRoadmapTab = ag.id;\n                        this.renderParentPortal();\n                    };\n                    tabsContainer.appendChild(btn);\n                });\n\n                if (!this.state.currentRoadmapTab) this.state.currentRoadmapTab = 'explorers';\n                this.renderRoadmap(this.state.currentRoadmapTab);\n            },\n\n            renderRoadmap(id) {\n                const l = this.state.lang;\n                const ag = roadmapData.age_groups.find(x => x.id === id);\n                const content = document.getElementById('roadmap-content');\n                content.innerHTML = `\n                    <h4 style=\"margin-bottom:10px;\">${l === 'en' ? 'Target Milestones' : '\u09b2\u0995\u09cd\u09b7\u09cd\u09af\u09b8\u09ae\u09c2\u09b9'}:<\/h4>\n                    <ul class=\"milestone-list\">\n                        ${ag.milestones[l].map(m => `<li>${m}<\/li>`).join('')}\n                    <\/ul>\n                    <h4 style=\"margin-top:20px; margin-bottom:10px;\">${l === 'en' ? 'Curriculum Units' : '\u0995\u09be\u09b0\u09bf\u0995\u09c1\u09b2\u09be\u09ae \u0985\u09a7\u09cd\u09af\u09be\u09af\u09bc'}:<\/h4>\n                    <table class=\"units-table\">\n                        <thead>\n                            <tr>\n                                <th>${l === 'en' ? 'Unit' : '\u0985\u09a7\u09cd\u09af\u09be\u09af\u09bc'}<\/th>\n                                <th>${l === 'en' ? 'Objectives' : '\u0989\u09a6\u09cd\u09a6\u09c7\u09b6\u09cd\u09af\u09b8\u09ae\u09c2\u09b9'}<\/th>\n                            <\/tr>\n                        <\/thead>\n                        <tbody>\n                            ${ag.units.map(u => `\n                                <tr>\n                                    <td><strong>${u.title[l]}<\/strong><\/td>\n                                    <td>\n                                        <span class=\"tag tag-acad\">Acad<\/span> ${u.objectives.academic[l]}<br>\n                                        <span class=\"tag tag-spir\">Spir<\/span> ${u.objectives.spiritual[l]}<br>\n                                        <span class=\"tag tag-life\">Life<\/span> ${u.objectives.life_skills[l]}\n                                    <\/td>\n                                <\/tr>\n                            `).join('')}\n                        <\/tbody>\n                    <\/table>\n                `;\n            },\n\n            load() {{\n                const saved = localStorage.getItem('mkl_ultimate_juice_state');\n                if (saved) Object.assign(this.state, JSON.parse(saved));\n                this.checkRecovery();\n            }},\n\n            save() {{\n                localStorage.setItem('mkl_ultimate_juice_state', JSON.stringify(this.state));\n            }},\n\n            checkRecovery() {{\n                if (this.state.hearts < 5 &#038;&#038; this.state.lastHeartLoss) {{\n                    const diff = Date.now() - this.state.lastHeartLoss;\n                    const hours = Math.floor(diff \/ (1000 * 60 * 60));\n                    if (hours > 0) {{\n                        this.state.hearts = Math.min(5, this.state.hearts + hours);\n                        this.state.lastHeartLoss = this.state.hearts < 5 ? Date.now() : null;\n                        this.save();\n                    }}\n                }}\n            }},\n\n            toggleTheme() {{\n                this.state.theme = this.state.theme === 'light' ? 'dark' : 'light';\n                this.updateUI();\n                this.save();\n            }},\n\n            updateUI() {{\n                document.getElementById('stat-xp').innerText = this.state.xp.toLocaleString() + ' XP';\n                document.getElementById('stat-hearts').innerText = this.state.hearts;\n                document.body.setAttribute('data-theme', this.state.theme);\n                \n                if (this.state.branch) {{\n                    const isOld = this.state.branch === 'leaders' || this.state.branch === 'visionaries';\n                    this.updateMascot(isOld ? 'zaynab' : 'zaid');\n                }}\n            }},\n\n            updateMascot(type) {{\n                const html = mascotAssets[type];\n                document.getElementById('floating-mascot').innerHTML = html;\n                document.getElementById('brief-mascot').innerHTML = html;\n            }},\n\n            showScreen(id) {{\n                const screens = ['landing', 'map', 'game', 'recovery'];\n                screens.forEach(s => {{\n                    document.getElementById('screen-' + s).style.display = (s === id) ? 'flex' : 'none';\n                }});\n                document.getElementById('app-header').style.display = (id === 'landing') ? 'none' : 'flex';\n                document.getElementById('mascot-speaker').style.display = (id === 'game' || id === 'recovery') ? 'none' : 'flex';\n                \n                if (id === 'map') {{\n                    this.renderMap();\n                    window.scrollTo(0, 0);\n                    this.updateEnvironment();\n                }} else if (id === 'game') {{\n                    this.updateEnvironment(true);\n                }} else {{\n                    document.body.style.background = '#85C1E9';\n                    this.clearEnvironment();\n                }}\n            }},\n\n            clearEnvironment() {{\n                document.getElementById('clouds-layer').innerHTML = '';\n                document.getElementById('stars-layer').innerHTML = '';\n                document.getElementById('torches-layer').innerHTML = '';\n                document.getElementById('grid-layer').style.opacity = 0;\n            }},\n\n            updateEnvironment(isGame = false) {{\n                this.clearEnvironment();\n                if (!this.state.branch) return;\n\n                const themes = {{\n                    explorers: {{ bg: 'linear-gradient(to bottom, #85C1E9 0%, #D5F5E3 100%)', env: 'clouds' }},\n                    achievers: {{ bg: 'radial-gradient(circle at 50% 50%, #5DADE2 0%, #2E86C1 100%)', env: 'torches' }},\n                    leaders: {{ bg: 'linear-gradient(135deg, #1B2631 0%, #21618C 100%)', env: 'stars' }},\n                    visionaries: {{ bg: '#0B0C10', env: 'grid' }}\n                }};\n\n                const theme = themes[this.state.branch];\n                document.body.style.background = theme.bg;\n\n                if (theme.env === 'clouds') {{\n                    for(let i=0; i<5; i++) {{\n                        const c = document.createElement('div');\n                        c.className = 'cloud';\n                        c.style.top = (Math.random() * 80) + '%';\n                        c.style.animationDelay = (Math.random() * 20) + 's';\n                        c.style.transform = `scale(${{0.5 + Math.random()}})`;\n                        document.getElementById('clouds-layer').appendChild(c);\n                    }}\n                }} else if (theme.env === 'stars') {{\n                    for(let i=0; i<100; i++) {{\n                        const s = document.createElement('div');\n                        s.className = 'star';\n                        s.style.left = (Math.random() * 100) + '%';\n                        s.style.top = (Math.random() * 100) + '%';\n                        s.style.animationDelay = (Math.random() * 5) + 's';\n                        document.getElementById('stars-layer').appendChild(s);\n                    }}\n                }} else if (theme.env === 'torches') {{\n                    const t1 = document.createElement('div'); t1.className = 'torch'; t1.style.left = '5%'; t1.style.top = '10%';\n                    const t2 = document.createElement('div'); t2.className = 'torch'; t2.style.right = '5%'; t2.style.top = '30%';\n                    document.getElementById('torches-layer').appendChild(t1);\n                    document.getElementById('torches-layer').appendChild(t2);\n                }} else if (theme.env === 'grid') {{\n                    document.getElementById('grid-layer').style.opacity = 1;\n                }}\n            }},\n\n            selectBranch(b) {{\n                this.state.branch = b;\n                this.save();\n                this.updateUI();\n                this.showScreen('map');\n                this.mascotTalk(\"Bismillah! Let's start our journey in \" + b + \"!\");\n            }},\n\n            renderMap() {{\n                const container = document.getElementById('nodes-container');\n                container.innerHTML = '';\n                const branchData = curriculum[this.state.branch];\n                let foundCurrent = false;\n\n                branchData.units.forEach(unit => {{\n                    const unitDiv = document.createElement('div');\n                    unitDiv.className = 'unit-section';\n                    unitDiv.innerHTML = `<div class=\"unit-header\">${{unit.title}}<\/div>`;\n                    \n                    unit.nodes.forEach((node, idx) => {{\n                        let status = 'locked';\n                        if (this.state.progress[node.id] === 'completed') status = 'active';\n                        else if (!foundCurrent) {{ status = 'current'; foundCurrent = true; }}\n\n                        const nodeEl = document.createElement('div');\n                        nodeEl.className = `island-node ${{status}}`;\n                        const offset = (idx % 2 === 0) ? '-60px' : '60px';\n                        if(window.innerWidth > 500) nodeEl.style.marginLeft = offset;\n\n                        nodeEl.innerHTML = `\n                            <span class=\"island-icon\">${{node.icon || '\ud83c\udfdd\ufe0f'}}<\/span>\n                            <div class=\"island-label\">${{node.title}}<\/div>\n                        `;\n                        nodeEl.onclick = (e) => this.handleNodeClick(node, status, e);\n                        unitDiv.appendChild(nodeEl);\n                    }});\n                    container.appendChild(unitDiv);\n                }});\n            }},\n\n            handleNodeClick(node, status, e) {{\n                if (status === 'locked') {{\n                    this.mascotTalk(\"This island is still a mystery! Complete previous tasks first.\");\n                    return;\n                }}\n                this.currentBrief = node;\n                document.getElementById('brief-title').innerText = node.title;\n                document.getElementById('brief-text').innerText = node.mission_brief || \"Start this challenge!\";\n                document.getElementById('modal-brief').style.display = 'flex';\n                this.haptic(e.currentTarget);\n            }},\n\n            startMission() {{\n                document.getElementById('modal-brief').style.display = 'none';\n                if (this.state.hearts <= 0) {{\n                    this.showScreen('recovery');\n                    return;\n                }}\n                this.currentNode = this.currentBrief;\n                this.step = 0;\n                this.showScreen('game');\n                this.renderStep();\n            }},\n\n            renderStep() {{\n                const content = document.getElementById('game-content');\n                const progress = document.getElementById('game-progress');\n                const n = this.currentNode;\n                const data = n.data;\n                \n                let total = 1;\n                if (data.questions) total = data.questions.length;\n                else if (data.items) total = data.items.length;\n                else if (data.pairs) total = data.pairs.length;\n                else if (data.sequence) total = data.sequence.length;\n\n                progress.style.width = `${{(this.step \/ total) * 100}}%`;\n\n                if (n.mechanic === 'Quiz') {{\n                    const q = data.questions[this.step];\n                    content.innerHTML = `\n                        <h2 class=\"question-title\">${{q.text}}<\/h2>\n                        <div class=\"options-list\">\n                            ${{q.options.map((o, i) => `<button class=\"opt-btn\" onclick=\"app.checkQuiz(${{i}})\">${{o}}<\/button>`).join('')}}\n                        <\/div>\n                    `;\n                }} else if (n.mechanic === 'Reveal' || n.mechanic === 'Sim' || n.mechanic === 'Memory') {{\n                    const item = data.items[this.step];\n                    const label = typeof item === 'string' ? item : (item.label || item.q || 'Discovery');\n                    const info = typeof item === 'string' ? \"SubhanAllah!\" : (item.reveal || item.info);\n                    const icon = item.icon || n.icon || '\u2728';\n                    \n                    content.innerHTML = `\n                        <h2 class=\"question-title\">${{label}}<\/h2>\n                        <div class=\"island-node active\" style=\"margin: 50px auto; width: 160px; height: 110px;\">\n                            <span class=\"island-icon\">${{icon}}<\/span>\n                        <\/div>\n                        <button class=\"btn-juicy\" onclick=\"app.handleReveal('${{info.replace(\/'\/g, \"\\'\")}}')\">Explore<\/button>\n                        <div id=\"reveal-text\" style=\"display:none; margin-top:30px; font-size:1.8rem; font-weight:900; color:var(--secondary-green); animation: fadeIn 0.4s;\">${{info}}<\/div>\n                    `;\n                }} else if (n.mechanic === 'DragDrop') {{\n                    const p = data.pairs[this.step];\n                    content.innerHTML = `\n                        <h2 class=\"question-title\">Match the Knowledge!<\/h2>\n                        <div style=\"display:flex; flex-direction:column; align-items:center; gap:30px;\">\n                            <div class=\"drag-box\" draggable=\"true\" ondragstart=\"event.dataTransfer.setData('text', 'match')\">\n                                ${{p.label}}\n                            <\/div>\n                            <div style=\"font-size: 3rem; animation: float 2s infinite;\">\ud83d\udc47<\/div>\n                            <div class=\"drop-zone\" ondragover=\"event.preventDefault(); this.classList.add('over')\" ondragleave=\"this.classList.remove('over')\" ondrop=\"this.classList.remove('over'); app.handleDrop(event)\">\n                                Match with: <br><strong style=\"color:var(--accent-orange); font-size:2rem;\">${{p.match}}<\/strong>\n                            <\/div>\n                        <\/div>\n                    `;\n                }} else if (n.mechanic === 'Sequence') {{\n                    const target = data.sequence[this.step];\n                    content.innerHTML = `\n                        <h2 class=\"question-title\">Follow the Order!<\/h2>\n                        <p style=\"font-size: 1.8rem; margin-bottom: 30px; font-weight:800;\">Next: <strong style=\"color:var(--accent-orange);\">${{target}}<\/strong><\/p>\n                        <div class=\"options-list\" style=\"flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px;\">\n                            ${{data.sequence.map((item) => `<button class=\"opt-btn\" style=\"width:100px; height:100px; justify-content:center; padding:0; font-size:2.5rem;\" onclick=\"app.checkSequence('${{item}}', event)\">${{item}}<\/button>`).join('')}}\n                        <\/div>\n                    `;\n                }}\n            }},\n\n            checkQuiz(idx) {{\n                if (document.getElementById('footer-feedback').classList.contains('active')) return;\n                const q = this.currentNode.data.questions[this.step];\n                const isCorrect = idx === q.correctIndex;\n                const btns = document.querySelectorAll('.opt-btn');\n                btns.forEach(b => b.classList.add('disabled'));\n\n                if (isCorrect) {{\n                    btns[idx].classList.add('correct');\n                    this.showFeedback(true, \"MashaAllah! Correct!\", q.fact || this.currentNode.data.fact || \"Great job!\");\n                    this.spawnStars(event.clientX, event.clientY);\n                }} else {{\n                    btns[idx].classList.add('wrong');\n                    btns[q.correctIndex].classList.add('correct');\n                    this.loseHeart();\n                    this.showFeedback(false, \"Keep Trying!\", \"Don't worry, every mistake is a chance to learn!\");\n                    this.vfxFail();\n                }}\n            }},\n\n            handleReveal(info) {{\n                document.getElementById('reveal-text').style.display = 'block';\n                this.showFeedback(true, \"Knowledge Unlocked!\", this.currentNode.data.fact || \"SubhanAllah!\");\n                this.spawnStars(window.innerWidth\/2, window.innerHeight\/2);\n            }},\n\n            handleDrop(e) {{\n                e.preventDefault();\n                const data = e.dataTransfer.getData(\"text\");\n                if (data === \"match\") {{\n                    this.showFeedback(true, \"Perfect Match!\", this.currentNode.data.fact || \"Well done!\");\n                    this.spawnStars(e.clientX, e.clientY);\n                }} else {{\n                    this.loseHeart();\n                    this.vfxFail();\n                }}\n            }},\n\n            checkSequence(item, e) {{\n                const target = this.currentNode.data.sequence[this.step];\n                if (item === target) {{\n                    e.target.classList.add('correct');\n                    this.showFeedback(true, \"Correct Sequence!\", \"Keep going!\");\n                    this.spawnStars(e.clientX, e.clientY);\n                }} else {{\n                    e.target.classList.add('wrong');\n                    this.loseHeart();\n                    this.vfxFail();\n                }}\n            }},\n\n            loseHeart() {{\n                this.state.hearts = Math.max(0, this.state.hearts - 1);\n                this.state.lastHeartLoss = Date.now();\n                this.save(); this.updateUI();\n            }},\n\n            showFeedback(isCorrect, title, fact) {{\n                const f = document.getElementById('footer-feedback');\n                f.className = 'footer-bar active ' + (isCorrect ? 'correct' : 'wrong');\n                document.getElementById('feedback-status').innerText = title;\n                document.getElementById('feedback-fact').innerText = fact;\n            }},\n\n            nextStep() {{\n                document.getElementById('footer-feedback').classList.remove('active');\n                this.step++;\n                const n = this.currentNode;\n                const data = n.data;\n                let total = 1;\n                if (data.questions) total = data.questions.length;\n                else if (data.items) total = data.items.length;\n                else if (data.pairs) total = data.pairs.length;\n                else if (data.sequence) total = data.sequence.length;\n\n                if (this.step < total) {{\n                    this.renderStep();\n                }} else {{\n                    this.completeNode();\n                }}\n            }},\n\n            completeNode() {{\n                this.state.xp += 100;\n                this.state.progress[this.currentNode.id] = 'completed';\n                this.save();\n                this.updateUI();\n                \n                let badgeType = \"explorer\";\n                if(this.state.branch === \"achievers\") badgeType = \"smarty\";\n                if(this.state.branch === \"leaders\") badgeType = \"master\";\n                if(this.state.branch === \"visionaries\") badgeType = \"visionary\";\n                \n                document.getElementById('badge-display').innerHTML = badgeAssets[badgeType];\n                document.getElementById('mashaallah-modal').style.display = 'flex';\n                this.spawnStars(window.innerWidth\/2, window.innerHeight\/2, 60);\n            }},\n\n            closeMashaAllah() {{\n                document.getElementById('mashaallah-modal').style.display = 'none';\n                this.showScreen('map');\n            }},\n\n            tapTasbih(el) {{\n                this.recoveryTaps--;\n                document.getElementById('recovery-taps').innerText = `Taps: ${{this.recoveryTaps}}`;\n                this.haptic(el);\n                if (this.recoveryTaps <= 0) {{\n                    this.state.hearts = Math.min(5, this.state.hearts + 1);\n                    this.recoveryTaps = 10;\n                    this.save(); this.updateUI();\n                    this.showScreen('map');\n                    this.mascotTalk(\"Energy restored! Ready for more learning?\");\n                }}\n            }},\n\n            spawnStars(x, y, count = 30) {{\n                for(let i=0; i<count; i++) {{\n                    const star = document.createElement('div');\n                    star.className = 'vfx-star';\n                    star.innerHTML = '\u2b50';\n                    star.style.left = x + 'px';\n                    star.style.top = y + 'px';\n                    star.style.fontSize = (Math.random() * 20 + 20) + 'px';\n                    \n                    const tx = (Math.random() - 0.5) * 600;\n                    const ty = (Math.random() - 0.5) * 600;\n                    const rot = Math.random() * 360;\n                    \n                    star.style.setProperty('--tx', tx + 'px');\n                    star.style.setProperty('--ty', ty + 'px');\n                    star.style.setProperty('--rot', rot + 'deg');\n                    \n                    document.body.appendChild(star);\n                    setTimeout(() => star.remove(), 1000);\n                }}\n            }},\n\n            vfxFail() {{\n                document.body.classList.add('screen-shake');\n                setTimeout(() => document.body.classList.remove('screen-shake'), 500);\n            }},\n\n            haptic(el) {{\n                el.style.transform = 'scale(0.9) translateY(10px)';\n                setTimeout(() => el.style.transform = '', 100);\n            }},\n\n            mascotTalk(text) {{\n                const bubble = document.getElementById('speech-bubble');\n                const lines = [\n                    \"You are doing amazing! Keep learning!\",\n                    \"MashaAllah, your focus is great!\",\n                    \"Every step you take to learn is a reward.\",\n                    \"The world needs smart leaders like you!\",\n                    \"Learning is the path to wisdom!\",\n                    \"SubhanAllah! You're getting so smart!\"\n                ];\n                bubble.innerText = text || lines[Math.floor(Math.random() * lines.length)];\n                bubble.classList.add('active');\n                setTimeout(() => bubble.classList.remove('active'), 4000);\n            }}\n        }};\n\n        window.onload = () => app.init();\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>!DOCTYPE html> Muslim Kids Learning &#8211; The Grand Journey (Ultimate Juice Edition) \ud83c\udf13 \ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66 Parents 5 0 \ud83c\udf19 Grand Journey The Ultimate Immersive Learning Quest Explorers Ages 3-6 Achievers Ages 7-10 Leaders Ages 11-14 Visionaries Ages 15-18 \u00d7 Dua &#038; Focus \ud83e\udd32 Recite &#8216;SubhanAllah&#8217; as you tap the Tasbih to regain energy. \ud83d\udcff Taps: 10&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-855","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/pages\/855","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/comments?post=855"}],"version-history":[{"count":1,"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/pages\/855\/revisions"}],"predecessor-version":[{"id":856,"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/pages\/855\/revisions\/856"}],"wp:attachment":[{"href":"https:\/\/kahfkids.com\/blog\/wp-json\/wp\/v2\/media?parent=855"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}