*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 3px;
}

:root {
  --color-theme: #2c2c30;
  --color-theme-light: #777777;
  --color-theme-lightest: #e1e1ee;
  --bg-soft-gradient: linear-gradient(-225deg, #edfaff 0%, #ffe6fa 100%);
  --color-text-main: #1a1556;
  --color-text-sec: gray;
  --color-success: #20c996;
  --color-success-dark: #0f8863;
  --color-danger: #dc3546;
  --color-danger-dark: #9f222f;
  --color-primary: #0074d9;
  --color-primary-dark: #0074d9;
  --box-shadow: 0 5px 15px rgb(150 132 254 / 15%);
  --box-shadow-float: 0px 17px 10px -10px rgb(0 0 0 / 40%);
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem !important;
  font-family: "Poppins", sans-serif;
  position: relative;
  height: 100%;
}

.hidden {
  display: none !important;
}

input {
  outline: none;
}

.h4, h4 {
    font-size: 2rem;
    font-weight: 700;
}


.h5, h5 {
    font-size: 1.8rem;
    font-weight: 700;
}

.h2, h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.h1, h1 {
    font-size: 3rem;
    font-weight: 700;
}

.h6, h6 {
    font-size: 1.4rem;
  font-weight: 700;
}

.small, small {
    font-size: 90%;
}

.lead {
    font-size: 1.6rem;
    font-weight: 300;
}

.btn {
  outline: none;
  box-shadow: none;
  border: none;
  /* min-width: 19.6rem; */
  width: auto;
  height: 65px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(221, 166, 47, 1);
}

.gap-3 {
  gap: 3rem;
}

.btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.btn:active {
  transform: scale(0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.container,
.container-fluid {
  height: 100%;
}

.row {
  height: 100%;
}

.datepicker-container {
  z-index: 10000 !important;
}

.datepicker-panel [data-view="month current"],
.datepicker-panel [data-view="year current"] {
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  color: red;
}

select {
  appearance: none !important;
  cursor: pointer;
}

li i {
  margin-right: .5rem;
}

span i {
  margin-right: .5rem;
}

.old-price {text-decoration: line-through;color: red;font-size: 1.4rem;}

/*------------------------------Scroller------------------------------*/

/* width */

::-webkit-scrollbar {
  width: 0;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 199, 199);
}

/*------------------------------Swal------------------------------*/

.swal2-popup {
  padding-bottom: 0 !important;
  max-width: 80% !important;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px !important;
  padding: 0 1rem !important;
  width: 40em !important;
}

.swal2-icon {
  margin: 2em auto 1em !important;
}

.swal2-title {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 1.8rem !important;
}

.swal2-html-container {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 2rem !important;
}

.swal2-actions {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  width: 100% !important;
  font-size: 1.4rem;
}

.swal2-styled.swal2-confirm {
  background-color: var(--color-theme);
}

.swal2-styled.swal2-cancel {
  background-color: var(--bs-danger);
}

.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus {
  box-shadow: none !important;
}

/*------------------------------Hero------------------------------*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  color: #012c3c;
  height: 7rem;
  position: sticky;
  top: 0;
  z-index: 9999999;
  background: rgba(255, 255, 255, 0.6); /* white with 60% transparency */
  backdrop-filter: blur(5px);
}

.logo {
  font-weight: 800;
  font-size: 2.5rem;
  color: #00646f;
}

nav a {
  margin: 0 15px;
  color: #012c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
}

.cta-buttons button,
.cta-buttons a {
  margin-left: 15px;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.cta-buttons .login {
  background: transparent;
  color: #012c3c;
}

.cta-buttons .signup {
  background: #00646f;
  color: white;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: linear-gradient(to bottom right, #007986, #012c3c);
  color: white;
  height: calc(100vh - 7rem);
}

.hero-text {
  max-width: 60rem;
}

.badge {
  background: #01424d9c;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10rem;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  margin: auto;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 1rem;
}

.hero-text h1 span {
  color: #f7b733;
}

.hero-text p {
  margin-top: 20px;
  line-height: 1.6;
  color: #d1e7ec;
  font-size: 1.6rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-buttons button {
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-buttons .start-test {
  background: #ff5e3a;
  color: white;
}

.hero-buttons input {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 230px;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  font-weight: 700;
  color: #ffffff;
}

.stat-box {
  text-align: center;
  font-size: 2.5rem;
}

.stat-box span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #d1e7ec;
}

.active-dot {
  width: 10px;
  height: 10px;
  background: #2dcf8f;
  opacity: 0.9;
  position: relative;
  display: block;
  border-radius: 50%;
}

.video-box {
  position: relative;
  background: linear-gradient(to bottom right, #012c3c, #007986);
  padding: 30px;
  border-radius: 2rem;
  width: 100%;
  max-width: 45rem;
  aspect-ratio: 4/2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-box .play-btn {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 20px;
  color: white;
}

.video-box .quote {
  text-align: center;
  margin-top: 15px;
  font-size: 1.4rem;
  color: #ffffff;
}

.video-box .score-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  color: #012c3c;
  padding: 10px 14px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 2rem;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-box .scholarship {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #ff5e3a;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }
  .video-box {
    margin-top: 40px;
    width: 100%;
  }
}

/*------------------------------Resources------------------------------*/

.resources {
  background: white;
  color: #012c3c;
  padding: 4rem 2rem;
  text-align: center;
}

.resources h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.resources h2 span {
  color: #ff5e3a;
}

.resource-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 6rem;
}

.card {
  width: auto;
  background: #dbecef;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  justify-content: space-between;
}

.card .tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ff5e3a;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #01424d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.card .highlight-btn {
  background: #e6f6f7;
  border: none;
  padding: 10px;
  margin-bottom: 12px;
  color: #01424d;
  font-weight: 600;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.card .action-btn {
  background: #ff5e3a;
  border: none;
  padding: 10px;
  color: white;
  font-weight: 600;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
}

.card .footnote {
  font-size: 12px;
  color: #666;
}

/*------------------------------Features------------------------------*/

.sat-section-1 {
  padding: 4rem 2rem;
  background: #f9fafc;
}

.sat-section-1__title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.sat-section-1__title h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.sat-section-1__title span {
  color: #ff5e3a;
}

.sat-section-1__title p {
  font-size: 1.6rem;
  color: #5e7a87;
  max-width: 65rem;
  text-align: center;
  margin: auto;
  margin-top: 1rem;
}

.sat-section-1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sat-section-1__card {
  background: white;
  border: 1px solid #d6e6ea;
  border-left: 4px solid #00bcd4;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.sat-section-1__card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sat-section-1__card p {
  font-size: 14px;
  color: #588095;
}

.sat-section-1__card .tag {
  background: #ffe9e2;
  color: #ff5e3a;
  font-size: 10px;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 30px;
  margin-top: 12px;
  font-weight: 500;
}

.sat-dashboard-widget {
  background: #066a70;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  color: #111;
  height: fit-content;
}

.sat-dashboard-widget .sat-stats {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.sat-dashboard-widget .sat-stats h3 {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-items: center;
}

.sat-dashboard-widget .sat-stats .badge {
  background: #d4f7e4;
  color: #1a8754;
  font-size: 0.8rem;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin: 0;
}

.sat-dashboard-widget .score-row {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 5rem;
}

.sat-dashboard-widget .score-row span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: gray;
}

.sat-dashboard-widget .progress-bar {
  height: 5px;
  border-radius: 4px;
  background-color: #eee;
  margin-top: 4rem;
  position: absolute;
  width: 100%;
}

.sat-dashboard-widget .progress-bar.math::before {
  content: "";
  position: absolute;
  background: #fa4f26;
  height: 100%;
  width: 90%;
  border-radius: 4px;
}

.sat-dashboard-widget .progress-bar.reading::before {
  content: "";
  position: absolute;
  background: #1eb9b3;
  height: 100%;
  width: 85%;
  border-radius: 4px;
}

.sat-dashboard-widget .progress-bar.writing::before {
  content: "";
  position: absolute;
  background: #111;
  height: 100%;
  width: 88%;
  border-radius: 4px;
}

.sat-dashboard-widget .score-boxes {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.sat-dashboard-widget .score-box {
  flex: 1;
  background: #f6f9fc;
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  margin: 0 4px;
}

.sat-dashboard-widget .score-box.improvement {
  background: #fff5f0;
  color: #fa4f26;
}

.sat-dashboard-widget .score {
  font-size: 1.6rem;
  font-weight: 700;
}

.sat-dashboard-widget .label {
  font-size: 1rem;
  color: #666;
  margin-top: 4px;
}

.sat-dashboard-widget .sat-recommendation {
  margin-top: 2rem;
  background: #edf2f7;
  padding: 1rem;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sat-dashboard-widget .sat-recommendation .icon {
  font-size: 1.2rem;
}

.sat-dashboard-widget .sat-recommendation .content {
  flex: 1;
}

.sat-dashboard-widget .sat-recommendation .title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #444;
}

.sat-dashboard-widget .sat-recommendation .text {
  font-size: 1rem;
  color: #333;
}

.sat-dashboard-widget .peek-button {
  background: #fa4f26;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
}

.sat-cards-con {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sat-cards-con-h {
  grid-column: span 3;
  flex-direction: row;
}

@media (max-width: 768px) {
  .sat-section-1__dashboard {
    grid-column: span 1;
  }
}

/*------------------------------Trusted------------------------------*/

.trusted-section {
  text-align: center;
  padding: 20px;
}

.trusted-section .trusted-header {
  background: linear-gradient(to right, #006e83, #003344);
  border-radius: 6px;
  color: #fff;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.trusted-section .trusted-header h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.trusted-section .trusted-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.trusted-section .trusted-stats .stat {
  flex: 1 1 120px;
}

.trusted-section .trusted-stats strong {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}

.trusted-section .trusted-stats span {
  font-size: 1.6rem;
  display: block;
  color: #dcdcdc;
  margin-top: 4px;
}

.trusted-section .final-drop {
  background: linear-gradient(to right, #f9652b, #0c8688);
  border-radius: 6px;
  color: #fff;
  padding: 3rem 2rem;
  margin-bottom: 20px;
}

.trusted-section .final-drop h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.trusted-section .final-drop p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.trusted-section .final-drop small {
  font-size: 12px;
  color: #eee;
}

.trusted-section .free-trial-btn {
  background: #ff3e0d;
  border-radius: 6px;
  padding: 15px 0;
}

.trusted-section .free-trial-btn button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
}

/*------------------------------Result------------------------------*/

.real-results-section {
  padding: 4rem 2rem;
  text-align: center;
}

.real-results-section .live-banner {
  background: #f3f7fc;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 24px;
  color: #00b67a;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
  box-shadow: var(--box-shadow);
}

.real-results-section .live-banner span {
  color: #ff4d4d;
}

.real-results-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0 5px;
}

.real-results-section .section-subtitle {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 30px;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-cards {
  display: flex;
  /*flex-wrap: wrap;*/
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  animation: scroll-left 20s linear infinite;
}

.testimonial-cards:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.real-results-section .card {
  background: #fff;
  border: 1px solid #cdcccc;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
  text-align: left;
  flex: 1;
}

.real-results-section .card-header {
  display: flex;
  align-items: center;
  justify-content: unset;
  background: no-repeat;
  gap: 1rem;
}

.real-results-section .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f172a;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.real-results-section .verified {
  color: #1d9bf0;
  font-size: 14px;
  margin-left: 4px;
}

.real-results-section .time {
  font-size: 12px;
  color: #999;
}

.real-results-section .flag-icon {
  font-size: 16px;
  color: #ffbebe;
}

.real-results-section .score-box {
  background: linear-gradient(to right, #057b7d, #002d4f);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: center;
}

.real-results-section .score-box span {
  font-size: 1.4rem;
  display: block;
  opacity: 0.85;
}

.real-results-section .score-box strong {
  font-size: 1.8rem;
}

.real-results-section .comment {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 10px;
}

.real-results-section .stars {
  font-size: 16px;
  color: #facc15;
}

.real-results-section .video-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0rem;
}

.real-results-section .video-card {
  height: 17rem;
  background: linear-gradient(to right, #015c63, #022c42);
  border-radius: 10px;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 1.5rem;
}

.real-results-section .play-icon {
  font-size: 5rem;
  margin-bottom: 10px;
}

.real-results-section .caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  font-size: 12px;
  border-radius: 4px;
  width: 100%;
}

.real-results-section .card-header div:nth-child(2) {
  flex: 1;
}

/*------------------------------Testimonial------------------------------*/

.testimonial-section {
  padding: 40px 20px;
  background: #f9fbfb;
  text-align: center;
}

.testimonial-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #052742;
  margin-bottom: 30px;
}

.testimonial-section .testimonial-cards {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 3rem;
  justify-content: center;
}

.testimonial-section .testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 2.5rem 2rem;
  max-width: 300px;
  flex: 1 1 280px;
  text-align: left;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.testimonial-section .testimonial-card p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-section .stars {
  font-size: 16px;
  color: #f8b400;
}

/*------------------------------University------------------------------*/

.university-acceptance {
  background-color: #f9fbfb;
  text-align: center;
  padding: 20px 0;
}

.university-acceptance__title {
  font-weight: 600;
  color: #002d47;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.university-acceptance__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  font-weight: 600;
  color: #4a5865;
  font-size: 14px;
  padding: 0 2rem;
}

.university-acceptance__logos div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
  padding: 1rem;
}

/*------------------------------Sat Date------------------------------*/

.sat-date-section {
  background: #fff2ef;
  padding: 40px 20px;
}

.sat-date-section__highlight-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 80rem;
  margin: 0 auto 40px auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.sat-date-section__alert {
  color: #d43a2c;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.sat-date-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sat-date-section .highlight {
  color: #e84242;
}

.sat-date-section__desc {
  color: #4b5f6c;
  margin-bottom: 3rem;
}

.sat-date-section__countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sat-date-section__countdown div {
  background: linear-gradient(to right, #015c63, #022c42);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  width: 7rem;
  height: 7rem;
}

.sat-date-section__countdown strong {
  display: block;
  font-size: 18px;
}

.sat-date-section__countdown span {
  font-size: 12px;
}

.sat-date-section__cta {
  background: #fc4a4a;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.sat-date-section__bottom-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  max-width: 80rem;
  margin: auto;
}

.sat-date-section__card {
  background: #fff8ef;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid orange;
}

.sat-date-section__card.pink {
  background: #fff5f5;
}

.sat-date-section__icon {
  font-size: 4rem;
  margin-bottom: 8px;
  text-align: center;
}

.sat-date-section__count {
  font-size: 3rem;
  color: #e75a19;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

.sat-date-section__subtext {
  font-size: 1.6rem;
  color: #666;
}

.sat-date-section__card h4 {
  font-size: 2rem;
  font-weight: 700;
}

.sat-date-section__roi p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.sat-date-section__roi p.warning {
  text-align: center;
  color: red;
}
.sat-date-section__roi .green {
  color: green;
}
.sat-date-section__roi .red {
  color: red;
}

.sat-date-section__city-alert {
  max-width: 80rem;
  margin: auto;
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid #febe53;
  background: #feefc9;
  border-radius: 1rem;
}

/*------------------------------Compare------------------------------*/

.sat-compare {
  margin: 0;
  padding: 6rem 4rem;
  background-color: #f9f9f9;
  color: #333;
}

.sat-compare h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.sat-compare h2 .highlight {
  color: #f24e1e;
}

.sat-compare .subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: #777;
  margin-bottom: 30px;
}

.sat-compare .table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.sat-compare .comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.sat-compare .comparison-table th,
.sat-compare .comparison-table td {
  text-align: center;
  padding: 14px 10px;
  /* border: 1px solid #ddd; */
  font-size: 1.6rem;
}

.sat-compare .comparison-table td {
  text-align: left;
  border: 1px solid gainsboro;
}

.sat-compare .comparison-table td:not(:first-child) {
  text-align: center;
  font-size: 2rem;
  border: 1px solid gainsboro;
}

.sat-compare .comparison-table td:nth-child(2) {
  background: #ffded0;
  border-color: #f7825f;
}

.sat-compare .comparison-table thead {
  background-color: #f5f5f5;
}

.sat-compare .highlight-col {
  background-color: #ffded0;
  color: #f24e1e;
  font-weight: 600;
  border: 1px solid #f24e1e !important;
}

.sat-compare .plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sat-compare .plan-header .price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.sat-compare .plan-header .badge {
  margin-top: 4px;
  padding: 2px 8px;
  font-size: 10px;
  background-color: #f24e1e;
  color: white;
  border-radius: 8px;
}

.sat-compare tfoot .footer-row td {
  font-weight: bold;
  padding: 20px 10px;
  background-color: #e9f5f0;
}

.sat-compare tfoot .footer-row td:nth-child(2) {
  background-color: #003a3f;
  color: white;
  border-radius: 0 0 0 12px;
}

.sat-compare tfoot .footer-row td:not(:first-child) {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

/*------------------------------Sat Banner------------------------------*/

.sat-compare-banner {
  /* max-width: 600px; */
  /* margin: 40px auto; */
  background: linear-gradient(135deg, #007780, #002e47);
  /* border-radius: 12px; */
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  margin-top: 0rem;
}

.sat-compare-banner h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sat-compare-banner p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.sat-compare-banner .price-line {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.sat-compare-banner .old-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-right: 10px;
}

.sat-compare-banner .new-price {
  color: #ff5e28;
  font-weight: 700;
}

.sat-compare-banner .cta-button {
  background-color: #ff5e28;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
  transition: background 0.3s ease;
}

.sat-compare-banner .cta-button:hover {
  background-color: #e94c17;
}

/*------------------------------Compare cta------------------------------*/

.sat-compare-cta .cta-section {
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.sat-compare-cta .cta-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sat-compare-cta .cta-section p {
  font-size: 1.6rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
}

.sat-compare-cta .btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  align-items: center;
  display: flex;
  width: fit-content;
  margin: auto;
}

.sat-compare-cta .btn.orange {
  background-color: #ff5e28;
  color: white;
}

.sat-compare-cta .btn.orange:hover {
  background-color: #e94c17;
}

.sat-compare-cta .btn.white {
  background-color: white;
  color: #ff5e28;
}

.sat-compare-cta .btn.white:hover {
  background-color: #f4f4f4;
}

/* Background Colors */
.sat-compare-cta .teal-bg {
  background: linear-gradient(135deg, #007780, #002e47);
}

.sat-compare-cta .orange-bg {
  background-color: #ff5e28;
}

.sat-compare-cta .dark-bg {
  background-color: #002e47;
}

/*------------------------------Footer------------------------------*/

.sat-footer {
  background-color: #002e47;
  color: #ffffff;
  padding: 4rem 2rem 1rem 2rem;
}

.sat-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.sat-footer .footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.sat-footer .brand h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sat-footer .brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.sat-footer h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.sat-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sat-footer ul li {
  margin-bottom: 8px;
}

.sat-footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.sat-footer ul li a:hover {
  color: #ff5e28;
}

.sat-footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.sat-footer .footer-bottom hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.nav {
    gap: 3rem;
    font-weight: 700;
}

.nav ul {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 3rem;
    z-index: 11;
    border-radius: 2rem;
    flex-direction: column;
    gap: 2rem;
}


.nav li a:hover {
    color: orangered;
}

.nav li:hover ul {
    display: flex;
    
}

/*------------------------------AI Platform------------------------------*/

.ai-platform-section {
    color: #1b2b34;
}

.ai-platform-section .badge {
    background-color: #00a7a7;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    margin: auto;
    font-size: 1.4rem;
}

.ai-platform-section h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
}

.ai-platform-section .desc-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #555;
}

.ai-platform-section .btn-primary {
    background-color: #00a7a7;
    border-color: #00a7a7;
    font-weight: 600;
    width: initial;
}

.ai-platform-section .btn-primary:hover {
    background-color: #008f8f;
    border-color: #008f8f;
}

.ai-platform-section .btn-outline-secondary {
    border: 1px solid #ccc;
    color: #333;
    font-weight: 500;
}

.ai-platform-section .btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

.ai-platform-section .stats-row {
    max-width: 900px;
    margin: 0 auto;
}

.ai-platform-section .stat-box {
    background: #d5e7f9;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.ai-platform-section .stat-box h4 {
    color: #008080;
    font-size: 2.5rem;
    font-weight: 700;
}

.ai-platform-section .stat-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2rem;
}

.ai-platform-section .stat-desc {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 0;
}

.ai-platform-section.platform-demo-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
}

.ai-platform-section.platform-demo-section .desc-text {
    max-width: 700px;
    margin: 0 auto;
}

.ai-platform-section .video-box {
    background: linear-gradient(135deg, #f5fbfc, #ffffff);
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 80px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ai-platform-section .video-box .small-badge {
    font-size: 0.75rem;
    background-color: #00a7a7;
    color: #fff;
}

.ai-platform-section .play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 167, 167, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-platform-section .video-content h5 {
    color: #1b2b34;
    font-size: 2.8rem;
    margin: 2rem 0;
}

.ai-platform-section .video-content .stat-desc {
    font-size: 0.9rem;
    color: #555;
}

.ai-platform-section.platform-features-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
}

.ai-platform-section.platform-features-section .desc-text {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
}

.ai-platform-section .feature-btn {
    background: #f0f4f5;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 2rem;
}

.ai-platform-section .feature-btn.active {
    background: #00a7a7;
    color: #fff;
}

.ai-platform-section .highlight-box {
    background: #fff4ed;
    border: 1px solid #ffd6b5;
    border-radius: 8px;
    padding: 10px;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
    color: #e65c2b;
}

.ai-platform-section .video-box {
    background: linear-gradient(135deg, #f5fbfc, #94cfe1);
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 80px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 100%;
}

.ai-platform-section .video-box .small-badge {
    font-size: 1.4rem;
    background-color: #00a7a7;
    color: #fff;
}

.ai-platform-section .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 167, 167, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:  !important;
}

.ai-platform-section .video-content .stat-desc {
    font-size: 1.8rem;
    color: #555;
}

.ai-platform-section.journey-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
}

.ai-platform-section.journey-section .desc-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.ai-platform-section .journey-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px 20px;
    position: relative;
    text-align: center;
    height: 100%;
}

.ai-platform-section .journey-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 167, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ai-platform-section .journey-card .stat-desc {
    font-size: 1.4rem;
    color: #555;
}

.ai-platform-section .journey-card .step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00a7a7;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-platform-section .cta-box {
    background: #f2f9f9;
    border-radius: 8px;
}

.ai-platform-section .cta-box .cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 167, 167, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ai-platform-section .btn-primary {
    background-color: #00a7a7;
    border-color: #00a7a7;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    flex: 0 !important;
}

.ai-platform-section .btn-primary:hover {
    background-color: #008f8f;
    border-color: #008f8f;
}

.ai-platform-section .btn-outline-secondary {
    border: 1px solid #ccc;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    width: unset;
}

.ai-platform-section .btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

/*------------------------------Courses------------------------------*/

.course-section.structured-courses-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
    margin: auto;
}

.course-section.structured-courses-section .desc-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.8rem;
}

.course-section .course-card {
    background: #e2edef;
    border-radius: 8px;
    padding: 25px 15px;
    transition: 0.3s;
    height: 100%;
}

.course-section .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.course-section .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 167, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.course-section .stat-desc {
    font-size: 1.4rem;
    color: #555;
}

.course-section.learning-path-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
    margin: auto;
}

.course-section.learning-path-section .desc-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.8rem;
}

.course-section .plan-card {
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #e3eded;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-section .plan-card .top-badges {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-section .plan-card .level {
    background: #ffffff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 1rem;
}

.course-section .plan-card .offer {
    background: #e6f9e6;
    color: #28a745;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 1rem;
}

.course-section .plan-card .offer.most-popular {
    background: #d6f3f3;
    color: #00a7a7;
}

.course-section .plan-card .offer.premium-badge {
    background: #f3e6ff;
    color: #8e44ad;
}

.course-section .plan-card .desc {
    font-size: 1.4rem;
    color: #555;
}

.course-section .plan-card .stats {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    margin: 10px 0;
    color: #555;
}

.course-section .plan-card .price {
    font-weight: bold;
    font-size: 2.4rem;
}

.course-section .plan-card .includes {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
}

.course-section .plan-card .includes li {
    padding-left: 18px;
    position: relative;
    text-align: left;
    font-size: 1.4rem;
}

.course-section .plan-card .includes li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: #00a7a7;
}

