/* ****************************  IMPORTS ****************************  */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import "./reset.css";
@import "./vendor/bootstrap.min.css";
@import "./vendor/slick.css";

/* ************************ IMPORTS <- END *************************  */

/* base styles  */

body {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.section-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -1.5px;
  color: #000000;
}

.section-title .bold {
  font-weight: 600;
  color: #000000;
}

.section-title .highlight {
  font-weight: 700;
  color: #6ec40e;
}

/* sections  */

.section {
  position: relative;
  padding: 20px 0;
  transition: padding 0.15s ease-out;
}

.section-standard {
  position: relative;
  padding: 80px 0;
}

.section.bg {
  background-color: #f4f4f4;
}

/* header  */

.header {
  position: fixed;
  top: 0;
  z-index: 3;
  color: #ffffff;
  width: 100%;
}

.mob-login-btn {
  display: none;
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  color: #278c03;
  margin-bottom: 5px;
  text-decoration: none;
}

.custom-nav {
  position: relative;
  padding: 24px 0;
  transition: all 0.4s ease-in-out;
}

.custom-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135px;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.custom-nav.nav-light::after {
  background: linear-gradient(180deg, #ffffff 62%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
}

.nav-link {
  cursor: pointer;
}
.custom-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding-left: 24px !important ;
  padding-right: 24px !important ;
  transition: 0.3s all ease-in-out;
}

.custom-nav.nav-light .nav-link {
  color: #000000;
}

.custom-nav .nav-link.active {
  color: #6ec40e;
}

.custom-nav .nav-link:hover {
  color: #6ec40e;
  transition: 0.3s all ease-in-out;
}

.header-logo {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  position: absolute;
  top: -96px;
}

.logo {
  content: url(../images/logo.svg);
  margin-bottom: 48px;
  transform: scale(0.8);
}

.lr-button-container {
  display: inline-flex;
  background: #ffffff;
  border-radius: 30px;
  padding: 4px;
  box-shadow: 0px 1px 40px #0000001a;
}

.lr-button {
  display: block;
  border: none;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.lr-button::after {
  display: none;
}

.dropdown-menu {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 20px;
  opacity: 1;
  border: none;
  margin-top: 10px;
  padding: 20px 10px;
}

.dropdown-menu.web[data-bs-popper] {
  top: 104%;
}

.dropdown-menu:before {
  left: 100px !important;
  top: -12px;
  border: 6px solid #0000;
  border-bottom: 7px solid #fff;
}

.dropdown-menu:after {
  left: 100px !important;
  top: -10px;
  border: 5px solid #0000;
  border-bottom: 6px solid #fff;
}

.dropdown-menu:before,
.dropdown-menu:after {
  content: "";
  left: auto;
  display: inline-block;
  position: absolute;
}

.dropdown-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0px;
  color: #1f2c28;
  transition: 0.3s all ease-in-out;
}

.dropdown-menu li a:hover {
  color: #278c03;
  background-color: transparent;
  transition: 0.3s all ease-in-out;
}

.dropdown-menu li {
  margin-bottom: 10px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.login {
  background: transparent;
  color: #008000;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

.login:hover {
  color: #000000;
  transition: 0.3s all ease-in-out;
}

.register {
  background: #008000;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  border: 1px solid transparent;
  text-align: center;
}

.register:hover {
  color: #008000;
  background: #fff;
  transition: 0.3s all ease-in-out;
  border: 1px solid #008000;
}

.logo-block {
  width: 220px;
}

/* Nested menu styles for desktop */
.nav-item.dropdown-nested {
  position: relative;
}

.nav-item.dropdown-nested .dropdown-menu-nested {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 20px;
  border: none;
  padding: 20px 10px;
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.nav-item.dropdown-nested:hover .dropdown-menu-nested {
  display: block;
}

.dropdown-menu-nested li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #1f2c28;
  transition: 0.3s all ease-in-out;
  padding: 8px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-menu-nested li a:hover {
  color: #278c03;
  background-color: transparent;
}

/* banner  */

.banner-container {
  height: 98vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.banner-image {
  object-fit: cover;
  transition: transform 0.2s ease-out;
  width: 150%;
  height: 150%;
  margin-top: 13%;
  transform-origin: center center;
  backface-visibility: hidden;
}

.banner-person {
  position: absolute;
  bottom: -1.5%;
  left: 49%;
  transform: translateX(-58%);
  width: 8%;
}

.banner-content {
  position: absolute;
  top: 20%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  color: #fff;
}

.bc-left {
  position: absolute;
  left: 7vw;
  top: 8vh;
}

.banner-title {
  font-size: 69px;
  font-weight: 300;
  color: #ffffff;
  line-height: 62px;
}

.banner-highlight {
  font-size: 130px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -9.75px;
  line-height: 100px;
}

.banner-highlight.green {
  color: #6fc40e;
}

.bc-right {
  position: absolute;
  right: 7vw;
  top: 40vh;
}

.bc-right .banner-highlight {
  font-size: 86px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -5.45px;
  display: block;
}

.variable-effect {
  width: 520px;
}

/* discover-section  */

.discover-section {
  text-align: center;
  background-image: url(../images/bg-shade.png);
  background-position: -600px 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.discover-section .section-title {
  font-size: 105px;
  font-weight: 400;
  letter-spacing: -7.35px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 110px;
}

.discover-section .section-title .highlight {
  font-weight: 600;
  color: #6ec40e;
}

.ds-circle {
  margin-bottom: 60px;
}

.subtitle-text {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.75px;
  color: #000000;
  width: 1030px;
  margin: auto;
  line-height: 40px;
}

.welcome-section {
  /* background-image: url(../images/welcome-circle.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 105% 0px; */
  z-index: 1;
  margin-bottom: 100px;
}

.welcome-block {
  width: 860px;
  margin-top: 120px;
}

.welcome-section .section-title {
  font-weight: 400;
  font-size: 60px;
  letter-spacing: -1.5px;
  color: #000000;
  margin-bottom: 40px;
  line-height: 60px;
}

.welcome-section .section-title .bold {
  font-weight: 600;
  color: #000000;
}

.welcome-section .section-title .highlight {
  font-weight: 700;
  color: #6ec40e;
}

.body-text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: #000000;
  line-height: 32px;
}

.body-text .bold {
  font-weight: 600;
}

.body-text .highlight {
  font-weight: 700;
  color: #6ec40e;
}

.know-more-section {
  position: relative;
  clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 50% 93%, 0 100%, 0 0);
  will-change: clip-path;
}

.know-more-circle {
  position: absolute;
  left: 30px;
  top: -120px;
  z-index: 2;
}

.parallax {
  background-image: url(../images/banner.png);
  min-height: 1430px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
}

.know-more-section .body-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: #f4f4f4;
  width: 800px;
}

.know-more-links {
  width: 460px;
}

.know-more-links.has-margin-top {
  margin-top: 420px;
}

.know-more-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
  margin-top: -100px;
}

.kml-item {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #f4f4f4;
  text-decoration: none;
  margin-bottom: 250px;
  display: block;
  position: relative;
}

.kml-item .highlight {
  font-size: 105px;
  font-weight: 600;
  letter-spacing: -7.88px;
  color: #6fc40e;
  line-height: 78px;
  display: block;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  transition: 0.3s all ease-in-out;
}

.kml-item .highlight::after {
  content: url(../images/link-arrow.svg);
  position: absolute;
  top: -20px;
  right: -75px;
}
.kml-item .highlight.no-arrow::after {
  content: "";
}

.kml-item:hover .highlight {
  color: #ffffff;
  transition: margin-left 0.3s ease-in-out, color 0.3s ease-in-out;
  margin-left: 15px;
}

.parallax-content {
  margin-top: 30px;
}

.student-link:hover {
  color: #ffffff;
}

.student-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 20rem;
}

