/* General body styling */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Helvetica, Apple Color Emoji, Arial, Segoe UI Emoji, Segoe UI Symbol;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

html {
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

/* Top bar styling */
.top-bar a {
  text-decoration: none;
  color: inherit;
}

.top-bar {
  background-color:#37525b;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: padding-left 1s;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.bar-image {
  height: 40px;
  width: 40px;
  transition: height 0.5s, width 0.5s;
}

.bar-text {
  color: #ffffff;
  font-size: 25px;
  font-weight: bold;
  margin-left: 10px;
  transition: font-size 0.5s;
}

.bc_text {
  padding: 5px 10px;
  color: #333;
  font-weight: bold;
  background-color: #ecf0f1;
  font-size: 15px;
  margin-left: 10px;
  border-radius: 50%;
  text-align: center;
}

/* Responsive styling for top bar */
@media screen and (max-width: 600px) {
  .top-bar {
    padding-left: 20px;
  }

  .bar-image {
    height: 30px;
    width: 30px;
  }

  .bar-text {
    font-size: 22px;
  }

  .bc_text {
    display: none;
  }
}

.premium-crown{font-size:1.35rem;margin-left:.45rem;line-height:1;}

/* Main content container */
.first-container {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
 background-color: #f4f7f6;
  padding-top: 100px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

/* Top container styling */
.top-container-combine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: rgba(194, 219, 224, 255)
}

.top-container-text {
  flex: 1;
  padding: 20px;
}

.top-main-heading {
  font-size: 40px;
  color: #222;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.top-sub-heading {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}

.top-button-container {
  display: flex;
  justify-content: flex-start;
}

.top-button {
  padding: 15px 30px;
  color: #ffffff;
  background-color: #4a6d75;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  font-size: 18px;
}

.top-button:hover {
  background-color: #3e5e65;
  transform: scale(1.05);
}

.top-container-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.top-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 800px) {
  .top-button-container {
    flex-direction: column;
    align-items: center;
  }

  .top-button {
    width: max-content;
  }

  .top-container-combine {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .top-container-image {
    margin-top: 20px;
    display: none;
  }

}
@media screen and (max-width: 400px) {
  .top-container-combine {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .top-main-heading {
    font-size: 30px;
  }
  
  .top-sub-heading {
    font-size: 18px;
    font-weight: normal;
  }
}
/* Instruction Section */
.instruction-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 40px auto;

}

.instruction-heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.instruction-list {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  list-style: none;
  padding-left: 0;
}

.instruction-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.instruction-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  height: 10px;
  width: 10px;
  background-color: #2c3e50;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.instruction-list li:hover::before {
  background-color: #2980b9;
}

.instruction-list strong {
  color: #2c3e50;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .instruction-section {
    padding: 20px;
  }
}

/* All tests */
.test-heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.test-container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.test-card-container {

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.test-card {
  background-color: #ffffff;
  cursor: pointer;
  width: 200px;
  height: 200px;
  margin: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;

}

.test-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.test-card.locked {
  position: relative;
}

.test-card.locked::after {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 12px;
  right: 12px;
  transform: none;
}

.test-color-pattern {
  width: 100%;
  height: 50%;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-icon {
  font-size: 50px;
  color: #ffffff;
}

.test-content {
  text-align: center;
  margin-top: 10px;
}

.test-text {
  color: #333;
  font-size: 25px;
  font-weight: bold;
  padding: 5px;
}

.test-details {
  color: #333;
  font-size: 18px;
}

.test-details div {
  margin: 5px 0;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .test-text {
    font-size: 22px; 
  }
  .test-details {
    font-size: 16px;
  }
  .test-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}
/* Flashcards section */
.flashcards-section {
  width: 90%;
  max-width: 800px;
  height: auto;
  padding: 10px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
}

.flashcards-section:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}


.flashcards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}


.flashcards-text {
  flex: 1.5;
  min-width: 300px;
}

