 /* === Quiz Section Styles === */



  .quiz-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top:25px;
  }

  .quiz-card {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    flex: 1 1 calc(48% - 10px);
  }

  

  .quiz-question {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
  }

  .quiz-options label {
    display: block;
    background: #fff;
    border: 1px solid #00abc9;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .quiz-options input[type="radio"] {
    display: none;
  }

  .quiz-options label:hover {
    background: #e9f4ff;
    border-color: #00abc9;
  }

  .quiz-options input[type="radio"]:checked + label {
    background: #00abc9;
    color: #fff;
    border-color: #00abc9;
  }

  .submit-btn {
    display: block;
    margin-top: 25px;
    background: #ab3fbe;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .submit-btn:hover {
    background: #620672;
    box-shadow: 0 3px 10px rgba(0, 142, 255, 0.3);
    color: #fff;
    transform: translateX(4px);
  }

  .bb{
    display: flex;
    justify-content: flex-end;
  }

  .quiz-result {
    text-align: center;
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .quiz-result.correct {
    color: #00b67a;
  }

  .quiz-result.incorrect {
    color: #ff4b4b;
  }
    @media (max-width: 768px) {
        .quiz-card {
        flex: 1 1 100%;
        }
    }