/* commom styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-Roboto);
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
}

a,
a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
table,
div,
ul,
li,
button,
input,
button,
select,
tr,
td,
th {
  font-family: var(--font-Roboto);
  font-weight: var(--font-weight-600);
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

:root {
  --font-Roboto: "Roboto", sans-serif;
  --font-Poppins: "Poppins", sans-serif;
  --font-Righteous: "Righteous", sans-serif;
  --font-size-14: 14px;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --green-color: #0da913;
  --gray-light-color: #B1B1B0;
  --secondary-color: #285AA9;
  --main-black-color: #000;
  --white-color: #fff;
}

.web-hide {
  display: none;
}

/* language select style */
.modal-content,
.modal-body {
  border-radius: 20px !important;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

/* short test screen style */
#quickTest .modal-dialog {
  max-width: 900px;
}

#quickTest .modal-body {
  background: linear-gradient(75deg, var(--white-color) 0.65%, var(--gray-light-color) 99.19%), var(--white-color);
  padding: 2em;
}

#quickTest .left-curve-bg,
#quickTest .right-curve-bg {
  width: 300px;
  position: absolute;
  bottom: 0px;
}

#quickTest .left-curve-bg {
  left: 0px;
}

#quickTest .right-curve-bg {
  right: 0px;
}

#quickTest .test-section {
  position: relative;
  z-index: 2;
}

#quickTest .test-section .test-heading {
  color: #1C365B;
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-weight: var(--font-weight-600);
  margin: 0px;
}

#quickTest .test-section {
  border-radius: 20px;
  background: var(--white-color);
  padding: 20px;
}

#quickTest .test-section .ques-no {
  color: #1C365B;
  font-family: Roboto;
  font-size: 17px;
  font-weight: var(--font-weight-400);
  margin: 0px;
  border-radius: 8px;
  background: #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 10px;
  text-align: center;
  min-width: 22%;
}

#quickTest .test-section .language-select {
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  font-weight: var(--font-weight-400);
  color: #1C365B;
  padding: 12px 40px 12px 10px;
  cursor: pointer;
  width: 170px;
}

#quickTest .test-section .language-select:focus {
  border: none !important;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) !important;
  outline: none !important;
}

#quickTest .test-section .submit-button {
  border-radius: 8px;
  background: #14AE5C;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: var(--font-weight-600);
  color: var(--white-color);
  padding: 10px 10px;
  width: 120px;
  border: none;
  position: relative;
  top: -10px;
}

#quickTest .test-section .clear-submit {
  opacity: .9 !important;
  cursor: none !important;
  pointer-events: none !important;
  border-radius: 8px;
  background: #78bc98;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: var(--font-weight-600);
  color: var(--white-color);
  padding: 10px 10px;
  width: 120px;
  border: none;
  position: relative;
  top: -10px;
  display: none;
}

#quickTest .ques-box {
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
}

#quickTest .ques-box table {
  width: 100%;
}

#quickTest .swiper {
  margin-bottom: 2em;
  width: 100%;
  height: 100%;
}

#quickTest .question-box .ques-text {
  color: #71716F;
  font-family: Roboto;
  font-size: 15px;
  font-weight: var(--font-weight-400);
  margin: 0px 0px 10px;
  overflow: auto;
}

#quickTest .question-box .ques-text img {
  object-fit: contain;
}

#quickTest .option-box {
  padding: 10px 10px 0px;
}

#quickTest .option-box .labels {
  border-radius: 10px;
  background: #F8F8F8;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--secondary-color);
  width: 100%;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

#quickTest .option-box .labels .opt_sno {
  padding: 5px 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  margin-right: 5px;
  transition: all 0.4s ease;
}

#quickTest .option-box .labels span p {
  font-size: 15px;
  margin: 0px;
}

#quickTest .option-box .labels :hover .opt_sno,
#quickTest .option-box .labels .active .opt_sno {
  border: 1px solid var(--secondary-color);
}

#quickTest .option-box .labels:hover {
  background: #eee;
}

#quickTest .option-box .labels.active {
  background: #DFFFE2;

}



#quickTest .option-box .labels .correct,
#quickTest .option-box .labels .incorrect {
  color: var(--white-color);
  transform: scale3d(1.03, 1, 1);
}

#quickTest .option-box .labels .correct {
  background: #14AE5C;
}

#quickTest .option-box .labels .incorrect {
  background: #ce4a4a;
}

#quickTest .option-box .labels .correct span,
#quickTest .option-box .labels .incorrect span {
  border: 1px solid var(--white-color);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '' !important;
}