.flashcards-heading {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.flashcards-description {
  font-size: 17px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  padding: 10px 20px;
}

.flashcards-image {
  flex: .7;
  text-align: center;
  padding: 20px;
}

.flashcards-image img {
  width: 70%;
  height: auto;

}

@media screen and (max-width: 800px) {
  .flashcards-section {
    width: 80%;
  }

  .flashcards-container {
    flex-direction: column;
  }

  .flashcards-text {
    text-align: center;
  }
  
  .flashcards-image {
    display: block;
    text-align: center;
    padding: 10px 0;
  }

  .flashcards-image img {
    width: 40%;
    height: auto;
  }
}
@media screen and (max-width: 400px) {
  .flashcards-text {
    min-width: 250px;
  }
}

/* Process Section */
.process-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  text-align: center;
}

.process-heading {
  color: #333;
  font-size: 25px;
  margin-bottom: 20px;
  padding: 10px;

}

.process-list {
  font-size: 18px;
  color: #333;
  list-style: none;
  padding: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.process-list:before {
  content: '';
  position: absolute;
  top: 7%;
  bottom: 10%;
  /* Adjusted to end at the last circle */
  left: 32px;
  /* Adjusted to intersect icon center */
  width: 2px;
  background-color: #ccc;
  transition: top 0.3s;
}

@media screen and (max-width: 800px) {
  .process-section {
    padding: 20px;
  }
}

.process-list li {
  display: flex;
  align-items: center;
  margin: 20px 0;
  position: relative;
  text-align: left;
}

.process-icon {
  font-size: 30px;
  /* Made the icon slightly smaller */
  color: #007BFF;
  background-color: #ffffff;
  ;
  border: 2px solid #ccc;
  border-radius: 50%;
  padding: 10px;
  /* Reduced padding for smaller size */
  width: 40px;
  /* Reduced width */
  height: 40px;
  /* Reduced height */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-text {
  color: #333;
  line-height: 1.5;
  border-radius: 8px;
  padding: 10px 20px;
  flex-grow: 1;
  position: relative;
}

.process-text strong {
  display: block;
  color: #333;
  font-size: 18px;
  margin-bottom: 5px;
}

/* GLP Section */
.glp-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 20px auto;
}

.glp-heading {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.glp-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}

.glp-line {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 4px;
  background-color: #ccc;
}

.glp-step {
  height: 220px;

  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  margin: 10px;
  padding: 20px;
  /* Adds some spacing between steps */
}

.glp-circle {
  width: 100px;
  height: 100px;
  background-color: #007BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  margin: 0 auto;

}

.fa-text {
  font-size: 36px;
}

.glp-description {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.glp-info {
  font-size: 18px;
  color: #333;
  margin-top: 5px;

}

/* Media Queries for Smaller Screens */
@media (max-width: 700px) {
  .glp-container {
    flex-direction: column;
  }

  .glp-section {
    padding: 20px;
  }

  .glp-line {
    display: none;
  }

  .glp-step {
    margin-bottom: 20px;
    flex-direction: row;
  }

  .glp-circle {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .fa-text {
    font-size: 28px;
  }

  .glp-description,
  .glp-info {
    font-size: 18px;

  }
}


/* Blog Section */

.blog-container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 20px auto;
  transition: box-shadow 0.3s ease-in-out;
}

.blog-header {
  color: #333;
  text-align: center;

  margin-bottom: 20px;
  padding-bottom: 10px;
}

.blog-header h2 {
  margin: 0;
  font-size: 25px;

}

.blog-content {
  line-height: 1.5;
  font-size: 18px;
  color: #333;
}

.blog-content strong {
  color: #333;
  font-weight: bold;
}

.full-width {
  width: 100%;
  margin-bottom: 10px;
  /* Reduced margin-bottom */
}

.half-width {
  display: flex;
  margin-bottom: 10px;
  /* Reduced margin-bottom */
}

.content-left,
.content-right {
  width: 50%;
}

.content-left {
  padding-right: 10px;
  /* Reduced padding-right */
}

.content-right {
  padding-left: 10px;
  /* Reduced padding-left */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-right img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 800px) {
  .content-right {
    display: none;
  }

  .content-left,
  .content-right {
    width: 100%;
  }

  .blog-container {
    padding: 20px;
  }
}

.blog-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.blog-content p {
  margin-bottom: 10px;
  /* Reduced margin-bottom */
}

.blog-footer {
  text-align: center;
  border-top: 2px solid;
  margin-top: 20px;
  padding-top: 10px;
}

.blog-footer p {
  margin: 0;
  color: #333;
  font-size: 16px;
}

/* Blogging Section */
.blog-test-container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-test-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 800px) {
  .blog-test-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

}

.blog-test-card {
  background-color: #ffffff;
  cursor: pointer;
  width: 350px;
  height: 400px;
  margin-bottom: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}



.blog-test-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.blog_img {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.blog_img img {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
}

.blog-info {
  width: 100%;
  height: 50%;
  margin-bottom: 10px;
}

.blog-text {
  padding: 0px 20px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 5px;
}

.blog-p-text {
  padding: 0px 20px;
  color: #333;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .blog-info {
    text-align: start;
  }

}
@media screen and (max-width: 400px) {
  
.blog-test-card {
  width: 280px;
  height: 330px;
  margin-bottom: 20px;
}
  .blog-info {
    text-align: start;
  }
  
  .blog-p-text {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}
}
/* download section */
.download-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .download-section {
    padding: 20px;
  }

  .download-image {
    display: none;
  }
}