.student-link {
  font-size: 20px;
  font-weight: 600;
  color: #6fc40e;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

.student-link > img {
  width: 2rem;
  margin-left: 1rem;
}

.student-link:hover {
  color: #ffffff;
  margin-left: 10px;
}
/* talk-section */

.talk-section {
  padding: 120px 0 60px 0 !important;
}

.talk-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  font-weight: 600;
  letter-spacing: -3.6px;
  color: #000000;
  width: 900px;
  margin: auto;
}

.talk-block {
  padding: 60px 0;
  background-image: url(../images/talk-bg.png);
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: 45% 50%;
  height: 650px;
}

.talk-block-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.tbc-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.tbc-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #000000;
  width: 320px;
}

.tbc-text.align-right {
  text-align: right;
  margin-right: 40px;
}

.tbc-text.align-left {
  text-align: left;
  margin-left: 40px;
}

.tbc-btn {
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #6fc40e;
  box-shadow: 0px 12px 60px #0000001f;
  border-radius: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s all ease-in-out !important;
}

.tbc-btn.filled {
  background-color: #6fc40e;
}

.tbc-btn:hover {
  transform: scale(0.9) !important;
  transition: 0.3s all ease-in-out !important;
}

/* desktop-app-section  */

.desktop-app-section {
  background-image: url(../images/bg-shade.png);
  background-position: -700px 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.desktop-app-section .section-title {
  text-align: center;
}

.das-block {
  margin-top: 60px;
  position: relative;
}

.das-text {
  width: 550px;
  /* position: absolute;
  left: 0;
  top: 0; */
}

.body-text.bold {
  font-weight: 700;
}

.das-images {
  position: relative;
  height: 390px;
  /* height: 40vh; */
}

.pc-img {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 55%;
}

.laptop-img {
  position: absolute;
  right: 300px;
  bottom: 0;
  width: 55%;
  z-index: 2;
}

/* speak-type-section  */

.speak-type-section {
  background-image: url(../images/bg-shade.png);
  background-position: 70vw 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.speak-type-section .section-title {
  text-align: center;
}

.speak-type-section .body-text {
  text-align: center;
  width: 1000px;
  margin: auto;
}

.st-img-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}

.st-features {
  margin-top: 60px;
  /* background-image: url(../images/bg-shade.png);
  background-position: 50% 50%;
  background-size: 60%;
  background-repeat: no-repeat; */
}

.st-features-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #000000;
  line-height: 36px;
  margin-top: 12px;
}

.st-circle {
  width: 50px;
  height: 50px;
  background: #d1f5c2 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 60px #0000001a;
  border-radius: 50%;
}

.st-features-block.has-margin {
  margin-top: 100px;
}

.footer {
  padding-top: 10px;
  overflow: hidden;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.ff-left {
  flex-basis: 30%;
  padding-left: 30px;
}

.ff-right {
  flex-basis: 30%;
  padding-right: 30px;
}

.ff-center {
  flex-basis: 40%;
  height: 200px;
  position: relative;
}

.ff-center .footer-img {
  width: 100%;
}

.ff-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  position: absolute;
  top: 40px;
  left: 45%;
}

.footer-text {
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: #000000;
}

.social-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.45px;
  color: #000000;
  line-height: 1;
}

.social {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 12px;
  padding-left: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.45px;
  color: #000000;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px;
  padding-left: 0;
}

.footer-links li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.4px;
  color: #41a007;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

/* customize-section  */

.customize-section .section-title {
  width: 700px;
  margin: auto;
  text-align: center;
}

.customize-section .body-text {
  width: 1100px;
  margin: auto;
  text-align: center;
  margin-top: 50px;
}

.display-text {
  text-align: center;
  font-size: 72px;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: -2px;
  color: #097f00;
}

.display-text .bold {
  font-weight: 500;
}

.customize-section .display-text {
  width: 800px;
  margin: 80px auto;
}

.img-block img {
  width: 100%;
}

.cs-features {
  margin-top: 140px;
}

.cs-feature-item {
  text-align: center;
}

.cs-feature-item.has-margin {
  margin-top: 40px;
}

.csf-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.7px;
  color: #000000;
}

