Enrolment options

Step into the world of economic thinking with our interactive, trivia-based course designed specifically for Grade 10 students on the K4B platform! This innovative course turns the complexities of economics into an exciting adventure, where every trivia question helps you understand fundamental concepts—from market dynamics and consumer behavior to the global economy and fiscal policies.

 

        

 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-Frame-Options" content="ALLOWALL" />
    <title>Combined Quiz Variants</title>
    <style>
        @keyframes gradientBackground {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradientBackground 15s ease infinite;
            margin: 0;
            padding: 0;
            max-width: 600px;
            margin: auto;
        }
        .global-nav {
            text-align: center;
            background-color: #2f3e46;
            padding: 10px;
        }
        .global-nav button {
            padding: 10px 20px;
            margin: 0 5px;
            border: none;
            background-color: #4285F4;
            color: white;
            cursor: pointer;
            border-radius: 4px;
            font-size: 1em;
        }
        .global-nav button:disabled {
            background-color: #aaa;
            cursor: not-allowed;
        }
        .global-nav a {
            padding: 10px 20px;
            margin: 0 5px;
            border: none;
            background-color: #34A853;
            color: white;
            cursor: pointer;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1em;
        }
        .page {
            display: none;
            padding: 20px;
            border: 3px solid #333;
            border-radius: 10px;
            margin: 10px;
            background-color: rgba(255, 255, 255, 0.9);
        }
        .instructions {
            text-align: center;
            padding: 15px;
            border: 2px dashed #333;
            margin: 10px;
            background-color: #fff;
            border-radius: 8px;
        }
        h1 {
            font-size: 2em;
            text-align: center;
            color: #fff;
        }
        h2 {
            font-size: 1.75em;
            margin-bottom: 10px;
            color: #333;
        }
        h3 {
            font-size: 1.5em;
        }
        .options label {
            font-size: 1.2em;
            padding: 12px;
        }
        .feedback {
            font-size: 1.3em;
        }
        .timer {
            font-size: 1.3em;
        }
    </style>
