:root {
  --primary-color: #145DA0;       /* Medium blue from the logo */
  --primary-dark: #051D40;        /* Dark blue from the logo */
  --secondary-color: #051E42;     /* Slightly darker blue */
  --text-color: #FFFFFF;          /* White for contrast */
  --background-color: #F4F4F4;    /* Light background */
  
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

.navbar {
  background-color: var(--text-color); /* Light background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  font-family: var(--nav-font); /* Apply Poppins font for navbar */
}

.navbar-brand img {
  height: 60px; /* Adjust logo size */
}
..nav-link{
    color:black;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 16px; /* Default font size */
  color: var(--primary-dark); /* Dark blue text */
  padding: 0 15px; /* Space between menu items */
  white-space: nowrap; /* Prevent text wrapping */
  font-family: var(--nav-font); /* Use Poppins font */
} 

.navbar-nav .nav-link:hover {
  color: var(--primary-color); /* Hover color */
}

.btn-get-started {
  background-color: var(--secondary-color); /* Slightly darker blue for the button */
  color: var(--text-color); /* White text */
  font-weight: 300px;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 16px; /* Match font size */
  font-family: var(--default-font); /* Apply Roboto font */
}

.btn-get-started:hover {
  background-color: var(--primary-color); /* Darker blue on hover */
  color: var(--text-color);
}

.Explore-btn{
  background-color: var(--primary-color); /* Slightly darker blue for the button */
  color: var(--text-color); /* White text */
  font-weight: 300px;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 16px; /* Match font size */
  font-family: var(--default-font); /* Apply Roboto font */

}
.Explore-btn:hover {
  background-color: #051d40df;; /* Darker blue on hover */
  color: var(--text-color);
}

@media (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 15px; /* Reduce font size slightly */
    padding: 0 10px; /* Reduce padding */
  }
  .btn-get-started {
    font-size: 15px; /* Adjust button size */
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    font-size: 14px; /* Smaller font size for tablets */
    padding: 5px 10px;
  }
  .btn-get-started {
    font-size: 14px;
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    font-size: 13px; /* Smallest font size for mobile */
    padding: 4px 8px;
  }
  .btn-get-started {
    font-size: 13px;
    padding: 4px 8px;
  }
}



/*
  Hero Section !!!!!

*/
.guarantee {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Just Another Hand", sans-serif;
  font-size: 2.5rem;

}

.star-icon {
  font-size: 1.75rem;
  color: #1b8c74; /* A similar green color to match the image */
}

.project-name {
  font-weight: bold; /* Example styling */
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-left: 10px; /* Add spacing between the logo and text */
 font-family: 'Roboto', sans-serif; /* Apply the readable font */
}


.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0rem 3rem; /* Reduced padding from 5rem to 3rem */
  height: auto; /* Adjusted height for more flexibility */
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 650px;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  color: var(--secondary-color);
  margin-top: 0%;
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero-buttons .btn {
  border-radius: 25px;
  font-weight: 300;
  margin-right: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.5rem;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.hero-buttons .btn-outline-secondary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-image {
  max-width: 100%;
  
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url('https://via.placeholder.com/800x600');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.students-section {
  display: flex;
  align-items: center;

}

.students-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid var(--background-pattern);
}

.students-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .hero-section {
      text-align: center;
      padding: 3rem 1rem;
      height: auto;
  }

  .hero-title {
      font-size: 2.25rem;
  }

  .hero-subtitle {
      font-size: 0.8rem;
  }

  .hero-buttons .btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
  }

  .students-images img {
      width: 40px;
      height: 40px;
  }

  .students-text {
      font-size: 1rem;
  }
}


.language-dropdown{
  border-radius: 10px;
}

#google_translate_element{
  border-radius: 10px;

}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--primary-color);
  color: var(--text-color);
  
  width: 64px;
  height: 64px;
  font-size: 30px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.1s ease;
}

.stats i:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
  transform: scale(1.3);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.2);
}

.stats .stats-item {
  background-color: var(--text-color);
  margin-top: -32px;
  padding: 40px 35px 35px 35px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 0px 1px  ;
  border-radius: 10px;
  z-index: 0;
  transition: all 0.4s ease;
  color: var(--secondary-color);
}

.stats-item:hover {
  background:#fffff;
  color:#081854;
  transform: translateY(-12px);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
}