/* connect-block  */

.connect-block-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.connect-block .section-title {
  text-align: center;
  font-size: 60px;
  line-height: 80px;
  font-weight: 300;
  letter-spacing: -1.5px;
  color: #097f00;
}

/* users say  */

.user-say .section-title {
  text-align: center;
}

.user-say-slider {
  margin-top: 30px;
}

/* carousal  */

.carousal-card {
  height: 600px;
  width: 100%;
  /* background-color: #41a007; */
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.slick-slide {
  padding: 16px;
  opacity: 0.6;
}

.slick-current {
  opacity: 1;
}

.slick-current .carousal-card {
  height: 700px;
  border: 0.4px solid #6fc40e;
}

.slick-track {
  display: flex;
  height: 800px;
}

.slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

.custom-slider {
  position: relative;
  text-align: center;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  border: none;
  padding: 10px;
  cursor: pointer;
  background: transparent;
}

.slick-prev {
  left: -50px; /* Adjust as needed */
}

.slick-next {
  right: -50px; /* Adjust as needed */
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  left: 50%;
  z-index: 1;
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translate(-50%, 0);
}

.slick-dots li {
  padding: 5px;
}

.slick-dots button {
  display: block;
  width: 24px;
  height: 4px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: none;
  background-color: #0000001f;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots .slick-active button {
  background-color: #6fc40e;
}

/* for teachers  */

.page-banner {
  height: 100vh;
  /* overflow-x: hidden; */
  overflow: hidden;
  margin-top: 100px;
  padding-bottom: 0;
}

.page-banner-block {
  position: relative;
}

.page-banner-img {
  width: 48%;
  position: absolute;
  top: -86px;
  right: -80px;
}

.pb-super-text {
  font-size: 30px;
  line-height: 77px;
  font-weight: 400;
  letter-spacing: -0.75px;
  color: #9b9b9b;
}

.pb-super-text .highlight {
  color: #41a007;
  font-weight: 600;
}

.pb-title {
  font-size: 130px;
  line-height: 100px;
  font-weight: 700;
  letter-spacing: -8.45px;
  color: #000000;
  position: relative;
}

.pb-title .highlight {
  color: #6fc40e;
}

.pb-subtitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #000000;
  margin-top: 40px;
}

.mentor-image {
  margin-top: -200px;
}

.mentor-image img {
  width: 80%;
}

.mentoring-section {
  background-image: url(../images/bg-shade.png);
  background-position: -150px -260px;
  background-size: 50%;
  background-repeat: no-repeat;
  padding-bottom: 0 !important;
}

.mentoring-section .section-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -3.6px;
  color: #000000;
  margin-bottom: 50px;
}

.display-text-block {
  margin-top: 140px;
}

.timeline-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3.6px;
  color: #000000;
  width: 900px;
  margin: auto;
}

.timeline-section .body-text {
  text-align: center;
  width: 800px;
  margin: 40px auto;
}

.timeline-block {
  margin-top: 70px;
}

.tb-left {
  text-align: right;
}

.tb-left .ti-title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #6fc40e;
  width: 400px;
  margin-left: auto;
  margin-top: 10px;
}

.ti-sub {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: #000000;
}

.tb-left .timeline-item .body-text {
  text-align: right;
  width: 460px;
  margin: 0;
  margin-left: auto;
}

.tb-right .ti-title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #6fc40e;
  width: 450px;
  margin-right: auto;
  margin-top: 10px;
}

.tb-right .timeline-item .body-text {
  text-align: left;
  width: 460px;
  margin: 0;
  margin-right: auto;
}

.timeline-item {
  margin-bottom: 160px;
}

.tb-left .timeline-item {
  margin-right: 50px;
}

.tb-right .timeline-item {
  margin-left: 50px;
}

.tb-right .timeline-item:last-child {
  margin-bottom: 0;
}

.tb-right {
  margin-top: 300px;
}

.teacher-app-banner {
  margin-top: 120px;
}

.teacher-app-banner img {
  width: 100%;
}

.mentor-icon {
  text-align: center;
  margin-top: 300px;
}

.dot {
  width: 40px;
  height: 40px;
  background-color: #ffba00;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 0;
}

