@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  line-height: 30px;
}

ul li {
  font-family: "Poppins", sans-serif;
}

header {
  /* background: #25cd71; */
  padding: 20px 0;
}

.logo {
  img {
    max-width: 220px;
  }
}

.login-btn {
  text-align: end;
}

.login-btn button {
  cursor: pointer;
  outline: none;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.375rem 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  min-width: 170px;
  border: none;
  background: #25cd71;
  color: #fff;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 180px;
  }
  .login-btn button {
    min-width: auto;
  }
}

/* Form container */
#formContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  width: 100%;
}

.con {
  height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.ms-2 {
  max-width: 550px;
  width: 100%;
  background: #fff;
  height: 90%;
  padding: 20px;
  position: relative;
}

.form-text {
  /*padding-top: 35px;*/
}

.form-logo {
  margin-bottom: 15px;
  width: 130px;
  padding: 3px;
  border: 1px solid #dfe4e7;
  border-radius: 10px;
  img {
    border-radius: 10px;
  }
}

.form-title h2 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 5px;
}

.form-title p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 10px;
}

.form-in {
  padding: 10px;
  border: 1px solid #dfe4e7;
  border-radius: 10px;
}
.login-opt {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.login-opt p {
  font-size: 0.75em;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #86a1ae;
  margin-bottom: 20px;
  a {
    text-decoration: none;
    text-transform: uppercase;
  }
}

.google-opt button {
  background: #fff;
  color: #000;
  padding: 5px 5px;
  border-radius: 5px;
  text-align: start;
  display: block;
  width: 100%;
  border: 1px solid #dfe4e7;
  font-size: 12px;
  color: #86a1ae;
}

.google-opt {
  display: flex;
  align-items: center;

  margin-top: 5px;
  img {
    width: 50px;
    margin-right: 20px;
  }
}

.hide-form {
  display: none;
}

.form-close {
  background-color: #25cd71;
  height: 30px;
  width: 30px;
  padding: 6px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.3s;
  &:hover {
    background-color: #1aa056;
  }
}

/* Hidden class to hide the form */
.form-hidden {
  display: none;
}

/* form section */

.contact-form-ref {
  padding: 40px 0;
}

.contact-left {
  background: #0f44a6;
  padding: 41px 36px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .contact-left {
    padding: 30px 20px;
    margin: 40px 0 20px;
  }
}

.form-group {
  margin-bottom: 10px;
}

.form-group:nth-last-child(1) {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .form-group:nth-last-child(1) {
    margin-bottom: 15px;
  }
}

.form-group:nth-last-child(2) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .form-group label {
    font-size: 12px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 7px 10px;
  border: none;
  border-bottom: 1px solid #dfe4e7;
  background-color: transparent;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  height: 100px;
}


.form-group select {
  color: #777;
  
}

.form-group button {
  width: 100%;
  border-radius: 6px;
  font-style: normal;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: -0.011em;
  border: none;
  margin-top: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  background-color: #25cd71;
  color: #fff;
  padding: 5px 30px;
  font-family: "Jost", Sans-serif;
  font-weight: 400;
  &:hover {
    background-color: #1aa056;
  }
}

.inline-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .inline-group {
    display: block;
  }
}

.inline-group .form-group {
  flex: 1;
}

.jt-1 input {
  width: 50%;
  margin-left: 15px;
}

/* banner */

.top-section {
  padding: 0 0 30px;
}

.sec-bg {
  background: linear-gradient(#fff 0%, #e1f9fd 100%);
  border-radius: 15px;
  padding: 35px 0 80px;
}

.sec-text h2 {
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 15px;
  line-height: 40px;
  span {
    font-weight: 400;
  }
}

@media (max-width: 768px) {
  .sec-text h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.sec-text ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 20px 0 40px;
  li {
    list-style-type: none;
  }
  li:not(:first-child) {
    list-style-type: disclosure-closed;
    font-size: 16px;
    &::marker {
      color: #25cd71;
    }
  }
}

.sec-text p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #86a1ae;
  margin-bottom: 20px;
}

.get-started {
  text-align: center;
  h2 {
    font-size: 35px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin-bottom: 15px;
    line-height: 40px;
  }
  p {
    position: relative;
    color: #ffffff;
    line-height: 1.8em;
    font-weight: 400;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 35px;
  }
}

/* 

.bg-3 {
  background: url(../images/3-bg.png) no-repeat top center/cover;
  padding: 50px 0;
}



.get-started-links a.first-btn {
  padding: 10px 44px 12px;
  border-radius: 100px;
  font-weight: 500;
  color: #fff;
  background: #25cd71;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
  span {
    position: relative;
    z-index: 2;
    font-size: 16px;
  }
}

.get-started-links a.first-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 40%;
  background: #25cd71;
  border-radius: 100px;
  z-index: 1;
  transition: all 0.3s ease, top 0.32s ease;
}

.get-started-links a.first-btn:hover {
  span {
    color: #25cd71;
  }
  &::before {
    height: 100%;
    top: 0;
    background: #fff;
    transform: translateY(0);
  }
}

.get-started-links a.second-btn {
  padding: 10px 44px 12px;
  border-radius: 100px;
  font-weight: 500;
  color: #25cd71;
  background: #fff;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
  span {
    position: relative;
    z-index: 2;
    font-size: 16px;
  }
}

.get-started-links a.second-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 40%;
  background: #fff;
  border-radius: 100px;
  z-index: 1;
  transition: all 0.3s ease, top 0.32s ease;
}

.get-started-links a.second-btn:hover {
  span {
    color: #fff;
  }
  &::before {
    height: 100%;
    top: 0;
    background: #25cd71;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .get-started-links a.first-btn,
  .get-started-links a.second-btn {
    padding: 10px 30px 12px;
  }
} */