#quickTest .ques-footer .swiper-button-next,
#quickTest .ques-footer .swiper-button-prev {
  position: inherit !important;
  width: 120px !important;
  padding: 8px !important;
  border-radius: 8px;
  background: #1C365B;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
  color: var(--white-color) !important;
  font-size: 15px;
  z-index: 999;
}

/* short test report style */
#shortTestReport .modal-body {
  background: radial-gradient(122.71% 106.74% at 45.73% 56.87%, #52C9EC 0%, #3969B5 100%), #D9D9D9;
  padding: 20px;
}

#shortTestReport .short-test-report-sec h2 {
  color: var(--white-color);
  font-size: 35px;
  margin: 0px 0px 6px;
  font-weight: var(--font-weight-700);
}

#shortTestReport .short-test-report-sec .score-box {
  border-radius: 15px;
  border: 5px solid #B9D6FE;
  background: linear-gradient(180deg, #3B74C2 0%, #1C375C 100%);
  color: var(--white-color);
  text-align: center;
  padding: 14px;
  width: 33%;
  margin: 0 auto;
  transform: perspective(160px) rotateX(7deg);
}

#shortTestReport .short-test-report-sec .score-box h3 {
  font-size: 22px;
  margin: 0px;
  font-weight: var(--font-weight-700);
  transform: perspective(160px) rotateX(-7deg);
  letter-spacing: 1px;
  font-family: var(--font-Righteous);
}

#shortTestReport .short-test-report-sec .score-box h1 {
  font-size: 40px;
  margin: 0px;
  font-weight: var(--font-weight-700);
  font-family: var(--font-Righteous);
}

#shortTestReport .report-score-rank {
  color: var(--white-color);
  padding: 14px 16px;
  border-radius: 20px 20px 0px 0px;
  width: 31%;
  background-color: #3465aac1;
  font-weight: var(--font-weight-400);
  margin: 0px auto 0px;
  position: relative;
  top: 10px;
  font-size: 26px;
}

/* Bottom to top animation */
#shortTestReport .report-bg-image {
  width: 100%;
  object-fit: contain;
  position: absolute;
  bottom: 0px;
  left: 0%;
  z-index: 1;
  margin: 0 auto;
}

#shortTestReport .description-content {
  font-size: 17px;
  color: #fff;
  width: 90%;
  margin: 0px auto;
  text-align: center;
  font-weight: 400;
}

#shortTestReport .face-image {
  width: 90px;
  object-fit: contain;
}

#shortTestReport .animatescale-up {
  opacity: 0;
  transform: translateY(100px) scale(0.2);
  transition: all 1.3s ease-out;
}

#shortTestReport .animatescale-up.show-up {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#shortTestReport .animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
}

#shortTestReport .show-up {
  opacity: 1;
  transform: translateY(0);
}

#shortTestReport .trophy-gif {
  width: 230px;
  object-fit: contain;
  margin-bottom: 10px;
}

#shortTestReport .report-close-button {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 10px;
  font-size: 24px;
  top: 10px;
  z-index: 999;
}

#shortTestReport .report-warning-text {
  font-size: 30px;
  padding-top: 5px;
  font-weight: var(--font-weight-400);
  color: var(--white-color);
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none;
  }

  .web-hide {
    display: block !important;
  }

  #quickTest .modal-body {
    padding: 1em;
  }

  #shortTestReport .test-section .short-title,
  #shortTestReport .test-section .ques-no {
    margin-bottom: 10px;
  }

  #shortTestReport .report-score-rank {
    padding: 16px 10px;
    width: 58%;
    font-size: 18px;
  }

  #shortTestReport .short-test-report-sec .score-box {
    width: 60%;
    padding: 10px;
  }

  #shortTestReport .description-content {
    width: 90% !important;
    font-size: 14px;
  }

  #shortTestReport .animate-up.show-up {
    width: 60%;
  }

  #shortTestReport .short-test-report-sec h2 {
    font-size: 24px;
    margin: 0px 0px 10px;
  }

  #shortTestReport .short-test-report-sec .score-box h1 {
    font-size: 26px;
  }

  #shortTestReport .short-test-report-sec .score-box h3 {
    font-size: 17px;
  }

  #shortTestReport .report-warning-text {
    font-size: 22px;
  }

  #quickTest .test-section .language-select {
    width: 100%;
    margin-top: 10px;
  }

  #quickTest .ques-box {
    max-height: 370px;
  }

  #quickTest .ques-footer .swiper-button-next,
  #quickTest .ques-footer .swiper-button-prev {
    width: 90px !important;
    font-size: 13px;
  }

  #quickTest .test-section .ques-no {
    margin: 0px 0px 10px;
    font-size: 16px;
  }

  #quickTest .test-section .test-heading {
    font-size: 16px;
  }

  #quickTest .test-section .submit-button {
    font-size: 14px;
    padding: 12px 10px;
  }

  #page-container .plan_detailBox .short_test_card .custom-select .options-container {
    padding: 16px 6px 10px;
  }

  #shortTestReport .trophy-gif {
    width: 180px;
  }

  #shortTestReport .face-image {
    width: 80px;
  }

  #shortTestReport .modal-body {
    padding: 20px 0px;
  }

  #shortTestReport .report-bg-image {
    bottom: 70px;
  }

  .LangChooseArea .labels {
    font-size: 15px;
    padding: 6px 20px;
    margin-bottom: 6px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #shortTestReport .report-score-rank {
    width: 58%;
  }

  #shortTestReport .short-test-report-sec .score-box {
    width: 60%;
  }

  #shortTestReport .trophy-gif {
    width: 230px;
  }

  #quickTest .modal-dialog {
    max-width: 700px;
  }
}