.highlight-section {
  background-image: url(../images/bg-shade.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 70vw 50%;
}

/* learner  */

.learner-banner {
  padding-bottom: 80px;
}

.learner-banner .page-banner-block {
  position: relative;

  /* background-image: url(../images/bg-shade.png);
  background-position: -600px 38%;
  background-size: auto;
  background-repeat: no-repeat; */
}

.page-banner-img-learner {
  width: 52%;
  position: absolute;
  top: -251px;
  right: -166px;
}

.learner-banner .pb-title {
  font-size: 80px;
  line-height: 100px;
  font-weight: 700;
  letter-spacing: -6.83px;
  color: #000000;
  z-index: 2;
}

.learner-banner .pb-title .highlight {
  font-size: 118px;
  display: block;
}

.learner-banner .dot {
  top: -72px;
}

.banner-card {
  margin-top: 80px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 50px #0000000f;
  border-radius: 60px;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 800px;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

.learner-banner.page-banner {
  height: 750px;
  overflow: hidden;
  margin-top: 80px;
}

.learner-banner.page-banner.custom-learner-banner {
  height: 900px;
}

.banner-card-arrow {
  height: 65px;
  width: 65px;
  min-width: 65px;
  background: #6ec40e 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bc-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.9px;
}

.bc-title .highlight {
  color: #097f00;
}

.bc-text {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.45px;
  color: #000000;
}

.banner-text {
  position: relative;
}

.curve-left,
.curve-right {
  width: 1.3vw;
  height: 100%;
  position: absolute;
  top: 0px;
  border-radius: 50%;
}

.curve-left {
  border: 6px solid transparent;
  border-left: 6px solid #6ec40e;
  left: -20px;
}

.curve-right {
  border: 6px solid transparent;
  border-right: 6px solid #6ec40e;
  right: -20px;
}

.nj-image img {
  width: 100%;
}

.new-journey-section {
  padding-top: 100px;
  padding-bottom: 0 !important;
}

.new-journey-section .section-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -3.6px;
  color: #000000;
  margin-bottom: 50px;
}

.nj-content {
  margin-left: 30px;
  position: relative;
}

.highlight-section .body-text {
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
}

.mob-view {
  display: none;
}

.web-view {
  display: block;
}

.ai-coach-section {
  background-image: url(../images/learner-parallax.png);
  /* min-height: 100vh; */
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.ai-coach-section .section-title {
  text-align: center;

  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -1.3px;
  color: #ffffff;
}

.ai-info-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.ai-info-list li {
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: -0.9px;
  color: #ffffff;
  width: 530px;
  margin-bottom: 80px;
}

.ai-info-list li .bold {
  font-weight: 700;
}

.ai-info-list li:last-child {
  margin-bottom: 0;
}

.ai-info-list li:nth-child(even) {
  margin-left: 260px;
}

.learn-anywhere {
  padding-top: 160px;
}

.learn-anywhere .section-title {
  text-align: center;
  font-size: 80px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: -3.6px;
  color: #097f00;
}

.learn-anywhere .body-text {
  text-align: center;
  width: 1080px;
  margin: auto;
}

.learn-anywhere-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin: 180px 0 80px 0;
}

.la-item {
  flex-basis: 33.33%;
}

.la-item.lg {
  flex-basis: 38%;
}

.la-img {
  margin-bottom: 40px;
  position: relative;
}

.la-img::after {
  content: url(../images/la-marker.png);
  position: absolute;
  right: -20%;
  top: 50%;
}

.la-item:last-child .la-img::after {
  display: none;
}

.la-item.lg .la-img {
  margin-top: -36px;
  margin-left: 20px;
}

.la-item.lg .la-img::after {
  content: url(../images/la-marker.png);
  position: absolute;
  right: -15%;
  top: 54%;
}

.la-title {
  font-size: 60px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #6fc40e;
}

.la-text {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: #000000;
}

.no-ranking-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #000000;
  width: 800px;
  margin: auto;
}

.no-ranking-section .section-sub {
  text-align: center;
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: #000000;
  margin-top: 20px;
}

.no-ranking-section .body-text {
  text-align: center;
  width: 1080px;
  margin: 60px auto auto auto;
}

.no-ranking-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url(../images/bg-shade.png);
  background-position: 120px 200px;
  background-size: contain;
  background-repeat: no-repeat;
}

.nr-card {
  position: relative;
}

.nr-card.hasMarginBottom {
  margin-bottom: -80px;
}

.nr-text {
  font-size: 48px;
  line-height: 46px;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #6fc40e;
}

.nr-text-one {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.nr-text-two {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 50%;
}

.nr-text-three {
  position: absolute;
  bottom: 41%;
  left: 43%;
}

.meta-cognition-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #000000;
}

.meta-cognition-section .section-sub {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: -0.9px;
  color: #41a007;
}

.meta-cognition-section .body-text {
  text-align: center;
  width: 1080px;
  margin: 60px auto auto auto;
}

.meta-cognition-section .display-text {
  width: 900px;
  margin: 60px auto auto auto;
}

.meta-cognition-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  padding-bottom: 80px;
}

.mc-img.hasMarginLeft {
  position: relative;
  margin-left: -170px;
  z-index: 1;
}

.mc-img.hasMarginLeft::before {
  content: url(../images/la-marker.png);
  position: absolute;
  right: -38%;
  top: 43%;
}

.mc-img.hasMarginRight {
  position: relative;
  margin-right: -170px;
  z-index: 1;
}

.mc-img.hasMarginRight::before {
  content: url(../images/la-marker.png);
  position: absolute;
  left: -38%;
  top: 43%;
  transform: rotate(180deg);
}

.mc-img.center {
  position: relative;
  z-index: 2;
}

.meta-cognition-section .custom-body-text {
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 40px;
}

.mc-section-block {
  margin-top: 200px;
}

.mc-icons-block {
  margin-top: -100px;
}

.mc-icons {
  text-align: center;
  margin-bottom: 60px;
}

.mc-text {
  text-align: center;
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #000000;
  margin-top: 12px;
}

/* for schools  */

.page-banner-img-school {
  width: 52%;
  position: absolute;
  top: -101px;
  left: -166px;
}

.school-banner {
  min-height: 110vh;
}

.school-banner .dot {
  top: auto;
  bottom: -90%;
  right: 20%;
}

.school-circle-one {
  background-image: url(../images/school-circle1.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  top: -130px;
  right: 0;
  width: 350px;
}

[data-aos="custom-fade"] {
  opacity: 0;
  transition: opacity 2s ease-out;

  &.aos-animate {
    opacity: 1;
  }
}

.next-gen-section {
  position: relative;
  margin-top: -6%;
}

.redefine-flex {
  background-position: 250px 150px;
}

.improve-grade-section {
  margin: 0;
}

.icon-circle {
  position: relative;
  background: #fff;
}

.circle-mask {
  background-image: url(../images/improve-grade-bg.png);
  min-height: 320px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  mask: radial-gradient(circle at center, transparent 150px, white 150px);
  -webkit-mask: radial-gradient(circle at center, transparent 150px, white 150px);
  z-index: 0;
}

.ig-section {
  margin-bottom: 80px;
}

.ig-title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #000000;
  margin-bottom: 40px;
}

.ig-title .highlight {
  color: #6fc40e;
  font-weight: 700;
}

.learning-journey-section {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.learning-journey-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #d1f5c2;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.learning-journey-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  font-weight: 600;
  letter-spacing: -3.6px;
  color: #000000;
  width: 1000px;
  margin: auto;
}

.learning-journey-section .body-text {
  text-align: center;
  margin-top: 30px;
}

.lj-ui-block {
  min-height: 700px;
  position: relative;
  margin-bottom: -120px;
}

.ui-image-1 {
  position: absolute;
  left: 0;
  bottom: -8%;
}