/* why us  */

.why-us {
  padding: 72px 0 16px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 15px;
  line-height: 40px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.section-title p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 20px;
}

.why-us-box {
  padding: 16px 20px;
  border-radius: 15px;
  margin-bottom: 24px;
}

.box-bg-1 {
  background-color: #e4feef;
}

.box-bg-2 {
  background-color: #fdedf1;
}

.box-bg-3 {
  background-color: #fffae5;
}

.box-bg-4 {
  background-color: #f3f0ff;
}

.why-us-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  margin-bottom: 20px;
  img {
    width: 36px;
  }
}

.icon-bg-1 {
  background-color: #25cd71;
}

.icon-bg-2 {
  background-color: #ec6c8e;
}

.icon-bg-3 {
  background-color: #ffd42e;
}

.icon-bg-4 {
  background-color: #9775fa;
}

.why-us-text h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin: 60px 0 12px;
  line-height: 30px;
}

.why-us-text p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #3b4a54e6;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .mt-35 {
    margin-top: -45px;
  }
}

@media (max-width: 768px) {
  .why-us-text h3 {
    margin: 0 0 12px;
  }
}

.form-group.sub-form input.form-control {
  max-width: 400px;
  width: 100%;
  padding: 10px;
  border: none;
  border: 1px solid #fff;
  color: #01b0f1;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  border-right: none;
  /* align-items: center; */
}

.form-group input.form-control::placeholder {
  color: #fff;
}

.form-group input.form-control:focus {
  border: 1px solid #01b0f1;
  box-shadow: none;
}

.form-group input.form-control:focus::placeholder {
  color: #01b0f1;
}

.form-group input.form-control.error {
  border: 1px solid #ff0000;
}

.form-group input.form-control.error::placeholder {
  color: #ff0000;
}

.form-group button.form-control {
  max-width: 150px;
  height: 100%;
  border-radius: 0;
  margin: 0;
  padding: 10px;
}

.footer-text {
  p {
    position: relative;
    font-size: 16px;
    color: #eeeeee;
    line-height: 1.7em;
    margin-bottom: 25px;
  }
}

.footer-links h3 {
  position: relative;
  font-weight: 600;
  color: #fefefe;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-transform: capitalize;
  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #01b0f1;
  }
}

.footer-links ul {
  padding: 0;
  margin: 0;
  li {
    list-style-type: none;
    margin-bottom: 10px;
    a {
      position: relative;
      font-size: 16px;
      color: #eeeeee;
      line-height: 1.7em;
      text-decoration: none;
      transition: all 0.3s;
      &:hover {
        color: #01b0f1;
      }
    }
  }
}

.copyright-section p {
  font-size: 14px;
  text-align: center;
  color: #dcdddd;
  line-height: 1.7em;
  margin-bottom: 0;
  font-weight: 300;
  padding: 20px 0;
}

/* breadcrumb  */

.breadcrumb {
  background-color: #dff6ff;
  padding: 80px 0;
  text-align: center;
}

.bread-inner h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 15px;
  line-height: 40px;
}

.bread-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bread-list a {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #01b0f1;
  margin-bottom: 20px;
}

.bread-list span {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 20px;
}

.test-box-title h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 15px;
  line-height: 40px;
}

.test-box{
  height: 100%;
  min-height: 160px;
}

.test-box-card {
  padding: 20px;
  border-radius: 8px;
  /* margin-bottom: 24px; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.test-marks-time p{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  span{
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #000;
  }
}

.test-box-card-title h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 15px;
  line-height: 30px;
}
.accordion-item {
  margin-bottom: 20px;
  /* border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important; */
  border: none;
  border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  h2 button {
  /* font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 0; */
  padding:  10px 6px;
}


}

.test-box-card-text p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 20px;
}
.accordion-item .accordion-body {
  font-size: 16px;
}

@media(max-width: 768px) {
  .accordion-item .accordion-body {
    font-size: 14px;
    padding: 10px ;
  }
}

.test-box-card-btn {
  margin-bottom: 15px;
  a {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background-color: #01b0f1;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
  }
}

.ask-ques-text p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  line-height: 30px;
}

.ask-ques-text ul {
  padding-left: 20px;
  margin-top: 15px;
  
  li{
    font-family: var(--bs-body-font-family);
    margin-bottom: 15px;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #fff;
  box-shadow: none;
}

.accordian-b