.langArea select {
  width: 86%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--main-color-white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 14px;
  margin: 0 auto;
}

#quickTest .ques-box .labels .opt_sno {
  padding: 5px 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  margin-right: 5px;
  transition: all 0.4s ease;
}

#quickTest .ques-box .labels span p {
  font-size: 15px;
  margin: 0px;
}


#quickTest .ques-box .labels:hover .opt_sno,
#quickTest .ques-box .labels.active .opt_sno {
  border: 1px solid var(--secondary-color);
}

#quickTest .ques-box .test-text {
  color: #71716F;
  font-family: Roboto;
  font-size: 15px;
  font-weight: var(--font-weight-400);
  margin: 0px 0px 10px;
  overflow: auto;
}

#quickTest .ques-box .test-text img {
  object-fit: contain;
}

/* 
#quickTest .ques-footer .swiper-button-prev.clear-prev-btn {
    background: #F8F8F8 !important;
    color: #1C365B !important;
    opacity: .9 !important;
    cursor: none !important;
    pointer-events: none !important;
}
    #quickTest .ques-footer .swiper-button-prev.clear-previous,
#quickTest .ques-footer .swiper-button-prev.clear-next {
    background: #F8F8F8 !important;
    color: #1C365B !important;
    opacity: .9 !important;
    cursor: none !important;
    pointer-events: none !important;
} */



/**************** Test Report Styles *****************/
.test-report-section {
  /* padding: 10px; */
  min-height: 80vh;
  /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
}

.container-style {
  background: white;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.report-header {
  padding: 10px 0px 6px 0px;
}

.report-title {
  font-size: 20px;
  font-weight: 600;
  color: #1d4ed8;
}

.report-sub-header {
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  padding: 10px;
  margin-bottom: 10px;
}

.quote_style {
  border-left: 2px dotted #e2e8f0;
}

.quote_style img {
  width: 50px;
}

.quote_style p {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}

.report-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.question-nav {
  /* background: white; */
}

.question-nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 20px 0;
  text-align: center;
}

.question-circles {
  padding: 5px;
}

.question-circles .btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
}

.question-circles .badge {
  position: absolute !important;
  right: -5px;
  font-size: 0.6rem;
}

.question-display {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  padding: 10px;
}

.question-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.status-badge {
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-badge.not-answered {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

.status-badge.answered {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.question-content {
  flex: 1;
}

.question-text {
  line-height: 1.6;
  margin: 10px 0 10px 0;
}

.question-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  padding: 10px 10px;
  border-radius: 12px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #374151;
  border: 1px solid #e2e8f0;
}

.option.selected {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}

.option.correct {
  border-color: #10b981;
  background: #d1fae5;
  color: #065f46;
  font-weight: 600;
}

.option.incorrect {
  border-color: #ef4444;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 600;
}

.option-letter {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #6b7280;
  flex-shrink: 0;
}

.option.selected .option-letter {
  background: #3b82f6;
  color: white;
}

.option.correct .option-letter {
  background: #10b981;
  color: white;
}

.option.incorrect .option-letter {
  background: #ef4444;
  color: white;
}

.report-end {
  text-align: center;
  padding: 40px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
}

.report-end-hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  margin: 0 0 20px 0;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.report-end-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.roption {
  margin-left: -2.5em !important;
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {
  .status-badge {
    font-size: 10px;
  }
}