[data-aos="custom-zoom-out"] {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.5);
  transition: transform 2s ease-out, opacity 2s ease-out;

  &.aos-animate {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.ui-image-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ui-image-3 {
  position: absolute;
  right: 0;
  top: 18%;
}

.ui-image-4 {
  position: absolute;
  right: 8%;
  bottom: -10%;
  z-index: 2;
}

.lj-block {
  width: 320px;
  margin: auto;
}

.learning-journey-points-section {
  padding-top: 150px;
}

.lj-block {
  margin-top: 60px;
}

.lj-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.9px;
  color: #000000;
  margin-bottom: 20px;
}

.lj-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #000000;
}

.student-growth-section .section-title {
  text-align: center;
  font-size: 120px;
  line-height: 116px;
  font-weight: 600;
  letter-spacing: -3px;
  color: #000000;
}

.sg-content {
  margin-top: 120px;
}

.sg-content .body-text {
  margin-bottom: 240px;
}

.student-growth-section {
  padding-bottom: 0;
}

/* parents  */

.learner-banner.parents-banner {
  height: 880px;
}

.page-banner-img-parents {
  width: 52%;
  position: absolute;
  top: -60vh;
  right: 0px;
}

.page-banner-img-parents2 {
  /* width: 52%; */
  position: absolute;
  bottom: -230px;
  right: 10px;
}

.parents-banner .dot {
  top: auto;
  bottom: 0;
  right: -30%;
}

.parents-learning-journey-section::after {
  content: "";
  background-color: #e6f0f9;
}

/* pricing  */

.pricing-banner {
  height: auto;
}

.pricing-banner .pb-title {
  text-align: center;
}

.pricing-banner .pb-subtitle {
  text-align: center;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #000000;
  width: 800px;
  margin: 40px auto auto auto;
}

.pricing-banner .dot {
  position: absolute;
  right: 5vw;
  top: 0;
}

/* Toggle Switch Styles */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
}

.toggle-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
}

.toggle-label.active {
  color: #097f00;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #097f00;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #097f00;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

/* Card transition styles */
.price-card {
  transition: all 0.3s ease;
}

.price-text,
.hour-value-text {
  transition: all 0.3s ease;
}

/* Animation for price changes */
@keyframes priceChange {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.price-animate {
  animation: priceChange 0.5s ease;
}

/* tabs  */

.custom-tab {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 50px;
  width: fit-content;
  margin: auto;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.custom-tab .nav-item {
  text-align: center;
}

.custom-tab .nav-link {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: transparent;
  border: none;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #278c03;
  transition: color 0.3s ease;
  padding: 8px 24px;
}
.custom-tab .nav-link.active {
  color: #fff;
  background: #00425a 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 50px;
}
.custom-tab .slider {
  position: absolute;
  top: 10px;
  left: 0;
  height: 35px;
  background: #00425a 0% 0% no-repeat padding-box;
  border-radius: 50px;
  z-index: 0;
  transition: all 0.1s ease;
}

.price-listing-section {
  padding-top: 40px;
}

.price-card {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 26px #0000001a;
  border-radius: 30px;
  border: none;
  min-height: 510px;
}

.img-content-block {
  position: relative;
}

.card-details {
  position: absolute;
  top: 45px;
  left: 40px;
}

.price-card-block {
  margin-top: 80px;
}

.btn-block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -85px;
}

.card-btn {
  background: #41a007 0% 0% no-repeat padding-box;
  box-shadow: 0px 12px 60px #0000001f;
  height: 138px;
  width: 138px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-decoration: none;
  z-index: 1;
  transition: 0.3s all ease-in-out;
  border: none;
}

.card-btn:hover {
  transform: scale(0.9);
  transition: 0.3s all ease-in-out;
}

.plan-features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.plan-features-list li {
  font-size: 20px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #000000;
}

.plan-features-list li::before {
  content: url(../images/check.svg);
  color: #28a745;
  font-size: 20px;
  margin-right: 10px;
  font-weight: 700;
}

.plan-features-list li .bold {
  font-weight: 700;
}

.plan-name {
  font-size: 30px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: -0.75px;
  color: #ffffff;
}

.price-text {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
}

.hour-value-text {
  margin-top: 10px;
  font-size: 20px;
  line-height: 10px;
  /* font-weight: 600; */
  font-weight: lighter;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin: 60px 0 30px 0;
}

.feature-benefits-section {
  position: relative;
}

.feature-benefits-section .section-title {
  font-size: 72px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -1.8px;
  color: #000000;
  text-align: center;
}

.feature-benefits-section .body-text {
  width: 88%;
  margin-top: 30px;
}

.fb-block {
  margin-top: 140px;
  margin-bottom: 60px;
}

.fb-title {
  font-size: 52px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: -1.3px;
  color: #000000;
  margin-bottom: 24px;
}

.fb-title .bold {
  font-weight: 600;
}

.fb-subtitle {
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  letter-spacing: -0.9px;
  color: #097f00;
  width: 700px;
}

.fb-image {
  position: relative;
}

.fb-img {
  width: 100%;
}

.fb-img-position {
  position: absolute;
  left: -18px;
  bottom: -18px;
  z-index: 1;
}

.faq-section-title {
  text-align: center;
  font-size: 60px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #000000;
  background: #d1f5c2 0% 0% no-repeat padding-box;
  height: 210px;
  width: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  position: relative;
}

.faq-section-title::before {
  content: "";
  background: transparent linear-gradient(180deg, #00b1ff 0%, #84ff00 100%) 0% 0% no-repeat padding-box;
  opacity: 0.26;
  filter: blur(50px);
  position: absolute;
  height: 300px;
  width: 300px;
}

.faq-accord {
  margin-top: 100px;
}

.faq-accord .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.faq-accord .accordion-header {
  padding: 0 20px 0 0;
}

.faq-accord .accordion-button {
  background-color: transparent;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: #097f00;
  transition: 0.3s all ease-in-out;
  padding: 30px 0;
}

.faq-accord .accordion-button.collapsed {
  color: #000000;
  transition: 0.3s all ease-in-out;
}

.faq-accord .accordion-button:focus:not(:focus-visible) {
  box-shadow: none;
}

.faq-accord .accordion-button::after {
  background-image: none;
  width: auto;
  height: auto;
}

.faq-accord .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 60px;
  font-weight: 200;
  color: #69bf0d;
  transform: none;
}

.faq-accord .accordion-button.collapsed::after {
  content: "+";
  font-size: 52px;
  font-weight: 200;
  color: #69bf0d;
  transform: none;
}

.accordion-body {
  font-size: 20px !important;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #000000;
}

/* contact  */

.contact-block {
  height: auto;
  margin-top: 120px;
}

.form-title-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: #000000;
}

.contact-text {
  width: 560px;
}

.contact-block .pb-title {
  letter-spacing: -2.95px;
  font-size: 118px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
  position: relative;
  margin-bottom: 80px;
}

.contact-block .dot {
  width: 40px;
  height: 40px;
  background-color: #ffba00;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: -30px;
  top: -80px;
}

.contact-sub-highlight {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #097f00;
  margin-top: 40px;
}

.contact-sub-text {
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #000000;
}

.form-container {
  margin-top: 20px;
}

.custom-input {
  background: #f7f7f7 0% 0% no-repeat padding-box;
  border: none;
  border-radius: 12px;
  padding: 20px;
}

.form-item {
  margin-bottom: 20px;
}

.btn-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.form-info-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #707070;
}