.download-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.download-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.download-heading {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.download-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.download-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  color: #ffffff;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.download-button-container img {
  width: 200px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain the aspect ratio */
  transition: transform 0.3s ease;
  /* Smooth transition for the hover effect */
}

.download-button-container img:hover {
  transform: scale(1.1);
  /* Scale up the image on hover */
}

.download-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.download-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* other product Section */
.other_product_container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 20px;
  text-align: center;

}
.full-section-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.website-link-text {
  text-decoration: underline;
  color: #0066cc;
  font-weight: bold;
}

.other_product_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.other_product_heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;

}
.other_product_download-section {
  flex: 2 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.other_product_download-text {
  text-align: center;
  margin-right: 10px;
}

.other_product_download-heading {
  font-size: 18px;
  color: #0066cc;
  text-decoration: none;
}
.other_product_website-heading {
  font-size: 15px;
  margin-bottom: 10px;
  color: #cc0014;
}

.other_product_download-description {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  text-decoration: none;
}

.other_product_download-button-container a img {
  width: 170px;
}

.other_product_download-image img {
  width: 80%;
  height: auto;
}

.other_product_button-visit-website {
  background-color: #2575fc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}



@media screen and (max-width: 800px) {
  .other_product_download-section {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .other_product_download-image {
    margin-top: 20px;
  }
}







/* Testimonial Section */
.testimonial-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 40px auto;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .testimonial-section {
    padding: 20px;
  }
}

.testimonial-heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial {
   background-color: #e9ebea;
  width: 30%;
  min-width: 250px;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;

}



.testimonial-quote {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-author {
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

/* bottom practice section */
.bottom-container-combine {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .bottom-container-combine {
    padding: 20px;
  }
}

.bottom-container-text {
  flex: 1;
  padding: 20px;
}

.bottom-main-heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

.bottom-sub-heading {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}



/* Bottom panel styling */
.bottom-panel {
  background-color:#37525b;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.bottom-panel p {
  margin: 5px 0;
}

.bottom-links {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.bottom-links a {
  color: #A3D9E0;   /* pale teal  — contrast ≈4.8:1 */
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 10px;
}


.bottom-links a:hover,
.bottom-links a:focus {
  color: #FFC857;           /* or whatever hover color you choose */
  text-decoration: underline;
}

.cookie-policy {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .bottom-links a {
    margin: 2px 0;
  }
}