.stats .stats-item span {
  font-size: 42px;
  display: block;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.stats .stats-item span:hover {
  color:#081854;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--primary-dark);
  transition: color 0.1s ease;
}

.stats .stats-item:hover p {
  color: #081854;
}




/*--------------------------------------------------------------
# Popular Section Titles
--------------------------------------------------------------*/
.categories-container {
  display: flex;
  align-items: center;
  position: relative;
}

.scroll-btn {
  background-color: #005f8d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.scroll-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.exam-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  flex-grow: 1;
  padding: 10px 0;
}

.exam-categories button {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0; /* Prevent buttons from shrinking */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.exam-categories::-webkit-scrollbar {
  display: none;
}

.exam-categories {
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
  scrollbar-width: none;    /* For Firefox */
}



.exam-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in a row */
  gap: 20px; /* Space between cards */
  margin: 20px 0;
}

.exam-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.exam-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.exam-logo {
  width: 100px;
  height: 150px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f0f0f0;
}

.exam-item span {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.exam-item .arrow {
  margin-left: auto;
  font-size: 20px;
  color: #ccc;
  transition: color 0.2s;
}

.exam-item:hover .arrow {
  color: #005f8d;
}

.explore-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #005f8d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.explore-link:hover {
  color: #003f62;
}


.popular-exams h2{
  color: var(--primary-color);
  font-family: var(--default-font);
  margin-top: 20px;
}








/*Enroll Section Start*/

/* Section 2 Container */
.section2-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
}

.section2-illustration {
  flex: 1;
  text-align: center;
}

.section2-illustration-img {
  max-width: 100%;
  height: auto;
}

.section2-content {
  flex: 1;
  padding: 20px;
}