.contact-center {
  height: 250px;
}

.contact-footer {
  margin-top: -110px;
}

/* philosopy  */

.philosopy-banner {
  padding-top: 20px;
  height: 100vh !important;
}

.philosopy-banner-img {
  width: 96%;
}

.philosopy-banner .pb-title {
  font-size: 120px;
}

.philosopy-banner .dot {
  top: auto;
  bottom: 37%;
  right: 35%;
}

.unlock-section {
  padding-top: 0;
}

.unlock-section .section-title {
  text-align: center;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #000000;
}

.unlock-section .section-title-sub {
  text-align: center;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #097f00;
}

.us-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 150px;
  gap: 50px;
}

.us-image {
  width: auto;
}

.body-text.normal {
  margin-top: -50px;
}

.body-text.green {
  color: #097f00;
  font-weight: 600;
  margin-top: 140px;
}

.philosophy-journey-section .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 198px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #000000;
}

.philosophy-journey-section .section-title-sub {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: #000000;
  text-align: center;
  width: 900px;
  margin: auto;
}

.philosophy-journey-section .section-title-sub .bold {
  font-weight: 700;
}

.p-banner-section {
  background-image: url(../images/p-banner.png);
  background-size: cover;
  background-repeat: round;
  height: 700px;
  display: flex;
  justify-content: center;
}

.p-banner-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 220px;
  gap: 12px;
}

.pbf-item {
  flex-basis: 14.28%;
}

.pbf-item-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pbf-text {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #000000;
  margin-top: 10px;
  text-align: center;
}

.how-does-it-work {
  overflow: hidden;
}

.how-does-it-work .section-title {
  text-align: center;
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #000000;
}

.how-does-it-work .section-title .highlight {
  font-weight: 500;
  color: #6fc40e;
}

.hdw-block {
  margin-top: 120px;
}

.hdw-title {
  font-size: 52px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: -1.3px;
  color: #000000;
  margin-bottom: 40px;
}

.hdw-title .bold {
  font-weight: 700;
}

.hdw-img {
  width: 100%;
}

.hdw-item {
  margin-bottom: 160px;
}

.hdw-highlight-text {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #000000;
}

.school-circle-one-mob {
  display: none;
}

.background-patch-left {
  position: absolute;
  top: 0;
  left: -30%;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.3) 10%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.background-patch-center {
  position: absolute;
  bottom: -35%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.3) 10%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.parents-highlight {
  width: 1100px;
  margin: auto;
  margin-bottom: 60px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem #41a007;
}

.no-ranking-mobile {
  display: none;
}

.pbf-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pbf-circle img {
  width: auto;
}

.error {
  border: 2px solid red;
}

.toaster {
  color: red;
  margin-top: 10px;
  display: none;
}

.nj-image {
  margin-top: -800px;
}

.coming-soon-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: -0.75px;
  color: #41a007;
}

.price-card.disabled .img-content-block,
.price-card.disabled .plan-features-list {
  opacity: 0.4;
}

.price-card.disabled .card-btn {
  background-color: #000000;
  text-align: center;
  line-height: 20px;
}

.pc-upcoming-text {
  text-align: center;
  font-size: 80px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #097f00;
  margin-bottom: 50px;
}

.pc-upcoming-subtext {
  text-align: center;
  font-size: 52px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1.3px;
  color: #000000;
}

.pc-coming-soon-block {
  height: 600px;
  padding-top: 80px;
}

.faq-list {
  list-style: none;
}

.faq-list li {
  position: relative;
}

.faq-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #097f00;
  position: absolute;
  border-radius: 50%;
  left: -20px;
  top: 12px;
}

.faq-list li strong {
  font-weight: 700;
}

/* table  */

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  border: 1px solid #9b9b9b;
  margin: 30px 0;
  /* width: 100%; */
  border-collapse: collapse;
}

.custom-table tr th {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #000000;
  padding: 20px 30px;
  background-color: #d1f5c2;
  border-right: 1px solid #d3d3d3;
}

.custom-table tr td:first-child {
  text-align: left;
}

.custom-table tr td {
  padding: 20px 30px;
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  text-align: center;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #000000;
}

.privacy-section {
  margin-top: 100px;
}

.privacy-section .section-title {
  font-size: 72px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.privacy-block {
  margin-top: 60px;
}

.privacy-title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 30px;
}

.privacy-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.45px;
  color: #000000;
}

.pbf-item-1 {
  transform: translateY(-150px);
}

.pbf-icon-1 {
  transform: translateY(-80px);
}