</head>
<body>
    <h2>Trivia Quiz</h2>
    
    <div class="instructions">
      <h2>Trivia Instructions</h2>
      <p>Welcome to our trivia quiz! You will be presented with a series of multiple-choice questions.
         Each question has a 30-second timer. Select the correct answer and receive immediate feedback.
         Once you finalize a variant by completing all questions, you may proceed to the next variant.
         Good luck and have fun!</p>
    </div>
    
    <div class="global-nav">
        <button id="prev-variant" disabled>Previous Variant</button>
        <span id="variant-indicator" style="color:#fff; font-size:1.2em;">Variant 1 of 5</span>
        <button id="next-variant" disabled>Next Variant</button>
        <a id="fullscreen-btn" href="#" onclick="toggleFullScreen(); return false;">Full Screen</a>
    </div>
    
    <div class="page" id="page-1" style="display:none;">
      <div id="timer-1" class="timer">Time Remaining: 30 seconds</div>
      <div id="quiz-container-1" class="quiz-container"></div>
      <div style="text-align: center; margin-top:20px;">
          <button id="next-btn-1" class="next-btn" disabled>Next Trial</button>
      </div>
      <div id="final-message-1" class="final-message" style="display: none;"></div>
      <script>
          (function(){
              const quizData = [
    {
        "title": "U44_New_Q9",
        "question": "What is one major disadvantage of a command economy?",
        "options": [
            {
                "text": "It can lead to inefficiencies, resource misallocation, and shortages due to the lack of market signals.",
                "feedback": "Correct! Central planning often causes inefficiencies.",
                "is_correct": true
            },
            {
                "text": "It always results in higher innovation.",
                "feedback": "Incorrect! Innovation may be stifled.",
                "is_correct": false
            },
            {
                "text": "It guarantees low unemployment rates.",
                "feedback": "Incorrect! Employment issues can persist.",
                "is_correct": false
            },
            {
                "text": "It eliminates all forms of economic inequality.",
                "feedback": "Incorrect! Inequality can still exist.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q7",
        "question": "What does \u201cforeign direct investment\u201d (FDI) typically provide to a developing country?",
        "options": [
            {
                "text": "Capital, technology, and managerial expertise that can spur economic growth and job creation.",
                "feedback": "Correct! FDI is a major growth catalyst.",
                "is_correct": true
            },
            {
                "text": "Only short-term loans without technology transfer.",
                "feedback": "Incorrect! FDI is long-term.",
                "is_correct": false
            },
            {
                "text": "A reduction in local entrepreneurship.",
                "feedback": "Incorrect! It often stimulates local business.",
                "is_correct": false
            },
            {
                "text": "A guarantee of immediate economic prosperity.",
                "feedback": "Incorrect! Benefits develop over time.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q2",
        "question": "How does a command economy allocate resources?",
        "options": [
            {
                "text": "Through centralized planning where the government determines production and distribution.",
                "feedback": "Correct! Central planning directs resource allocation.",
                "is_correct": true
            },
            {
                "text": "Through decentralized market forces.",
                "feedback": "Incorrect! That describes market economies.",
                "is_correct": false
            },
            {
                "text": "By random distribution among citizens.",
                "feedback": "Incorrect! There is systematic planning.",
                "is_correct": false
            },
            {
                "text": "Via voluntary private enterprise exclusively.",
                "feedback": "Incorrect! That is a market approach.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q1",
        "question": "Which economic system is characterized by free-market principles and minimal government control?",
        "options": [
            {
                "text": "A market economy.",
                "feedback": "Correct! Market economies are driven by supply and demand.",
                "is_correct": true
            },
            {
                "text": "A command economy.",
                "feedback": "Incorrect! Command economies are government-controlled.",
                "is_correct": false
            },
            {
                "text": "A mixed economy.",
                "feedback": "Incorrect! Mixed combines elements.",
                "is_correct": false
            },
            {
                "text": "A traditional economy.",
                "feedback": "Incorrect! Traditional economies rely on customs.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q8",
        "question": "How does economic globalization affect domestic economies?",
        "options": [
            {
                "text": "It integrates national economies into a global network, encouraging trade, investment, and the exchange of ideas, which can lead to growth and competition.",
                "feedback": "Correct! Globalization interconnects markets.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic markets completely.",
                "feedback": "Incorrect! It opens markets.",
                "is_correct": false
            },
            {
                "text": "It removes all cultural influences from economic activity.",
                "feedback": "Incorrect! Culture remains influential.",
                "is_correct": false
            },
            {
                "text": "It prevents technological transfer.",
                "feedback": "Incorrect! Globalization often accelerates it.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q11",
        "question": "How can government policies help reduce economic inequality?",
        "options": [
            {
                "text": "By implementing progressive taxation, social welfare programs, and investing in education and healthcare to redistribute wealth.",
                "feedback": "Correct! Policies can address disparities.",
                "is_correct": true
            },
            {
                "text": "By eliminating all taxes on high incomes.",
                "feedback": "Incorrect! That would increase inequality.",
                "is_correct": false
            },
            {
                "text": "By reducing public spending on social services.",
                "feedback": "Incorrect! That worsens inequality.",
                "is_correct": false
            },
            {
                "text": "By exclusively promoting private monopolies.",
                "feedback": "Incorrect! That reduces competition.\n\n::U44_New_Q12:: What is the main function of the \u201cHuman Development Index\u201d (HDI)? {",
                "is_correct": false
            },
            {
                "text": "To measure overall human development, incorporating health, education, and income indicators.",
                "feedback": "Correct! HDI is a composite development indicator.",
                "is_correct": true
            },
            {
                "text": "To solely calculate a country\u2019s GDP.",
                "feedback": "Incorrect! GDP is only one economic measure.",
                "is_correct": false
            },
            {
                "text": "To assess only the technological progress of a nation.",
                "feedback": "Incorrect! HDI is broader.",
                "is_correct": false
            },
            {
                "text": "To determine the total population size.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q13:: Which economic indicator reflects the standard of living of a country\u2019s citizens? {",
                "is_correct": false
            },
            {
                "text": "GDP per capita, which divides total GDP by the population.",
                "feedback": "Correct! It approximates average income.",
                "is_correct": true
            },
            {
                "text": "Total GDP.",
                "feedback": "Incorrect! That does not account for population.",
                "is_correct": false
            },
            {
                "text": "The unemployment rate exclusively.",
                "feedback": "Incorrect! That is one aspect.",
                "is_correct": false
            },
            {
                "text": "The dependency ratio.",
                "feedback": "Incorrect! That measures age structure.\n\n::U44_New_Q14:: What does \u201csustainable economic development\u201d require? {",
                "is_correct": false
            },
            {
                "text": "An approach that balances growth, environmental stewardship, and social inclusion to ensure long-term prosperity.",
                "feedback": "Correct! Sustainability integrates all three pillars.",
                "is_correct": true
            },
            {
                "text": "Unlimited resource extraction.",
                "feedback": "Incorrect! That is unsustainable.",
                "is_correct": false
            },
            {
                "text": "A sole focus on economic growth.",
                "feedback": "Incorrect! Environmental and social aspects are essential.",
                "is_correct": false
            },
            {
                "text": "The elimination of all market competition.",
                "feedback": "Incorrect! Competition is important.\n\n::U44_New_Q15:: Which statement best describes the economic organization of the world? {",
                "is_correct": false
            },
            {
                "text": "It is an interconnected system where national economies participate in global trade, investment, and financial markets.",
                "feedback": "Correct! Global interdependence is key.",
                "is_correct": true
            },
            {
                "text": "It consists of completely isolated national economies.",
                "feedback": "Incorrect! Isolation is rare.",
                "is_correct": false
            },
            {
                "text": "It is dominated by a single world government controlling all economic activity.",
                "feedback": "Incorrect! No such government exists.",
                "is_correct": false
            },
            {
                "text": "It is static and unchanging over time.",
                "feedback": "Incorrect! Global economics are dynamic.\n\n::U44_New_Q16:: How do technological innovations drive economic development? {",
                "is_correct": false
            },
            {
                "text": "They improve productivity, create new industries, and enhance the efficiency of existing sectors, leading to overall growth.",
                "feedback": "Correct! Innovation is a growth engine.",
                "is_correct": true
            },
            {
                "text": "They only benefit the technology sector, not the broader economy.",
                "feedback": "Incorrect! Their impact is widespread.",
                "is_correct": false
            },
            {
                "text": "They have no effect on the quality of products.",
                "feedback": "Incorrect! They often improve quality.",
                "is_correct": false
            },
            {
                "text": "They reduce the need for skilled labor entirely.",
                "feedback": "Incorrect! They shift, rather than eliminate, labor needs.\n\n::U44_New_Q17:: What is \u201ceconomic inequality\u201d and why is it significant? {",
                "is_correct": false
            },
            {
                "text": "It refers to the unequal distribution of income and wealth, which can hinder social cohesion and sustainable development.",
                "feedback": "Correct! Inequality is a major challenge.",
                "is_correct": true
            },
            {
                "text": "It indicates that everyone earns the same income.",
                "feedback": "Incorrect! That is equality.",
                "is_correct": false
            },
            {
                "text": "It only affects developing countries.",
                "feedback": "Incorrect! It is a global issue.",
                "is_correct": false
            },
            {
                "text": "It is solely measured by the difference in ages.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q18:: How can foreign direct investment (FDI) stimulate economic development? {",
                "is_correct": false
            },
            {
                "text": "By introducing capital, advanced technology, and management expertise, which can boost local industries and employment.",
                "feedback": "Correct! FDI can transform economies.",
                "is_correct": true
            },
            {
                "text": "By causing a complete loss of domestic control over industries.",
                "feedback": "Incorrect! FDI generally complements local enterprise.",
                "is_correct": false
            },
            {
                "text": "By reducing the overall competitiveness of the market.",
                "feedback": "Incorrect! It usually increases competition.",
                "is_correct": false
            },
            {
                "text": "By exclusively focusing on short-term profit.",
                "feedback": "Incorrect! FDI is often long-term.\n\n::U44_New_Q19:: What does \u201ceconomic globalization\u201d imply? {",
                "is_correct": false
            },
            {
                "text": "The increasing integration and interdependence of national economies through international trade, investment, and information exchange.",
                "feedback": "Correct! Globalization connects nations.",
                "is_correct": true
            },
            {
                "text": "The isolation of individual economies from each other.",
                "feedback": "Incorrect! It is the opposite.",
                "is_correct": false
            },
            {
                "text": "The dissolution of all economic borders permanently.",
                "feedback": "Incorrect! Borders remain, but trade increases.",
                "is_correct": false
            },
            {
                "text": "A complete shutdown of domestic industries.",
                "feedback": "Incorrect! Globalization encourages both domestic and international activity.\n\n::U44_New_Q20:: Which factor is most critical for ensuring long-term sustainable development? {",
                "is_correct": false
            },
            {
                "text": "Balancing economic growth with the conservation of natural resources and social equity.",
                "feedback": "Correct! Sustainability requires a balanced approach.",
                "is_correct": true
            },
            {
                "text": "Maximizing short-term industrial output regardless of environmental costs.",
                "feedback": "Incorrect! That undermines sustainability.",
                "is_correct": false
            },
            {
                "text": "Focusing solely on economic indicators like GDP.",
                "feedback": "Incorrect! Broader measures are needed.",
                "is_correct": false
            },
            {
                "text": "Ignoring cultural and social factors.",
                "feedback": "Incorrect! Social inclusion is vital.\n\n::U44_New_Q21:: What is the role of international trade in economic development? {",
                "is_correct": false
            },
            {
                "text": "It expands markets, promotes competition, and facilitates the transfer of technology and innovation among nations.",
                "feedback": "Correct! Trade is a key driver.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic industries from global influences.",
                "feedback": "Incorrect! It integrates them.",
                "is_correct": false
            },
            {
                "text": "It always leads to reduced employment.",
                "feedback": "Incorrect! It can create jobs.",
                "is_correct": false
            },
            {
                "text": "It solely benefits exporting countries.",
                "feedback": "Incorrect! Trade is mutually beneficial.\n\n::U44_New_Q22:: How does economic diversification improve an economy\u2019s resilience? {",
                "is_correct": false
            },
            {
                "text": "By spreading risk across multiple sectors, reducing vulnerability to sector-specific downturns.",
                "feedback": "Correct! Diversification stabilizes the economy.",
                "is_correct": true
            },
            {
                "text": "By concentrating all resources in a single sector.",
                "feedback": "Incorrect! That increases risk.",
                "is_correct": false
            },
            {
                "text": "By reducing technological innovation.",
                "feedback": "Incorrect! Diversification often promotes innovation.",
                "is_correct": false
            },
            {
                "text": "By eliminating foreign trade.",
                "feedback": "Incorrect! Trade is a diversification strategy.\n\n::U44_New_Q23:: What is a potential drawback of rapid economic development without proper regulation? {",
                "is_correct": false
            },
            {
                "text": "It can lead to environmental degradation and social disparities that ultimately undermine sustainable growth.",
                "feedback": "Correct! Unchecked development has hidden costs.",
                "is_correct": true
            },
            {
                "text": "It guarantees improved quality of life for all citizens.",
                "feedback": "Incorrect! Benefits are not uniform.",
                "is_correct": false
            },
            {
                "text": "It automatically reduces economic inequality.",
                "feedback": "Incorrect! Inequality may worsen.",
                "is_correct": false
            },
            {
                "text": "It eliminates the need for international cooperation.",
                "feedback": "Incorrect! Global issues remain.\n\n::U44_New_Q24:: Which indicator is most useful for measuring a country\u2019s economic performance? {",
                "is_correct": false
            },
            {
                "text": "Gross Domestic Product (GDP) as it reflects the total economic output.",
                "feedback": "Correct! GDP is the standard measure.",
                "is_correct": true
            },
            {
                "text": "The number of universities in the country.",
                "feedback": "Incorrect! That is an educational metric.",
                "is_correct": false
            },
            {
                "text": "The average annual temperature.",
                "feedback": "Incorrect! That is climatological.",
                "is_correct": false
            },
            {
                "text": "The total length of roads.",
                "feedback": "Incorrect! That is infrastructural.\n\n::U44_New_Q25:: What does \u201csustainable economic development\u201d aim to achieve? {",
                "is_correct": false
            },
            {
                "text": "It strives to meet present economic needs without compromising the ability of future generations to meet their own needs, balancing growth with environmental and social concerns.",
                "feedback": "Correct! Sustainability is multi-dimensional.",
                "is_correct": true
            },
            {
                "text": "It focuses solely on rapid industrial growth.",
                "feedback": "Incorrect! That can deplete resources.",
                "is_correct": false
            },
            {
                "text": "It ignores the impact on natural ecosystems.",
                "feedback": "Incorrect! Environmental protection is essential.",
                "is_correct": false
            },
            {
                "text": "It relies exclusively on traditional manufacturing techniques.",
                "feedback": "Incorrect! Modern, sustainable practices are key.",
                "is_correct": false
            }
        ],
        "correct": 56
    },
    {
        "title": "U44_New_Q10",
        "question": "What does \u201ceconomic diversification\u201d aim to achieve?",
        "options": [
            {
                "text": "It reduces reliance on a single industry or resource, spreading risk and promoting long-term stability.",
                "feedback": "Correct! Diversification stabilizes economies.",
                "is_correct": true
            },
            {
                "text": "It concentrates all economic activity in one sector.",
                "feedback": "Incorrect! That increases vulnerability.",
                "is_correct": false
            },
            {
                "text": "It solely focuses on increasing short-term profits.",
                "feedback": "Incorrect! It is about balanced growth.",
                "is_correct": false
            },
            {
                "text": "It ignores technological innovation.",
                "feedback": "Incorrect! Innovation is a key aspect.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q5",
        "question": "How is Gross Domestic Product (GDP) best defined?",
        "options": [
            {
                "text": "The total monetary value of all final goods and services produced within a country in a specific period.",
                "feedback": "Correct! GDP measures economic output.",
                "is_correct": true
            },
            {
                "text": "The average income per person.",
                "feedback": "Incorrect! That is GDP per capita.",
                "is_correct": false
            },
            {
                "text": "The total exports of a country.",
                "feedback": "Incorrect! Exports are a component of GDP.",
                "is_correct": false
            },
            {
                "text": "The ratio of population to land area.",
                "feedback": "Incorrect! That is population density.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q4",
        "question": "What is the primary objective of sustainable economic development?",
        "options": [
            {
                "text": "To promote growth that meets present needs without compromising the ability of future generations, integrating environmental and social well-being.",
                "feedback": "Correct! Sustainability balances growth and conservation.",
                "is_correct": true
            },
            {
                "text": "To maximize short-term profits regardless of external costs.",
                "feedback": "Incorrect! That neglects future impacts.",
                "is_correct": false
            },
            {
                "text": "To focus exclusively on industrial expansion.",
                "feedback": "Incorrect! That may deplete resources.",
                "is_correct": false
            },
            {
                "text": "To eliminate government regulation entirely.",
                "feedback": "Incorrect! Regulation is vital for sustainability.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q6",
        "question": "Which factor most directly contributes to economic inequality?",
        "options": [
            {
                "text": "Unequal distribution of income and wealth among different segments of the population.",
                "feedback": "Correct! Inequality reflects disparity.",
                "is_correct": true
            },
            {
                "text": "Uniform access to education for all.",
                "feedback": "Incorrect! That would reduce inequality.",
                "is_correct": false
            },
            {
                "text": "Equal opportunities in employment.",
                "feedback": "Incorrect! That minimizes inequality.",
                "is_correct": false
            },
            {
                "text": "A balanced trade system.",
                "feedback": "Incorrect! Trade balance is separate.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q3",
        "question": "What defines a mixed economy?",
        "options": [
            {
                "text": "It combines elements of both market and command economies, allowing private enterprise alongside government intervention.",
                "feedback": "Correct! Mixed economies balance both.",
                "is_correct": true
            },
            {
                "text": "It is entirely market-driven with no state regulation.",
                "feedback": "Incorrect! That is a pure market economy.",
                "is_correct": false
            },
            {
                "text": "It is fully controlled by the government.",
                "feedback": "Incorrect! That is a command economy.",
                "is_correct": false
            },
            {
                "text": "It relies solely on traditional practices.",
                "feedback": "Incorrect! Traditional economies differ.",
                "is_correct": false
            }
        ],
        "correct": 0
    }
];
              let currentQuestion = 0;
              let score = 0;
              let timerInterval;
              let timeRemaining = 30;
              let variantCompleted = false;
              
              function startTimer() {
                  timeRemaining = 30;
                  document.getElementById("timer-1").textContent = "Time Remaining: " + timeRemaining + " seconds";
                  timerInterval = setInterval(() => {
                      timeRemaining--;
                      document.getElementById("timer-1").textContent = "Time Remaining: " + timeRemaining + " seconds";
                      if (timeRemaining <= 0) {
                          clearInterval(timerInterval);
                          document.getElementById("next-btn-1").disabled = false;
                          const inputs = document.querySelectorAll("input[name='question-" + currentQuestion + "']");
                          inputs.forEach(input => input.disabled = true);
                          const feedbackDiv = document.querySelector("#quiz-container-1 .feedback");
                          if (feedbackDiv) {
                              feedbackDiv.textContent = "Time's up!";
                              feedbackDiv.className = "feedback incorrect";
                              feedbackDiv.style.display = "block";
                          }
                      }
                  }, 1000);
              }
              
              function displayQuestion(index) {
                  clearInterval(timerInterval);
                  timeRemaining = 30;
                  document.getElementById("timer-1").style.display = "block";
                  const container = document.getElementById("quiz-container-1");
                  container.innerHTML = "";
                  if (index >= quizData.length) {
                      showFinalResults();
                      return;
                  }
                  const q = quizData[index];
                  const questionDiv = document.createElement("div");
                  questionDiv.className = "question-panel";
                  const questionText = document.createElement("h3");
                  questionText.textContent = (index + 1) + ". " + q.question;
                  questionDiv.appendChild(questionText);
                  // Use a fieldset to wrap the options
                  const fieldset = document.createElement("fieldset");
                  fieldset.style.backgroundColor = "#948644";
                  fieldset.style.color = "black";
                  fieldset.style.border = "none";
                  fieldset.style.padding = "10px";
                  fieldset.className = "options-fieldset";
                  
                  q.options.forEach((option, oIndex) => {
                      const optionLabel = document.createElement("label");
                      optionLabel.style.display = "block";
                      // Increase radio button size via transform
                      const radioInput = document.createElement("input");
                      radioInput.type = "radio";
                      radioInput.name = "question-" + index;
                      radioInput.value = oIndex;
                      radioInput.style.transform = "scale(1.5)";
                      radioInput.style.marginRight = "15px";
                      radioInput.onclick = function() {
                          checkAnswer(index, oIndex, questionDiv);
                          document.getElementById("next-btn-1").disabled = false;
                          clearInterval(timerInterval);
                      };
                      optionLabel.appendChild(radioInput);
                      optionLabel.appendChild(document.createTextNode(option.text));
                      fieldset.appendChild(optionLabel);
                  });
                  questionDiv.appendChild(fieldset);
                  const feedbackDiv = document.createElement("div");
                  feedbackDiv.className = "feedback";
                  questionDiv.appendChild(feedbackDiv);
                  container.appendChild(questionDiv);
                  document.getElementById("next-btn-1").disabled = true;
                  startTimer();
              }
              
              function checkAnswer(questionIndex, selectedOption, questionDiv) {
                  const feedbackDiv = questionDiv.querySelector(".feedback");
                  const question = quizData[questionIndex];
                  const selected = question.options[selectedOption];
                  if (selected.is_correct) {
                      feedbackDiv.textContent = selected.feedback || "Correct!";
                      feedbackDiv.className = "feedback correct";
                      score++;
                  } else {
                      feedbackDiv.textContent = selected.feedback || "Incorrect!";
                      feedbackDiv.className = "feedback incorrect";
                  }
                  feedbackDiv.style.display = "block";
                  const inputs = questionDiv.querySelectorAll("input");
                  inputs.forEach(input => input.disabled = true);
              }
              
              function showFinalResults() {
                  clearInterval(timerInterval);
                  document.getElementById("timer-1").style.display = "none";
                  const container = document.getElementById("quiz-container-1");
                  container.innerHTML = "";
                  document.getElementById("next-btn-1").style.display = "none";
                  const finalMessageDiv = document.getElementById("final-message-1");
                  const total = quizData.length;
                  const percentage = Math.round((score / total) * 100);
                  let generalFeedback = "";
                  if (percentage < 30) {
                      generalFeedback = "Your score is below 30%. It looks like you need more practice, but don't be discouraged! Enroll in our course to build a strong foundation. Not only will you gain the skills to improve your performance, but you'll also have the opportunity to earn an internationally recognized graded certificate and detailed online report. Plus, our course connects you to a global network of scholarships and grants—imagine the possibility of financial rewards if you top your category!";
                  } else if (percentage < 50) {
                      generalFeedback = "Your score is below 50%, which means there’s significant room for improvement. Consider enrolling in our course to boost your skills and academic confidence. With our comprehensive curriculum, you can work towards an internationally accepted graded certificate, complete with a verifiable online report. Additionally, we offer access to international scholarships, grants, and even financial rewards for exceptional performance.";
                  } else if (percentage < 70) {
                      generalFeedback = "You scored below 70%. With a bit more guidance from our course, you could truly excel! Our program is designed to enhance your academic prowess and help you achieve an internationally recognized graded certificate with a detailed online report. Moreover, by joining, you'll tap into a vast network of resources including scholarships, grants, and the potential for financial rewards if you secure the top position in your category.";;
                  } else if (percentage < 90) {
                      generalFeedback = "Great job! You scored below 90%. You’re almost there—just a little more effort, and you can reach perfection. Our course not only refines your skills but also offers the chance to earn a verifiable, internationally accepted graded certificate and detailed graded report. Plus, you’ll gain access to an international network of scholarships, grants, and financial incentives for top-ranking students.";
                  } else {
                      generalFeedback = "Excellent! You scored above 90%, showcasing near mastery of the subject. For even more advanced insights, consider our premium course. By enrolling, you'll have the opportunity to earn an internationally recognized graded certificate along with a detailed online report. You will also be matched with valuable resources, including scholarships, grants, and the chance to receive financial rewards if you rank 1st in your category.";
                  }
                  finalMessageDiv.innerHTML = `
                      <p>Your Score: <strong>${score}</strong> out of <strong>${total}</strong> (${percentage}%).</p>
                      <p>${generalFeedback}</p>
                      <a id="enroll-btn-1" class="enroll-btn" href="#" onclick="alert('Redirecting to enrollment page...'); return false;">CLICK THE BLUE BUTTON BELOW</a>
                  `;
                  finalMessageDiv.style.display = "block";
                  variantCompleted = true;
                  if (typeof window.setGlobalVariantCompleted === "function") {
                      window.setGlobalVariantCompleted();
                  }
              }
              
              document.getElementById("next-btn-1").onclick = function() {
                  currentQuestion++;
                  displayQuestion(currentQuestion);
              };
              
              window.addEventListener("load", function() {
                  displayQuestion(currentQuestion);
              });
          })();
      </script>
    </div>
    
    <div class="page" id="page-2" style="display:none;">
      <div id="timer-2" class="timer">Time Remaining: 30 seconds</div>
      <div id="quiz-container-2" class="quiz-container"></div>
      <div style="text-align: center; margin-top:20px;">
          <button id="next-btn-2" class="next-btn" disabled>Next Trial</button>
      </div>
      <div id="final-message-2" class="final-message" style="display: none;"></div>
      <script>
          (function(){
              const quizData = [
    {
        "title": "U44_New_Q9",
        "question": "What is one major disadvantage of a command economy?",
        "options": [
            {
                "text": "It can lead to inefficiencies, resource misallocation, and shortages due to the lack of market signals.",
                "feedback": "Correct! Central planning often causes inefficiencies.",
                "is_correct": true
            },
            {
                "text": "It always results in higher innovation.",
                "feedback": "Incorrect! Innovation may be stifled.",
                "is_correct": false
            },
            {
                "text": "It guarantees low unemployment rates.",
                "feedback": "Incorrect! Employment issues can persist.",
                "is_correct": false
            },
            {
                "text": "It eliminates all forms of economic inequality.",
                "feedback": "Incorrect! Inequality can still exist.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q7",
        "question": "What does \u201cforeign direct investment\u201d (FDI) typically provide to a developing country?",
        "options": [
            {
                "text": "Capital, technology, and managerial expertise that can spur economic growth and job creation.",
                "feedback": "Correct! FDI is a major growth catalyst.",
                "is_correct": true
            },
            {
                "text": "Only short-term loans without technology transfer.",
                "feedback": "Incorrect! FDI is long-term.",
                "is_correct": false
            },
            {
                "text": "A reduction in local entrepreneurship.",
                "feedback": "Incorrect! It often stimulates local business.",
                "is_correct": false
            },
            {
                "text": "A guarantee of immediate economic prosperity.",
                "feedback": "Incorrect! Benefits develop over time.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q2",
        "question": "How does a command economy allocate resources?",
        "options": [
            {
                "text": "Through centralized planning where the government determines production and distribution.",
                "feedback": "Correct! Central planning directs resource allocation.",
                "is_correct": true
            },
            {
                "text": "Through decentralized market forces.",
                "feedback": "Incorrect! That describes market economies.",
                "is_correct": false
            },
            {
                "text": "By random distribution among citizens.",
                "feedback": "Incorrect! There is systematic planning.",
                "is_correct": false
            },
            {
                "text": "Via voluntary private enterprise exclusively.",
                "feedback": "Incorrect! That is a market approach.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q1",
        "question": "Which economic system is characterized by free-market principles and minimal government control?",
        "options": [
            {
                "text": "A market economy.",
                "feedback": "Correct! Market economies are driven by supply and demand.",
                "is_correct": true
            },
            {
                "text": "A command economy.",
                "feedback": "Incorrect! Command economies are government-controlled.",
                "is_correct": false
            },
            {
                "text": "A mixed economy.",
                "feedback": "Incorrect! Mixed combines elements.",
                "is_correct": false
            },
            {
                "text": "A traditional economy.",
                "feedback": "Incorrect! Traditional economies rely on customs.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q8",
        "question": "How does economic globalization affect domestic economies?",
        "options": [
            {
                "text": "It integrates national economies into a global network, encouraging trade, investment, and the exchange of ideas, which can lead to growth and competition.",
                "feedback": "Correct! Globalization interconnects markets.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic markets completely.",
                "feedback": "Incorrect! It opens markets.",
                "is_correct": false
            },
            {
                "text": "It removes all cultural influences from economic activity.",
                "feedback": "Incorrect! Culture remains influential.",
                "is_correct": false
            },
            {
                "text": "It prevents technological transfer.",
                "feedback": "Incorrect! Globalization often accelerates it.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q11",
        "question": "How can government policies help reduce economic inequality?",
        "options": [
            {
                "text": "By implementing progressive taxation, social welfare programs, and investing in education and healthcare to redistribute wealth.",
                "feedback": "Correct! Policies can address disparities.",
                "is_correct": true
            },
            {
                "text": "By eliminating all taxes on high incomes.",
                "feedback": "Incorrect! That would increase inequality.",
                "is_correct": false
            },
            {
                "text": "By reducing public spending on social services.",
                "feedback": "Incorrect! That worsens inequality.",
                "is_correct": false
            },
            {
                "text": "By exclusively promoting private monopolies.",
                "feedback": "Incorrect! That reduces competition.\n\n::U44_New_Q12:: What is the main function of the \u201cHuman Development Index\u201d (HDI)? {",
                "is_correct": false
            },
            {
                "text": "To measure overall human development, incorporating health, education, and income indicators.",
                "feedback": "Correct! HDI is a composite development indicator.",
                "is_correct": true
            },
            {
                "text": "To solely calculate a country\u2019s GDP.",
                "feedback": "Incorrect! GDP is only one economic measure.",
                "is_correct": false
            },
            {
                "text": "To assess only the technological progress of a nation.",
                "feedback": "Incorrect! HDI is broader.",
                "is_correct": false
            },
            {
                "text": "To determine the total population size.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q13:: Which economic indicator reflects the standard of living of a country\u2019s citizens? {",
                "is_correct": false
            },
            {
                "text": "GDP per capita, which divides total GDP by the population.",
                "feedback": "Correct! It approximates average income.",
                "is_correct": true
            },
            {
                "text": "Total GDP.",
                "feedback": "Incorrect! That does not account for population.",
                "is_correct": false
            },
            {
                "text": "The unemployment rate exclusively.",
                "feedback": "Incorrect! That is one aspect.",
                "is_correct": false
            },
            {
                "text": "The dependency ratio.",
                "feedback": "Incorrect! That measures age structure.\n\n::U44_New_Q14:: What does \u201csustainable economic development\u201d require? {",
                "is_correct": false
            },
            {
                "text": "An approach that balances growth, environmental stewardship, and social inclusion to ensure long-term prosperity.",
                "feedback": "Correct! Sustainability integrates all three pillars.",
                "is_correct": true
            },
            {
                "text": "Unlimited resource extraction.",
                "feedback": "Incorrect! That is unsustainable.",
                "is_correct": false
            },
            {
                "text": "A sole focus on economic growth.",
                "feedback": "Incorrect! Environmental and social aspects are essential.",
                "is_correct": false
            },
            {
                "text": "The elimination of all market competition.",
                "feedback": "Incorrect! Competition is important.\n\n::U44_New_Q15:: Which statement best describes the economic organization of the world? {",
                "is_correct": false
            },
            {
                "text": "It is an interconnected system where national economies participate in global trade, investment, and financial markets.",
                "feedback": "Correct! Global interdependence is key.",
                "is_correct": true
            },
            {
                "text": "It consists of completely isolated national economies.",
                "feedback": "Incorrect! Isolation is rare.",
                "is_correct": false
            },
            {
                "text": "It is dominated by a single world government controlling all economic activity.",
                "feedback": "Incorrect! No such government exists.",
                "is_correct": false
            },
            {
                "text": "It is static and unchanging over time.",
                "feedback": "Incorrect! Global economics are dynamic.\n\n::U44_New_Q16:: How do technological innovations drive economic development? {",
                "is_correct": false
            },
            {
                "text": "They improve productivity, create new industries, and enhance the efficiency of existing sectors, leading to overall growth.",
                "feedback": "Correct! Innovation is a growth engine.",
                "is_correct": true
            },
            {
                "text": "They only benefit the technology sector, not the broader economy.",
                "feedback": "Incorrect! Their impact is widespread.",
                "is_correct": false
            },
            {
                "text": "They have no effect on the quality of products.",
                "feedback": "Incorrect! They often improve quality.",
                "is_correct": false
            },
            {
                "text": "They reduce the need for skilled labor entirely.",
                "feedback": "Incorrect! They shift, rather than eliminate, labor needs.\n\n::U44_New_Q17:: What is \u201ceconomic inequality\u201d and why is it significant? {",
                "is_correct": false
            },
            {
                "text": "It refers to the unequal distribution of income and wealth, which can hinder social cohesion and sustainable development.",
                "feedback": "Correct! Inequality is a major challenge.",
                "is_correct": true
            },
            {
                "text": "It indicates that everyone earns the same income.",
                "feedback": "Incorrect! That is equality.",
                "is_correct": false
            },
            {
                "text": "It only affects developing countries.",
                "feedback": "Incorrect! It is a global issue.",
                "is_correct": false
            },
            {
                "text": "It is solely measured by the difference in ages.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q18:: How can foreign direct investment (FDI) stimulate economic development? {",
                "is_correct": false
            },
            {
                "text": "By introducing capital, advanced technology, and management expertise, which can boost local industries and employment.",
                "feedback": "Correct! FDI can transform economies.",
                "is_correct": true
            },
            {
                "text": "By causing a complete loss of domestic control over industries.",
                "feedback": "Incorrect! FDI generally complements local enterprise.",
                "is_correct": false
            },
            {
                "text": "By reducing the overall competitiveness of the market.",
                "feedback": "Incorrect! It usually increases competition.",
                "is_correct": false
            },
            {
                "text": "By exclusively focusing on short-term profit.",
                "feedback": "Incorrect! FDI is often long-term.\n\n::U44_New_Q19:: What does \u201ceconomic globalization\u201d imply? {",
                "is_correct": false
            },
            {
                "text": "The increasing integration and interdependence of national economies through international trade, investment, and information exchange.",
                "feedback": "Correct! Globalization connects nations.",
                "is_correct": true
            },
            {
                "text": "The isolation of individual economies from each other.",
                "feedback": "Incorrect! It is the opposite.",
                "is_correct": false
            },
            {
                "text": "The dissolution of all economic borders permanently.",
                "feedback": "Incorrect! Borders remain, but trade increases.",
                "is_correct": false
            },
            {
                "text": "A complete shutdown of domestic industries.",
                "feedback": "Incorrect! Globalization encourages both domestic and international activity.\n\n::U44_New_Q20:: Which factor is most critical for ensuring long-term sustainable development? {",
                "is_correct": false
            },
            {
                "text": "Balancing economic growth with the conservation of natural resources and social equity.",
                "feedback": "Correct! Sustainability requires a balanced approach.",
                "is_correct": true
            },
            {
                "text": "Maximizing short-term industrial output regardless of environmental costs.",
                "feedback": "Incorrect! That undermines sustainability.",
                "is_correct": false
            },
            {
                "text": "Focusing solely on economic indicators like GDP.",
                "feedback": "Incorrect! Broader measures are needed.",
                "is_correct": false
            },
            {
                "text": "Ignoring cultural and social factors.",
                "feedback": "Incorrect! Social inclusion is vital.\n\n::U44_New_Q21:: What is the role of international trade in economic development? {",
                "is_correct": false
            },
            {
                "text": "It expands markets, promotes competition, and facilitates the transfer of technology and innovation among nations.",
                "feedback": "Correct! Trade is a key driver.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic industries from global influences.",
                "feedback": "Incorrect! It integrates them.",
                "is_correct": false
            },
            {
                "text": "It always leads to reduced employment.",
                "feedback": "Incorrect! It can create jobs.",
                "is_correct": false
            },
            {
                "text": "It solely benefits exporting countries.",
                "feedback": "Incorrect! Trade is mutually beneficial.\n\n::U44_New_Q22:: How does economic diversification improve an economy\u2019s resilience? {",
                "is_correct": false
            },
            {
                "text": "By spreading risk across multiple sectors, reducing vulnerability to sector-specific downturns.",
                "feedback": "Correct! Diversification stabilizes the economy.",
                "is_correct": true
            },
            {
                "text": "By concentrating all resources in a single sector.",
                "feedback": "Incorrect! That increases risk.",
                "is_correct": false
            },
            {
                "text": "By reducing technological innovation.",
                "feedback": "Incorrect! Diversification often promotes innovation.",
                "is_correct": false
            },
            {
                "text": "By eliminating foreign trade.",
                "feedback": "Incorrect! Trade is a diversification strategy.\n\n::U44_New_Q23:: What is a potential drawback of rapid economic development without proper regulation? {",
                "is_correct": false
            },
            {
                "text": "It can lead to environmental degradation and social disparities that ultimately undermine sustainable growth.",
                "feedback": "Correct! Unchecked development has hidden costs.",
                "is_correct": true
            },
            {
                "text": "It guarantees improved quality of life for all citizens.",
                "feedback": "Incorrect! Benefits are not uniform.",
                "is_correct": false
            },
            {
                "text": "It automatically reduces economic inequality.",
                "feedback": "Incorrect! Inequality may worsen.",
                "is_correct": false
            },
            {
                "text": "It eliminates the need for international cooperation.",
                "feedback": "Incorrect! Global issues remain.\n\n::U44_New_Q24:: Which indicator is most useful for measuring a country\u2019s economic performance? {",
                "is_correct": false
            },
            {
                "text": "Gross Domestic Product (GDP) as it reflects the total economic output.",
                "feedback": "Correct! GDP is the standard measure.",
                "is_correct": true
            },
            {
                "text": "The number of universities in the country.",
                "feedback": "Incorrect! That is an educational metric.",
                "is_correct": false
            },
            {
                "text": "The average annual temperature.",
                "feedback": "Incorrect! That is climatological.",
                "is_correct": false
            },
            {
                "text": "The total length of roads.",
                "feedback": "Incorrect! That is infrastructural.\n\n::U44_New_Q25:: What does \u201csustainable economic development\u201d aim to achieve? {",
                "is_correct": false
            },
            {
                "text": "It strives to meet present economic needs without compromising the ability of future generations to meet their own needs, balancing growth with environmental and social concerns.",
                "feedback": "Correct! Sustainability is multi-dimensional.",
                "is_correct": true
            },
            {
                "text": "It focuses solely on rapid industrial growth.",
                "feedback": "Incorrect! That can deplete resources.",
                "is_correct": false
            },
            {
                "text": "It ignores the impact on natural ecosystems.",
                "feedback": "Incorrect! Environmental protection is essential.",
                "is_correct": false
            },
            {
                "text": "It relies exclusively on traditional manufacturing techniques.",
                "feedback": "Incorrect! Modern, sustainable practices are key.",
                "is_correct": false
            }
        ],
        "correct": 56
    },
    {
        "title": "U44_New_Q10",
        "question": "What does \u201ceconomic diversification\u201d aim to achieve?",
        "options": [
            {
                "text": "It reduces reliance on a single industry or resource, spreading risk and promoting long-term stability.",
                "feedback": "Correct! Diversification stabilizes economies.",
                "is_correct": true
            },
            {
                "text": "It concentrates all economic activity in one sector.",
                "feedback": "Incorrect! That increases vulnerability.",
                "is_correct": false
            },
            {
                "text": "It solely focuses on increasing short-term profits.",
                "feedback": "Incorrect! It is about balanced growth.",
                "is_correct": false
            },
            {
                "text": "It ignores technological innovation.",
                "feedback": "Incorrect! Innovation is a key aspect.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q5",
        "question": "How is Gross Domestic Product (GDP) best defined?",
        "options": [
            {
                "text": "The total monetary value of all final goods and services produced within a country in a specific period.",
                "feedback": "Correct! GDP measures economic output.",
                "is_correct": true
            },
            {
                "text": "The average income per person.",
                "feedback": "Incorrect! That is GDP per capita.",
                "is_correct": false
            },
            {
                "text": "The total exports of a country.",
                "feedback": "Incorrect! Exports are a component of GDP.",
                "is_correct": false
            },
            {
                "text": "The ratio of population to land area.",
                "feedback": "Incorrect! That is population density.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q4",
        "question": "What is the primary objective of sustainable economic development?",
        "options": [
            {
                "text": "To promote growth that meets present needs without compromising the ability of future generations, integrating environmental and social well-being.",
                "feedback": "Correct! Sustainability balances growth and conservation.",
                "is_correct": true
            },
            {
                "text": "To maximize short-term profits regardless of external costs.",
                "feedback": "Incorrect! That neglects future impacts.",
                "is_correct": false
            },
            {
                "text": "To focus exclusively on industrial expansion.",
                "feedback": "Incorrect! That may deplete resources.",
                "is_correct": false
            },
            {
                "text": "To eliminate government regulation entirely.",
                "feedback": "Incorrect! Regulation is vital for sustainability.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q6",
        "question": "Which factor most directly contributes to economic inequality?",
        "options": [
            {
                "text": "Unequal distribution of income and wealth among different segments of the population.",
                "feedback": "Correct! Inequality reflects disparity.",
                "is_correct": true
            },
            {
                "text": "Uniform access to education for all.",
                "feedback": "Incorrect! That would reduce inequality.",
                "is_correct": false
            },
            {
                "text": "Equal opportunities in employment.",
                "feedback": "Incorrect! That minimizes inequality.",
                "is_correct": false
            },
            {
                "text": "A balanced trade system.",
                "feedback": "Incorrect! Trade balance is separate.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q3",
        "question": "What defines a mixed economy?",
        "options": [
            {
                "text": "It combines elements of both market and command economies, allowing private enterprise alongside government intervention.",
                "feedback": "Correct! Mixed economies balance both.",
                "is_correct": true
            },
            {
                "text": "It is entirely market-driven with no state regulation.",
                "feedback": "Incorrect! That is a pure market economy.",
                "is_correct": false
            },
            {
                "text": "It is fully controlled by the government.",
                "feedback": "Incorrect! That is a command economy.",
                "is_correct": false
            },
            {
                "text": "It relies solely on traditional practices.",
                "feedback": "Incorrect! Traditional economies differ.",
                "is_correct": false
            }
        ],
        "correct": 0
    }
];
              let currentQuestion = 0;
              let score = 0;
              let timerInterval;
              let timeRemaining = 30;
              let variantCompleted = false;
              
              function startTimer() {
                  timeRemaining = 30;
                  document.getElementById("timer-2").textContent = "Time Remaining: " + timeRemaining + " seconds";
                  timerInterval = setInterval(() => {
                      timeRemaining--;
                      document.getElementById("timer-2").textContent = "Time Remaining: " + timeRemaining + " seconds";
                      if (timeRemaining <= 0) {
                          clearInterval(timerInterval);
                          document.getElementById("next-btn-2").disabled = false;
                          const inputs = document.querySelectorAll("input[name='question-" + currentQuestion + "']");
                          inputs.forEach(input => input.disabled = true);
                          const feedbackDiv = document.querySelector("#quiz-container-2 .feedback");
                          if (feedbackDiv) {
                              feedbackDiv.textContent = "Time's up!";
                              feedbackDiv.className = "feedback incorrect";
                              feedbackDiv.style.display = "block";
                          }
                      }
                  }, 1000);
              }
              
              function displayQuestion(index) {
                  clearInterval(timerInterval);
                  timeRemaining = 30;
                  document.getElementById("timer-2").style.display = "block";
                  const container = document.getElementById("quiz-container-2");
                  container.innerHTML = "";
                  if (index >= quizData.length) {
                      showFinalResults();
                      return;
                  }
                  const q = quizData[index];
                  const questionDiv = document.createElement("div");
                  questionDiv.className = "question-panel";
                  const questionText = document.createElement("h3");
                  questionText.textContent = (index + 1) + ". " + q.question;
                  questionDiv.appendChild(questionText);
                  // Use a fieldset to wrap the options
                  const fieldset = document.createElement("fieldset");
                  fieldset.style.backgroundColor = "#948644";
                  fieldset.style.color = "black";
                  fieldset.style.border = "none";
                  fieldset.style.padding = "10px";
                  fieldset.className = "options-fieldset";
                  
                  q.options.forEach((option, oIndex) => {
                      const optionLabel = document.createElement("label");
                      optionLabel.style.display = "block";
                      // Increase radio button size via transform
                      const radioInput = document.createElement("input");
                      radioInput.type = "radio";
                      radioInput.name = "question-" + index;
                      radioInput.value = oIndex;
                      radioInput.style.transform = "scale(1.5)";
                      radioInput.style.marginRight = "15px";
                      radioInput.onclick = function() {
                          checkAnswer(index, oIndex, questionDiv);
                          document.getElementById("next-btn-2").disabled = false;
                          clearInterval(timerInterval);
                      };
                      optionLabel.appendChild(radioInput);
                      optionLabel.appendChild(document.createTextNode(option.text));
                      fieldset.appendChild(optionLabel);
                  });
                  questionDiv.appendChild(fieldset);
                  const feedbackDiv = document.createElement("div");
                  feedbackDiv.className = "feedback";
                  questionDiv.appendChild(feedbackDiv);
                  container.appendChild(questionDiv);
                  document.getElementById("next-btn-2").disabled = true;
                  startTimer();
              }
              
              function checkAnswer(questionIndex, selectedOption, questionDiv) {
                  const feedbackDiv = questionDiv.querySelector(".feedback");
                  const question = quizData[questionIndex];
                  const selected = question.options[selectedOption];
                  if (selected.is_correct) {
                      feedbackDiv.textContent = selected.feedback || "Correct!";
                      feedbackDiv.className = "feedback correct";
                      score++;
                  } else {
                      feedbackDiv.textContent = selected.feedback || "Incorrect!";
                      feedbackDiv.className = "feedback incorrect";
                  }
                  feedbackDiv.style.display = "block";
                  const inputs = questionDiv.querySelectorAll("input");
                  inputs.forEach(input => input.disabled = true);
              }
              
              function showFinalResults() {
                  clearInterval(timerInterval);
                  document.getElementById("timer-2").style.display = "none";
                  const container = document.getElementById("quiz-container-2");
                  container.innerHTML = "";
                  document.getElementById("next-btn-2").style.display = "none";
                  const finalMessageDiv = document.getElementById("final-message-2");
                  const total = quizData.length;
                  const percentage = Math.round((score / total) * 100);
                  let generalFeedback = "";
                  if (percentage < 30) {
                      generalFeedback = "Your score is below 30%. It looks like you need more practice, but don't be discouraged! Enroll in our course to build a strong foundation. Not only will you gain the skills to improve your performance, but you'll also have the opportunity to earn an internationally recognized graded certificate and detailed online report. Plus, our course connects you to a global network of scholarships and grants—imagine the possibility of financial rewards if you top your category!";
                  } else if (percentage < 50) {
                      generalFeedback = "Your score is below 50%, which means there’s significant room for improvement. Consider enrolling in our course to boost your skills and academic confidence. With our comprehensive curriculum, you can work towards an internationally accepted graded certificate, complete with a verifiable online report. Additionally, we offer access to international scholarships, grants, and even financial rewards for exceptional performance.";
                  } else if (percentage < 70) {
                      generalFeedback = "You scored below 70%. With a bit more guidance from our course, you could truly excel! Our program is designed to enhance your academic prowess and help you achieve an internationally recognized graded certificate with a detailed online report. Moreover, by joining, you'll tap into a vast network of resources including scholarships, grants, and the potential for financial rewards if you secure the top position in your category.";;
                  } else if (percentage < 90) {
                      generalFeedback = "Great job! You scored below 90%. You’re almost there—just a little more effort, and you can reach perfection. Our course not only refines your skills but also offers the chance to earn a verifiable, internationally accepted graded certificate and detailed graded report. Plus, you’ll gain access to an international network of scholarships, grants, and financial incentives for top-ranking students.";
                  } else {
                      generalFeedback = "Excellent! You scored above 90%, showcasing near mastery of the subject. For even more advanced insights, consider our premium course. By enrolling, you'll have the opportunity to earn an internationally recognized graded certificate along with a detailed online report. You will also be matched with valuable resources, including scholarships, grants, and the chance to receive financial rewards if you rank 1st in your category.";
                  }
                  finalMessageDiv.innerHTML = `
                      <p>Your Score: <strong>${score}</strong> out of <strong>${total}</strong> (${percentage}%).</p>
                      <p>${generalFeedback}</p>
                      <a id="enroll-btn-2" class="enroll-btn" href="#" onclick="alert('Redirecting to enrollment page...'); return false;">CLICK THE BLUE BUTTON BELOW</a>
                  `;
                  finalMessageDiv.style.display = "block";
                  variantCompleted = true;
                  if (typeof window.setGlobalVariantCompleted === "function") {
                      window.setGlobalVariantCompleted();
                  }
              }
              
              document.getElementById("next-btn-2").onclick = function() {
                  currentQuestion++;
                  displayQuestion(currentQuestion);
              };
              
              window.addEventListener("load", function() {
                  displayQuestion(currentQuestion);
              });
          })();
      </script>
    </div>
    
    <div class="page" id="page-3" style="display:none;">
      <div id="timer-3" class="timer">Time Remaining: 30 seconds</div>
      <div id="quiz-container-3" class="quiz-container"></div>
      <div style="text-align: center; margin-top:20px;">
          <button id="next-btn-3" class="next-btn" disabled>Next Trial</button>
      </div>
      <div id="final-message-3" class="final-message" style="display: none;"></div>
      <script>
          (function(){
              const quizData = [
    {
        "title": "U44_New_Q9",
        "question": "What is one major disadvantage of a command economy?",
        "options": [
            {
                "text": "It can lead to inefficiencies, resource misallocation, and shortages due to the lack of market signals.",
                "feedback": "Correct! Central planning often causes inefficiencies.",
                "is_correct": true
            },
            {
                "text": "It always results in higher innovation.",
                "feedback": "Incorrect! Innovation may be stifled.",
                "is_correct": false
            },
            {
                "text": "It guarantees low unemployment rates.",
                "feedback": "Incorrect! Employment issues can persist.",
                "is_correct": false
            },
            {
                "text": "It eliminates all forms of economic inequality.",
                "feedback": "Incorrect! Inequality can still exist.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q7",
        "question": "What does \u201cforeign direct investment\u201d (FDI) typically provide to a developing country?",
        "options": [
            {
                "text": "Capital, technology, and managerial expertise that can spur economic growth and job creation.",
                "feedback": "Correct! FDI is a major growth catalyst.",
                "is_correct": true
            },
            {
                "text": "Only short-term loans without technology transfer.",
                "feedback": "Incorrect! FDI is long-term.",
                "is_correct": false
            },
            {
                "text": "A reduction in local entrepreneurship.",
                "feedback": "Incorrect! It often stimulates local business.",
                "is_correct": false
            },
            {
                "text": "A guarantee of immediate economic prosperity.",
                "feedback": "Incorrect! Benefits develop over time.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q2",
        "question": "How does a command economy allocate resources?",
        "options": [
            {
                "text": "Through centralized planning where the government determines production and distribution.",
                "feedback": "Correct! Central planning directs resource allocation.",
                "is_correct": true
            },
            {
                "text": "Through decentralized market forces.",
                "feedback": "Incorrect! That describes market economies.",
                "is_correct": false
            },
            {
                "text": "By random distribution among citizens.",
                "feedback": "Incorrect! There is systematic planning.",
                "is_correct": false
            },
            {
                "text": "Via voluntary private enterprise exclusively.",
                "feedback": "Incorrect! That is a market approach.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q1",
        "question": "Which economic system is characterized by free-market principles and minimal government control?",
        "options": [
            {
                "text": "A market economy.",
                "feedback": "Correct! Market economies are driven by supply and demand.",
                "is_correct": true
            },
            {
                "text": "A command economy.",
                "feedback": "Incorrect! Command economies are government-controlled.",
                "is_correct": false
            },
            {
                "text": "A mixed economy.",
                "feedback": "Incorrect! Mixed combines elements.",
                "is_correct": false
            },
            {
                "text": "A traditional economy.",
                "feedback": "Incorrect! Traditional economies rely on customs.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q8",
        "question": "How does economic globalization affect domestic economies?",
        "options": [
            {
                "text": "It integrates national economies into a global network, encouraging trade, investment, and the exchange of ideas, which can lead to growth and competition.",
                "feedback": "Correct! Globalization interconnects markets.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic markets completely.",
                "feedback": "Incorrect! It opens markets.",
                "is_correct": false
            },
            {
                "text": "It removes all cultural influences from economic activity.",
                "feedback": "Incorrect! Culture remains influential.",
                "is_correct": false
            },
            {
                "text": "It prevents technological transfer.",
                "feedback": "Incorrect! Globalization often accelerates it.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q11",
        "question": "How can government policies help reduce economic inequality?",
        "options": [
            {
                "text": "By implementing progressive taxation, social welfare programs, and investing in education and healthcare to redistribute wealth.",
                "feedback": "Correct! Policies can address disparities.",
                "is_correct": true
            },
            {
                "text": "By eliminating all taxes on high incomes.",
                "feedback": "Incorrect! That would increase inequality.",
                "is_correct": false
            },
            {
                "text": "By reducing public spending on social services.",
                "feedback": "Incorrect! That worsens inequality.",
                "is_correct": false
            },
            {
                "text": "By exclusively promoting private monopolies.",
                "feedback": "Incorrect! That reduces competition.\n\n::U44_New_Q12:: What is the main function of the \u201cHuman Development Index\u201d (HDI)? {",
                "is_correct": false
            },
            {
                "text": "To measure overall human development, incorporating health, education, and income indicators.",
                "feedback": "Correct! HDI is a composite development indicator.",
                "is_correct": true
            },
            {
                "text": "To solely calculate a country\u2019s GDP.",
                "feedback": "Incorrect! GDP is only one economic measure.",
                "is_correct": false
            },
            {
                "text": "To assess only the technological progress of a nation.",
                "feedback": "Incorrect! HDI is broader.",
                "is_correct": false
            },
            {
                "text": "To determine the total population size.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q13:: Which economic indicator reflects the standard of living of a country\u2019s citizens? {",
                "is_correct": false
            },
            {
                "text": "GDP per capita, which divides total GDP by the population.",
                "feedback": "Correct! It approximates average income.",
                "is_correct": true
            },
            {
                "text": "Total GDP.",
                "feedback": "Incorrect! That does not account for population.",
                "is_correct": false
            },
            {
                "text": "The unemployment rate exclusively.",
                "feedback": "Incorrect! That is one aspect.",
                "is_correct": false
            },
            {
                "text": "The dependency ratio.",
                "feedback": "Incorrect! That measures age structure.\n\n::U44_New_Q14:: What does \u201csustainable economic development\u201d require? {",
                "is_correct": false
            },
            {
                "text": "An approach that balances growth, environmental stewardship, and social inclusion to ensure long-term prosperity.",
                "feedback": "Correct! Sustainability integrates all three pillars.",
                "is_correct": true
            },
            {
                "text": "Unlimited resource extraction.",
                "feedback": "Incorrect! That is unsustainable.",
                "is_correct": false
            },
            {
                "text": "A sole focus on economic growth.",
                "feedback": "Incorrect! Environmental and social aspects are essential.",
                "is_correct": false
            },
            {
                "text": "The elimination of all market competition.",
                "feedback": "Incorrect! Competition is important.\n\n::U44_New_Q15:: Which statement best describes the economic organization of the world? {",
                "is_correct": false
            },
            {
                "text": "It is an interconnected system where national economies participate in global trade, investment, and financial markets.",
                "feedback": "Correct! Global interdependence is key.",
                "is_correct": true
            },
            {
                "text": "It consists of completely isolated national economies.",
                "feedback": "Incorrect! Isolation is rare.",
                "is_correct": false
            },
            {
                "text": "It is dominated by a single world government controlling all economic activity.",
                "feedback": "Incorrect! No such government exists.",
                "is_correct": false
            },
            {
                "text": "It is static and unchanging over time.",
                "feedback": "Incorrect! Global economics are dynamic.\n\n::U44_New_Q16:: How do technological innovations drive economic development? {",
                "is_correct": false
            },
            {
                "text": "They improve productivity, create new industries, and enhance the efficiency of existing sectors, leading to overall growth.",
                "feedback": "Correct! Innovation is a growth engine.",
                "is_correct": true
            },
            {
                "text": "They only benefit the technology sector, not the broader economy.",
                "feedback": "Incorrect! Their impact is widespread.",
                "is_correct": false
            },
            {
                "text": "They have no effect on the quality of products.",
                "feedback": "Incorrect! They often improve quality.",
                "is_correct": false
            },
            {
                "text": "They reduce the need for skilled labor entirely.",
                "feedback": "Incorrect! They shift, rather than eliminate, labor needs.\n\n::U44_New_Q17:: What is \u201ceconomic inequality\u201d and why is it significant? {",
                "is_correct": false
            },
            {
                "text": "It refers to the unequal distribution of income and wealth, which can hinder social cohesion and sustainable development.",
                "feedback": "Correct! Inequality is a major challenge.",
                "is_correct": true
            },
            {
                "text": "It indicates that everyone earns the same income.",
                "feedback": "Incorrect! That is equality.",
                "is_correct": false
            },
            {
                "text": "It only affects developing countries.",
                "feedback": "Incorrect! It is a global issue.",
                "is_correct": false
            },
            {
                "text": "It is solely measured by the difference in ages.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q18:: How can foreign direct investment (FDI) stimulate economic development? {",
                "is_correct": false
            },
            {
                "text": "By introducing capital, advanced technology, and management expertise, which can boost local industries and employment.",
                "feedback": "Correct! FDI can transform economies.",
                "is_correct": true
            },
            {
                "text": "By causing a complete loss of domestic control over industries.",
                "feedback": "Incorrect! FDI generally complements local enterprise.",
                "is_correct": false
            },
            {
                "text": "By reducing the overall competitiveness of the market.",
                "feedback": "Incorrect! It usually increases competition.",
                "is_correct": false
            },
            {
                "text": "By exclusively focusing on short-term profit.",
                "feedback": "Incorrect! FDI is often long-term.\n\n::U44_New_Q19:: What does \u201ceconomic globalization\u201d imply? {",
                "is_correct": false
            },
            {
                "text": "The increasing integration and interdependence of national economies through international trade, investment, and information exchange.",
                "feedback": "Correct! Globalization connects nations.",
                "is_correct": true
            },
            {
                "text": "The isolation of individual economies from each other.",
                "feedback": "Incorrect! It is the opposite.",
                "is_correct": false
            },
            {
                "text": "The dissolution of all economic borders permanently.",
                "feedback": "Incorrect! Borders remain, but trade increases.",
                "is_correct": false
            },
            {
                "text": "A complete shutdown of domestic industries.",
                "feedback": "Incorrect! Globalization encourages both domestic and international activity.\n\n::U44_New_Q20:: Which factor is most critical for ensuring long-term sustainable development? {",
                "is_correct": false
            },
            {
                "text": "Balancing economic growth with the conservation of natural resources and social equity.",
                "feedback": "Correct! Sustainability requires a balanced approach.",
                "is_correct": true
            },
            {
                "text": "Maximizing short-term industrial output regardless of environmental costs.",
                "feedback": "Incorrect! That undermines sustainability.",
                "is_correct": false
            },
            {
                "text": "Focusing solely on economic indicators like GDP.",
                "feedback": "Incorrect! Broader measures are needed.",
                "is_correct": false
            },
            {
                "text": "Ignoring cultural and social factors.",
                "feedback": "Incorrect! Social inclusion is vital.\n\n::U44_New_Q21:: What is the role of international trade in economic development? {",
                "is_correct": false
            },
            {
                "text": "It expands markets, promotes competition, and facilitates the transfer of technology and innovation among nations.",
                "feedback": "Correct! Trade is a key driver.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic industries from global influences.",
                "feedback": "Incorrect! It integrates them.",
                "is_correct": false
            },
            {
                "text": "It always leads to reduced employment.",
                "feedback": "Incorrect! It can create jobs.",
                "is_correct": false
            },
            {
                "text": "It solely benefits exporting countries.",
                "feedback": "Incorrect! Trade is mutually beneficial.\n\n::U44_New_Q22:: How does economic diversification improve an economy\u2019s resilience? {",
                "is_correct": false
            },
            {
                "text": "By spreading risk across multiple sectors, reducing vulnerability to sector-specific downturns.",
                "feedback": "Correct! Diversification stabilizes the economy.",
                "is_correct": true
            },
            {
                "text": "By concentrating all resources in a single sector.",
                "feedback": "Incorrect! That increases risk.",
                "is_correct": false
            },
            {
                "text": "By reducing technological innovation.",
                "feedback": "Incorrect! Diversification often promotes innovation.",
                "is_correct": false
            },
            {
                "text": "By eliminating foreign trade.",
                "feedback": "Incorrect! Trade is a diversification strategy.\n\n::U44_New_Q23:: What is a potential drawback of rapid economic development without proper regulation? {",
                "is_correct": false
            },
            {
                "text": "It can lead to environmental degradation and social disparities that ultimately undermine sustainable growth.",
                "feedback": "Correct! Unchecked development has hidden costs.",
                "is_correct": true
            },
            {
                "text": "It guarantees improved quality of life for all citizens.",
                "feedback": "Incorrect! Benefits are not uniform.",
                "is_correct": false
            },
            {
                "text": "It automatically reduces economic inequality.",
                "feedback": "Incorrect! Inequality may worsen.",
                "is_correct": false
            },
            {
                "text": "It eliminates the need for international cooperation.",
                "feedback": "Incorrect! Global issues remain.\n\n::U44_New_Q24:: Which indicator is most useful for measuring a country\u2019s economic performance? {",
                "is_correct": false
            },
            {
                "text": "Gross Domestic Product (GDP) as it reflects the total economic output.",
                "feedback": "Correct! GDP is the standard measure.",
                "is_correct": true
            },
            {
                "text": "The number of universities in the country.",
                "feedback": "Incorrect! That is an educational metric.",
                "is_correct": false
            },
            {
                "text": "The average annual temperature.",
                "feedback": "Incorrect! That is climatological.",
                "is_correct": false
            },
            {
                "text": "The total length of roads.",
                "feedback": "Incorrect! That is infrastructural.\n\n::U44_New_Q25:: What does \u201csustainable economic development\u201d aim to achieve? {",
                "is_correct": false
            },
            {
                "text": "It strives to meet present economic needs without compromising the ability of future generations to meet their own needs, balancing growth with environmental and social concerns.",
                "feedback": "Correct! Sustainability is multi-dimensional.",
                "is_correct": true
            },
            {
                "text": "It focuses solely on rapid industrial growth.",
                "feedback": "Incorrect! That can deplete resources.",
                "is_correct": false
            },
            {
                "text": "It ignores the impact on natural ecosystems.",
                "feedback": "Incorrect! Environmental protection is essential.",
                "is_correct": false
            },
            {
                "text": "It relies exclusively on traditional manufacturing techniques.",
                "feedback": "Incorrect! Modern, sustainable practices are key.",
                "is_correct": false
            }
        ],
        "correct": 56
    },
    {
        "title": "U44_New_Q10",
        "question": "What does \u201ceconomic diversification\u201d aim to achieve?",
        "options": [
            {
                "text": "It reduces reliance on a single industry or resource, spreading risk and promoting long-term stability.",
                "feedback": "Correct! Diversification stabilizes economies.",
                "is_correct": true
            },
            {
                "text": "It concentrates all economic activity in one sector.",
                "feedback": "Incorrect! That increases vulnerability.",
                "is_correct": false
            },
            {
                "text": "It solely focuses on increasing short-term profits.",
                "feedback": "Incorrect! It is about balanced growth.",
                "is_correct": false
            },
            {
                "text": "It ignores technological innovation.",
                "feedback": "Incorrect! Innovation is a key aspect.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q5",
        "question": "How is Gross Domestic Product (GDP) best defined?",
        "options": [
            {
                "text": "The total monetary value of all final goods and services produced within a country in a specific period.",
                "feedback": "Correct! GDP measures economic output.",
                "is_correct": true
            },
            {
                "text": "The average income per person.",
                "feedback": "Incorrect! That is GDP per capita.",
                "is_correct": false
            },
            {
                "text": "The total exports of a country.",
                "feedback": "Incorrect! Exports are a component of GDP.",
                "is_correct": false
            },
            {
                "text": "The ratio of population to land area.",
                "feedback": "Incorrect! That is population density.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q4",
        "question": "What is the primary objective of sustainable economic development?",
        "options": [
            {
                "text": "To promote growth that meets present needs without compromising the ability of future generations, integrating environmental and social well-being.",
                "feedback": "Correct! Sustainability balances growth and conservation.",
                "is_correct": true
            },
            {
                "text": "To maximize short-term profits regardless of external costs.",
                "feedback": "Incorrect! That neglects future impacts.",
                "is_correct": false
            },
            {
                "text": "To focus exclusively on industrial expansion.",
                "feedback": "Incorrect! That may deplete resources.",
                "is_correct": false
            },
            {
                "text": "To eliminate government regulation entirely.",
                "feedback": "Incorrect! Regulation is vital for sustainability.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q6",
        "question": "Which factor most directly contributes to economic inequality?",
        "options": [
            {
                "text": "Unequal distribution of income and wealth among different segments of the population.",
                "feedback": "Correct! Inequality reflects disparity.",
                "is_correct": true
            },
            {
                "text": "Uniform access to education for all.",
                "feedback": "Incorrect! That would reduce inequality.",
                "is_correct": false
            },
            {
                "text": "Equal opportunities in employment.",
                "feedback": "Incorrect! That minimizes inequality.",
                "is_correct": false
            },
            {
                "text": "A balanced trade system.",
                "feedback": "Incorrect! Trade balance is separate.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q3",
        "question": "What defines a mixed economy?",
        "options": [
            {
                "text": "It combines elements of both market and command economies, allowing private enterprise alongside government intervention.",
                "feedback": "Correct! Mixed economies balance both.",
                "is_correct": true
            },
            {
                "text": "It is entirely market-driven with no state regulation.",
                "feedback": "Incorrect! That is a pure market economy.",
                "is_correct": false
            },
            {
                "text": "It is fully controlled by the government.",
                "feedback": "Incorrect! That is a command economy.",
                "is_correct": false
            },
            {
                "text": "It relies solely on traditional practices.",
                "feedback": "Incorrect! Traditional economies differ.",
                "is_correct": false
            }
        ],
        "correct": 0
    }
];
              let currentQuestion = 0;
              let score = 0;
              let timerInterval;
              let timeRemaining = 30;
              let variantCompleted = false;
              
              function startTimer() {
                  timeRemaining = 30;
                  document.getElementById("timer-3").textContent = "Time Remaining: " + timeRemaining + " seconds";
                  timerInterval = setInterval(() => {
                      timeRemaining--;
                      document.getElementById("timer-3").textContent = "Time Remaining: " + timeRemaining + " seconds";
                      if (timeRemaining <= 0) {
                          clearInterval(timerInterval);
                          document.getElementById("next-btn-3").disabled = false;
                          const inputs = document.querySelectorAll("input[name='question-" + currentQuestion + "']");
                          inputs.forEach(input => input.disabled = true);
                          const feedbackDiv = document.querySelector("#quiz-container-3 .feedback");
                          if (feedbackDiv) {
                              feedbackDiv.textContent = "Time's up!";
                              feedbackDiv.className = "feedback incorrect";
                              feedbackDiv.style.display = "block";
                          }
                      }
                  }, 1000);
              }
              
              function displayQuestion(index) {
                  clearInterval(timerInterval);
                  timeRemaining = 30;
                  document.getElementById("timer-3").style.display = "block";
                  const container = document.getElementById("quiz-container-3");
                  container.innerHTML = "";
                  if (index >= quizData.length) {
                      showFinalResults();
                      return;
                  }
                  const q = quizData[index];
                  const questionDiv = document.createElement("div");
                  questionDiv.className = "question-panel";
                  const questionText = document.createElement("h3");
                  questionText.textContent = (index + 1) + ". " + q.question;
                  questionDiv.appendChild(questionText);
                  // Use a fieldset to wrap the options
                  const fieldset = document.createElement("fieldset");
                  fieldset.style.backgroundColor = "#948644";
                  fieldset.style.color = "black";
                  fieldset.style.border = "none";
                  fieldset.style.padding = "10px";
                  fieldset.className = "options-fieldset";
                  
                  q.options.forEach((option, oIndex) => {
                      const optionLabel = document.createElement("label");
                      optionLabel.style.display = "block";
                      // Increase radio button size via transform
                      const radioInput = document.createElement("input");
                      radioInput.type = "radio";
                      radioInput.name = "question-" + index;
                      radioInput.value = oIndex;
                      radioInput.style.transform = "scale(1.5)";
                      radioInput.style.marginRight = "15px";
                      radioInput.onclick = function() {
                          checkAnswer(index, oIndex, questionDiv);
                          document.getElementById("next-btn-3").disabled = false;
                          clearInterval(timerInterval);
                      };
                      optionLabel.appendChild(radioInput);
                      optionLabel.appendChild(document.createTextNode(option.text));
                      fieldset.appendChild(optionLabel);
                  });
                  questionDiv.appendChild(fieldset);
                  const feedbackDiv = document.createElement("div");
                  feedbackDiv.className = "feedback";
                  questionDiv.appendChild(feedbackDiv);
                  container.appendChild(questionDiv);
                  document.getElementById("next-btn-3").disabled = true;
                  startTimer();
              }
              
              function checkAnswer(questionIndex, selectedOption, questionDiv) {
                  const feedbackDiv = questionDiv.querySelector(".feedback");
                  const question = quizData[questionIndex];
                  const selected = question.options[selectedOption];
                  if (selected.is_correct) {
                      feedbackDiv.textContent = selected.feedback || "Correct!";
                      feedbackDiv.className = "feedback correct";
                      score++;
                  } else {
                      feedbackDiv.textContent = selected.feedback || "Incorrect!";
                      feedbackDiv.className = "feedback incorrect";
                  }
                  feedbackDiv.style.display = "block";
                  const inputs = questionDiv.querySelectorAll("input");
                  inputs.forEach(input => input.disabled = true);
              }
              
              function showFinalResults() {
                  clearInterval(timerInterval);
                  document.getElementById("timer-3").style.display = "none";
                  const container = document.getElementById("quiz-container-3");
                  container.innerHTML = "";
                  document.getElementById("next-btn-3").style.display = "none";
                  const finalMessageDiv = document.getElementById("final-message-3");
                  const total = quizData.length;
                  const percentage = Math.round((score / total) * 100);
                  let generalFeedback = "";
                  if (percentage < 30) {
                      generalFeedback = "Your score is below 30%. It looks like you need more practice, but don't be discouraged! Enroll in our course to build a strong foundation. Not only will you gain the skills to improve your performance, but you'll also have the opportunity to earn an internationally recognized graded certificate and detailed online report. Plus, our course connects you to a global network of scholarships and grants—imagine the possibility of financial rewards if you top your category!";
                  } else if (percentage < 50) {
                      generalFeedback = "Your score is below 50%, which means there’s significant room for improvement. Consider enrolling in our course to boost your skills and academic confidence. With our comprehensive curriculum, you can work towards an internationally accepted graded certificate, complete with a verifiable online report. Additionally, we offer access to international scholarships, grants, and even financial rewards for exceptional performance.";
                  } else if (percentage < 70) {
                      generalFeedback = "You scored below 70%. With a bit more guidance from our course, you could truly excel! Our program is designed to enhance your academic prowess and help you achieve an internationally recognized graded certificate with a detailed online report. Moreover, by joining, you'll tap into a vast network of resources including scholarships, grants, and the potential for financial rewards if you secure the top position in your category.";;
                  } else if (percentage < 90) {
                      generalFeedback = "Great job! You scored below 90%. You’re almost there—just a little more effort, and you can reach perfection. Our course not only refines your skills but also offers the chance to earn a verifiable, internationally accepted graded certificate and detailed graded report. Plus, you’ll gain access to an international network of scholarships, grants, and financial incentives for top-ranking students.";
                  } else {
                      generalFeedback = "Excellent! You scored above 90%, showcasing near mastery of the subject. For even more advanced insights, consider our premium course. By enrolling, you'll have the opportunity to earn an internationally recognized graded certificate along with a detailed online report. You will also be matched with valuable resources, including scholarships, grants, and the chance to receive financial rewards if you rank 1st in your category.";
                  }
                  finalMessageDiv.innerHTML = `
                      <p>Your Score: <strong>${score}</strong> out of <strong>${total}</strong> (${percentage}%).</p>
                      <p>${generalFeedback}</p>
                      <a id="enroll-btn-3" class="enroll-btn" href="#" onclick="alert('Redirecting to enrollment page...'); return false;">CLICK THE BLUE BUTTON BELOW</a>
                  `;
                  finalMessageDiv.style.display = "block";
                  variantCompleted = true;
                  if (typeof window.setGlobalVariantCompleted === "function") {
                      window.setGlobalVariantCompleted();
                  }
              }
              
              document.getElementById("next-btn-3").onclick = function() {
                  currentQuestion++;
                  displayQuestion(currentQuestion);
              };
              
              window.addEventListener("load", function() {
                  displayQuestion(currentQuestion);
              });
          })();
      </script>
    </div>
    
    <div class="page" id="page-4" style="display:none;">
      <div id="timer-4" class="timer">Time Remaining: 30 seconds</div>
      <div id="quiz-container-4" class="quiz-container"></div>
      <div style="text-align: center; margin-top:20px;">
          <button id="next-btn-4" class="next-btn" disabled>Next Trial</button>
      </div>
      <div id="final-message-4" class="final-message" style="display: none;"></div>
      <script>
          (function(){
              const quizData = [
    {
        "title": "U44_New_Q9",
        "question": "What is one major disadvantage of a command economy?",
        "options": [
            {
                "text": "It can lead to inefficiencies, resource misallocation, and shortages due to the lack of market signals.",
                "feedback": "Correct! Central planning often causes inefficiencies.",
                "is_correct": true
            },
            {
                "text": "It always results in higher innovation.",
                "feedback": "Incorrect! Innovation may be stifled.",
                "is_correct": false
            },
            {
                "text": "It guarantees low unemployment rates.",
                "feedback": "Incorrect! Employment issues can persist.",
                "is_correct": false
            },
            {
                "text": "It eliminates all forms of economic inequality.",
                "feedback": "Incorrect! Inequality can still exist.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q7",
        "question": "What does \u201cforeign direct investment\u201d (FDI) typically provide to a developing country?",
        "options": [
            {
                "text": "Capital, technology, and managerial expertise that can spur economic growth and job creation.",
                "feedback": "Correct! FDI is a major growth catalyst.",
                "is_correct": true
            },
            {
                "text": "Only short-term loans without technology transfer.",
                "feedback": "Incorrect! FDI is long-term.",
                "is_correct": false
            },
            {
                "text": "A reduction in local entrepreneurship.",
                "feedback": "Incorrect! It often stimulates local business.",
                "is_correct": false
            },
            {
                "text": "A guarantee of immediate economic prosperity.",
                "feedback": "Incorrect! Benefits develop over time.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q2",
        "question": "How does a command economy allocate resources?",
        "options": [
            {
                "text": "Through centralized planning where the government determines production and distribution.",
                "feedback": "Correct! Central planning directs resource allocation.",
                "is_correct": true
            },
            {
                "text": "Through decentralized market forces.",
                "feedback": "Incorrect! That describes market economies.",
                "is_correct": false
            },
            {
                "text": "By random distribution among citizens.",
                "feedback": "Incorrect! There is systematic planning.",
                "is_correct": false
            },
            {
                "text": "Via voluntary private enterprise exclusively.",
                "feedback": "Incorrect! That is a market approach.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q1",
        "question": "Which economic system is characterized by free-market principles and minimal government control?",
        "options": [
            {
                "text": "A market economy.",
                "feedback": "Correct! Market economies are driven by supply and demand.",
                "is_correct": true
            },
            {
                "text": "A command economy.",
                "feedback": "Incorrect! Command economies are government-controlled.",
                "is_correct": false
            },
            {
                "text": "A mixed economy.",
                "feedback": "Incorrect! Mixed combines elements.",
                "is_correct": false
            },
            {
                "text": "A traditional economy.",
                "feedback": "Incorrect! Traditional economies rely on customs.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q8",
        "question": "How does economic globalization affect domestic economies?",
        "options": [
            {
                "text": "It integrates national economies into a global network, encouraging trade, investment, and the exchange of ideas, which can lead to growth and competition.",
                "feedback": "Correct! Globalization interconnects markets.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic markets completely.",
                "feedback": "Incorrect! It opens markets.",
                "is_correct": false
            },
            {
                "text": "It removes all cultural influences from economic activity.",
                "feedback": "Incorrect! Culture remains influential.",
                "is_correct": false
            },
            {
                "text": "It prevents technological transfer.",
                "feedback": "Incorrect! Globalization often accelerates it.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q11",
        "question": "How can government policies help reduce economic inequality?",
        "options": [
            {
                "text": "By implementing progressive taxation, social welfare programs, and investing in education and healthcare to redistribute wealth.",
                "feedback": "Correct! Policies can address disparities.",
                "is_correct": true
            },
            {
                "text": "By eliminating all taxes on high incomes.",
                "feedback": "Incorrect! That would increase inequality.",
                "is_correct": false
            },
            {
                "text": "By reducing public spending on social services.",
                "feedback": "Incorrect! That worsens inequality.",
                "is_correct": false
            },
            {
                "text": "By exclusively promoting private monopolies.",
                "feedback": "Incorrect! That reduces competition.\n\n::U44_New_Q12:: What is the main function of the \u201cHuman Development Index\u201d (HDI)? {",
                "is_correct": false
            },
            {
                "text": "To measure overall human development, incorporating health, education, and income indicators.",
                "feedback": "Correct! HDI is a composite development indicator.",
                "is_correct": true
            },
            {
                "text": "To solely calculate a country\u2019s GDP.",
                "feedback": "Incorrect! GDP is only one economic measure.",
                "is_correct": false
            },
            {
                "text": "To assess only the technological progress of a nation.",
                "feedback": "Incorrect! HDI is broader.",
                "is_correct": false
            },
            {
                "text": "To determine the total population size.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q13:: Which economic indicator reflects the standard of living of a country\u2019s citizens? {",
                "is_correct": false
            },
            {
                "text": "GDP per capita, which divides total GDP by the population.",
                "feedback": "Correct! It approximates average income.",
                "is_correct": true
            },
            {
                "text": "Total GDP.",
                "feedback": "Incorrect! That does not account for population.",
                "is_correct": false
            },
            {
                "text": "The unemployment rate exclusively.",
                "feedback": "Incorrect! That is one aspect.",
                "is_correct": false
            },
            {
                "text": "The dependency ratio.",
                "feedback": "Incorrect! That measures age structure.\n\n::U44_New_Q14:: What does \u201csustainable economic development\u201d require? {",
                "is_correct": false
            },
            {
                "text": "An approach that balances growth, environmental stewardship, and social inclusion to ensure long-term prosperity.",
                "feedback": "Correct! Sustainability integrates all three pillars.",
                "is_correct": true
            },
            {
                "text": "Unlimited resource extraction.",
                "feedback": "Incorrect! That is unsustainable.",
                "is_correct": false
            },
            {
                "text": "A sole focus on economic growth.",
                "feedback": "Incorrect! Environmental and social aspects are essential.",
                "is_correct": false
            },
            {
                "text": "The elimination of all market competition.",
                "feedback": "Incorrect! Competition is important.\n\n::U44_New_Q15:: Which statement best describes the economic organization of the world? {",
                "is_correct": false
            },
            {
                "text": "It is an interconnected system where national economies participate in global trade, investment, and financial markets.",
                "feedback": "Correct! Global interdependence is key.",
                "is_correct": true
            },
            {
                "text": "It consists of completely isolated national economies.",
                "feedback": "Incorrect! Isolation is rare.",
                "is_correct": false
            },
            {
                "text": "It is dominated by a single world government controlling all economic activity.",
                "feedback": "Incorrect! No such government exists.",
                "is_correct": false
            },
            {
                "text": "It is static and unchanging over time.",
                "feedback": "Incorrect! Global economics are dynamic.\n\n::U44_New_Q16:: How do technological innovations drive economic development? {",
                "is_correct": false
            },
            {
                "text": "They improve productivity, create new industries, and enhance the efficiency of existing sectors, leading to overall growth.",
                "feedback": "Correct! Innovation is a growth engine.",
                "is_correct": true
            },
            {
                "text": "They only benefit the technology sector, not the broader economy.",
                "feedback": "Incorrect! Their impact is widespread.",
                "is_correct": false
            },
            {
                "text": "They have no effect on the quality of products.",
                "feedback": "Incorrect! They often improve quality.",
                "is_correct": false
            },
            {
                "text": "They reduce the need for skilled labor entirely.",
                "feedback": "Incorrect! They shift, rather than eliminate, labor needs.\n\n::U44_New_Q17:: What is \u201ceconomic inequality\u201d and why is it significant? {",
                "is_correct": false
            },
            {
                "text": "It refers to the unequal distribution of income and wealth, which can hinder social cohesion and sustainable development.",
                "feedback": "Correct! Inequality is a major challenge.",
                "is_correct": true
            },
            {
                "text": "It indicates that everyone earns the same income.",
                "feedback": "Incorrect! That is equality.",
                "is_correct": false
            },
            {
                "text": "It only affects developing countries.",
                "feedback": "Incorrect! It is a global issue.",
                "is_correct": false
            },
            {
                "text": "It is solely measured by the difference in ages.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q18:: How can foreign direct investment (FDI) stimulate economic development? {",
                "is_correct": false
            },
            {
                "text": "By introducing capital, advanced technology, and management expertise, which can boost local industries and employment.",
                "feedback": "Correct! FDI can transform economies.",
                "is_correct": true
            },
            {
                "text": "By causing a complete loss of domestic control over industries.",
                "feedback": "Incorrect! FDI generally complements local enterprise.",
                "is_correct": false
            },
            {
                "text": "By reducing the overall competitiveness of the market.",
                "feedback": "Incorrect! It usually increases competition.",
                "is_correct": false
            },
            {
                "text": "By exclusively focusing on short-term profit.",
                "feedback": "Incorrect! FDI is often long-term.\n\n::U44_New_Q19:: What does \u201ceconomic globalization\u201d imply? {",
                "is_correct": false
            },
            {
                "text": "The increasing integration and interdependence of national economies through international trade, investment, and information exchange.",
                "feedback": "Correct! Globalization connects nations.",
                "is_correct": true
            },
            {
                "text": "The isolation of individual economies from each other.",
                "feedback": "Incorrect! It is the opposite.",
                "is_correct": false
            },
            {
                "text": "The dissolution of all economic borders permanently.",
                "feedback": "Incorrect! Borders remain, but trade increases.",
                "is_correct": false
            },
            {
                "text": "A complete shutdown of domestic industries.",
                "feedback": "Incorrect! Globalization encourages both domestic and international activity.\n\n::U44_New_Q20:: Which factor is most critical for ensuring long-term sustainable development? {",
                "is_correct": false
            },
            {
                "text": "Balancing economic growth with the conservation of natural resources and social equity.",
                "feedback": "Correct! Sustainability requires a balanced approach.",
                "is_correct": true
            },
            {
                "text": "Maximizing short-term industrial output regardless of environmental costs.",
                "feedback": "Incorrect! That undermines sustainability.",
                "is_correct": false
            },
            {
                "text": "Focusing solely on economic indicators like GDP.",
                "feedback": "Incorrect! Broader measures are needed.",
                "is_correct": false
            },
            {
                "text": "Ignoring cultural and social factors.",
                "feedback": "Incorrect! Social inclusion is vital.\n\n::U44_New_Q21:: What is the role of international trade in economic development? {",
                "is_correct": false
            },
            {
                "text": "It expands markets, promotes competition, and facilitates the transfer of technology and innovation among nations.",
                "feedback": "Correct! Trade is a key driver.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic industries from global influences.",
                "feedback": "Incorrect! It integrates them.",
                "is_correct": false
            },
            {
                "text": "It always leads to reduced employment.",
                "feedback": "Incorrect! It can create jobs.",
                "is_correct": false
            },
            {
                "text": "It solely benefits exporting countries.",
                "feedback": "Incorrect! Trade is mutually beneficial.\n\n::U44_New_Q22:: How does economic diversification improve an economy\u2019s resilience? {",
                "is_correct": false
            },
            {
                "text": "By spreading risk across multiple sectors, reducing vulnerability to sector-specific downturns.",
                "feedback": "Correct! Diversification stabilizes the economy.",
                "is_correct": true
            },
            {
                "text": "By concentrating all resources in a single sector.",
                "feedback": "Incorrect! That increases risk.",
                "is_correct": false
            },
            {
                "text": "By reducing technological innovation.",
                "feedback": "Incorrect! Diversification often promotes innovation.",
                "is_correct": false
            },
            {
                "text": "By eliminating foreign trade.",
                "feedback": "Incorrect! Trade is a diversification strategy.\n\n::U44_New_Q23:: What is a potential drawback of rapid economic development without proper regulation? {",
                "is_correct": false
            },
            {
                "text": "It can lead to environmental degradation and social disparities that ultimately undermine sustainable growth.",
                "feedback": "Correct! Unchecked development has hidden costs.",
                "is_correct": true
            },
            {
                "text": "It guarantees improved quality of life for all citizens.",
                "feedback": "Incorrect! Benefits are not uniform.",
                "is_correct": false
            },
            {
                "text": "It automatically reduces economic inequality.",
                "feedback": "Incorrect! Inequality may worsen.",
                "is_correct": false
            },
            {
                "text": "It eliminates the need for international cooperation.",
                "feedback": "Incorrect! Global issues remain.\n\n::U44_New_Q24:: Which indicator is most useful for measuring a country\u2019s economic performance? {",
                "is_correct": false
            },
            {
                "text": "Gross Domestic Product (GDP) as it reflects the total economic output.",
                "feedback": "Correct! GDP is the standard measure.",
                "is_correct": true
            },
            {
                "text": "The number of universities in the country.",
                "feedback": "Incorrect! That is an educational metric.",
                "is_correct": false
            },
            {
                "text": "The average annual temperature.",
                "feedback": "Incorrect! That is climatological.",
                "is_correct": false
            },
            {
                "text": "The total length of roads.",
                "feedback": "Incorrect! That is infrastructural.\n\n::U44_New_Q25:: What does \u201csustainable economic development\u201d aim to achieve? {",
                "is_correct": false
            },
            {
                "text": "It strives to meet present economic needs without compromising the ability of future generations to meet their own needs, balancing growth with environmental and social concerns.",
                "feedback": "Correct! Sustainability is multi-dimensional.",
                "is_correct": true
            },
            {
                "text": "It focuses solely on rapid industrial growth.",
                "feedback": "Incorrect! That can deplete resources.",
                "is_correct": false
            },
            {
                "text": "It ignores the impact on natural ecosystems.",
                "feedback": "Incorrect! Environmental protection is essential.",
                "is_correct": false
            },
            {
                "text": "It relies exclusively on traditional manufacturing techniques.",
                "feedback": "Incorrect! Modern, sustainable practices are key.",
                "is_correct": false
            }
        ],
        "correct": 56
    },
    {
        "title": "U44_New_Q10",
        "question": "What does \u201ceconomic diversification\u201d aim to achieve?",
        "options": [
            {
                "text": "It reduces reliance on a single industry or resource, spreading risk and promoting long-term stability.",
                "feedback": "Correct! Diversification stabilizes economies.",
                "is_correct": true
            },
            {
                "text": "It concentrates all economic activity in one sector.",
                "feedback": "Incorrect! That increases vulnerability.",
                "is_correct": false
            },
            {
                "text": "It solely focuses on increasing short-term profits.",
                "feedback": "Incorrect! It is about balanced growth.",
                "is_correct": false
            },
            {
                "text": "It ignores technological innovation.",
                "feedback": "Incorrect! Innovation is a key aspect.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q5",
        "question": "How is Gross Domestic Product (GDP) best defined?",
        "options": [
            {
                "text": "The total monetary value of all final goods and services produced within a country in a specific period.",
                "feedback": "Correct! GDP measures economic output.",
                "is_correct": true
            },
            {
                "text": "The average income per person.",
                "feedback": "Incorrect! That is GDP per capita.",
                "is_correct": false
            },
            {
                "text": "The total exports of a country.",
                "feedback": "Incorrect! Exports are a component of GDP.",
                "is_correct": false
            },
            {
                "text": "The ratio of population to land area.",
                "feedback": "Incorrect! That is population density.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q4",
        "question": "What is the primary objective of sustainable economic development?",
        "options": [
            {
                "text": "To promote growth that meets present needs without compromising the ability of future generations, integrating environmental and social well-being.",
                "feedback": "Correct! Sustainability balances growth and conservation.",
                "is_correct": true
            },
            {
                "text": "To maximize short-term profits regardless of external costs.",
                "feedback": "Incorrect! That neglects future impacts.",
                "is_correct": false
            },
            {
                "text": "To focus exclusively on industrial expansion.",
                "feedback": "Incorrect! That may deplete resources.",
                "is_correct": false
            },
            {
                "text": "To eliminate government regulation entirely.",
                "feedback": "Incorrect! Regulation is vital for sustainability.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q6",
        "question": "Which factor most directly contributes to economic inequality?",
        "options": [
            {
                "text": "Unequal distribution of income and wealth among different segments of the population.",
                "feedback": "Correct! Inequality reflects disparity.",
                "is_correct": true
            },
            {
                "text": "Uniform access to education for all.",
                "feedback": "Incorrect! That would reduce inequality.",
                "is_correct": false
            },
            {
                "text": "Equal opportunities in employment.",
                "feedback": "Incorrect! That minimizes inequality.",
                "is_correct": false
            },
            {
                "text": "A balanced trade system.",
                "feedback": "Incorrect! Trade balance is separate.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q3",
        "question": "What defines a mixed economy?",
        "options": [
            {
                "text": "It combines elements of both market and command economies, allowing private enterprise alongside government intervention.",
                "feedback": "Correct! Mixed economies balance both.",
                "is_correct": true
            },
            {
                "text": "It is entirely market-driven with no state regulation.",
                "feedback": "Incorrect! That is a pure market economy.",
                "is_correct": false
            },
            {
                "text": "It is fully controlled by the government.",
                "feedback": "Incorrect! That is a command economy.",
                "is_correct": false
            },
            {
                "text": "It relies solely on traditional practices.",
                "feedback": "Incorrect! Traditional economies differ.",
                "is_correct": false
            }
        ],
        "correct": 0
    }
];
              let currentQuestion = 0;
              let score = 0;
              let timerInterval;
              let timeRemaining = 30;
              let variantCompleted = false;
              
              function startTimer() {
                  timeRemaining = 30;
                  document.getElementById("timer-4").textContent = "Time Remaining: " + timeRemaining + " seconds";
                  timerInterval = setInterval(() => {
                      timeRemaining--;
                      document.getElementById("timer-4").textContent = "Time Remaining: " + timeRemaining + " seconds";
                      if (timeRemaining <= 0) {
                          clearInterval(timerInterval);
                          document.getElementById("next-btn-4").disabled = false;
                          const inputs = document.querySelectorAll("input[name='question-" + currentQuestion + "']");
                          inputs.forEach(input => input.disabled = true);
                          const feedbackDiv = document.querySelector("#quiz-container-4 .feedback");
                          if (feedbackDiv) {
                              feedbackDiv.textContent = "Time's up!";
                              feedbackDiv.className = "feedback incorrect";
                              feedbackDiv.style.display = "block";
                          }
                      }
                  }, 1000);
              }
              
              function displayQuestion(index) {
                  clearInterval(timerInterval);
                  timeRemaining = 30;
                  document.getElementById("timer-4").style.display = "block";
                  const container = document.getElementById("quiz-container-4");
                  container.innerHTML = "";
                  if (index >= quizData.length) {
                      showFinalResults();
                      return;
                  }
                  const q = quizData[index];
                  const questionDiv = document.createElement("div");
                  questionDiv.className = "question-panel";
                  const questionText = document.createElement("h3");
                  questionText.textContent = (index + 1) + ". " + q.question;
                  questionDiv.appendChild(questionText);
                  // Use a fieldset to wrap the options
                  const fieldset = document.createElement("fieldset");
                  fieldset.style.backgroundColor = "#948644";
                  fieldset.style.color = "black";
                  fieldset.style.border = "none";
                  fieldset.style.padding = "10px";
                  fieldset.className = "options-fieldset";
                  
                  q.options.forEach((option, oIndex) => {
                      const optionLabel = document.createElement("label");
                      optionLabel.style.display = "block";
                      // Increase radio button size via transform
                      const radioInput = document.createElement("input");
                      radioInput.type = "radio";
                      radioInput.name = "question-" + index;
                      radioInput.value = oIndex;
                      radioInput.style.transform = "scale(1.5)";
                      radioInput.style.marginRight = "15px";
                      radioInput.onclick = function() {
                          checkAnswer(index, oIndex, questionDiv);
                          document.getElementById("next-btn-4").disabled = false;
                          clearInterval(timerInterval);
                      };
                      optionLabel.appendChild(radioInput);
                      optionLabel.appendChild(document.createTextNode(option.text));
                      fieldset.appendChild(optionLabel);
                  });
                  questionDiv.appendChild(fieldset);
                  const feedbackDiv = document.createElement("div");
                  feedbackDiv.className = "feedback";
                  questionDiv.appendChild(feedbackDiv);
                  container.appendChild(questionDiv);
                  document.getElementById("next-btn-4").disabled = true;
                  startTimer();
              }
              
              function checkAnswer(questionIndex, selectedOption, questionDiv) {
                  const feedbackDiv = questionDiv.querySelector(".feedback");
                  const question = quizData[questionIndex];
                  const selected = question.options[selectedOption];
                  if (selected.is_correct) {
                      feedbackDiv.textContent = selected.feedback || "Correct!";
                      feedbackDiv.className = "feedback correct";
                      score++;
                  } else {
                      feedbackDiv.textContent = selected.feedback || "Incorrect!";
                      feedbackDiv.className = "feedback incorrect";
                  }
                  feedbackDiv.style.display = "block";
                  const inputs = questionDiv.querySelectorAll("input");
                  inputs.forEach(input => input.disabled = true);
              }
              
              function showFinalResults() {
                  clearInterval(timerInterval);
                  document.getElementById("timer-4").style.display = "none";
                  const container = document.getElementById("quiz-container-4");
                  container.innerHTML = "";
                  document.getElementById("next-btn-4").style.display = "none";
                  const finalMessageDiv = document.getElementById("final-message-4");
                  const total = quizData.length;
                  const percentage = Math.round((score / total) * 100);
                  let generalFeedback = "";
                  if (percentage < 30) {
                      generalFeedback = "Your score is below 30%. It looks like you need more practice, but don't be discouraged! Enroll in our course to build a strong foundation. Not only will you gain the skills to improve your performance, but you'll also have the opportunity to earn an internationally recognized graded certificate and detailed online report. Plus, our course connects you to a global network of scholarships and grants—imagine the possibility of financial rewards if you top your category!";
                  } else if (percentage < 50) {
                      generalFeedback = "Your score is below 50%, which means there’s significant room for improvement. Consider enrolling in our course to boost your skills and academic confidence. With our comprehensive curriculum, you can work towards an internationally accepted graded certificate, complete with a verifiable online report. Additionally, we offer access to international scholarships, grants, and even financial rewards for exceptional performance.";
                  } else if (percentage < 70) {
                      generalFeedback = "You scored below 70%. With a bit more guidance from our course, you could truly excel! Our program is designed to enhance your academic prowess and help you achieve an internationally recognized graded certificate with a detailed online report. Moreover, by joining, you'll tap into a vast network of resources including scholarships, grants, and the potential for financial rewards if you secure the top position in your category.";;
                  } else if (percentage < 90) {
                      generalFeedback = "Great job! You scored below 90%. You’re almost there—just a little more effort, and you can reach perfection. Our course not only refines your skills but also offers the chance to earn a verifiable, internationally accepted graded certificate and detailed graded report. Plus, you’ll gain access to an international network of scholarships, grants, and financial incentives for top-ranking students.";
                  } else {
                      generalFeedback = "Excellent! You scored above 90%, showcasing near mastery of the subject. For even more advanced insights, consider our premium course. By enrolling, you'll have the opportunity to earn an internationally recognized graded certificate along with a detailed online report. You will also be matched with valuable resources, including scholarships, grants, and the chance to receive financial rewards if you rank 1st in your category.";
                  }
                  finalMessageDiv.innerHTML = `
                      <p>Your Score: <strong>${score}</strong> out of <strong>${total}</strong> (${percentage}%).</p>
                      <p>${generalFeedback}</p>
                      <a id="enroll-btn-4" class="enroll-btn" href="#" onclick="alert('Redirecting to enrollment page...'); return false;">CLICK THE BLUE BUTTON BELOW</a>
                  `;
                  finalMessageDiv.style.display = "block";
                  variantCompleted = true;
                  if (typeof window.setGlobalVariantCompleted === "function") {
                      window.setGlobalVariantCompleted();
                  }
              }
              
              document.getElementById("next-btn-4").onclick = function() {
                  currentQuestion++;
                  displayQuestion(currentQuestion);
              };
              
              window.addEventListener("load", function() {
                  displayQuestion(currentQuestion);
              });
          })();
      </script>
    </div>
    
    <div class="page" id="page-5" style="display:none;">
      <div id="timer-5" class="timer">Time Remaining: 30 seconds</div>
      <div id="quiz-container-5" class="quiz-container"></div>
      <div style="text-align: center; margin-top:20px;">
          <button id="next-btn-5" class="next-btn" disabled>Next Trial</button>
      </div>
      <div id="final-message-5" class="final-message" style="display: none;"></div>
      <script>
          (function(){
              const quizData = [
    {
        "title": "U44_New_Q9",
        "question": "What is one major disadvantage of a command economy?",
        "options": [
            {
                "text": "It can lead to inefficiencies, resource misallocation, and shortages due to the lack of market signals.",
                "feedback": "Correct! Central planning often causes inefficiencies.",
                "is_correct": true
            },
            {
                "text": "It always results in higher innovation.",
                "feedback": "Incorrect! Innovation may be stifled.",
                "is_correct": false
            },
            {
                "text": "It guarantees low unemployment rates.",
                "feedback": "Incorrect! Employment issues can persist.",
                "is_correct": false
            },
            {
                "text": "It eliminates all forms of economic inequality.",
                "feedback": "Incorrect! Inequality can still exist.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q7",
        "question": "What does \u201cforeign direct investment\u201d (FDI) typically provide to a developing country?",
        "options": [
            {
                "text": "Capital, technology, and managerial expertise that can spur economic growth and job creation.",
                "feedback": "Correct! FDI is a major growth catalyst.",
                "is_correct": true
            },
            {
                "text": "Only short-term loans without technology transfer.",
                "feedback": "Incorrect! FDI is long-term.",
                "is_correct": false
            },
            {
                "text": "A reduction in local entrepreneurship.",
                "feedback": "Incorrect! It often stimulates local business.",
                "is_correct": false
            },
            {
                "text": "A guarantee of immediate economic prosperity.",
                "feedback": "Incorrect! Benefits develop over time.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q2",
        "question": "How does a command economy allocate resources?",
        "options": [
            {
                "text": "Through centralized planning where the government determines production and distribution.",
                "feedback": "Correct! Central planning directs resource allocation.",
                "is_correct": true
            },
            {
                "text": "Through decentralized market forces.",
                "feedback": "Incorrect! That describes market economies.",
                "is_correct": false
            },
            {
                "text": "By random distribution among citizens.",
                "feedback": "Incorrect! There is systematic planning.",
                "is_correct": false
            },
            {
                "text": "Via voluntary private enterprise exclusively.",
                "feedback": "Incorrect! That is a market approach.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q1",
        "question": "Which economic system is characterized by free-market principles and minimal government control?",
        "options": [
            {
                "text": "A market economy.",
                "feedback": "Correct! Market economies are driven by supply and demand.",
                "is_correct": true
            },
            {
                "text": "A command economy.",
                "feedback": "Incorrect! Command economies are government-controlled.",
                "is_correct": false
            },
            {
                "text": "A mixed economy.",
                "feedback": "Incorrect! Mixed combines elements.",
                "is_correct": false
            },
            {
                "text": "A traditional economy.",
                "feedback": "Incorrect! Traditional economies rely on customs.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q8",
        "question": "How does economic globalization affect domestic economies?",
        "options": [
            {
                "text": "It integrates national economies into a global network, encouraging trade, investment, and the exchange of ideas, which can lead to growth and competition.",
                "feedback": "Correct! Globalization interconnects markets.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic markets completely.",
                "feedback": "Incorrect! It opens markets.",
                "is_correct": false
            },
            {
                "text": "It removes all cultural influences from economic activity.",
                "feedback": "Incorrect! Culture remains influential.",
                "is_correct": false
            },
            {
                "text": "It prevents technological transfer.",
                "feedback": "Incorrect! Globalization often accelerates it.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q11",
        "question": "How can government policies help reduce economic inequality?",
        "options": [
            {
                "text": "By implementing progressive taxation, social welfare programs, and investing in education and healthcare to redistribute wealth.",
                "feedback": "Correct! Policies can address disparities.",
                "is_correct": true
            },
            {
                "text": "By eliminating all taxes on high incomes.",
                "feedback": "Incorrect! That would increase inequality.",
                "is_correct": false
            },
            {
                "text": "By reducing public spending on social services.",
                "feedback": "Incorrect! That worsens inequality.",
                "is_correct": false
            },
            {
                "text": "By exclusively promoting private monopolies.",
                "feedback": "Incorrect! That reduces competition.\n\n::U44_New_Q12:: What is the main function of the \u201cHuman Development Index\u201d (HDI)? {",
                "is_correct": false
            },
            {
                "text": "To measure overall human development, incorporating health, education, and income indicators.",
                "feedback": "Correct! HDI is a composite development indicator.",
                "is_correct": true
            },
            {
                "text": "To solely calculate a country\u2019s GDP.",
                "feedback": "Incorrect! GDP is only one economic measure.",
                "is_correct": false
            },
            {
                "text": "To assess only the technological progress of a nation.",
                "feedback": "Incorrect! HDI is broader.",
                "is_correct": false
            },
            {
                "text": "To determine the total population size.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q13:: Which economic indicator reflects the standard of living of a country\u2019s citizens? {",
                "is_correct": false
            },
            {
                "text": "GDP per capita, which divides total GDP by the population.",
                "feedback": "Correct! It approximates average income.",
                "is_correct": true
            },
            {
                "text": "Total GDP.",
                "feedback": "Incorrect! That does not account for population.",
                "is_correct": false
            },
            {
                "text": "The unemployment rate exclusively.",
                "feedback": "Incorrect! That is one aspect.",
                "is_correct": false
            },
            {
                "text": "The dependency ratio.",
                "feedback": "Incorrect! That measures age structure.\n\n::U44_New_Q14:: What does \u201csustainable economic development\u201d require? {",
                "is_correct": false
            },
            {
                "text": "An approach that balances growth, environmental stewardship, and social inclusion to ensure long-term prosperity.",
                "feedback": "Correct! Sustainability integrates all three pillars.",
                "is_correct": true
            },
            {
                "text": "Unlimited resource extraction.",
                "feedback": "Incorrect! That is unsustainable.",
                "is_correct": false
            },
            {
                "text": "A sole focus on economic growth.",
                "feedback": "Incorrect! Environmental and social aspects are essential.",
                "is_correct": false
            },
            {
                "text": "The elimination of all market competition.",
                "feedback": "Incorrect! Competition is important.\n\n::U44_New_Q15:: Which statement best describes the economic organization of the world? {",
                "is_correct": false
            },
            {
                "text": "It is an interconnected system where national economies participate in global trade, investment, and financial markets.",
                "feedback": "Correct! Global interdependence is key.",
                "is_correct": true
            },
            {
                "text": "It consists of completely isolated national economies.",
                "feedback": "Incorrect! Isolation is rare.",
                "is_correct": false
            },
            {
                "text": "It is dominated by a single world government controlling all economic activity.",
                "feedback": "Incorrect! No such government exists.",
                "is_correct": false
            },
            {
                "text": "It is static and unchanging over time.",
                "feedback": "Incorrect! Global economics are dynamic.\n\n::U44_New_Q16:: How do technological innovations drive economic development? {",
                "is_correct": false
            },
            {
                "text": "They improve productivity, create new industries, and enhance the efficiency of existing sectors, leading to overall growth.",
                "feedback": "Correct! Innovation is a growth engine.",
                "is_correct": true
            },
            {
                "text": "They only benefit the technology sector, not the broader economy.",
                "feedback": "Incorrect! Their impact is widespread.",
                "is_correct": false
            },
            {
                "text": "They have no effect on the quality of products.",
                "feedback": "Incorrect! They often improve quality.",
                "is_correct": false
            },
            {
                "text": "They reduce the need for skilled labor entirely.",
                "feedback": "Incorrect! They shift, rather than eliminate, labor needs.\n\n::U44_New_Q17:: What is \u201ceconomic inequality\u201d and why is it significant? {",
                "is_correct": false
            },
            {
                "text": "It refers to the unequal distribution of income and wealth, which can hinder social cohesion and sustainable development.",
                "feedback": "Correct! Inequality is a major challenge.",
                "is_correct": true
            },
            {
                "text": "It indicates that everyone earns the same income.",
                "feedback": "Incorrect! That is equality.",
                "is_correct": false
            },
            {
                "text": "It only affects developing countries.",
                "feedback": "Incorrect! It is a global issue.",
                "is_correct": false
            },
            {
                "text": "It is solely measured by the difference in ages.",
                "feedback": "Incorrect! That is demographic.\n\n::U44_New_Q18:: How can foreign direct investment (FDI) stimulate economic development? {",
                "is_correct": false
            },
            {
                "text": "By introducing capital, advanced technology, and management expertise, which can boost local industries and employment.",
                "feedback": "Correct! FDI can transform economies.",
                "is_correct": true
            },
            {
                "text": "By causing a complete loss of domestic control over industries.",
                "feedback": "Incorrect! FDI generally complements local enterprise.",
                "is_correct": false
            },
            {
                "text": "By reducing the overall competitiveness of the market.",
                "feedback": "Incorrect! It usually increases competition.",
                "is_correct": false
            },
            {
                "text": "By exclusively focusing on short-term profit.",
                "feedback": "Incorrect! FDI is often long-term.\n\n::U44_New_Q19:: What does \u201ceconomic globalization\u201d imply? {",
                "is_correct": false
            },
            {
                "text": "The increasing integration and interdependence of national economies through international trade, investment, and information exchange.",
                "feedback": "Correct! Globalization connects nations.",
                "is_correct": true
            },
            {
                "text": "The isolation of individual economies from each other.",
                "feedback": "Incorrect! It is the opposite.",
                "is_correct": false
            },
            {
                "text": "The dissolution of all economic borders permanently.",
                "feedback": "Incorrect! Borders remain, but trade increases.",
                "is_correct": false
            },
            {
                "text": "A complete shutdown of domestic industries.",
                "feedback": "Incorrect! Globalization encourages both domestic and international activity.\n\n::U44_New_Q20:: Which factor is most critical for ensuring long-term sustainable development? {",
                "is_correct": false
            },
            {
                "text": "Balancing economic growth with the conservation of natural resources and social equity.",
                "feedback": "Correct! Sustainability requires a balanced approach.",
                "is_correct": true
            },
            {
                "text": "Maximizing short-term industrial output regardless of environmental costs.",
                "feedback": "Incorrect! That undermines sustainability.",
                "is_correct": false
            },
            {
                "text": "Focusing solely on economic indicators like GDP.",
                "feedback": "Incorrect! Broader measures are needed.",
                "is_correct": false
            },
            {
                "text": "Ignoring cultural and social factors.",
                "feedback": "Incorrect! Social inclusion is vital.\n\n::U44_New_Q21:: What is the role of international trade in economic development? {",
                "is_correct": false
            },
            {
                "text": "It expands markets, promotes competition, and facilitates the transfer of technology and innovation among nations.",
                "feedback": "Correct! Trade is a key driver.",
                "is_correct": true
            },
            {
                "text": "It isolates domestic industries from global influences.",
                "feedback": "Incorrect! It integrates them.",
                "is_correct": false
            },
            {
                "text": "It always leads to reduced employment.",
                "feedback": "Incorrect! It can create jobs.",
                "is_correct": false
            },
            {
                "text": "It solely benefits exporting countries.",
                "feedback": "Incorrect! Trade is mutually beneficial.\n\n::U44_New_Q22:: How does economic diversification improve an economy\u2019s resilience? {",
                "is_correct": false
            },
            {
                "text": "By spreading risk across multiple sectors, reducing vulnerability to sector-specific downturns.",
                "feedback": "Correct! Diversification stabilizes the economy.",
                "is_correct": true
            },
            {
                "text": "By concentrating all resources in a single sector.",
                "feedback": "Incorrect! That increases risk.",
                "is_correct": false
            },
            {
                "text": "By reducing technological innovation.",
                "feedback": "Incorrect! Diversification often promotes innovation.",
                "is_correct": false
            },
            {
                "text": "By eliminating foreign trade.",
                "feedback": "Incorrect! Trade is a diversification strategy.\n\n::U44_New_Q23:: What is a potential drawback of rapid economic development without proper regulation? {",
                "is_correct": false
            },
            {
                "text": "It can lead to environmental degradation and social disparities that ultimately undermine sustainable growth.",
                "feedback": "Correct! Unchecked development has hidden costs.",
                "is_correct": true
            },
            {
                "text": "It guarantees improved quality of life for all citizens.",
                "feedback": "Incorrect! Benefits are not uniform.",
                "is_correct": false
            },
            {
                "text": "It automatically reduces economic inequality.",
                "feedback": "Incorrect! Inequality may worsen.",
                "is_correct": false
            },
            {
                "text": "It eliminates the need for international cooperation.",
                "feedback": "Incorrect! Global issues remain.\n\n::U44_New_Q24:: Which indicator is most useful for measuring a country\u2019s economic performance? {",
                "is_correct": false
            },
            {
                "text": "Gross Domestic Product (GDP) as it reflects the total economic output.",
                "feedback": "Correct! GDP is the standard measure.",
                "is_correct": true
            },
            {
                "text": "The number of universities in the country.",
                "feedback": "Incorrect! That is an educational metric.",
                "is_correct": false
            },
            {
                "text": "The average annual temperature.",
                "feedback": "Incorrect! That is climatological.",
                "is_correct": false
            },
            {
                "text": "The total length of roads.",
                "feedback": "Incorrect! That is infrastructural.\n\n::U44_New_Q25:: What does \u201csustainable economic development\u201d aim to achieve? {",
                "is_correct": false
            },
            {
                "text": "It strives to meet present economic needs without compromising the ability of future generations to meet their own needs, balancing growth with environmental and social concerns.",
                "feedback": "Correct! Sustainability is multi-dimensional.",
                "is_correct": true
            },
            {
                "text": "It focuses solely on rapid industrial growth.",
                "feedback": "Incorrect! That can deplete resources.",
                "is_correct": false
            },
            {
                "text": "It ignores the impact on natural ecosystems.",
                "feedback": "Incorrect! Environmental protection is essential.",
                "is_correct": false
            },
            {
                "text": "It relies exclusively on traditional manufacturing techniques.",
                "feedback": "Incorrect! Modern, sustainable practices are key.",
                "is_correct": false
            }
        ],
        "correct": 56
    },
    {
        "title": "U44_New_Q10",
        "question": "What does \u201ceconomic diversification\u201d aim to achieve?",
        "options": [
            {
                "text": "It reduces reliance on a single industry or resource, spreading risk and promoting long-term stability.",
                "feedback": "Correct! Diversification stabilizes economies.",
                "is_correct": true
            },
            {
                "text": "It concentrates all economic activity in one sector.",
                "feedback": "Incorrect! That increases vulnerability.",
                "is_correct": false
            },
            {
                "text": "It solely focuses on increasing short-term profits.",
                "feedback": "Incorrect! It is about balanced growth.",
                "is_correct": false
            },
            {
                "text": "It ignores technological innovation.",
                "feedback": "Incorrect! Innovation is a key aspect.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q5",
        "question": "How is Gross Domestic Product (GDP) best defined?",
        "options": [
            {
                "text": "The total monetary value of all final goods and services produced within a country in a specific period.",
                "feedback": "Correct! GDP measures economic output.",
                "is_correct": true
            },
            {
                "text": "The average income per person.",
                "feedback": "Incorrect! That is GDP per capita.",
                "is_correct": false
            },
            {
                "text": "The total exports of a country.",
                "feedback": "Incorrect! Exports are a component of GDP.",
                "is_correct": false
            },
            {
                "text": "The ratio of population to land area.",
                "feedback": "Incorrect! That is population density.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q4",
        "question": "What is the primary objective of sustainable economic development?",
        "options": [
            {
                "text": "To promote growth that meets present needs without compromising the ability of future generations, integrating environmental and social well-being.",
                "feedback": "Correct! Sustainability balances growth and conservation.",
                "is_correct": true
            },
            {
                "text": "To maximize short-term profits regardless of external costs.",
                "feedback": "Incorrect! That neglects future impacts.",
                "is_correct": false
            },
            {
                "text": "To focus exclusively on industrial expansion.",
                "feedback": "Incorrect! That may deplete resources.",
                "is_correct": false
            },
            {
                "text": "To eliminate government regulation entirely.",
                "feedback": "Incorrect! Regulation is vital for sustainability.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q6",
        "question": "Which factor most directly contributes to economic inequality?",
        "options": [
            {
                "text": "Unequal distribution of income and wealth among different segments of the population.",
                "feedback": "Correct! Inequality reflects disparity.",
                "is_correct": true
            },
            {
                "text": "Uniform access to education for all.",
                "feedback": "Incorrect! That would reduce inequality.",
                "is_correct": false
            },
            {
                "text": "Equal opportunities in employment.",
                "feedback": "Incorrect! That minimizes inequality.",
                "is_correct": false
            },
            {
                "text": "A balanced trade system.",
                "feedback": "Incorrect! Trade balance is separate.",
                "is_correct": false
            }
        ],
        "correct": 0
    },
    {
        "title": "U44_New_Q3",
        "question": "What defines a mixed economy?",
        "options": [
            {
                "text": "It combines elements of both market and command economies, allowing private enterprise alongside government intervention.",
                "feedback": "Correct! Mixed economies balance both.",
                "is_correct": true
            },
            {
                "text": "It is entirely market-driven with no state regulation.",
                "feedback": "Incorrect! That is a pure market economy.",
                "is_correct": false
            },
            {
                "text": "It is fully controlled by the government.",
                "feedback": "Incorrect! That is a command economy.",
                "is_correct": false
            },
            {
                "text": "It relies solely on traditional practices.",
                "feedback": "Incorrect! Traditional economies differ.",
                "is_correct": false
            }
        ],
        "correct": 0
    }
];
              let currentQuestion = 0;
              let score = 0;
              let timerInterval;
              let timeRemaining = 30;
              let variantCompleted = false;
              
              function startTimer() {
                  timeRemaining = 30;
                  document.getElementById("timer-5").textContent = "Time Remaining: " + timeRemaining + " seconds";
                  timerInterval = setInterval(() => {
                      timeRemaining--;
                      document.getElementById("timer-5").textContent = "Time Remaining: " + timeRemaining + " seconds";
                      if (timeRemaining <= 0) {
                          clearInterval(timerInterval);
                          document.getElementById("next-btn-5").disabled = false;
                          const inputs = document.querySelectorAll("input[name='question-" + currentQuestion + "']");
                          inputs.forEach(input => input.disabled = true);
                          const feedbackDiv = document.querySelector("#quiz-container-5 .feedback");
                          if (feedbackDiv) {
                              feedbackDiv.textContent = "Time's up!";
                              feedbackDiv.className = "feedback incorrect";
                              feedbackDiv.style.display = "block";
                          }
                      }
                  }, 1000);
              }
              
              function displayQuestion(index) {
                  clearInterval(timerInterval);
                  timeRemaining = 30;
                  document.getElementById("timer-5").style.display = "block";
                  const container = document.getElementById("quiz-container-5");
                  container.innerHTML = "";
                  if (index >= quizData.length) {
                      showFinalResults();
                      return;
                  }
                  const q = quizData[index];
                  const questionDiv = document.createElement("div");
                  questionDiv.className = "question-panel";
                  const questionText = document.createElement("h3");
                  questionText.textContent = (index + 1) + ". " + q.question;
                  questionDiv.appendChild(questionText);
                  // Use a fieldset to wrap the options
                  const fieldset = document.createElement("fieldset");
                  fieldset.style.backgroundColor = "#948644";
                  fieldset.style.color = "black";
                  fieldset.style.border = "none";
                  fieldset.style.padding = "10px";
                  fieldset.className = "options-fieldset";
                  
                  q.options.forEach((option, oIndex) => {
                      const optionLabel = document.createElement("label");
                      optionLabel.style.display = "block";
                      // Increase radio button size via transform
                      const radioInput = document.createElement("input");
                      radioInput.type = "radio";
                      radioInput.name = "question-" + index;
                      radioInput.value = oIndex;
                      radioInput.style.transform = "scale(1.5)";
                      radioInput.style.marginRight = "15px";
                      radioInput.onclick = function() {
                          checkAnswer(index, oIndex, questionDiv);
                          document.getElementById("next-btn-5").disabled = false;
                          clearInterval(timerInterval);
                      };
                      optionLabel.appendChild(radioInput);
                      optionLabel.appendChild(document.createTextNode(option.text));
                      fieldset.appendChild(optionLabel);
                  });
                  questionDiv.appendChild(fieldset);
                  const feedbackDiv = document.createElement("div");
                  feedbackDiv.className = "feedback";
                  questionDiv.appendChild(feedbackDiv);
                  container.appendChild(questionDiv);
                  document.getElementById("next-btn-5").disabled = true;
                  startTimer();
              }
              
              function checkAnswer(questionIndex, selectedOption, questionDiv) {
                  const feedbackDiv = questionDiv.querySelector(".feedback");
                  const question = quizData[questionIndex];
                  const selected = question.options[selectedOption];
                  if (selected.is_correct) {
                      feedbackDiv.textContent = selected.feedback || "Correct!";
                      feedbackDiv.className = "feedback correct";
                      score++;
                  } else {
                      feedbackDiv.textContent = selected.feedback || "Incorrect!";
                      feedbackDiv.className = "feedback incorrect";
                  }
                  feedbackDiv.style.display = "block";
                  const inputs = questionDiv.querySelectorAll("input");
                  inputs.forEach(input => input.disabled = true);
              }
              
              function showFinalResults() {
                  clearInterval(timerInterval);
                  document.getElementById("timer-5").style.display = "none";
                  const container = document.getElementById("quiz-container-5");
                  container.innerHTML = "";
                  document.getElementById("next-btn-5").style.display = "none";
                  const finalMessageDiv = document.getElementById("final-message-5");
                  const total = quizData.length;
                  const percentage = Math.round((score / total) * 100);
                  let generalFeedback = "";
                  if (percentage < 30) {
                      generalFeedback = "Your score is below 30%. It looks like you need more practice, but don't be discouraged! Enroll in our course to build a strong foundation. Not only will you gain the skills to improve your performance, but you'll also have the opportunity to earn an internationally recognized graded certificate and detailed online report. Plus, our course connects you to a global network of scholarships and grants—imagine the possibility of financial rewards if you top your category!";
                  } else if (percentage < 50) {
                      generalFeedback = "Your score is below 50%, which means there’s significant room for improvement. Consider enrolling in our course to boost your skills and academic confidence. With our comprehensive curriculum, you can work towards an internationally accepted graded certificate, complete with a verifiable online report. Additionally, we offer access to international scholarships, grants, and even financial rewards for exceptional performance.";
                  } else if (percentage < 70) {
                      generalFeedback = "You scored below 70%. With a bit more guidance from our course, you could truly excel! Our program is designed to enhance your academic prowess and help you achieve an internationally recognized graded certificate with a detailed online report. Moreover, by joining, you'll tap into a vast network of resources including scholarships, grants, and the potential for financial rewards if you secure the top position in your category.";;
                  } else if (percentage < 90) {
                      generalFeedback = "Great job! You scored below 90%. You’re almost there—just a little more effort, and you can reach perfection. Our course not only refines your skills but also offers the chance to earn a verifiable, internationally accepted graded certificate and detailed graded report. Plus, you’ll gain access to an international network of scholarships, grants, and financial incentives for top-ranking students.";
                  } else {
                      generalFeedback = "Excellent! You scored above 90%, showcasing near mastery of the subject. For even more advanced insights, consider our premium course. By enrolling, you'll have the opportunity to earn an internationally recognized graded certificate along with a detailed online report. You will also be matched with valuable resources, including scholarships, grants, and the chance to receive financial rewards if you rank 1st in your category.";
                  }
                  finalMessageDiv.innerHTML = `
                      <p>Your Score: <strong>${score}</strong> out of <strong>${total}</strong> (${percentage}%).</p>
                      <p>${generalFeedback}</p>
                      <a id="enroll-btn-5" class="enroll-btn" href="#" onclick="alert('Redirecting to enrollment page...'); return false;">CLICK THE BLUE BUTTON BELOW</a>
                  `;
                  finalMessageDiv.style.display = "block";
                  variantCompleted = true;
                  if (typeof window.setGlobalVariantCompleted === "function") {
                      window.setGlobalVariantCompleted();
                  }
              }
              
              document.getElementById("next-btn-5").onclick = function() {
                  currentQuestion++;
                  displayQuestion(currentQuestion);
              };
              
              window.addEventListener("load", function() {
                  displayQuestion(currentQuestion);
              });
          })();
      </script>
    </div>
    
    <script>
        let currentVariant = 1;
        const totalVariants = 5;
        let currentVariantFinalized = false;
        
        window.setGlobalVariantCompleted = function() {
            currentVariantFinalized = true;
            if (currentVariant < totalVariants) {
                document.getElementById("next-variant").disabled = false;
            }
        };
        
        function showVariantNo {
            for (let i = 1; i <= totalVariants; i++) {
                document.getElementById("page-" + i).style.display = "none";
            }
            document.getElementById("page-" + n).style.display = "block";
            document.getElementById("variant-indicator").textContent = "Variant " + n + " of " + totalVariants;
            document.getElementById("prev-variant").disabled = (n === 1);
            if(n === currentVariant && currentVariantFinalized) {
                document.getElementById("next-variant").disabled = false;
            } else {
                document.getElementById("next-variant").disabled = true;
            }
        }
        document.getElementById("prev-variant").onclick = function() {
            if (currentVariant > 1) {
                currentVariant--;
                currentVariantFinalized = true;
                showVariant(currentVariant);
            }
        };
        document.getElementById("next-variant").onclick = function() {
            if (!currentVariantFinalized) {
                alert("Please finalize the current variant before moving to the next.");
                return;
            }
            if (currentVariant < totalVariants) {
                currentVariant++;
                currentVariantFinalized = false;
                showVariant(currentVariant);
            }
        };
        function toggleFullScreen() {
            if (!document.fullscreenElement) {
                document.documentElement.requestFullscreen();
            } else {
                if (document.exitFullscreen) {
                    document.exitFullscreen();
                }
            }
        }
        window.onload = function() {
            showVariant(currentVariant);
        };
    </script>
</body>
</html>

What You’ll Experience:

  • Interactive Learning: Engage with thought-provoking questions and dynamic quizzes that break down key economic principles into bite-sized, easily digestible insights.

  • Collaborative Environment: Connect with fellow learners in a lively, supportive community where friendly competition and discussion enrich your understanding.

  • Progress Tracking: Monitor your achievements on our dynamic leaderboard as you earn points and unlock new levels of economic expertise.

  • Financial Rewards: Beyond earning prestigious certificates for exceptional performance, top achievers have the opportunity to win attractive financial prizes, adding an extra incentive for your hard work.

Why Join?

  • Engaging Education: Experience economics in a game-like format that transforms traditional learning into a fun, interactive challenge.

  • Skill Enhancement: Sharpen your analytical thinking, critical reasoning, and decision-making skills as you explore real-world economic issues.

  • Recognition & Rewards: Celebrate your academic success with a certificate of achievement and compete for financial prizes that recognize your dedication and excellence.

Whether you're new to the world of economics or eager to deepen your understanding of market forces and economic policies, the Economics Trivia Challenge is your gateway to mastering essential economic concepts. Prepare to think critically, compete passionately, and excel in every challenge!

Enroll now and start your journey to becoming an economics whiz on K4B—where learning is interactive, competitive, and financially rewarding!


<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Dynamic Flashing Price</title>
  <style>
    /* Styling for the dynamic flashing text container */
    #flashText {
      position: absolute;
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      padding: 20px 30px;
      font-size: 50px;
      color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(255, 255, 320, 0.3);
      font-family: Arial, sans-serif;
      opacity: 1;
      transition: opacity 0.5s, left 1s, top 1s;
    }
    /* Full-page attractive background */
    body {
      margin: 0;
      height: 100vh;
      background: linear-gradient(135deg, #74ebd5, #acb6e5);
      overflow: hidden;
      position: relative;
    }
  </style>
</head>
<body>
  <div id="flashText"><h1>Price 7 Birr</h1></div>
  
  <script>
    // Function to randomly change the opacity (flash effect)
    function flashText() {
      const flashElement = document.getElementById('flashText');
      flashElement.style.opacity = Math.random() > 0.5 ? 1 : 0;
    }
    
    // Function to dynamically reposition the text on the page
    function moveText() {
      const flashElement = document.getElementById('flashText');
      const maxX = window.innerWidth - flashElement.offsetWidth;
      const maxY = window.innerHeight - flashElement.offsetHeight;
      const newX = Math.random() * maxX;
      const newY = Math.random() * maxY;
      flashElement.style.left = newX + 'px';
      flashElement.style.top = newY + 'px';
    }
    
    // Set intervals for flashing and repositioning
    setInterval(flashText, 700);  // Flash effect every 700ms
    setInterval(moveText, 3000);  // Move text every 3000ms (3 seconds)
  </script>
</body>
</html>

Please purchase the course at our shop to access this course.

Buy and Enrol