.card-icon,
.package-card h4,
.rup_course {
  z-index: 1;
  position: relative;
}
.grb-hero-title{
    color:white !important;
},
.button-top-bar,
.nav-btn,
.scroll-container,
.subject-tab {
  white-space: nowrap;
}
.exr-header-title,
.exr-subject-score {
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.grb-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
  overflow: hidden;
}
.grb-hero__title {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.grb-hero__subtitle {
  font-size: 1.75rem;
  color: #3498db;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.grb-hero__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #505965;
  margin-bottom: 2rem;
}
.grb-hero__stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.grb-hero__stat-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.grb-hero__stat-item:hover {
  transform: translateY(-5px);
}
.grb-hero__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.25rem;
}
.grb-hero__stat-text {
  font-size: 1rem;
  color: #505965;
  margin: 0;
}
.grb-hero__image {
  border-radius: 20px;
  /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
  transition: transform 0.3s;
}
.grb-hero__image:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .grb-hero {
    padding: 3rem 0;
  }
  .grb-hero__title {
    font-size: 2rem;
  }
  .grb-hero__subtitle {
    font-size: 1.5rem;
  }
  .grb-hero__text {
    font-size: 1rem;
  }
  .grb-hero__stat-number {
    font-size: 1.75rem;
  }
  .grb-hero__image-wrapper {
    margin-top: 2rem;
  }
}
.card-categories {
  height: 410px;
}
.card-categories .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
}
.exam-categories__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}
.exam-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0.5rem;
  width: 100%;
}
.exam-card {
  background: linear-gradient(135deg, #fff 0, #f8f9fa 100%);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.exam-card__image-container {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
}
.exam-card__image {
  max-width: 100px;
  height: auto;
  object-fit: cover;
}
.exam-card__content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.exam-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2d3436;
  font-weight: 600;
}
.exam-card__description {
  color: #636e72;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.9rem;
}
.exam-card__button {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
}
.exam-card__button:hover {
  background: #0056b3;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.exam-card--jee-main {
  background: linear-gradient(135deg, #fff 40%, #e3f2fd 100%);
}
.exam-card--jee-main .exam-card__image-container {
  background: linear-gradient(135deg, #e3f2fd 0, #bbdefb 100%);
}
.exam-card--jee-advanced {
  background: linear-gradient(135deg, #fff 40%, #fff3e0 100%);
}
.exam-card--jee-advanced .exam-card__image-container {
  background: linear-gradient(135deg, #fff3e0 0, #ffe0b2 100%);
}
.exam-card--neet {
  background: linear-gradient(135deg, #fff 40%, #e8f5e9 100%);
}
.exam-card--neet .exam-card__image-container {
  background: linear-gradient(135deg, #e8f5e9 0, #c8e6c9 100%);
}
@media (min-width: 576px) {
  .exam-categories__wrapper {
    padding: 1.5rem;
  }
  .exam-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0.75rem;
  }
  .exam-card__image {
    max-width: 110px;
  }
  .exam-card__content {
    padding: 1.25rem;
  }
  .exam-card__title {
    font-size: 1.35rem;
  }
  .exam-card__button {
    width: auto;
    padding: 0.75rem 2rem;
  }
}
@media (min-width: 768px) {
  .exam-categories__wrapper {
    padding: 2rem;
  }
  .exam-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
  }
  .exam-card__image {
    max-width: 120px;
  }
  .exam-card__content {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .exam-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  .exam-card__title {
    font-size: 1.5rem;
  }
  .exam-card__description {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .exam-categories__wrapper {
    padding: 2.5rem;
  }
  .exam-card__image-container {
    padding: 2rem;
  }
}
.package-card {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(30, 136, 229, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.card-icon,
.enroll-btn i {
  transition: transform 0.3s;
}
.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cbe8ff, #e3dcff);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.exr-stat-card:hover::before,
.package-card:hover::before {
  opacity: 1;
}
.card-icon {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.enroll-btn,
.rup_course a.enroll-btn {
  background: linear-gradient(to right, #1e88e5, #42a5f5);
  text-decoration: none;
}
.card-icon i {
  color: #fff;
  font-size: 24px;
}
.package-card h4,
.price {
  font-size: 1.5rem;
  font-weight: 700;
}
.package-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}
.package-card:hover p {
  z-index: 50;
}
.package-card h4 {
  color: #1e88e5;
  margin-bottom: 1rem;
}
.package-card p {
  color: #666 !important;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.rup_course {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  color: #43a047;
}
.enroll-btn {
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
 /*new media-query added exam btn for full width */
@media (max-width: 767px){
    .c-enroll-btn{
     width:100% !important;   
    }
}    
.header__title,
.step__number {
  font-weight: 700;
  margin-bottom: 1rem;
}
.enroll-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
  color: #fff;
}
.enroll-btn:hover i {
  transform: translateX(5px);
}
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.custom-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.custom-card {
  background-color: #f8f8ff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  width: calc(50% - 10px);
}
.custom-card-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.custom-card-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  background: #f1f1f1;
  padding: 15px;
}
.custom-card-content h2 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
}
.custom-card-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}
.custom-row > .custom-card {
  flex: 1;
}
@media (max-width: 992px) {
  .custom-row {
    flex-direction: column;
    gap: 30px;
  }
  .custom-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 26px;
  }
  .our_commitment {
    padding: 50px 0 !important;
  }
}
@media (max-width: 768px) {
  .package-card {
    margin-bottom: 1.5rem;
  }
  .card-icon {
    width: 50px;
    height: 50px;
  }
  .card-icon i {
    font-size: 20px;
  }
  .package-card h4 {
    font-size: 1.3rem;
  }
  .our_commitment-content h3,
  .wecome_about h3 {
    font-size: 24px !important;
  }
  .empowering {
    gap: 30px;
  }
  .grb_ab {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .wecome_about {
    text-align: left;
    padding: 0;
  }
  .wecome_about h3 {
    margin-bottom: 15px;
  }
  .mission-vision-section {
    padding: 30px 0;
  }
  .what_we_offer,
  .why_grb-test {
    padding: 40px 0;
  }
  .offer-cards-container {
    margin-top: 20px;
  }
  .we_offer {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .why_list_right {
    padding: 20px 0;
  }
  .why_list_right ul {
    padding-left: 0;
    margin: 0;
  }
  .why_list_right ul li {
    text-align: left;
    margin-bottom: 25px;
  }
  .why_list_right ul li h4 {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
  .our_commitment {
    padding: 40px 0 !important;
  }
  .our_commitment-content {
    text-align: left;
    margin-bottom: 30px;
  }
  .our_commitment img {
    max-width: 100%;
    height: auto !important;
    margin-bottom: 30px;
  }
  .btn-lg {
    padding: 10px 25px;
    font-size: 16px;
  }
}
.bill-header,
.checkbox-container,
.custom-heading_top,
.exam-summary-title,
.exam-timer,
.exr-header,
.head_subs h4,
.header,
.howworks__header,
.qsummary-title {
  text-align: center;
}
@media (max-width: 576px) {
  .grb-hero {
    padding: 2rem 0;
  }
  .grb-hero__title {
    font-size: 1.75rem;
  }
  .grb-hero__subtitle {
    font-size: 1.25rem;
  }
  .custom-card {
    padding: 20px 15px;
  }
  .custom-card-image img {
    width: 80px;
    height: 80px;
  }
  .custom-card-content h2 {
    font-size: 22px;
  }
  .breadcrumb {
    font-size: 14px;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 15px;
  }
  .col-md-6 img,
  .why_list_right ul li {
    margin-bottom: 20px;
  }
  .we_offer {
    padding: 15px;
    margin-bottom: 15px;
  }
  .why_list_right ul li h4 {
    font-size: 16px !important;
  }
  .our_commitment {
    padding: 30px 0 !important;
  }
}
.custom-card,
.empowering,
.our_commitment-content,
.we_offer,
.why_list_right ul li {
  transition: 0.3s ease-in-out;
}
:root {
  --primary-color: #4f46e5;
  --primary-light: #eef2ff;
  --primary-step: #bcd7ff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --border-light: #e5e7eb;
}
.howworks {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 2rem 0;
}
.howworks__breadcrumb {
  margin-bottom: 2rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.breadcrumb__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__current,
.breadcrumb__separator {
  color: var(--text-secondary);
}
.breadcrumb__link:hover {
  color: var(--text-primary);
}
.breadcrumb__separator {
  margin: 0 0.5rem;
}
.howworks__header {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border-radius: 1rem;
  margin-bottom: 4rem;
}
.header__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header__title {
  color: var(--primary-color);
  font-size: 2.5rem;
}
.header__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}
.howworks__steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.step {
  opacity: 0;
  transform: translateY(20px);
  animation: 0.6s forwards fadeInUp;
}
.step__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.step--left .step__content {
  flex-direction: row;
}
.step--right .step__content {
  flex-direction: row-reverse;
}
.step__image-wrapper {
  flex: 1;
  max-width: 500px;
}
.step__image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.exr-subject-card:hover,
.step__image-container:hover {
  transform: translateY(-5px);
}
.step__image {
  width: 100%;
  height: auto;
  display: block;
}
.step__text {
  flex: 1;
  padding: 1rem;
}
.step__number {
  font-size: 4rem;
  color: var(--primary-step);
  line-height: 1;
}
.step__title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.step__description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .step__content {
    gap: 2rem;
  }
  .header__title {
    font-size: 2rem;
  }
}
.star-rating-box {
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f8ff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.star-rating {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}
.star {
  transition: color 0.3s ease-in-out;
}
.star.selected,
.star:hover {
  color: #f0a500;
}
#thankYouMessage {
  font-size: 1.2em;
  color: #28a745;
}
.custom-online_classes-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(to right, #f0f4fd, #d9e8ff);
}
.custom-heading3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.custom-class_blb {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  gap: 15px;
  height: 100%;
}
.custom-course-image {
  flex-shrink: 0;
}
.custom-course-image-thumb {
  max-width: 100px;
  height: auto;
  border-radius: 4px;
}
.custom-course-content {
  padding-left: 15px;
  flex-grow: 1;
}
.custom-course_title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
}
.custom-course_description {
  margin: 0;
  color: #777;
}
.custom-click_enroll {
  margin-top: 15px;
}
.custom-read-more-link {
  display: inline-block;
  border: 2px solid #5c67f2;
  border-radius: 4px;
  padding: 10px 15px;
  text-decoration: none;
  color: #5c67f2;
  transition: 0.3s;
}
.custom-bg-shape1,
.custom-bg-shape2 {
  border-radius: 50%;
  position: absolute;
}
.custom-bg-shape1 {
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(75, 123, 236, 0.3);
  filter: blur(80px);
}
.custom-bg-shape2 {
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(251, 211, 141, 0.3);
  filter: blur(120px);
}
.custom-bg-shape3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  filter: blur(150px);
  z-index: 1;
}
.benefit-list li,
.head_subs,
.head_subs h4,
.lst_sub {
  position: relative;
}
.custom-jee_top_banner {
  background: linear-gradient(to right, #fff, #eef2f3);
  margin-left: 5px;
  margin-right: 5px;
}
.custom-category-image {
  min-height: 300px;
  object-fit: cover;
}
.custom-category-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #000;
  max-width:1650px !important;
  margin:auto;
}
.inner_banner {
  background: linear-gradient(
      to right,
      rgba(21, 101, 192, 0.9),
      rgba(30, 136, 229, 0.9)
    ),
    url("https://via.placeholder.com/1920x400") center center/cover no-repeat;
  color: #fff;
  padding: 50px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.head_subs {
  padding: 20px 0;
  margin-bottom: 30px;
}
.head_subs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #42a5f5, #478ed1);
  border-radius: 10px;
  z-index: -1;
}
.head_subs h4 {
  font-size: 2.5rem;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.head_subs h4:hover {
  transform: scale(1.05);
}
.lst_sub {
  /*background: linear-gradient(135deg, #cbe8ff, #e3dcff) !important;*/
  background-color:#fff;
  color: #000;
  border-radius: 15px;
  border: 5px solid #1e88e5;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: translateY(-8px);
}
.lst_sub:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(33, 150, 243, 0.3);
}
.lst_sub h4 {
  /*font-size: 1.8rem;*/
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e88e5;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.lst_sub h4::before {
  content: "\f02d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #1e88e5;
  margin-right: 10px;
}
.lst_sub p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.rup_course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 2px solid #f1eded;
  padding-top: 20px;
  gap:10px;
}

.c-price-course{
    border:none;
}

.c-course-purchase{
    flex:1;
}

.card-discount{
    background: linear-gradient(#b3d67f,#f8ddbe);
  border-radius: 10px 0px 0px 10px;
  color: #4e6829;
}
/*new responsive for mobile*/
@media(min-width: 360px) and (max-width: 400px){
    .rup_course{
        flex-wrap:wrap!important;
        gap:10px;
        justify-content:flex-start!important;
    }
}
@media(min-width: 768px) and (max-width: 991px){
    .rup_course{
        flex-wrap:wrap!important;
    }
}
@media(min-width: 992px) and (max-width: 1199px){
    .rup_course{
        flex-wrap:wrap!important;
         gap:10px;
        justify-content:flex-start!important;
    }
}
/*new query for checkbox*/
@media(max-width: 576px){
    .checkbox-container{
    display: flex;
    text-align: start;
    font-size: 14px;
    align-items: center;
    gap: 10px;
    }
}
.rup_course .price {
  font-size: 1.125rem;
  color: #43a047;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.mrp-course{
    color: gray!important;
  font-weight: 400!important;
  font-size: 16px!important;
}
.rup_course .price i {
  margin-right: 5px;
}
.rup_course a.enroll-btn {
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: background 0.3s, transform 0.3s;
  justify-content:center;
}
.rup_course a.enroll-btn:hover {
  background: #1565c0;
  color: #fff !important;
  transform: scale(1.05);
}
.card-discount{
    font-size:14px;
}
.feature-list {
  list-style-type: none;
  padding-left: 0;
}
.feature-list li::before {
  content: "✔";
  color: green;
  margin-right: 8px;
}
.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  padding-left: 25px;
  margin-bottom: 10px;
}
.benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: 700;
}
.instructions-container {
  max-width: 1280px;
  margin: 20px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.header {
  background: #1a237e;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.instruction-section {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.instruction-item {
  margin-bottom: 15px;
  line-height: 1.6;
}
.important {
  color: #d32f2f;
  font-weight: 700;
}
.proceed-btn {
  background: #4caf50;
  width: fit-content;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  display: block;
  margin: 20px auto;
  transition: background 0.3s;
}
.proceed-btn:hover {
  background: #45a049;
}
.checkbox-container {
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 5px;
}
.exam-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 0.5rem 1.5rem;*/
  padding: 0.5rem 0rem;
  background: #fff;
  margin: 0 auto;
  flex-wrap: wrap;
  /*width: 95%;*/
  width:98%;
}
.exam-timer,
.subject-tab {
  padding: 0.5rem 1rem;
  background: #f0f0f0;
}
.subject-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.subject-tab {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #333;
  transition: background 0.3s, color 0.3s;
  /*font-size: 0.95rem;*/
  font-size:13px;
}
.subject-tab.active {
  background: #2196f3;
  color: #fff;
}
.exam-right-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.exam-timer {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #ddd;
  min-width: 100px;
}
.button-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.button-top-bar {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .exam-topbar {
    padding: 0.5rem 1rem;
    justify-content: center;
  }
  .subject-tabs {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .exam-right-section {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .howworks {
    padding: 1rem 1rem 3rem;
  }
  .howworks__header {
    padding: 2rem 0;
  }
  .step__content {
    flex-direction: column !important;
    padding: 1.5rem 1.5rem 2.5rem;
  }
  .step__image-wrapper {
    width: 100%;
    max-width: none;
  }
  .step__text {
    padding: 0;
  }
  .step__number {
    font-size: 3rem;
  }
  .step__title {
    font-size: 1.25rem;
  }
  .howworks__steps {
    gap: 2rem;
  }
  .inner_banner {
    text-align: center;
  }
  .lst_sub {
    margin: 15px 0;
  }
  .head_subs h4 {
    font-size: 2rem;
  }
  .head_subs::before {
    height: 80%;
  }
  .exam-topbar {
    padding: 0.5rem;
    width: 100%;
  }
  .subject-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  .button-top-bar {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .exam-timer {
    font-size: 1rem;
    min-width: 90px;
  }
  .button-group {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .header__title {
    font-size: 1.75rem;
  }
  .header__subtitle {
    font-size: 1rem;
  }
  .step__content {
    padding: 1rem 1rem 1.8rem;
  }
  .step__number {
    font-size: 2.5rem;
  }
  .subject-tabs {
    justify-content: space-between;
  }
  .subject-tab {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
  .exam-timer {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .button-group {
    flex-direction: row;
    gap: 0.5rem;
  }
  .button-top-bar {
    flex: 1;
    justify-content: center;
    padding: 0.4rem 0.6rem;
  }
}
.question-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  box-sizing: border-box;
}
.scroll-container {
  position: relative;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #4a6ef2 #ddd;
  padding: 0.5rem 1rem;
}
.scroll-container::-webkit-scrollbar {
  height: 6px;
}
.scroll-container::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 3px;
}
.scroll-container::-webkit-scrollbar-thumb {
  background: #4a6ef2;
  border-radius: 3px;
}
.nav-buttons {
  display: flex;
  gap: 0.5rem;
}
.legend-item,
.nav-btn {
  display: flex;
  align-items: center;
}
.nav-btn {
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #6b8ce6, #4a6ef2);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.nav-btn i {
  font-size: 1.2rem;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #5a7bd4, #3d5fe2);
}
.submit-btn {
  background: linear-gradient(45deg, #28a745, #218838);
}
.submit-btn:hover {
  background: linear-gradient(45deg, #218838, #1e7e34);
}
.mark-review {
  background: linear-gradient(45deg, #ff9800, #fb8c00);
}
.mark-review:hover {
  background: linear-gradient(45deg, #fb8c00, #f57c00);
}
.clear-response {
  background: linear-gradient(45deg, #f44336, #d32f2f);
}
.clear-response:hover {
  background: linear-gradient(45deg, #d32f2f, #c62828);
}
@media (max-width: 768px) {
  .nav-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    min-width: 90px;
  }
  .nav-btn i {
    font-size: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    min-width: 100px;
  }
}
.exam-sidebar {
  padding: 1rem;
  background: #fff;
  right: 0;
  top: 0;
  overflow-y: auto;
}
.status-legend {
  margin-bottom: 2rem;
  padding-top: 20px;
}
.legend-item {
  margin-bottom: 0.5rem;
}
.button-top-bar,
.question-number {
  align-items: center;
  cursor: pointer;
}
.status-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.not-visited {
  background: #ccc !important;
}
.not-answered {
  /*background: #ff5722 !important;*/
}
.answered {
  /*background: #4caf50 !important;*/
}
.marked-review {
  background: #9c27b0 !important;
}
.marked-only {
  background: #673ab7 !important;
}
.question-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.question-number {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #ccc;
}
.question-number:hover {
  border-color: #2196f3;
}
.main-container-exam {
  margin-left: 20px;
  margin-right: 20px;
}
.question-box {
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}
.button-top-bar {
  display: inline-flex;
  padding: 10px 20px;
  margin: 5px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}
.button-top-bar i {
  margin-right: 8px;
  font-size: 18px;
}
.button-top-bar:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button-top-bar:active {
  background-color: #3e8e41;
  transform: translateY(0);
  box-shadow: none;
}
.button-top-bar:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5);
}
.qsummary-body {
  font-family: Arial, sans-serif;
  background-color: #f7f9fc;
}
.qsummary-section {
  padding: 40px 0;
}
.qsummary-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.qsummary-success {
  background-color: #f0f5f5;
  border-left: 4px solid #4caf50;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.qsummary-success-icon {
  color: #4caf50;
  font-size: 1.2rem;
  margin-right: 10px;
}
.qsummary-success-text {
  flex: 1;
  font-size: 1rem;
  color: #333;
}
.qsummary-success-back {
  color: #007bff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.qsummary-success-back:hover {
  text-decoration: underline;
}
.qsummary-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.qsummary-infographic {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media(min-width: 360px) and (max-width: 991px){
    .qsummary-infographic{
        flex-wrap:wrap;
    }
}
.qsummary-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
}
.qsummary-info-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}
.qsummary-color-answered {
  background-color: #4caf50;
}
.qsummary-color-not-answered {
  background-color: #ffca28;
}
.qsummary-color-not-visited {
  background-color: #e0e0e0;
}
.qsummary-color-marked-review {
  background-color: #9c27b0;
}
.qsummary-color-marked-only {
  background-color: #673ab7;
}
.qsummary-category {
  margin-bottom: 25px;
}
.qsummary-category-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
}
.qsummary-question-list {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.qsummary-question-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.qsummary-answered {
  background-color: #4caf50;
  color: #fff;
}
.qsummary-not-answered {
  background-color: #ffca28;
  color: #333;
}
.qsummary-not-visited {
  background-color: #e0e0e0;
  color: #555;
}
.qsummary-question-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.exam-summary-section {
  /*min-height: 100vh;*/
  height:auto;
  padding-top: 20px;
}
.exam-summary-container {
  margin: 20px auto;
  width: 90%;
  overflow-x: auto;
}
.exam-summary-title {
  color: #333;
  margin: 20px 0;
}
.exam-summary-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.exam-cell,
.exam-header,
.exam-total {
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px;
}
.exam-header {
  background-color: #4caf50;
  color: #fff;
  font-weight: 700;
}
.exam-total-row,
.yes-submit:hover {
  background-color: #f2f2f2;
}
.exam-cell {
  font-size: 14px;
}
.exam-total-row {
  font-weight: 700;
}
.answered {
  color: #4caf50;
}
.not-answered {
  color: #ff9800;
}
.not-visited {
  color: #9e9e9e;
}
.exam-summary-table tr:hover {
  background-color: #f1f1f1;
}
.submit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.submit-box {
  background-color: #e6f7ff;
  border: 1px solid #b3e0ff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.submit-title {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.2rem;
}
.submit-message {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.submit-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.submit-btn {
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.yes-submit {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
}
.no-cancel {
  background-color: #007bff;
  color: #fff;
  border: none;
}
.no-cancel:hover {
  background-color: #0056b3;
}
.bill-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}
.bill-header {
  margin-bottom: 30px;
}
.bill-header h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
}
.bill-details {
  width: 100%;
  border-collapse: collapse;
}
.bill-details td,
.bill-details th {
  padding: 12px 15px;
  text-align: left;
}
.bill-details th {
  background-color: #f0f0f0;
  color: #333;
  width: 40%;
}
.bill-details td {
  color: #555;
}
.total-row {
  font-weight: 700;
  border-top: 2px solid #e0e0e0;
}
.amount {
  color: #28a745;
}
@media (max-width: 600px) {
  .exam-summary-table {
    font-size: 12px;
  }
  .exam-cell,
  .exam-header,
  .exam-total {
    padding: 6px;
  }
  .submit-box {
    padding: 15px;
  }
  .submit-title {
    font-size: 1rem;
  }
  .submit-btn,
  .submit-message {
    font-size: 0.8rem;
  }
  .submit-btn {
    padding: 6px 10px;
  }
  .bill-container {
    padding: 20px;
  }
  .bill-details td,
  .bill-details th {
    padding: 10px;
  }
  .bill-header h2 {
    font-size: 20px;
  }
}
.cou_order img {
  display: block;
  margin: 0 auto !important;
  max-width: 100%;
}
.exr-summary-wrapper {
  background: linear-gradient(135deg, #f6f9ff 0, #f1f4ff 100%);
  position: relative;
  padding: 1.5rem 1rem;
}
.exr-main-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.exr-content-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(67, 97, 238, 0.1);
  padding: 1.5rem;
  position: relative;
}
.exr-btn-primary,
.exr-rank-badge {
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.exr-header {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem;
}
.exr-header-title {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(45deg, #4361ee, #f72585);
  -webkit-background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.exr-header-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.exr-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.exr-stat-card,
.exr-subject-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: 0.3s;
  border: 1px solid #e9ecef;
}
.exr-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4361ee, #f72585);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.exr-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.1);
}
.exr-stat-title {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}
.exr-stat-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #4361ee;
  border-radius: 50%;
  transform: translateY(-50%);
}
.exr-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.exr-rank-badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(45deg, #4361ee, #3f37c9);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  animation: 2s infinite pulseAnimation;
}
@keyframes pulseAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.exr-accuracy-details {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
}
.exr-accuracy-correct {
  color: #4caf50;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exr-accuracy-wrong {
  color: #f72585;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exr-action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.exr-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.exr-btn-primary {
  background: linear-gradient(45deg, #4361ee, #3f37c9);
  color: #fff;
}
.exr-btn-outline {
  border: 2px solid #4361ee;
  color: #4361ee;
}
.exr-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.exr-btn:hover::before {
  left: 100%;
}
.exr-subjects-section {
  margin-top: 3rem;
}
.exr-subjects-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}
.exr-subjects-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(180deg, #4361ee, #f72585);
  border-radius: 3px;
}
.exr-subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.exr-subject-card::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 5%;
  width: 90%;
  height: 5px;
  background: linear-gradient(90deg, #4361ee, #f72585);
  border-radius: 5px;
  opacity: 0;
  transition: 0.3s;
}
.exr-subject-card:hover::after {
  opacity: 1;
  bottom: -10px;
}
.exr-subject-rank {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f8f9fa;
  color: #2b2d42;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.exr-subject-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 0.5rem;
}
.exr-progress-circle {
  width: 120px;
  height: 120px;
  margin: 1rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exr-progress-circle svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}
.exr-progress-circle circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}
.exr-progress-bg {
  stroke: #f0f0f0;
}
.exr-progress-bar {
  stroke: url(#progressGradient);
  transition: stroke-dashoffset 0.5s;
}
.exr-subject-score {
  -webkit-background-clip: text;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(45deg, #4361ee, #f72585);
  -webkit-background-clip: text;
  margin: 0;
  position: relative;
  z-index: 2;
}
.exr-subject-avg,
.exr-subject-details {
  position: relative;
  z-index: 2;
  background: #fff;
}
.exr-subject-details {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}
.exr-subject-avg {
  color: #888;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .custom-container {
    padding: 20px 15px;
  }
  .we_offer h5 {
    font-size: 18px;
  }
  .exr-subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .qsummary-question-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .qsummary-success {
    flex-direction: column;
    align-items: flex-start;
  }
  .exr-content-box,
  .exr-subject-card {
    padding: 1rem;
  }
  .exr-header-title {
    font-size: 1.4rem;
  }
  .exr-header-subtitle {
    font-size: 1rem;
  }
  .exr-stats-grid,
  .exr-subjects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .exr-stat-card {
    padding: 1.25rem;
  }
  .exr-action-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .exr-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }
  .exr-progress-circle {
    width: 100px;
    height: 100px;
  }
}
/*new query exam side-bar*/
@media(max-width: 767px){
    .exam-sidebar {
    margin-bottom: 80px!important;
  }
}
 @media (min-width: 768px) and (max-width: 850px) {
  .qsummary-question-list {
    grid-template-columns: repeat(9, 1fr);
  }
@media (max-width: 480px) {
  .main-container-exam {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /*.exam-sidebar {*/
  /*  margin-bottom: 40px;*/
  /*}*/
  .exr-summary-wrapper {
    padding: 1rem 0.5rem;
  }
  .exr-content-box {
    padding: 0.75rem;
  }
  .exr-header {
    margin-bottom: 1rem;
  }
  .exr-header-title {
    font-size: 1.25rem;
  }
  .exr-stat-value {
    font-size: 2rem;
  }
  .exr-subject-score {
    font-size: 1.75rem;
  }
}
.test-header {
  background: #2563eb;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}
.test-question {
  background: #fff;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}
.test-question-number {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 8px;
}
.test-statement {
  margin-left: 15px;
  margin-bottom: 8px;
}
.test-navigation {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
  z-index: 100;
}
.test-back-btn {
  background: #2563eb;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
}
.test-back-btn:hover {
  background: #1d4ed8;
}
.test-container {
  max-width: 800px;
  padding-bottom: 60px;
}
.test-progress-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
}
.test-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: background-color 0.3s;
}
.test-progress-dot.active {
  background: #2563eb;
}