.pbf-item-2 {
  transform: translateY(-80);
}

.pbf-icon-2 {
  transform: translateY(20px);
}

.pbf-item-3 {
  transform: translateY(30px);
  /* margin-right: 60px; */
}

.pbf-icon-3 {
  transform: translateY(-40px);
}

.pbf-item-4 {
  transform: translateY(-150px);
}

.pbf-item-5 {
  transform: translateY(-180px);
}

.pbf-item-6 {
  transform: translateY(-160px);
}

.pbf-item-7 {
  transform: translateY(-60px);
}

.wall-page-banner {
  height: auto;
}

.wall-page-banner .section-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: -3px;
  color: #000000;
}

.w-banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: -170px;
}

.wb-item {
  flex-basis: 15%;
  position: relative;
}

.wb-img {
  flex-basis: 70%;
}

.wall-banner-image {
  width: 100%;
}

.wall-page-banner .dot {
  position: absolute;
  right: -80px;
  top: 50%;
}

.mobile-only {
  display: none;
}

/* video  */

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

video {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.video-controls {
  display: flex;
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  color: white;
  transition: 0.3s all ease-in-out;
}

.slick-current .carousal-card:hover .video-controls {
  opacity: 1;
  transition: 0.3s all ease-in-out;
}

.video-controls .video-range {
  cursor: pointer;
  width: 100%;
  flex-basis: 80%;
}

/* range  */

input[type="range"] {
  color: #6fc40e;
  --thumb-height: 14px;
  --track-height: 3px;
  --track-color: rgba(255, 255, 255, 0.3);
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
}

input[type="range"] {
  position: relative;
  background: #fff0;
  overflow: hidden;
}

input[type="range"]:active {
  cursor: grabbing;
}

input[type="range"]:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}

/* === WebKit specific styles === */
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  position: relative;
}

input[type="range"]::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor;

  width: var(--thumb-width, var(--thumb-height));
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));

  filter: brightness(100%);
  clip-path: polygon(
    100% -1px,
    var(--clip-edges) -1px,
    0 var(--clip-top),
    -100vmax var(--clip-top),
    -100vmax var(--clip-bottom),
    0 var(--clip-bottom),
    var(--clip-edges) 100%,
    var(--clip-further) var(--clip-further)
  );
}

input[type="range"]:hover::-webkit-slider-thumb {
  filter: brightness(var(--brightness-hover));
  cursor: grab;
}

input[type="range"]:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px);
}

input[type="range"]:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}

input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
  appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
  background: #fff0;
}

input[type="range"]::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-width, var(--thumb-height));
  border-radius: var(--thumb-width, var(--thumb-height));
  cursor: grab;
}

input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}