/* Headings and Text */
.section2-heading {
  font-size: 21px;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.section2-brand {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section2-logo-text {
  color: #0056b3;
}

.section2-logo-tag {
  background-color: #f0c14b;
  color: #000;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 8px;
}

.section2-description {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.section2-subheading {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Benefits Section */
.section2-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.section2-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f9f9f9;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.section2-icon {
  font-size: 24px;
  color: #0056b3;
}

.section2-benefit-text {
  margin: 0;
  font-size: 14px;
}

/* Button */
.section2-button {
  display: inline-block;
  background-color: #145ca0ed;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.section2-button:hover {
  background-color: #051d40df;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .section2-container2 {
    flex-direction: column;
    text-align: center;
  }

  .section2-content {
    padding: 20px 10px;
  }

  .section2-benefits {
    grid-template-columns: 1fr;
  }

  .section2-button {
    width: 100%;
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .section2-heading {
    font-size: 22px;
  }

  .section2-subheading {
    font-size: 18px;
  }

  .section2-logo-text {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .section2-container2 {
    padding: 20px;
  }

  .section2-illustration-img {
    max-width: 90%;
  }
}

.section2-logo-image {
  height: 40px; /* Adjust height to fit your design */
  margin-left: 8px;
  vertical-align: middle; /* Align the image with the text */
}





/* Why Choose Us Section */


.why-testbook-logo {
  width: 30%;
}

.why-testbook-section h2{

  color:var(--primary-color);
}
.why-testbook-section p strong{

  color:var(--primary-color);
}



.benefit-box {
  padding: 20px;
  border-radius: 15px;
  text-align: start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: start;
  font-size: 1.5rem;
  margin: 0 auto;
}

.text-muted {
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .why-testbook-logo {
    width: 40px;
  }

  .icon-container {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}



/* Phone Section  */


.hero-section00 {
  background: linear-gradient(150deg, var(--primary-color), var(--background-color));
  color: white;
  padding: 50px 15px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.content00 {
  max-width: 600px;
  text-align: left;
}

.hero-section00 h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-section00 p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-section00 .btn {
  margin: 10px;
  font-size: 1rem;
}

.app-store00 {
  margin-top: 20px;
}

.image-container00 {
  position: absolute;
  right: -50px;
  bottom: -30px;
}

.phone-image00 {
  width: 288px;
  height: 270px;
}

@media (max-width: 768px) {
  .hero-section00 {
      flex-direction: column;
      text-align: center;
  }

  .image-container00 {
      position: static;
      margin-top: 20px;
  }

  .phone-image00 {
      margin: auto;
  }
}


/* Footer Section */

.footer {
  background-color: #051D40;
  color: white;
  padding-top:30px;
  margin-top: 20px;
}

.footer h5 {
  color: #237fd4;
}

.footer a {
  color: var(--text-color);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons img {
  width: 30px;
  margin-right: 10px;
}

.footer .app-store img {
  width: 120px;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .footer .row > div {
      margin-bottom: 20px;
  }
}


/* Chat Icon */
/* Chat Icon */
.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.chat-icon img {
  width: 30px;
  height: 30px;
}

/* Chatbot Box */
.chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 450px;
  background: var(--background-color);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
  flex-direction: column;
  font-family: var(--default-font);
}

/* Chatbot Header */
.chatbot-header {
  background-color: var(--primary-dark);
  color: var(--text-color);
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  font-size: 1rem;
  font-family: var(--heading-font);
}

/* Chatbot Body */
.chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.chatbot-body p {
  margin: 10px 0;
  font-size: 0.9rem;
  font-family: var(--default-font);
}

/* Buttons Inside Chatbot */
.chatbot-body button {
  margin: 10px 0;
  padding: 10px;
  background-color: var(--text-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-dark);
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-size: 0.9rem;
  font-family: var(--default-font);
}

.chatbot-body button:hover {
  background-color: var(--background-color);
  border-color: var(--secondary-color);
}

/* Optional: Adjust Scrollbar for Better Look */
.chatbot-body::-webkit-scrollbar {
  width: 8px;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background-color: var(--primary-dark);
  border-radius: 5px;
}

.chatbot-body::-webkit-scrollbar-track {
  background-color: var(--background-color);
}





/*---------------------------------------------------------*
              Login Page                                   *
-----------------------------------------------------------*/


.login-page-container {
  height: 100vh;
  display: flex;
}


.login-page-container .form-label,.or{
  color: var(--primary-color);
  font-weight:400;
}


.login-left-section {
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
  color: var(--text-color);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.login-left-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.login-left-section p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.trusted-logos img {
  max-height: 50px;
  object-fit: contain;
}

.login-right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  padding: 2rem;
  flex: 1;
}

.login-form-container {
  width: 100%;
  max-width: 400px;
}

.login-form-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color:var(--primary-color);
}

.login-form-control {
  border-radius: 0.25rem;
  padding: 0.75rem;
}

.login-button {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
}

.login-button:hover {
  background-color:#051d40f0;
  color: var(--text-color);
}

.alternative-login-section {
  text-align: center;
  margin-top: 1rem;
}

.sso-button {
  background-color:seagreen;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
}

.sso-button:hover {
  background-color: #218837ef;
  color: var(--text-color);
  

}

@media (max-width: 992px) {
  .login-left-section {
    display: flex;
    flex: 1 1 100%; /* Full width on small screens */
    padding: 1.5rem;
    text-align: center;
  }
}




/*---------------------------------------------------------*
              Register Page                                *
-----------------------------------------------------------*/
/*---------------------------------------------------------*
              Register Page                                *
-----------------------------------------------------------*/

.register-page-container {
  height: 100vh;
  display: flex;
}


.register-page-container .form-label {
  color: var(--primary-color);
  font-weight: 400;
}

.register-left-section {
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.register-left-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.register-form-container  h2{
  color: var(--primary-color);
}


.register-left-section p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.register-trusted-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.register-trusted-logos img {
  max-height: 50px;
  object-fit: contain;
}

.register-right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  padding: 2rem;
  flex: 1;
}

.register-form-container {
  width: 100%;
  max-width: 400px; /* Match Login Page */
}

.register-form-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.register-input {
  border-radius: 0.25rem;
  padding: 0.75rem;
}

.register-button {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
  border-radius: 0.25rem;
}

.register-button:hover {
  background-color: #051d40f0;
  color: var(--text-color);
}

.register-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.register-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .register-left-section {
    display: flex;
    flex: 1 1 100%; /* Full width on small screens */
    padding: 1.5rem;
    text-align: center;
  }
}
.logo-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #add8e6; /* Light blue background */
  border-radius: 50%; /* Makes it a circle */
  width: 150px;
  height: 150px;
  margin: 0 auto; /* Centers the circle */
  padding: 0%;
}

.logo-image {
    max-width: 146%;
    max-height: 222%;
    object-fit: contain;
}


/*--------------------------------------------------*
              Question Paper                                     *
----------------------------------------------------*/
.main-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo-and-title {
  display: flex;
  align-items: center;
  gap: 20px; /* Increase spacing between logo and text */
}

.quiz-header h2{
  color: var(--primary-color);
}

.quiz-logo {
  width: 50px; /* Adjust size as needed */
  height: auto;
}

.test-name {
  font-family: var(--heading-font); /* Use an attractive font */
  font-size: 1.8rem; /* Slightly larger font size */
  color: var(--primary-dark); /* Use a dark shade for text */
  font-weight: bold; /* Make it bold for prominence */
  margin-left: 10px; /* Push the text slightly to the right */
}



/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.action-buttons button {
  background: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.action-buttons button:hover {
  background: var(--primary-dark);
  color: var(--text-color);
}

.quiz-body {
  display: flex;
  gap: 20px;
}

.sidebar {
  flex: 1;
  padding: 20px;
  background: #f8f9fc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.question-list button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d1d8e0;
  font-weight: bold;
  color: var(--primary-color);
  transition: background-color 0.3s;
}

.question-list button.attempted {
  background: #28a745;
  color: #ffffff;
}

.question-list button.marked {
  background: #ffc107;
  color: #000;
}

.content {
  flex: 3;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timer {
  text-align: right;
  font-size: 1.2em;
  color: #d9534f;
  margin-bottom: 15px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.options label {
  padding: 10px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.options input[type="radio"] {
  margin-right: 10px;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.result-card {
  text-align: center;
  padding: 20px;
  background: #f8f9fc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.result-card h4 {
  color: #28a745;
}



/* Hide question list on mobile */
@media (max-width: 768px) {
  .quiz-body .sidebar  {
    display: none; /* Hide question list */
  }

  .current-question {
    display: block; /* Show current question info */
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
    background-color: var(--background-color);
 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }


  
.action-buttons button {
  background: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 10px;
  font-size: 0.7rem;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
}




/* Admin  Blade Start */
/* Admin Navbar */
.adminnavbar {
  font-family: var(--nav-font);
}

.adminnavbar .user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Make it circular */
  background-color: var(--primary-dark); /* Dark background color */
  color: var(--text-color); /* White text color */
  font-weight: bold; /* Text weight */
  font-size: 20px; /* Font size for the letter */
  display: flex;
  align-items: center; /* Vertically center the letter */
  justify-content: center; /* Horizontally center the letter */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.adminnavbar .user-icon:hover {
  background-color: var(--secondary-color); /* Lighter dark background color on hover */
}

/* Ensure the navbar doesn't have extra margin or padding */
.adminnavbar {
  margin-bottom: 0;  /* Remove bottom margin */
}

/* General Search Bar Styling */
.search-bar input {
  max-width: 300px; /* Default width */
  height: 35px;     /* Default height */
  font-size: 14px;  /* Font size */
}

/* Adjust Icon Sizes */
.user-icon i {
  font-size: 1.2rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .search-bar input {
      max-width: 100px; /* Smaller width for mobile */
      height: 30px;     /* Adjusted height */
      font-size: 10px;  /* Smaller font size */
  }

  .adminnavbar .container-fluid {
      display: flex;
      align-items: center;
      gap: 1px; /* Reduce spacing between elements */
  }

  .user-icon i {
      font-size: 0.8rem !important; /* Smaller icon size */
      padding: 0px !important;
  }

 

  #bellIcon,
  #userDropdown {
      font-size: 0.5rem; /* Reduce icon size on smaller screens */
      padding: 0px;
  }

  .search-bar input {
      height: 30px; /* Reduce search bar height on smaller screens */
      font-size: 12px; /* Adjust font size for smaller screens */
  }

  .btn#sidebarToggle {
      padding: 3px 8px; /* Smaller padding for the toggle button */
      font-size: 0.9rem; /* Smaller font size for toggle button */
      margin-right: 2px;
  }

  .user-icon {
      margin-right: 2px; /* Reduce spacing between icons */
      padding: 0px;
  }

}



/* Adjust the margin or padding for the content below the navbar */
.admin-content {
  margin-top: 0;
  padding-top: 0;
}

/* For mobile views, make sure sidebar doesn't affect layout */
@media (max-width: 768px) {
  .admin-sidebar {
      transform: translateX(-250px); /* Hide sidebar initially */
  }

  .admin-sidebar.active {
      transform: translateX(0); /* Show sidebar when active */
  }

  /* Remove unnecessary padding from the body or content */
  body {
      padding-top: 0;
  }

  .container-fluid {
      padding: 0; /* Remove padding for full-width containers */
  }
}





/* Sidebar Styles */
.admin-sidebar {
  width: 250px;
  background-color: var(--primary-dark);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  border-right: 1px solid #dee2e6;
  padding-left: 20px;
  z-index: 1030; /* Ensure sidebar is above the content */
}


 /* Define the ring animation */
 @keyframes ring {
  0% { transform: rotate(0); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}

/* Apply the animation on hover */
.user-icon:hover #bellIcon {
  animation: ring 0.6s ease-in-out;
}



.admin-sidebar.hidden {
  transform: translateX(-250px);
  transition: transform 0.3s ease;
}

/* Main Content Styles */
.main-content {
  margin-left: 250px; /* Match the sidebar width for desktop */
  padding: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .admin-sidebar {
      transform: translateX(-250px); /* Hide sidebar by default on mobile */
      transition: transform 0.3s ease;
      position: fixed;
  }

  .admin-sidebar.active {
      transform: translateX(0); /* Show sidebar when toggled */
  }

  .main-content {
      margin-left: 0; /* Full width for mobile */
  }
}




.admin-sidebar ul {
  list-style: none;
  padding: 0;

}

.admin-sidebar ul li {
  margin: 15px 0;

}

.admin-sidebar ul li a {
  text-decoration: none;
  color: var(--text-color); /* White text color */
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
  align-items: center;
}


.admin-sidebar ul li a:hover {
  background-color: #fff; /* Hover background color */
 
}





/* .supercoaching Section */
  /* .supercoaching Section */
  .supercoaching-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f3ff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: var(--default-font);
}

.supercoaching-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.supercoaching-header h1 {
  color: var(--primary-color);            /* Use primary color from root */
  font-family: var(--heading-font);       /* Use Raleway font or your desired heading font */
  font-size: 26px;                        /* Larger font size for better emphasis */
  font-weight: 500;                      /* Bold to make it stand out */
  letter-spacing: 1px;                    /* Slightly space out the letters for a modern look */
  text-align: center;                     /* Center align the heading */
  margin-bottom: 20px;                    /* Space below the heading */
  text-transform: uppercase;              /* Make the text uppercase for emphasis */
 
}

.btn.Explore-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.supercoaching-recommended h2 {
    font-size: 24px;
    color: var(--primary-dark);
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

.supercoaching-card {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supercoaching-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 20px;
}

.supercoaching-card-content h2 {
    margin: 0;
    font-size: 16px;
    color: var(--primary-dark);
    font-family: var(--heading-font);
}

.supercoaching-card-content p {
    margin: 5px 0;
    color: var(--secondary-color);
    font-size: 14px;
    font-family: var(--default-font);
}

.supercoaching-price {
    font-size: 14px;
    color: #28a745;
    font-weight: bold;
    font-family: var(--default-font);
}

.supercoaching-discount {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
    font-size: 14px;
    font-family: var(--default-font);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .supercoaching-header {
        flex-direction: column;
        text-align: center;
    }
    
    .supercoaching-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .supercoaching-card img {
        margin-bottom: 15px;
    }

    .btn.Explore-btn {
        width: 70%;
        height: 50px;
        margin-top: 10px;
        font-size: 15px;
        padding:0px;
        font-weight:500;

    }
}
/* Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 70vh; /* Dynamic height based on viewport */
  max-height: 600px; /* Maximum height for large screens */
  min-height: 250px; /* Minimum height for small screens */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f7f7f7; /* Fallback background color */
}

/* Each Slide */
.slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center center; /* Focus the image in the center */
  background-repeat: no-repeat; /* Prevents repetition */
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease, left 0.5s ease;
}

/* Active Slide */
.slide.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

/* Dots Navigation */
.dots-container {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* Text Overlay */
.slide-content {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
}

.slide-content p {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.slide-content button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background: #004f73;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-content button:hover {
  background: #005f8d;
}

/* Responsiveness for Mobile and Tablet Views */
@media (max-width: 1024px) {
  .slider-container {
    height: 60vh; /* Adjust height for tablets */
  }

  .arrow {
    font-size: 1.2rem; /* Smaller arrows for tablets */
    padding: 10px;
  }

  .dots-container {
    bottom: 10px; /* Move dots closer to the bottom for smaller screens */
  }

  .slide-content h2 {
    font-size: 2rem; /* Adjust font size for headings */
  }

  .slide-content p {
    font-size: 1rem; /* Adjust font size for paragraphs */
  }

  .slide-content button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 50vh; /* Adjust height for mobile */
  }

  .arrow {
    font-size: 1rem;
    padding: 8px;
  }

  .slide-content {
    bottom: 15%;
    left: 10%;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slide-content button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 576px) {
  .slider-container {
    height: 40vh; /* Adjust height for mobile */
  }

  .slide-content {
    bottom: 10%;
    left: 5%;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.8rem;
  }

  .slide-content button {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .arrow {
    font-size: 0.8rem;
    padding: 6px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  /* Ensure full width for mobile images */
  .slide {
    background-size: cover; /* Ensures images scale appropriately */
    background-position: center center; /* Focus the image in the center */
  }
}

/* Ensure full-width coverage for images on all screen sizes */
@media (max-width: 480px) {
  .slider-container {
    height: 40vh; /* Smaller height for very small screens */
  }

  .slide {
    background-size: cover;
    background-position: center center; /* Focus on the center of the image */
  }
}

/* Features container styling */
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #f4f3ff;
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  width: 120px;
  position: relative;
  margin: 10px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Colors for each icon background */
.icon-red { background-color: #ffe5e5; }
.icon-green { background-color: #e5ffe5; }
.icon-purple { background-color: #f3e5ff; }
.icon-orange { background-color: #fff5e5; }
.icon-pink { background-color: #ffe5f0; }
.icon-blue { background-color: #e5e5ff; }

/* Icons */
.icon {
  font-size: 24px;
  color: #ff6060;
}
.icon-green .icon { color: #60b960; }
.icon-purple .icon { color: #a060b9; }
.icon-orange .icon { color: #ff8c42; }
.icon-pink .icon { color: #ff6060; }
.icon-blue .icon { color: #6060ff; }

/* Text styling */
.feature-label {
  font-size: 16px;
  color: var(--secondary-color);
}

/* Badge styling */
.badge {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: #00c853;
  color: var(--text-color);
  font-size: 10px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 5px;
}

.badge-new { background-color: #ff6d00; }
/* Responsive styling */
@media (max-width: 768px) {
.slider-container {
  height: 300px;
}

.slide {
  height: 300px;
}

.arrow {
  font-size: 24px;
  padding: 8px;
}

.features-container {
  flex-direction: column;
  align-items: center;
}

.feature-card {
  width: 100px;
  margin: 10px 0;
}
}

@media (max-width: 480px) {
.slider-container {
  height: 250px;
}

.slide {
  height: 250px;
}

.arrow {
  font-size: 20px;
  padding: 6px;
}

.feature-card {
  width: 80px;
}

.feature-label {
  font-size: 14px;
}
}


/* Test Series Blade  */


.test_series_card {
  background:  #f4f3ff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  position: relative;
  color: #081854;
  border-radius: 12px;
  margin: 10px 0;
  padding: 13px;  
}



.test_series_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.test_series_card-header {
  background: linear-gradient(to bottom, #e6e6fa, #ffffff);
  padding: 20px;
  border-radius: 12px 12px 0 0;
}

.test_series_card-title {
  font-size: 20px;
  color: #081854;
  font-family: 'Poppins', 'Roboto', sans-serif;
  text-align: left;
  margin: 0;
}

.test_series_card-details {
  font-size: 14px;
  color: var(--text-color);
}

.test_series_card-info {
  color: #081854;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

.test_series_card-footer {
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 0 0 12px 12px;
}

.test_series_card-footer a {
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.test_series_card-footer a:hover {
  background-color: #0e4f77;
  transform: scale(1.05);
}

.test_series_language-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.test_series_language-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Badge Styling */
.test_series_badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s ease;
}



.test_series_badge-free {
  background: #00AB66;
  border: 2px solid #1e7e34;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}

.test_series_badges-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.popular{
  font-size:30px;
  color: var(--primary-color);
  font-weight: 500;
}