.course-section .plan-card .instructor {
    background: #f6f6f6;
    border-radius: 6px;
    padding: 8px;
    font-size: 1.4rem;
    margin-top: auto;
    font-weight: 700;
}

.btn-purple {
    background-color: #8e44ad;
    color: #fff;
    font-weight: 600;
}

.btn-purple:hover {
    background-color: #732d91;
}

.course-section.why-choose-section .badge {
    background-color: #00a7a7;
    color: #fff;
    font-weight: 600;
    margin: auto;
}

.course-section.why-choose-section .desc-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.course-section.why-choose-section .feature-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.course-section.why-choose-section .feature-box svg {
    font-size: 2rem;
    background: #dae3e3;
  padding:1.5rem;
  border-radius:1rem;
}

.course-section.why-choose-section .feature-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.course-section.why-choose-section .feature-box .icon img {
    background: #e6f3f3;
    border-radius: 10px;
    padding: 8px;
}

.course-section.start-journey-section .cta-box {
    background: linear-gradient(135deg, #e8f6f6, #f3f9f9);
    border: 1px solid #d6e6e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.course-section.start-journey-section .icon img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(89%) saturate(362%) hue-rotate(140deg) brightness(90%) contrast(95%);
}

.course-section.start-journey-section h3 {
    color: #005f61;
    font-size: 2.5rem;
}

.course-section.start-journey-section p {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.course-section.start-journey-section .btn-primary {
    background-color: #007d7d;
    border-color: #007d7d;
}

.course-section.start-journey-section .btn-primary:hover {
    background-color: #006666;
    border-color: #006666;
}

.course-section.start-journey-section .btn-outline-dark {
    background-color: white;
    border: 1px solid #ccc;
}

/*------------------------------Ebook------------------------------*/

.ebook {
  background-color: #f8feff;
  color: #1a2e35;
}

.ebook .text-gradient {
  background: linear-gradient(90deg, #007C91, #0197AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebook .badge.bg-teal {
  background-color: #dcf9ff;
  color: #00b4cc;
  font-weight: 600;
  border-radius: 999px;
  margin: auto;
}

.ebook .icon-box {
  background-color: #ceeff5;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 2.8rem;
  margin-bottom: 1.5rem !important;
}

.ebook .btn-success {
  background-color: #00c48c;
  border: none;
}

.ebook .btn-success:hover {
  background-color: #00a978;
}

.ebook .btn-outline-secondary {
  border-color: #e0e0e0;
  color: #333;
}

.ebook .btn-outline-secondary:hover {
  background-color: #f0f0f0;
}

.ebook .bg-purple {
  background-color: #a855f7 !important;
  color: #fff;
}

.ebook .text-purple {
  color: #a855f7;
}

.ebook .btn-purple {
  background-color: #a855f7;
  color: white;
  border: none;
}

.ebook .btn-purple:hover {
  background-color: #9333ea;
  color: white;
}

.ebook .bg-success-soft {
  background-color: #e6fff4;
  color: #00b383;
  border-radius: 999px;
  margin: auto;
}

/* Gradient heading */
.ebook .text-gradient {
  background: linear-gradient(90deg, #00c48c, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Info Box Backgrounds */
.ebook .bg-light-green {
  background: linear-gradient(to bottom right, #e7fff2, #f6fff9);
}

.ebook .bg-light-blue {
  background: linear-gradient(to bottom right, #e9f3ff, #f6faff);
}

.info-box {
      display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ebook .bg-light-purple {
  background: linear-gradient(to bottom right, #f5e8ff, #fcf7ff);
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 1rem; */
}

/* Purple text */
.ebook .text-purple {
  color: #a855f7;
}

.ebook .ebook-cta {
  background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.05), rgba(0, 0, 0, 0.03));
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.ebook .ebook-cta .text-highlight {
  background: linear-gradient(to right, #00b894, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebook .ebook-cta .text-emphasis {
  color: #00897b;
  font-weight: 500;
}

.ebook .btn-download {
  background-color: #004d60;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
}

.ebook .btn-download:hover {
  background-color: #003843;
}

/*------------------------------Pricing------------------------------*/

.pricing-page .pricing-intro {
  background: #ffffff;
}

.pricing-page .stat-card {
  background: #e7f5f5 !important;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.pricing-page .stat-card:hover {
  background: #ebf5f5;
  transform: translateY(-3px);
}

.pricing-page .text-purple {
  color: #a855f7;
}

.pricing-page .bg-light-primary {
  background-color: #daf2f2;
}

.pricing-page .plan-card {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.pricing-page .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.pricing-page .icon {
  font-size: 2rem;
}
.pricing-page .old-price {
  text-decoration: line-through;
  font-size: 0.9rem;
  color: #999;
  margin-left: 0.5rem;
}
.pricing-page .discount-badge {
  display: inline-block;
  background: #d1fae5;
  color: #047857;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.pricing-page .badge-popular {
  background: #0f766e;
  color: white;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
}
.pricing-page .bg-basic {
  background: #e7f0fb;
}
.pricing-page .bg-pro {
  background: #d4eae7;
}
.pricing-page .bg-promax {
  background: #f3e8ff;
}

.feature-comparison .table {
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.feature-comparison th,
.feature-comparison td {
  padding: 1rem;
  vertical-align: middle;
  text-align: left;
}

.feature-comparison thead {
  background-color: #f9fafb;
}

.feature-comparison .plan-header {
  font-weight: 600;
  font-size: 1.4rem;
}

.bg-basic {
  background-color: #e7f0fb;
}

.bg-pro {
  background-color: #d4eae7;
}

.bg-promax {
  background-color: #f3e8ff;
}

.badge-popular {
  background: #0f766e;
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  top: -10px;
}

.score-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
}

.score-badge.basic {
  background: #edf2f7;
  color: #2b6cb0;
}

.score-badge.pro {
  background: #d1fae5;
  color: #047857;
}

.score-badge.promax {
  background: #ede9fe;
  color: #7c3aed;
}

.why-platform .benefit-card {
  background: #f8f9fa;
  border-radius: 12px;
}

.plan-card {
  border-radius: 16px;
  font-size: 1.6rem;
}

.bg-basic {
  background-color: #e7f0fb;
}

.bg-pro {
  background-color: #d4eae7;
}

.bg-promax {
  background-color: #f3e8ff;
}

.badge {
  font-weight: 500;
}

.tutoring-section {
  color: #004d59;
}

.text-orange {
  color: #f16529;
}

.text-teal {
  color: #006d72;
}

.bg-light-peach {
  background-color: #ffe4d8;
}

.tutoring-card {
  border: 1px solid #c7dbe2;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.tutoring-card:hover {
  box-shadow: 0 8px 20px rgb(0 109 114 / 0.25);
}

.best-value {
  top: -10px;
  font-weight: 600;
  font-size: 1.4rem !important;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 0.25rem 1rem;
  z-index: 10;
}

.bg-gradient-orange {
  background: linear-gradient(90deg, #f16529, #f39251);
}

.btn-gradient {
  background: linear-gradient(90deg, #f16529, #f39251);
  color: white;
  font-weight: 600;
  border: none;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #f39251, #f16529);
  color: white;
}

.btn-outline-primary {
  border-color: #006d72;
  color: #006d72;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #006d72;
  color: white;
  border-color: #006d72;
}

.cta-section {
  background-color: #d9efef;
  /* border: 1px solid #b3d1d1; */
  /* border-radius: 8px; */
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0 !important;
}

.trophy-icon {
  stroke: #006d72;
}

.text-teal {
  color: #006d72;
}

.btn-primary {
  background-color: #006d72;
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004d59;
  color: white;
}

.btn-outline-primary {
  border: 1.5px solid #006d72;
  color: #006d72;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  background: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #006d72;
  color: white;
  border-color: #006d72;
}

.button-group {
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
}


/*------------------------------About------------------------------*/

.about-page-wrapper {
  background-color: #f0f7f8;
  padding: 3rem 1rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.about-page-wrapper .section-label {
  background-color: #006d72;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  font-weight: 600;
}

.about-page-wrapper .highlight-sat {
  color: #008080;
}

.about-page-wrapper .text-teal {
  color: #006d72;
}

.about-page-wrapper .text-success {
  color: #57b846;
}

.about-page-wrapper .about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-page-wrapper .about-text {
  max-width: 600px;
  flex: 1 1 50%;
}

.about-page-wrapper .lead {
  font-size: 1.6rem;
  line-height: 1.6;
}

.about-page-wrapper .stats {
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
}

.about-page-wrapper .stat-item h2 {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.about-page-wrapper .stat-label {
  font-size: 1.4rem;
  color: #6c757d;
  margin-top: 0;
}

.about-page-wrapper .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-page-wrapper .button-group .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

.about-page-wrapper .btn-teal {
  background: linear-gradient(90deg, #006d72 0%, #004d59 100%);
  color: white;
  border: none;
  transition: background 0.3s ease;
}

.about-page-wrapper .btn-teal:hover {
  background: #004d59;
}

.about-page-wrapper .btn-outline-secondary {
  background: white;
  border: 1.5px solid #ced4da;
  color: #495057;
  transition: all 0.3s ease;
}

.about-page-wrapper .btn-outline-secondary:hover {
  background: #006d72;
  color: white;
  border-color: #006d72;
}

.about-page-wrapper .about-cards {
  flex: 1 1 40%;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-page-wrapper .about-card {
  background: white;
  border-radius: 12px;
  width: 160px;
  text-align: center;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 2rem 1rem !important;
}

.about-page-wrapper .icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6f2f2;
  border-radius: 12px;
  padding: 1r;
}

.about-page-wrapper .card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-page-wrapper .card-text {
  font-size: 1.4rem;
  color: #6c757d;
}

.about-page-wrapper {
  /* base styles already provided earlier */
}

/* Our Story Section */
.about-page-wrapper .our-story-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

/* Left column with text and bullet points */
.about-page-wrapper .our-story-left {
  flex: 1 1 48%;
}

.about-page-wrapper .section-label {
  background-color: #003b47;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.about-page-wrapper .our-story-left h2 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-page-wrapper .highlight-built {
  color: #006d72;
}

.about-page-wrapper .our-story-left p {
  font-size: 1.6rem;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.about-page-wrapper .our-story-left ul {
  list-style: none;
  padding-left: 0;
}

.about-page-wrapper .our-story-left ul li {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #003b47;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
}

.about-page-wrapper .our-story-left ul li svg {
  background-color: #c9e4e4;
  border-radius: 9999px;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.15rem;
  fill: #004d59;
  flex-shrink: 0;
}

/* Right column with quote card */
.about-page-wrapper .our-story-right {
  flex: 1 1 48%;
  background-color: #d5e6e6;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page-wrapper .quote-icon {
  font-size: 3rem;
  color: #7bb8b8;
  position: absolute;
  top: 2rem;
  left: 1.5rem;
}

.about-page-wrapper .quote-text {
  font-weight: 600;
  color: #003b47;
  margin-top: 2.5rem;
  font-size: 2rem;
  line-height: 1.5;
}

.about-page-wrapper .quote-author {
  margin-top: 1.5rem;
  font-weight: 700;
  color: #004d59;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
}

.about-page-wrapper .quote-author small {
  font-weight: 400;
  color: #6b6b6b;
}

/* Our Story badges below text */
.about-page-wrapper .our-story-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-page-wrapper .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  gap: 0.4rem;
  cursor: default;
}

.about-page-wrapper .badge.ai-powered {
  background-color: #c9e4e4;
  color: #004d59;
}

.about-page-wrapper .badge.expert-led {
  background-color: #e6e9f1;
  color: #3b4a76;
}

.about-page-wrapper .badge.result-driven {
  background-color: #d4f0d7;
  color: #57b846;
}

/* Card at bottom right */
.about-page-wrapper .next-gen-card {
  margin-top: 2rem;
  max-width: 300px;
  background-color: #c9e4e4;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 700;
  font-size: 1.25rem;
  color: #004d59;
  text-align: center;
  transform: rotate(-6deg);
  user-select: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-page-wrapper .next-gen-card svg {
  width: 40px;
  height: 40px;
  fill: #004d59;
}

.about-page-wrapper {
  --color-primary: #004d59;
  --color-secondary: #3b4a76;
  --color-accent: #57b846;
  --color-accent2: #f3c623;
  --bg-light: #e7f1f1;
  --bg-light-alt: #f6f9fa;
  --text-dark: #022c3c;
  --text-medium: #586973;
  padding: 3rem 1rem;
  background-color: #f0f8f9;
  color: var(--text-dark);
}

.about-page-wrapper .team-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-page-wrapper .section-label {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  border-radius: 15px;
  padding: 0.25rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  user-select: none;
}

.about-page-wrapper .team-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.about-page-wrapper .team-intro {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.about-page-wrapper .team-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-page-wrapper .team-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(4 32 48 / 0.1);
  padding: 2rem 1.5rem 2.5rem;
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.about-page-wrapper .team-card:hover {
  box-shadow: 0 12px 28px rgb(4 32 48 / 0.25);
}

.about-page-wrapper .team-icon {
  background-color: #d0e6e6;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 4px 15px rgb(4 32 48 / 0.1);
  transform-style: preserve-3d;
  animation: float-tilt 5s ease-in-out infinite;
}

.about-page-wrapper .team-icon svg {
  display: block;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.05));
}

@keyframes float-tilt {
  0%, 100% {
    transform: rotateZ(0deg) translateZ(0);
  }
  50% {
    transform: rotateZ(5deg) translateZ(10px);
  }
}

.about-page-wrapper .team-name {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0.25rem 0 0.25rem;
}

.about-page-wrapper .team-role {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-page-wrapper .stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-page-wrapper .stats div {
  text-align: center;
}

.about-page-wrapper .stats small {
  display: block;
  font-weight: 400;
  color: var(--text-medium);
  font-size: 1.4rem;
}

.about-page-wrapper .badge {
  background-color: var(--color-primary);
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.8rem 1.1rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  user-select: none;
  display: inline-block;
  align-items: center;
}

.about-page-wrapper .math-expert {
  background-color: var(--color-primary);
}

.about-page-wrapper .innovation-badge {
  background-color: var(--color-secondary);
}

.about-page-wrapper .english-master {
  background-color: var(--color-primary);
}

.about-page-wrapper .team-bio {
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  min-height: 90px;
}

.about-page-wrapper .expert-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-accent2);
  user-select: none;
}

.about-page-wrapper .expert-label svg {
  display: block;
}

@media (max-width: 900px) {
  .about-page-wrapper .team-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-page-wrapper .team-card {
    max-width: 100%;
  }
}

.about-page-wrapper {
  --color-primary: #004d59;
  --color-secondary: #3b4a76;
  --bg-light: #e7f1f1;
  --bg-light-alt: #f6f9fa;
  --text-dark: #022c3c;
  --text-medium: #586973;
  background-color: #f0f8f9;
  padding: 3rem 1rem;
  color: var(--text-dark);
}

.about-page-wrapper .difference-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-page-wrapper .difference-label {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  border-radius: 15px;
  padding: 0.25rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  user-select: none;
}

.about-page-wrapper .difference-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.about-page-wrapper .difference-intro {
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.about-page-wrapper .difference-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.about-page-wrapper .difference-card {
  background-color: var(--bg-light-alt);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(4 32 48 / 0.05);
  padding: 2rem 1.5rem;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  position: relative;
  cursor: default;
}

.about-page-wrapper .difference-card.highlight {
  background-color: var(--bg-light);
  box-shadow: 0 8px 25px rgb(4 32 48 / 0.15);
}

.about-page-wrapper .difference-card:hover {
  box-shadow: 0 12px 30px rgb(4 32 48 / 0.2);
}

.about-page-wrapper .diff-icon {
  margin: 0 auto 2rem;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgb(4 32 48 / 0.1);
}

.about-page-wrapper .difference-card.highlight .diff-icon {
  box-shadow: 0 6px 18px rgb(4 32 48 / 0.15);
}

.about-page-wrapper .difference-card h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.about-page-wrapper .diff-text {
  font-weight: 400;
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
  line-height: 1.3;
  min-height: 56px; /* For consistent card height */
}

.about-page-wrapper .arrow {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
  user-select: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.about-page-wrapper .difference-card.highlight .arrow {
  opacity: 1;
}

.about-page-wrapper .difference-card:hover .arrow {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .about-page-wrapper .difference-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-page-wrapper .difference-card {
    max-width: 100%;
    height: fit-content;
  }
}

.about-page-wrapper {
  --color-primary: #004d59;
  --color-secondary: #3b4a76;
  --bg-light: #e7f1f1;
  --bg-light-alt: #f6f9fa;
  --text-dark: #022c3c;
  --text-medium: #586973;
  background-color: #f0f8f9;
  padding: 3rem 1rem;
  color: var(--text-dark);
}

.values-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.values-label {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  border-radius: 15px;
  padding: 0.25rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  user-select: none;
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.values-intro {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.values-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.value-card {
  background-color: var(--bg-light-alt);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(4 32 48 / 0.05);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 12px 25px rgb(4 32 48 / 0.12);
}

.value-icon {
  margin: 0 auto 1rem;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgb(4 32 48 / 0.1);
}

.value-card h3 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-weight: 400;
  color: var(--text-dark);
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .values-cards {
    flex-direction: column;
    align-items: center;
  }
  .value-card {
    max-width: 100%;
    margin-bottom: 1.5rem;
    width: 100%;
  }
}

.stats-section-wrapper {
  background-color: #eaf4f6;
  padding: 4rem 1rem;
  color: #0c2a3a;
}

.stats-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-label.stats-label {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #004d59, #00625f);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 15px;
  padding: 0.3rem 1.2rem;
  margin-bottom: 0.75rem;
  user-select: none;
  justify-content: center;
  gap: 4px;
}

.stats-section h2 {
  font-weight: 800;
  font-size: 3rem;
  color: #022c3c;
  margin-bottom: 0.75rem;
}

.highlight-green-blue {
  background: linear-gradient(90deg, #3cba70 0%, #3190dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.stats-intro {
  font-weight: 400;
  font-size: 1.6rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  color: #586973;
  line-height: 1.4;
}

.stats-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 230px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(4 32 48 / 0.05);
  background-color: #d8f1f2;
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 14px 30px rgb(4 32 48 / 0.12);
}

.stat-card h3 {
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 0.2rem;
}

.stat-card h3 span {
  font-weight: 400;
  font-size: 2rem;
}

.stat-card strong {
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.6rem;
  color: #022c3c;
}

.stat-card p {
  font-weight: 400;
  font-size: 1.4rem;
  color: #586973;
  margin: 0;
}

/* Different background colors for each card */
.stat-boost {
  background-color: #cde9eb;
  color: #00625f;
}

.stat-transformed {
  background-color: #d7dade;
  color: #152b3d;
}

.stat-success {
  background-color: #d6f6d9;
  color: #3ca650;
}

.stat-support {
  background-color: #d7e3ff;
  color: #3f6fff;
}

.stat-icon {
  margin-top: 1rem;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 30px;
  height: 30px;
  stroke-opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-cards {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}

.join-section-wrapper {
  background: #bdd5d7;
  background: radial-gradient(circle at top left, #ffffff 0%, #bdd5d7 100%);
  padding: 4rem 1rem;
  border-radius: 10px;
  color: #022c3c;
  max-width: 900px;
  margin: 2rem auto;
  box-sizing: border-box;
  box-shadow: inset 100px 0 150px -100px #003d4d, inset -100px 0 150px -100px #003d4d;
  text-align: center;
  position: relative;
}

.join-icon {
  background: linear-gradient(135deg, #00625f, #003c48);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-icon svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}

.join-heading {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

.highlight-green {
  background: linear-gradient(90deg, #148a71 0%, #0f5c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join-description {
  color: #556b77;
  font-weight: 400;
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.join-description strong {
  color: #0f5c5d;
  font-weight: 700;
}

.join-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* min-width: 180px; */
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(90deg, #00625f 0%, #003c48 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #004d59 0%, #002f36 100%);
  box-shadow: 0 6px 12px rgba(0, 60, 68, 0.8);
}

.btn-secondary {
  background: white;
  color: #022c3c;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.btn-secondary:hover {
  background: #f5f8fa;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.btn-icon {
  font-size: 1.2rem;
}

.join-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #148a71;
  font-weight: 500;
  font-size: 1.4rem;
  user-select: none;
}

.join-benefits li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.join-benefits li::before {
  content: "*";
  color: #148a71;
  font-weight: 700;
}

/*------------------------------Blog------------------------------*/

.blog-header {
  background-color: #006b75;
  color: white;
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.blog-tag {
  display: inline-block;
  background-color: #0f5c5d;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1.25rem;
  user-select: none;
  cursor: default;
}

.blog-tag-icon {
  margin-right: 0.4rem;
  font-size: 1rem;
  vertical-align: middle;
}

.blog-title {
  font-weight: 900;
  font-size: 5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.highlight-yellow {
  color: #f5a623;
}

.blog-description {
  font-weight: 400;
  font-size: 1.6rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.4;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.filter-btn.active {
  background-color: #ff4c1e; /* #ff4c1e matches the bright orange from screenshot */
  border-color: #ff4c1e;
  color: white;
}

.blog-post-card {
  display: flex;
  background: #006b75;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  max-width: 1000px;
  margin: 2rem auto;
}

.blog-post-image {
  flex: 1;
  background: #e0e0e0;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.blog-post-tags {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.tag {
  border-radius: 20px;
  padding: 0.3rem 1rem;
  user-select: none;
}

.sat-changes {
  background-color: #ff5722;
  color: white;
}

.featured {
  color: #f9b233;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

.blog-post-title {
  font-weight: 900;
  font-size: 2.8rem;
  margin: 0;
  margin-top: 1.5rem;
}

.blog-post-summary {
  font-weight: 400;
  font-size: 1.6rem;
  color: #d0e6e9;
  line-height: 1.4;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: #b3d2d8;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.read-more-btn {
  margin-top: auto;
  align-self: flex-start;
  background-color: transparent;
  border: 1.5px solid #8ebfcf;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  color: #8ebfcf;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  font-size: 1.8rem;
}

.read-more-btn:hover {
  background-color: #8ebfcf;
  color: #004346;
  border-color: #8ebfcf;
}

.blog-summary-cards {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.summary-card {
  background-color: #006b75;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.summary-card:hover {
  background-color: #008388;
}

.summary-image {
  background-color: #e0e0e0;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-content {
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
  position: relative;
}

.tag {
  background-color: #217d89;
  padding: 0.2rem 0.8rem;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 20px;
  align-self: flex-start;
  user-select: none;
  text-transform: capitalize;
}

.study-tips {
  background-color: #5bc0de;
}

.math-prep {
  background-color: #f39237;
}

.reading-writing {
  background-color: #4caf50;
}

.read-time {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 1.4rem;
  color: #a7d2d8;
}

h3 {
  font-weight: 900;
  margin: 0;
  color: #ff5722; /* bright orange for main titles */
  font-size: 2rem;
  margin-bottom: 1rem;
}

.summary-content p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #c7d9dd;
  margin-bottom: 1rem;
}

time {
  font-size: 1.2rem;
  color: #8ebfcf;
}

.read-more {
  margin-top: auto;
  font-weight: 700;
  color: #cce7eb;
  text-decoration: none;
  font-size: 1.4rem;
  align-self: flex-end;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #ff5722;
}

.newsletter-section {
  background: linear-gradient(135deg, #05555e, #074d57);
  border-radius: 8px;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;
  color: #e0e7ea;
}

.newsletter-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.newsletter-content h2 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #b3c6ca;
}

.subscribe-btn {
  background-color: #ff5722;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.6rem;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #e64a19;
}

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

.login-section {
  background: linear-gradient(135deg, #05555e, #074d57);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e0e7ea;
  padding: 5rem 2rem;
}

.login-box {
  background: rgba(10, 40, 45, 0.7);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.login-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.login-box h2 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.login-box p {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #b3c6ca;
}

.google-btn {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255 255 255 / 0.15);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.divider {
  font-size: 0.8rem;
  color: #7a8a91;
  margin-bottom: 1.5rem;
  border-top: 1px solid #3a555c;
  padding-top: 1rem;
  letter-spacing: 1.1px;
  font-weight: 600;
}

.login-form {
  text-align: left;
}

.login-form label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  display: block;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #3a555c;
  border-radius: 6px;
  background: rgba(255 255 255 / 0.1);
  color: white;
  font-size: 1.6rem;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0b8bc;
  cursor: pointer;
  font-size: 1.2rem;
}

.forgot-password {
  color: #ff5722;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.forgot-password:hover {
  text-decoration: underline;
}

.sign-in-btn {
  background-color: #ff5722;
  border: none;
  width: 100%;
  padding: 0.75rem;
  font-weight: 900;
  color: white;
  font-size: 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
  background-color: #e64a19;
}

.signup-text {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #b3c6ca;
}

.signup-text a.sign-up-link {
  color: #ff5722;
  font-weight: 700;
  text-decoration: none;
}

.signup-text a.sign-up-link:hover {
  text-decoration: underline;
}

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

.register-section {
  background: linear-gradient(135deg, #05555e, #074d57);
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  color: #e0e7ea;
  padding: 6rem 2rem !important;
}

.register-box {
  background: rgba(10, 40, 45, 0.7);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.register-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.register-box h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.register-box p {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #b3c6ca;
}

.google-btn {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255 255 255 / 0.15);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
}

.divider {
  font-size: 1.4rem;
  color: #7a8a91;
  margin-bottom: 1.5rem;
  border-top: 1px solid #3a555c;
  padding-top: 1rem;
  letter-spacing: 1.1px;
  font-weight: 600;
}

.register-form {
  text-align: left;
}

.name-fields {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group {
  flex: 1;
}

.register-form label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  display: block;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #3a555c;
  border-radius: 6px;
  background: rgba(255 255 255 / 0.1);
  color: white;
  font-size: 1.6rem;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0b8bc;
  cursor: pointer;
  font-size: 1.2rem;
}

.terms-checkbox {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #e0e7ea;
  font-size: 0.9rem;
}

.terms-checkbox a {
  color: #ff5722;
  font-weight: 700;
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

.create-account-btn {
  background-color: #a35233;
  border: none;
  width: 100%;
  padding: 0.75rem;
  font-weight: 900;
  color: white;
  font-size: 1.4rem;
  border-radius: 6px;
  cursor: not-allowed;
  opacity: 0.6;
  transition: background-color 0.3s ease;
}

.create-account-btn:enabled {
  cursor: pointer;
  opacity: 1;
  background-color: #ff5722;
}

.create-account-btn:enabled:hover {
  background-color: #e64a19;
}

.signin-text {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #b3c6ca;
  text-align: center;
}

.signin-text a.sign-in-link {
  color: #ff5722;
  font-weight: 700;
  text-decoration: none;
}

.signin-text a.sign-in-link:hover {
  text-decoration: underline;
}

.sat-compare-cta {
  width: 100%;
}

.gap-2 {
  gap: 2rem
}

.hamburger_custom {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #015160;
}
.hamburger_custom .bars {
    display: block;
}
.hamburger_custom .times {
    display: none;
}
.hamburger_custom.active .bars {
    display: none;
}
.hamburger_custom.active .times {
    display: block;
}
.nav .cta-buttons {
    display: none;
}

.card-icon-only {
    font-size: 3rem;
}

/*------------------------------Popup------------------------------*/

/* Overlay */
.main-popup .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Popup Box */
.main-popup .popup-box {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Close Button */
.main-popup .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Icon */
.main-popup .popup-content .icon {
  font-size: 32px;
  margin-bottom: 1rem;
}

/* Heading */
.main-popup .popup-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Paragraph */
.main-popup .popup-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Highlighted Text */
.main-popup .highlight {
  color: red;
  font-weight: bold;
}

/* Button */
.main-popup .cta-btn {
  background-color: #ff4c1f;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* Dismiss Link */
.main-popup .dismiss-link {
  margin-top: 1rem;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

@media (max-width: 500px) {
  .main-popup .popup-box {
    padding: 1.5rem 1rem;
  }

  .main-popup .popup-content h2 {
    font-size: 18px;
  }

  .main-popup .popup-content p {
    font-size: 14px;
  }

  .main-popup .cta-btn {
    font-size: 14px;
  }
}

.side-popup {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sticky Positioning */
.side-popup .popup-box {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: linear-gradient(to bottom right, #007B7F, #003344);
  color: white;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  padding: 20px;
  z-index: 9999;
}

/* Header */
.side-popup .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.side-popup .popup-header .icon {
  font-size: 20px;
  margin-right: 8px;
}

.side-popup .popup-header .close-btn {
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

/* Body */
.side-popup .popup-body .sub-header {
  font-weight: bold;
  font-size: 15px;
  margin: 10px 0;
}

.side-popup .popup-body p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Email input */
.side-popup .email-input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* CTA Button */
.side-popup .cta-btn {
  width: 100%;
  background-color: #ff4c1f;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}

/* Footer Note */
.side-popup .footer-note {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 400px) {
  .side-popup .popup-box {
    width: 90%;
    right: 5%;
  }
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #007C89, #003344);
  color: white;
  z-index: 999;
  padding: 14px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.fixed-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fixed-footer .footer-text {
  font-size: 14px;
  line-height: 1.4;
}

.fixed-footer .footer-btn {
  background-color: #ff5c2b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 600px) {
  .fixed-footer .footer-content {
    flex-direction: row;
    gap: 10px;
    text-align: center;
  }

  .fixed-footer .footer-btn {
    width: 100%;
  }
}

/*------------------------------Pricing------------------------------*/

.pricing-table {
  background: #f8fafa;
  padding: 20px;
  border-radius: 20px;
  max-width: fit-content;
  overflow-x: auto;
  margin: auto;
}

.pricing-table .pricing-header,
.pricing-table .pricing-body,
.pricing-table .pricing-footer {
  display: flex;
  width: 100%;
}

.pricing-table .column,
.pricing-table .row,
.pricing-table .feature,
.pricing-table .cell {
  border: 1px solid #eee;
}

.pricing-table .column,
.pricing-table .feature {
  padding: 20px;
  flex: 1;
  text-align: center;
  background: white;
  min-width: 150px;
  max-width: 150px;
}

.pricing-table .features-title {
  /* flex: 1.5; */
  text-align: left;
  background: linear-gradient(to bottom right, #fff5f5, #f0f5ff);
}

.pricing-table .plan {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-table .plan.active {
  border: 2px solid #ff4c1f;
  box-shadow: 0 5px 20px rgba(255, 76, 31, 0.2);
  border-radius: 10px;
}

.pricing-table .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: gold;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.pricing-table .price {
  font-weight: bold;
  color: #ff4c1f;
  font-size: 20px;
}

.pricing-table .row {
  display: flex;
  text-align: center;
  flex-wrap: nowrap;
  width: fit-content;
  padding: 0 1.5rem;
}

.pricing-table .feature {
  flex: 1.5;
  padding: 14px;
  text-align: left;
  background: white;
  font-weight: 500;
}

.pricing-table .cell {
  flex: 1;
  padding: 14px;
  background: white;
  min-width: 150px;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-table .cell.check::after {
  content: "✔";
  color: green;
  font-size: 18px;
}

.pricing-table .cell.cross::after {
  content: "✖";
  color: red;
  font-size: 18px;
}

.pricing-table .cell.active::after {
  color: #ff4c1f;
}

.pricing-table .pricing-footer {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.pricing-table .footer-title {
  flex: 1.5;
  text-align: left;
  padding: 20px;
  background: linear-gradient(to bottom right, #fff5f5, #f0f5ff);
  min-width: 150px;
  max-width: 150px;
}

.pricing-table .score {
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
  max-width: 150px;
  height: -webkit-fill-available;
  border: 1px solid gainsboro;
}

.pricing-table .score h4 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.pricing-table .score p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

.pricing-table .progress {
  height: 5px;
  background: #007c89;
  border-radius: 6px;
  width: 50%;
  margin: auto;
}

.pricing-table .score.active-score .progress {
  background: linear-gradient(to right, #ff4c1f, #007c89);
  width: 90%;
}

.pricing-table .pricing-body {
    flex-direction: column;
}
.pricing-table .pricing-header,.pricing-table .pricing-footer {
    /* width: calc(100% + 3rem); */
    /* left: -1.5rem; */
    position: relative;
}


/*------------------------------Responsive------------------------------*/

@media (max-width: 767.98px) {
    
    .side-popup {
        display: none;
    }
    header {
        padding: 20px 20px;
    }
    .nav {
        position: absolute;
        flex-direction: column;
        background: white;
        width: 100%;
        top: 7rem;
        left: 0;
        padding: 0rem;
        height: 0;
        overflow: hidden;
        transition: all .3s ease;
    }
    .nav.active {
        height: calc(100vh - 7rem);
        padding: 2rem;
    }
    header .cta-buttons {
        display: none;
    }
    .hamburger_custom {
        display: block;
    }
    .hero-buttons {
        flex-direction: column-reverse;
    }
    .hero {
        height: auto;
    }
    .stat-box {
        font-size: 2rem;
    }
    .sat-section-1__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .sat-cards-con-h {
        flex-direction: column;
    }
    .trusted-section .trusted-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }
    .trusted-section .trusted-stats span {
        font-size: 1.2rem;
    }
    .real-results-section .testimonial-cards {
        /* flex-direction: column; */
    }
    .real-results-section .card {
        min-width: fit-content;
    }
    .real-results-section .video-row {
        flex-direction: column;
    }
    .sat-compare {
        padding: 6rem 2rem;
    }
    .sat-compare .comparison-table th, .sat-compare .comparison-table td {
        padding: 10px 8px;
        font-size: 1.2rem;
    }
    .btn {
        height: 40px;
    }
    .ai-platform-section .video-box .small-badge {
        top: 0;
    }
    .feature-comparison .table {
        font-size: 1.2rem;
    }
    .button-group {
        flex-direction: column;
    }
    .about-page-wrapper {
        padding: 2rem 0 !important;
    }
    .about-page-wrapper .about-cards {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .about-page-wrapper .team-section {
        padding: 0 2rem;
    }
    .about-page-wrapper .difference-section {
        padding: 0 2rem;
    }
    .about-page-wrapper .difference-card {
        flex: 1 1;
    }
    .value-card {
        flex: 1 1;
    }
    .stat-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
        flex: 1 1;
        width: 80%;
    }
    .join-section-wrapper {
        width: 90%;
    }
    .blog-post-card {
        flex-direction: column;
    }
    .blog-summary-cards {
        flex-direction: column;
    }
    .nav .cta-buttons {
        display: flex;
    }
    .nav .cta-buttons button, .nav .cta-buttons a {
        flex: 1;
    }
    .nav .cta-buttons .login {
        color: white;
        background: #012c3c;
    }
}

