input[type="range"]::-moz-range-progress {
  appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
  filter: brightness(100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:hover::-moz-range-progress {
  filter: brightness(var(--brightness-hover));
}

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:active::-moz-range-progress {
  filter: brightness(var(--brightness-down));
}

input[type="range"]:disabled::-moz-range-thumb {
  cursor: not-allowed;
}

.playPauseBtn {
  flex-basis: 20%;
  background: #6fc40e;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.wb-item.mob-title {
  display: none;
}

.teacher-banner {
  height: 1000px;
}

.discover-features {
  margin-top: 60px;
}

.discover-features .cs-feature-item {
  text-align: left;
}

.discover-features .csf-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.6px;
  color: #000000;
}

.discover-features .cs-feature-item.has-margin {
  margin-top: 100px;
}

.welcome-circle {
  position: absolute;
  right: 0;
  bottom: -330px;
  z-index: 1;
  width: 500px;
}

.kml-item {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #f4f4f4;
}

.kml-item .bold {
  font-weight: 600;
}

.section-sub-title {
  font-size: 52px;
  line-height: 80px;
  font-weight: 400;
  letter-spacing: -1.3px;
  color: #000000;
  text-align: center;
  margin-top: 60px;
}

.section-sub-title .highlight {
  font-weight: 600;
}

.hdw-body {
  text-align: center;
  margin-top: 30px;
}

.arrow-web {
  display: block;
}

.arrow-mob {
  display: none;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #d3d3d3;
  margin: 28px 0 38px 0;
}

.dropdown-menu-mob {
  padding: 20px 20px;
}

.dropdown-menu-mob .register {
  background-color: #41a007;
}

.dropdown-menu-mob li a {
  color: #097f00;
}

.dropdown-menu-mob li {
  margin-bottom: 26px;
}

.dropdown-menu-mob .register {
  color: #ffffff;
  margin-bottom: 12px;
}

.login-title-mob {
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  font-weight: 700;
  padding-left: 14px;
  margin-bottom: 10px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: inline-block;
  margin-top: 0;
  margin-left: -5rem;
}

.dropdown-menu {
  margin-top: 0;
}

/* contest  */
.creative-contest-container {
  position: absolute;
  bottom: -80px;
  transform: scale(0.9);
  right: -30px;
}

.cc-floating-button {
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 126px;
  background-color: #ffffff;
  /* width: 40%; */
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.creative-contest-block {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.cc-title {
  font-size: 24px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #389806;
  margin-top: 15px;
}

.cc-text {
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #000000;
}

.cc-btn {
  background: #09cc05;
  text-align: center;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.55px;
  color: #ffffff;
  width: 158px;
  height: 158px;
}

.cc-close-icon {
  display: none;
}

/* Modal styles  */

.custom-modal {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 40px #0000001a;
  border-radius: 48px;
  padding: 30px 20px;
  border: none;
  position: relative;
}

.custom-close {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #278c04;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  transform: scale(0.8);
}

.custom-close:hover {
  transform: scale(0.9);
  transition: 0.3s all ease-in-out;
  opacity: 1;
}

.custom-modal-dialog {
  max-width: 600px;
}

.custom-modal .modal-body {
  padding: 80px 60px;
}

.success-highlight {
  color: #41a007;
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.05;
}
.try-for-free {
  top: 40px;
  left: 1457px;
  width: 151px;
  height: 45px;
  /* UI Properties */
  box-shadow: 0px 1px 40px #0000001a;
  border: 2px solid #288b05;
  border-radius: 50px;
  opacity: 1;
}

.product-launch {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 35rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  border-radius: 60px;
  background-color: #fff;
  z-index: 999;
}

.product-launch > img {
  width: 100%;
  object-fit: contain;
}

.product-launch-mob {
  position: fixed;
  width: calc(100% - 2rem); /* Account for left/right margins */
  left: 50%;
  top: 50%;
  max-width: 30rem;
  transform: translate(-50%, -50%); /* Center the popup */
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 60px; /* Match the rounded corners from image */
  z-index: 999;
  display: none;
}

.product-launch-mob > img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
  display: block; /* Remove any inline spacing */
}

.product-launch-mob > .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

/* Student AI Skills */

/* New CSS for Projects Section only */
.projects-section {
  padding: 5rem 0;
}

.projects-section .section-title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #000000;
  text-align: center;
  margin-bottom: 5rem;
}

.projects-grid {
  margin-top: 2rem;
}

.project-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #69bf0d;
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-content .body-text {
  flex-grow: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-details {
  flex-grow: 1;
}

.project-level,
.project-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-timeline {
  display: flex;
  align-items: center;
}

.project-details .body-text {
  font-size: 1rem;
  margin-bottom: 0;
}

.project-details .bold {
  font-size: 1rem;
  font-weight: bold;
}

.project-timeline .body-text {
  font-size: 1rem;
  margin-bottom: 0;
}

/* What you will learn */

/* Learn Section */
.learn-section {
  padding: 60px 0;
}

.learn-section .section-title {
  text-align: center;
  font-size: 60px;
  line-height: 70px;
  font-weight: bold;
  letter-spacing: -1.5px;
  color: #000000;
}

.learn-section .section-title .green-text {
  color: #7ac943;
  font-weight: 400;
}

.learn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.learn-content {
  padding-right: 30px;
}

.learn-content .section-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.learn-image {
  text-align: center;
  margin-top: 2rem;
}

.learn-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

/* media css */

.media-page-banner .container .row{
  /* margin: 0 50px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.media-page-banner .font-bold {
  font-weight: bold;
}

.media-page-banner .img-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-page-banner .img-block::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 93px;
  width: 244px;
  height: 244px;
  transform: matrix(-0.5, 0.87, -0.87, -0.5, 0, 0);
  background: transparent linear-gradient(180deg, #00B1FF 0%, #84FF00 100%) 0% 0% no-repeat padding-box;
  opacity: 0.26;
  filter: blur(50px);
}

.media-page-banner .img-block img:first-child, .media-page-banner .img-block  img:last-child {
  height: 150px;
  width: 150px;
  margin: -50px;
}

.media-page-banner .img-block img:nth-child(2) {
  width: 200px;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.media-page-links h1{
  text-align: left;
  font: normal normal bold 48px/56px Montserrat;
  letter-spacing: -1.2px;
  margin-bottom: 1em;;
}

.media-page-links ul{
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  gap: 0 3rem ;
}

.media-page-links ul li{ 
  border-top: 1px solid #D3D3D3;
  width: 100%;
  height: 112px;
  padding: 1rem 0;
  position: relative;
}

.media-page-links ul li a::after{ 
  content: url(../images/open-url-arrow.svg);
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 30px;
}

.media-page-links ul li:nth-child(7), .media-page-links ul li:nth-child(8) { 
  border-bottom: 1px solid #D3D3D3;
}

.media-page-links a {
  text-decoration: none;
  color: #000;
}

.media-page-links a h3 {
  text-align: left;
  /* font: normal normal 600 28px/48px Montserrat; */
  letter-spacing: -0.7px;
  color: #097F00;
  /* margin:0; */
}

.media-page-links a p {
  /* font: normal normal normal 20px/40px Montserrat; */
  letter-spacing: -0.5px;
  /* margin: 0; */
}

.media-page-links::before {
  content: '';
  position: absolute;
  top: 1203px;
  left: -121.75473022460938px;
  width: 244px;
  height: 244px;
  transform: matrix(-0.5, 0.87, -0.87, -0.5, 0, 0);
  background: transparent linear-gradient(180deg, #00B1FF 0%, #84FF00 100%) 0% 0% no-repeat padding-box;
  opacity: 0.26;
  filter: blur(50px);
}

/* styling  dropdown */
.custom-dropdown {
  position: relative;
}

.dropdown-selected {
  cursor: pointer;
}


.dropdown-options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 2px solid #42A007;
  border-radius: 12px;
  background-color: white;
  display: none;
  z-index: 500;
  max-height: 250px;
  overflow-y: auto;
}

.dropdown-options li {
  padding: 10px 16px;
  cursor: pointer;
}

.dropdown-options li:hover {
  color: #41A007;
}


.autocomplete-wrapper {
  position: relative;
  /* width: 250px; */
}

.autocomplete-input {
  width: 100%;
  /* padding: 10px; */
  /* box-sizing: border-box; */
  /* border: 1px solid #ccc; */
  /* border-radius: 5px; */
  background-color: transparent;
  border: none;
  outline: none;
}

.autocomplete-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 2px solid #42A007;
  border-radius: 12px;
  background-color: white;
  max-height: 250px;
  overflow-y: auto;
  z-index: 500;
  list-style: none;
  display: none;
  padding-left: 0.5em;
}

.autocomplete-options li {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-options li:hover {
  color: #41A007;
}

.autocomplete-show {
  display: block;
}

/* mobile login styles */

h4.dropdown-item {
  text-align: left;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #707070;
  pointer-events: none;
}

.dropdown-menu-mob .dropdown-item {
  padding: 0;
}

.dropdown-menu-mob {
  padding: 2em;
}

.dropdown-menu-mob .register-item p {
  text-align: left;
  font-size: 14px;
  letter-spacing: -0.45px;
  color: #707070;
  margin-bottom: 0px;
}