@charset "UTF-8";
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f3fbfb;
  color: #071014;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reset and override existing header styles with higher specificity */
/* .site-header .navbar,
.site-header .navbar * {
  all: initial;
} */

/* Keep global body styles but do not overwrite here */
.add-gap {
  gap: 1rem !important; 
}

.add-gap-2 {
  gap: 3rem !important; 
}
.section-white {
  background: #fff !important;
  padding: 3rem 0 !important;
}
.containing { 
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* .containing {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
} */

@media (min-width: 576px) {
  .containing {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .containing {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .containing {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .containing {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .containing {
    max-width: 1320px;
  }
}


/* Override any existing site-header styles with higher specificity */
header.site-header {
  background: transparent !important;
  padding: 0.6rem 0 !important;
  position: relative !important;
  border: none !important;
  box-shadow: none !important;
  top: auto !important;
  z-index: auto !important;
}

/* Force navbar to use flexbox properly */
header.site-header .navbar.container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 0 !important;
  min-height: auto !important;
}

/* Desktop navigation - hidden on mobile */
header.site-header .nav-centered {
  display: none !important;
}
@media (min-width: 992px) {
  header.site-header .nav-centered {
    display: flex !important;
    gap: 2.2rem !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
  }
}
header.site-header .nav-centered a {
  color: #4e5956 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
  font-size: 1rem !important;
}
header.site-header .nav-centered a:hover {
  color: #1f5a2f !important;
}

/* Mobile hamburger button */
header.site-header .navbar-toggler {
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-radius: 0.375rem !important;
  padding: 0.5rem !important;
  background: #fff !important;
  outline: none !important;
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
header.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
header.site-header .navbar-toggler:hover {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.3) !important;
}

/* CSS-only hamburger lines */
header.site-header .hamburger-lines {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 20px !important;
  height: 16px !important;
}
header.site-header .hamburger-lines span {
  display: block !important;
  height: 2px !important;
  width: 100% !important;
  background-color: #333 !important;
  border-radius: 1px !important;
  transition: all 0.3s ease !important;
}
header.site-header .navbar-toggler:hover .hamburger-lines span {
  background-color: #000 !important;
}

/* Remove old styles */
header.site-header .navbar-toggler .navbar-toggler-icon,
header.site-header .navbar-toggler .hamburger-icon {
  display: none !important;
}

/* Mobile navigation menu */
header.site-header .mobile-nav-menu {
  padding: 1rem 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  margin-top: 0.5rem !important;
}
header.site-header .mobile-nav-menu .mobile-nav-link {
  display: block !important;
  padding: 0.75rem 0 !important;
  color: #4e5956 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  font-size: 1rem !important;
}
header.site-header .mobile-nav-menu .mobile-nav-link:last-child {
  border-bottom: none !important;
}
header.site-header .mobile-nav-menu .mobile-nav-link:hover {
  color: #1f5a2f !important;
}

/* Show mobile menu when collapsed class is toggled */
header.site-header #mobileNav {
  display: none !important;
}
header.site-header #mobileNav.show {
  display: block !important;
}

/* Force hide desktop nav on mobile */
@media (max-width: 991.98px) {
  header.site-header .nav-centered {
    display: none !important;
  }
  header.site-header .d-none.d-lg-inline,
  header.site-header .d-none.d-lg-block {
    display: none !important;
  }
}

/* Force show hamburger only on mobile */
@media (min-width: 992px) {
  header.site-header .navbar-toggler {
    display: none !important;
  }
  header.site-header #mobileNav {
    display: none !important;
  }
}

/* CTA Button styles */
header.site-header .btn-cta-light {
  background: #CFF497 !important;
  color: #295B2A !important;
  border-radius: 999px !important;
  padding: 0.55rem 1.15rem !important;
  font-weight: 600 !important;
  border: none !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
}
@media (max-width: 575.98px) {
  header.site-header .btn-cta-light {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
  }
}

/* Header Profile Styles */
.header-profile-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 24px;
  transition: all 0.2s ease;
}

.header-profile-wrapper:hover {
  background-color: #f9fafb;
}

.header-profile-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e7eb;
  flex-shrink: 0;
}

.header-profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.header-profile-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-profile-wrapper:hover .header-profile-name {
  color: #111827;
}

/* Hide any conflicting original header styles - but not our new responsive headers */
.header-primary {
  display: none !important;
}

/* Only hide old header.header elements that don't have our new classes */
header.header:not(.mobile-header):not(.large-header) {
  display: none !important;
}

/* Ensure mobile header is visible on mobile */
.mobile-header {
  display: block !important;
}

/* Make sure mobile header is properly styled */
.mobile-header .header-primary {
  display: block !important;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0;
}

/* Custom responsive header visibility controls */
/* Large header - only visible on large screens (992px and up) */
.large-header {
  display: none !important;
}

@media (min-width: 992px) {
  .large-header {
    display: block !important;
  }
}

/* Mobile header - only visible on screens smaller than 992px */
.mobile-header {
  display: block !important;
}

@media (min-width: 992px) {
  .mobile-header {
    display: none !important;
  }
}

.showcase {
  padding: 2.5rem 0 6.5rem;
}
@media (max-width: 767.98px) {
  .showcase {
    padding: 2rem 0 4rem;
  }
}
.showcase-container {
  padding: 0px;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #1f5a2f;
  color: #1f5a2f;
  font-weight: 600;
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0);
}
@media (max-width: 575.98px) {
  .showcase-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.8rem;
  }
}
.showcase-badge .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f5a2f;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.08);
}
@media (max-width: 575.98px) {
  .showcase-badge .dot {
    width: 12px;
    height: 12px;
  }
}
.showcase-title {
  font-size: 70px;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .showcase-title {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .showcase-title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .showcase-title {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .showcase-title {
    font-size: 28px;
    line-height: 1.2;
  }
}
.showcase-copy {
  color: #696969;
  font-size: 1.02rem;
  line-height: 1.6;
  text-align: justify;
  width: 100%;
}
@media (max-width: 767.98px) {
  .showcase-copy {
    font-size: 0.95rem;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .showcase-copy {
    font-size: 0.9rem;
  }
}
.showcase-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .showcase-right {
    justify-content: center;
    text-align: center;
  }
}
.showcase-right .col-inner {
  text-align: right;
}
@media (max-width: 991.98px) {
  .showcase-right .col-inner {
    text-align: center;
  }
}

.btn-cta-dark {
  background: #1f5a2f;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: none;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .btn-cta-dark {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .btn-cta-dark {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .showcase-right {
    padding-top: 1rem;
  }
  .showcase-title {
    text-align: center;
  }
  .showcase-badge {
    margin: 0 auto;
    display: inline-flex;
  }
  .nav-centered {
    display: none;
  }
}
a.nav-link {
  color: #4e5956;
  font-weight: 500;
  padding: 0.2rem 0.45rem;
}

.navbar {
  border-bottom: 1px solid rgba(8, 24, 10, 0.03);
}

.btn-cta-light {
  background: #dff7b8;
  color: #163b12;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-weight: 600;
  border: none;
}

.showcase {
  padding: 2.5rem 0 6.5rem;
}
.showcase-container {
  padding: 0px;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #1f5a2f;
  color: #1f5a2f;
  font-weight: 600;
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0);
}
.showcase-badge .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f5a2f;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.08);
}
.showcase-title {
  font-size: 70px;
  font-weight: bold;
}
.showcase-copy {
  color: #696969;
  font-size: 1.02rem;
  line-height: 1.6;
  text-align: justify;
  width: 100%;
}
.showcase-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.showcase-right .col-inner {
  text-align: right;
}

.btn-cta-dark {
  background: #295B2A;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: none;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .showcase-right {
    padding-top: 1rem;
  }
  .showcase-title {
    text-align: center;
  }
  .showcase-badge {
    margin: 0 auto;
    display: inline-flex;
  }
  .nav-centered {
    display: none;
  }
}
section.colourful-section {
  padding: 0px;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  section.colourful-section {
    min-height: auto;
    padding: 3rem 0;
  }
}
section.colourful-section .row-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-section {
    flex-direction: column;
    gap: 2rem;
  }
}
section.colourful-section .row-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
section.colourful-section .row-item:nth-child(1) {
  flex: 0 0 25%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item:nth-child(1) {
    flex: none;
    width: 200px;
    height: 200px;
  }
}
section.colourful-section .row-item:nth-child(2) {
  flex: 0 0 12.5%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item:nth-child(2) {
    flex: none;
    width: 100px;
    height: 200px;
  }
}
section.colourful-section .row-item:nth-child(3) {
  flex: 0 0 25%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item:nth-child(3) {
    flex: none;
    width: 200px;
    height: 200px;
  }
}
section.colourful-section .row-item:nth-child(4) {
  flex: 0 0 12.5%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item:nth-child(4) {
    flex: none;
    width: 100px;
    height: 200px;
  }
}
section.colourful-section .row-item:nth-child(5) {
  flex: 0 0 25%;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item:nth-child(5) {
    flex: none;
    width: 200px;
    height: 200px;
  }
}
section.colourful-section .row-item .red-circle-with-image {
  width: 100%;
  height: 400px;
  border-radius: 50%;
  background-color: #FFA9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .red-circle-with-image {
    height: 200px;
  }
}
section.colourful-section .row-item .red-circle-with-image .circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
section.colourful-section .row-item .yellow-half-circle {
  width: 100%;
  height: 400px;
  background-color: #FFD862;
  border-radius: 300px 0 0 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .yellow-half-circle {
    height: 200px;
    border-radius: 150px 0 0 150px;
  }
}
section.colourful-section .row-item .yellow-half-circle .circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px 0 0 300px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .yellow-half-circle .circle-image {
    border-radius: 150px 0 0 150px;
  }
}
section.colourful-section .row-item .green-circle-with-image {
  width: 100%;
  height: 400px;
  border-radius: 50%;
  background-color: #CFF497;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .green-circle-with-image {
    height: 200px;
  }
}
section.colourful-section .row-item .green-circle-with-image .circle-image {
  width: 120%;
  height: 120%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -25%;
  left: -10%;
  transform: scale(1.1);
}
section.colourful-section .row-item .green-half-circle {
  width: 100%;
  height: 400px;
  background-color: #295B2A;
  border-radius: 300px 0 0 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .green-half-circle {
    height: 200px;
    border-radius: 150px 0 0 150px;
  }
}
section.colourful-section .row-item .blue-circle-with-image {
  width: 100%;
  height: 400px;
  border-radius: 50%;
  background-color: #97C3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  section.colourful-section .row-item .blue-circle-with-image {
    height: 200px;
  }
}
section.colourful-section .row-item .blue-circle-with-image .circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

section.brands {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767.98px) {
  section.brands {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
section.brands h1 {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  section.brands h1 {
    white-space: normal;
    text-align: center;
  }
}
.bottom-content-alt {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #696969;
  margin-bottom: 0.8rem;
    text-align: justify;
    font-style: normal;
    font-weight: 400;
}

section.brands .bottom-content {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #696969;
  margin-bottom: 0.8rem;
    text-align: justify;
    font-style: normal;
    font-weight: 400;
}
@media (max-width: 767.98px) {
  section.brands .bottom-content {
    font-size: 0.9rem;
    text-align: center;
  }
}
section.brands .button-enroll {
  background: #CFF497;
  color: #295B2A;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
}
@media (max-width: 767.98px) {
  section.brands .button-enroll {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  section.brands .row {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media (max-width: 767.98px) {
  section.brands .d-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}

section.group-classes {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #EAF9D2;
}
@media (max-width: 767.98px) {
  section.group-classes {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
section.group-classes .container {
  padding: 0px;
}
section.group-classes .circles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  section.group-classes .circles-grid {
    gap: 1rem;
    justify-content: center;
  }
}
section.group-classes .circles-grid .circle-with-image {
  width: 40%;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 767.98px) {
  section.group-classes .circles-grid .circle-with-image {
    width: 45%;
    max-width: 150px;
  }
}
section.group-classes .circle-with-image {
  flex-shrink: 0;
  aspect-ratio: 100/100;
  border-radius: 50%;
  background-color: #295B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
section.group-classes .circle-with-image .happy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: scaleX(1);
}
section.group-classes .circle-with-image:nth-child(2) {
  background-color: #62C0FF;
  border-radius: 150px 150px 150px 0px;
}
@media (max-width: 767.98px) {
  section.group-classes .circle-with-image:nth-child(2) {
    border-radius: 75px 75px 75px 0px;
  }
}
section.group-classes .circle-with-image:nth-child(2) .happy-image {
  border-radius: 150px 150px 150px 0px;
}
@media (max-width: 767.98px) {
  section.group-classes .circle-with-image:nth-child(2) .happy-image {
    border-radius: 75px 75px 75px 0px;
  }
}
section.group-classes .circle-with-image:nth-child(3) {
  border-radius: 150px 150px 150px 0;
  background-color: #CFF497;
}
@media (max-width: 767.98px) {
  section.group-classes .circle-with-image:nth-child(3) {
    border-radius: 75px 75px 75px 0;
  }
}
section.group-classes .circle-with-image:nth-child(3) .happy-image {
  border-radius: 150px 150px 150px 0;
}
@media (max-width: 767.98px) {
  section.group-classes .circle-with-image:nth-child(3) .happy-image {
    border-radius: 75px 75px 75px 0;
  }
}
section.group-classes .circle-with-image:nth-child(4) {
  background-color: #FFA9A9;
}
section.group-classes .group-classes-content {
  padding-top: 5rem;
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content {
    padding-top: 2rem;
  }
}
section.group-classes .group-classes-content .group-classes-title {
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991.98px) {
  section.group-classes .group-classes-content .group-classes-title {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content .group-classes-title {
    font-size: 32px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  section.group-classes .group-classes-content .group-classes-title {
    font-size: 28px;
  }
}
section.group-classes .group-classes-content .bottom-content {
  color: #696969;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content .bottom-content {
    text-align: left;
    font-size: 15px;
  }
}
section.group-classes .group-classes-content .enroll-buttons {
  border-radius: 40px;
  align-items: center;
  border: none;
  margin-top: 1.6rem;
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content .enroll-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
section.group-classes .group-classes-content .enroll-buttons .button-enroll-left {
  border-radius: 40px;
  background: #CFF497;
  padding: 15px 18px;
  color: #295B2A;
  border: none;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content .enroll-buttons .button-enroll-left {
    width: 100%;
    text-align: center;
  }
}
section.group-classes .group-classes-content .enroll-buttons .button-enroll-right {
  border-radius: 40px;
  background-color: #295B2A;
  padding: 15px 18px;
  color: white;
  border: none;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  section.group-classes .group-classes-content .enroll-buttons .button-enroll-right {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  section.group-classes .row {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

section.language-selection {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767.98px) {
  section.language-selection {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
section.language-selection .container {
  padding: 0px;
}
section.language-selection .language-selection-content {
  padding-top: 4rem;
}
@media (max-width: 767.98px) {
  section.language-selection .language-selection-content {
    padding-top: 2rem;
  }
}
section.language-selection .language-selection-content .language-selection-title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* align text to the left */
  text-align: left;
}
@media (max-width: 991.98px) {
  section.language-selection .language-selection-content .language-selection-title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  section.language-selection .language-selection-content .language-selection-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  section.language-selection .language-selection-content .language-selection-title {
    font-size: 24px;
  }
}
section.language-selection .language-selection-content .language-selection-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  section.language-selection .language-selection-content .language-selection-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item {
  width: 128px;
  height: 140px;
  padding: 10px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991.98px) {
  section.language-selection .language-selection-content .language-selection-grid .language-selection-item {
    width: 120px;
    height: 130px;
  }
}
@media (max-width: 575.98px) {
  section.language-selection .language-selection-content .language-selection-grid .language-selection-item {
    width: calc(50% - 0.5rem);
    height: 120px;
  }
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item .language-selection-item-image {
  object-fit: contain;
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item .language-selection-item-container {
  position: relative;
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item .language-selection-item-arrow {
  position: absolute;
  top: 10px;
  left: 25%;
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item .language-selection-item-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  section.language-selection .language-selection-content .language-selection-grid .language-selection-item .language-selection-item-text {
    font-size: 12px;
  }
}
section.language-selection .language-selection-content .language-selection-grid .language-selection-item-container {
  width: 100%;
  height: 100%;
  background-color: #CFF497;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  section.language-selection .row {
    flex-direction: column;
    gap: 2rem;
  }
}

section.featured-tutors {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media (max-width: 767.98px) {
  section.featured-tutors {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
section.featured-tutors .featured-tutors-content .featured-tutors-text {
  /* font-weight: 600;
  font-size: 40px; */
   color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* align text to the left */
  text-align: left;
}
@media (max-width: 991.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-text {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-text {
    font-size: 28px;
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-text {
    font-size: 24px;
  }
}
section.featured-tutors .featured-tutors-content .featured-tutors-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-list {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
}
section.featured-tutors .featured-tutors-content .featured-tutors-list-items {
  padding: 10px 20px;
  border-radius: 40px;
  background-color: #E9F3F7;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 575.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-list-items {
    padding: 8px 16px;
    font-size: 14px;
  }
}
section.featured-tutors .featured-tutors-content .featured-tutors-list-items:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section.featured-tutors .featured-tutors-content .featured-tutors-list-items:last-child {
  display: flex;
  width: 180px;
  background-color: #CFF497;
  align-items: center;
  gap: 3px;
}
@media (max-width: 575.98px) {
  section.featured-tutors .featured-tutors-content .featured-tutors-list-items:last-child {
    width: auto;
  }
}
section.featured-tutors .featured-tutors-content .featured-tutors-list-items:last-child .language-item-name-arrow {
  width: 30px;
}

@media (max-width: 767.98px) {
  section.featured-tutors .row {
    flex-direction: column;
    gap: 2rem;
  }
}

section.one-one-one-lessons {
  background-color: #DAE9EE;
  /* padding: 5rem 0; */
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons {
    padding: 3rem 0;
  }
}
section.one-one-one-lessons .row {
  align-items: center;
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .row {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
section.one-one-one-lessons .col-lg-6:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .col-lg-6:first-child {
    order: 2;
  }
}
section.one-one-one-lessons .col-lg-6:first-child img {
  max-width: 120%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
  position: relative;
  z-index: 2;
  margin-top: -6rem;
  margin-bottom: 0;
  transform: scaleX(-1);
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .col-lg-6:first-child img {
    max-width: 100%;
    max-height: 400px;
    margin-top: 0;
    transform: none;
  }
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .col-lg-6:last-child {
    order: 1;
  }
}
section.one-one-one-lessons .col-lg-6:last-child .group-classes-title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
@media (max-width: 991.98px) {
  section.one-one-one-lessons .col-lg-6:last-child .group-classes-title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .col-lg-6:last-child .group-classes-title {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  section.one-one-one-lessons .col-lg-6:last-child .group-classes-title {
    font-size: 24px;
  }
}
section.one-one-one-lessons .group-classes-content {
  padding-left: 2rem;
}
@media (max-width: 991.98px) {
  section.one-one-one-lessons .group-classes-content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .group-classes-content {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .group-classes-content .bottom-content {
    text-align: left;
    font-size: 15px;
  }
}
section.one-one-one-lessons .button-container .button-enroll-right {
  border-radius: 40px;
  background-color: #CFF497;
  padding: 15px 20px;
  color: #295B2A;
  border: none;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  section.one-one-one-lessons .button-container .button-enroll-right {
    width: 100%;
    text-align: center;
  }
}

.select-language-page {
  color: #1a1a1a;
  /* header back link */
  /* stepper reused */
  /* list container */
  /* card item */
  /* bottom bar */
}
.select-language-page * {
  box-sizing: border-box;
}
.select-language-page .select-language-page-modal .modal-content {
  background: #ffffff;
}
.select-language-page .select-language-page-modal .modal-title {
  font-size: 18px;
  letter-spacing: 0.2px;
}
.select-language-page .back-link {
  position: absolute;
  left: 1rem;
  top: 0.6rem;
  color: #6b7280;
  font-weight: 500;
}
.select-language-page .stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px auto 4px;
  max-width: 580px;
}
.select-language-page .stepper .bar {
  flex: 1 1 auto;
  height: 2px;
  background: #e6e6e6;
}
.select-language-page .stepper .step {
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-language-page .stepper .bubble {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  font-size: 12px;
  color: #6b7280;
  background: #fff;
  line-height: 1;
}
.select-language-page .stepper .step.active .bubble {
  border-color: #4caf50;
  color: #4caf50;
}
.select-language-page .stepper .step.checked .bubble {
  border-color: #4caf50;
  color: #fff;
  background: #4caf50;
}
.select-language-page .lt-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.select-language-page .lt-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 18px 18px 12px;
  transition: box-shadow 0.15s, border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.select-language-page .lt-item:hover {
  background: #fafafa;
}
.select-language-page .lt-item.selected {
  border-color: #2f6c34;
}
.select-language-page .lt-item .lt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.select-language-page .lt-item .lt-head .title {
  font-weight: 600;
  font-size: 14px;
}
.select-language-page .lt-item .lt-head .note {
  color: #6b7280;
  font-size: 13px;
}
.select-language-page .lt-item .lt-head .lt-badge {
  background: #e6f4ea;
  color: #2f6c34;
  font-weight: 600;
  font-size: 12px;
  padding: 0.25rem 0.6rem;
  border: 1px solid #cfe9d5;
}
.select-language-page .lt-item .lt-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.select-language-page .lt-item .lt-body .lt-chip {
  background: #f7f7f7;
  border: 1px solid #efefef;
  color: #6b7280;
  height: 38px;
  display: flex;
  align-items: center;
}
.select-language-page .lt-item .lt-body .lt-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-language-page .lt-item .lt-body .lt-price .amount {
  font-weight: 700;
}
.select-language-page .lt-item .lt-body .lt-price .radio-right {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.select-language-page .lt-item.selected .radio-right {
  border-color: #4caf50;
}
.select-language-page .lt-item.selected .radio-right::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #4caf50;
  border-radius: 50%;
}
.select-language-page .modal-footer-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.select-language-page .tutor-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-language-page .tutor-chip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.select-language-page .tutor-chip .meta {
  display: flex;
  flex-direction: column;
}
.select-language-page .tutor-chip .name {
  font-size: 14px;
  font-weight: 500;
}
.select-language-page .tutor-chip .sub {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}
.select-language-page .tutor-chip .dot {
  width: 8px;
  height: 8px;
  background: #38a169;
  border-radius: 50%;
  display: inline-block;
}
.select-language-page .btn-next {
  background: #4caf50;
  border-color: #4caf50;
  padding: 0.6rem 1.6rem;
  border-radius: 0.6rem;
  font-weight: 600;
}
.select-language-page .btn-next:hover {
  background: #3d9142;
  border-color: #3d9142;
}
.select-language-page .btn-next:disabled {
  background: #c7c7c7;
  border-color: #c7c7c7;
}
@media (max-width: 576px) {
  .select-language-page .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.select-language-page {
  color: #1a1a1a;
}
.select-language-page .modal-dialog {
  max-width: 1500px;
}
.select-language-page .modal-content {
  min-height: 80vh;
}
.select-language-page .modal-body {
  padding: 5rem 20rem;
}
.select-language-page .modal-content {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.select-language-page .modal-title {
  font-size: 18px;
  letter-spacing: 0.2px;
}
.select-language-page .slp-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0.25rem auto 1rem;
  width: 100%;
}
.select-language-page .slp-stepper .line {
  flex: 1 1 auto;
  height: 2px;
  background: #e5e7eb;
  transition: background-color 0.2s ease;
}
.select-language-page .slp-stepper .line.active {
  background: rgba(31, 90, 47, 0.6);
}
.select-language-page .slp-stepper .line.done {
  background: #1f5a2f;
}
.select-language-page .slp-stepper .edge-line {
  flex: 6 6 auto;
  height: 2px;
  background: #e5e7eb;
  transition: background-color 0.2s ease;
}
.select-language-page .slp-stepper .edge-line.active {
  background: rgba(31, 90, 47, 0.6);
}
.select-language-page .slp-stepper .edge-line.done {
  background: #1f5a2f;
}
.select-language-page .slp-stepper .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.select-language-page .slp-stepper .dot.active {
  background: #1f5a2f;
  color: #ffffff;
  border-color: #1f5a2f;
  box-shadow: 0 0 0 4px rgba(31, 90, 47, 0.18);
}
.select-language-page .slp-stepper .dot.done {
  background: #1fce73;
  color: transparent;
  border-color: #1fce73;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}
.select-language-page .slp-stepper .dot.done::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
}
.select-language-page .modal-header {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.select-language-page .modal-header #slpHeaderBack {
  text-decoration: none;
  padding-left: 0.25rem;
  padding-right: 0.75rem;
  cursor: pointer;
  z-index: 2;
}
.select-language-page .modal-header .btn-close {
  margin-right: 0.25rem;
}
.select-language-page .modal-header #slpStepTitle {
  pointer-events: none;
}
.select-language-page .slp-choice-list {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
  background: #ffffff;
}
.select-language-page .slp-choice-list .list-group-item {
  border: none;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: transparent;
}
.select-language-page .slp-choice-list .list-group-item img {
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.select-language-page .slp-choice-list .list-group-item .slp-radio {
  margin-left: 0.75rem;
}
.select-language-page .slp-choice-list .list-group-item:hover {
  background: #f7f7f8;
}
.select-language-page .slp-choice-list .list-group-item input[type=radio]:checked,
.select-language-page .slp-choice-list .list-group-item input[type=checkbox]:checked {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
}
.select-language-page .slp-choice-list .list-group-item.selected {
  background: #f2f3f4;
}
.select-language-page .slp-choice-list .list-group-item input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.select-language-page .slp-choice-list .list-group-item input[type=radio]:checked {
  border-color: #1f5a2f;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.15);
}
.select-language-page .slp-step-panel {
  min-height: 260px;
}
.select-language-page .modal-footer {
  background: #fafafa;
}
.select-language-page .modal-footer .btn-success,
.select-language-page .modal-footer .btn-outline-secondary {
  border-radius: 12px;
}
.select-language-page .badge {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
}
.select-language-page .badge.badge-soft-success {
  background: #CFF497;
  color: #295B2A;
}
.select-language-page .badge.badge-soft-dark {
  background: #295B2A;
  color: white;
  border: 1px solid rgba(31, 90, 47, 0.4);
}
.select-language-page .slp-packages-header {
  border-top: 2px solid #1f5a2f;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 2px;
}
.select-language-page .trial-row {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.select-language-page .trial-row.selected {
  border-color: #1f5a2f;
  background: #f0faf3;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.08);
}
.select-language-page .trial-duration {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #334155;
  font-weight: 500;
}
.select-language-page .slp-schedule-card .card-body {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
}
.select-language-page .slp-payment .slp-method-list .list-group-item {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.select-language-page .slp-payment .slp-method-list .list-group-item:hover {
  background: #f9fafb;
}
.select-language-page .slp-payment .slp-method-list .list-group-item.selected {
  border-color: #CFF497;
  background: #f5fff9;
}
.select-language-page .slp-payment .slp-summary {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.select-language-page .slp-payment .slp-summary .card-body {
  padding: 1rem 1.25rem;
}
.select-language-page .slp-payment .slp-summary .total-row {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.6rem;
}
.select-language-page .slp-payment .slp-coupon .input-group-text {
  border-color: #e5e7eb;
}
.select-language-page .slp-payment .slp-coupon .form-control {
  border-color: #e5e7eb;
}
.select-language-page .slp-payment .form-check-input:checked {
  background-color: #CFF497;
  border-color: #CFF497;
}
.select-language-page .slp-payment .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(207, 244, 151, 0.45);
  border-color: #CFF497;
}
.select-language-page .slp-payment .form-check .form-check-input {
  cursor: pointer;
}
.select-language-page .slp-payment .btn-success {
  background-color: #CFF497;
  border-color: #CFF497;
  color: #295B2A;
}
.select-language-page .slp-payment .btn-success:hover,
.select-language-page .slp-payment .btn-success:focus {
  background-color: #c4ef7b;
  border-color: #c4ef7b;
  color: #295B2A;
  box-shadow: 0 0 0 0.2rem rgba(207, 244, 151, 0.35);
}
@media (max-width: 1199.98px) {
  .select-language-page .modal-body {
    padding: 3rem 6rem;
  }
}
@media (max-width: 991.98px) {
  .select-language-page .modal-dialog {
    max-width: 100%;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .select-language-page .modal-body {
    padding: 2.5rem 2rem;
  }
  .select-language-page .slp-stepper {
    padding: 0 0.25rem;
  }
  .select-language-page .slp-stepper .edge-line {
    flex: 3 3 auto;
  }
  .select-language-page .slp-stepper .dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .select-language-page .slp-choice-list {
    padding: 0.75rem;
  }
  .select-language-page .slp-choice-list .list-group-item {
    padding: 0.85rem 1rem;
  }
  .select-language-page .slp-choice-list .list-group-item img {
    width: 22px;
    height: 16px;
  }
  .select-language-page .trial-row {
    padding: 0.65rem 0.85rem;
  }
  .select-language-page .trial-duration {
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 767.98px) {
  .select-language-page .modal-content {
    min-height: auto;
  }
  .select-language-page .modal-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .select-language-page .modal-header #slpHeaderBack {
    font-size: 0.95rem;
  }
  .select-language-page .modal-header .modal-title {
    font-size: 16px;
  }
  .select-language-page .modal-body {
    padding: 1.5rem 1rem;
  }
  .select-language-page .slp-stepper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 8px;
  }
  .select-language-page .slp-stepper .edge-line {
    flex: 2 2 auto;
    min-width: 24px;
  }
  .select-language-page .slp-stepper .line {
    min-width: 18px;
  }
  .select-language-page .slp-stepper .dot {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .select-language-page .slp-choice-list {
    padding: 0.6rem;
  }
  .select-language-page .slp-choice-list .list-group-item {
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.6rem;
  }
  .select-language-page .slp-choice-list .list-group-item .slp-radio {
    margin-left: 0.5rem;
  }
  .select-language-page .badge {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }
  .select-language-page .slp-packages-header {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .select-language-page .slp-schedule-card .card-body {
    padding: 1rem;
  }
  .select-language-page .slp-payment .row {
    --bs-gutter-x: 0.5rem;
  }
  .select-language-page .slp-payment .slp-method-list .list-group-item {
    padding: 0.75rem 0.85rem;
  }
  .select-language-page .slp-payment .slp-summary .card-body {
    padding: 0.85rem 1rem;
  }
  .select-language-page .slp-payment .slp-coupon .input-group-text {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .select-language-page .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .select-language-page .modal-footer .d-flex.gap-2 {
    justify-content: stretch;
    width: 100%;
  }
  .select-language-page .modal-footer #slpNextBtn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .select-language-page .modal-body {
    padding: 1.1rem 0.75rem;
  }
  .select-language-page .slp-step-panel[data-step="4"] .slp-payment {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  .select-language-page .slp-step-panel[data-step="4"] .slp-payment .row {
    --bs-gutter-x: 0.35rem;
  }
  .select-language-page .slp-stepper {
    gap: 6px;
  }
  .select-language-page .slp-stepper .edge-line {
    min-width: 18px;
  }
  .select-language-page .slp-stepper .line {
    min-width: 14px;
  }
  .select-language-page .slp-stepper .dot {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }
  .select-language-page .slp-choice-list .list-group-item {
    padding: 0.7rem 0.8rem;
  }
  .select-language-page .trial-duration {
    font-size: 0.9rem;
  }
  .select-language-page .modal-header .btn-close {
    transform: scale(0.95);
  }
}

.hourly-lesson-page {
  color: #1a1a1a;
}
.hourly-lesson-page .modal-dialog {
  max-width: 1500px;
}
.hourly-lesson-page .modal-content {
  min-height: 80vh;
}
.hourly-lesson-page .modal-body {
  padding: 5rem 20rem;
}
.hourly-lesson-page .modal-content {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hourly-lesson-page .modal-title {
  font-size: 18px;
  letter-spacing: 0.2px;
}
.hourly-lesson-page .slp-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0.25rem auto 1rem;
  width: 100%;
}
.hourly-lesson-page .slp-stepper .line {
  flex: 1 1 auto;
  height: 2px;
  background: #e5e7eb;
  transition: background-color 0.2s ease;
}
.hourly-lesson-page .slp-stepper .line.active {
  background: rgba(31, 90, 47, 0.6);
}
.hourly-lesson-page .slp-stepper .line.done {
  background: #1f5a2f;
}
.hourly-lesson-page .slp-stepper .edge-line {
  flex: 6 6 auto;
  height: 2px;
  background: #e5e7eb;
  transition: background-color 0.2s ease;
}
.hourly-lesson-page .slp-stepper .edge-line.active {
  background: rgba(31, 90, 47, 0.6);
}
.hourly-lesson-page .slp-stepper .edge-line.done {
  background: #1f5a2f;
}
.hourly-lesson-page .slp-stepper .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.hourly-lesson-page .slp-stepper .dot.active {
  background: #1f5a2f;
  color: #ffffff;
  border-color: #1f5a2f;
  box-shadow: 0 0 0 4px rgba(31, 90, 47, 0.18);
}
.hourly-lesson-page .slp-stepper .dot.done {
  background: #1fce73;
  color: transparent;
  border-color: #1fce73;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}
.hourly-lesson-page .slp-stepper .dot.done::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
}
.hourly-lesson-page .modal-header {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.hourly-lesson-page .modal-header #slpHeaderBack {
  text-decoration: none;
  padding-left: 0.25rem;
  padding-right: 0.75rem;
  cursor: pointer;
  z-index: 2;
}
.hourly-lesson-page .modal-header .btn-close {
  margin-right: 0.25rem;
}
.hourly-lesson-page .modal-header #slpStepTitle {
  pointer-events: none;
}
.hourly-lesson-page .slp-choice-list {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem;
  background: #ffffff;
}
.hourly-lesson-page .slp-choice-list .list-group-item {
  border: none;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: transparent;
}
.hourly-lesson-page .slp-choice-list .list-group-item img {
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.hourly-lesson-page .slp-choice-list .list-group-item .slp-radio {
  margin-left: 0.75rem;
}
.hourly-lesson-page .slp-choice-list .list-group-item:hover {
  background: #f7f7f8;
}
.hourly-lesson-page .slp-choice-list .list-group-item input[type=radio]:checked,
.hourly-lesson-page .slp-choice-list .list-group-item input[type=checkbox]:checked {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
}
.hourly-lesson-page .slp-choice-list .list-group-item.selected {
  background: #f2f3f4;
}
.hourly-lesson-page .slp-choice-list .list-group-item input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hourly-lesson-page .slp-choice-list .list-group-item input[type=radio]:checked {
  border-color: #1f5a2f;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.15);
}
.hourly-lesson-page .slp-step-panel {
  min-height: 260px;
}
.hourly-lesson-page .modal-footer {
  background: #fafafa;
}
.hourly-lesson-page .modal-footer .btn-success,
.hourly-lesson-page .modal-footer .btn-outline-secondary {
  border-radius: 12px;
}
.hourly-lesson-page .badge {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
}
.hourly-lesson-page .badge.badge-soft-success {
  background: #CFF497;
  color: #295B2A;
}
.hourly-lesson-page .badge.badge-soft-dark {
  background: #295B2A;
  color: white;
  border: 1px solid rgba(31, 90, 47, 0.4);
}
.hourly-lesson-page .slp-packages-header {
  border-top: 2px solid #1f5a2f;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 2px;
}
.hourly-lesson-page .trial-row {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hourly-lesson-page .trial-row.selected {
  border-color: #1f5a2f;
  background: #f0faf3;
  box-shadow: 0 0 0 3px rgba(31, 90, 47, 0.08);
}
.hourly-lesson-page .trial-duration {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #334155;
  font-weight: 500;
}
.hourly-lesson-page .slp-schedule-card .card-body {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
}
.hourly-lesson-page .slp-payment .slp-method-list .list-group-item {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hourly-lesson-page .slp-payment .slp-method-list .list-group-item:hover {
  background: #f9fafb;
}
.hourly-lesson-page .slp-payment .slp-method-list .list-group-item.selected {
  border-color: #CFF497;
  background: #f5fff9;
}
.hourly-lesson-page .slp-payment .slp-summary {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.hourly-lesson-page .slp-payment .slp-summary .card-body {
  padding: 1rem 1.25rem;
}
.hourly-lesson-page .slp-payment .slp-summary .total-row {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.6rem;
}
.hourly-lesson-page .slp-payment .slp-coupon .input-group-text {
  border-color: #e5e7eb;
}
.hourly-lesson-page .slp-payment .slp-coupon .form-control {
  border-color: #e5e7eb;
}
.hourly-lesson-page .slp-payment .form-check-input:checked {
  background-color: #CFF497;
  border-color: #CFF497;
}
.hourly-lesson-page .slp-payment .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(207, 244, 151, 0.45);
  border-color: #CFF497;
}
.hourly-lesson-page .slp-payment .form-check .form-check-input {
  cursor: pointer;
}
.hourly-lesson-page .slp-payment .btn-success {
  background-color: #CFF497;
  border-color: #CFF497;
  color: #295B2A;
}
.hourly-lesson-page .slp-payment .btn-success:hover,
.hourly-lesson-page .slp-payment .btn-success:focus {
  background-color: #c4ef7b;
  border-color: #c4ef7b;
  color: #295B2A;
  box-shadow: 0 0 0 0.2rem rgba(207, 244, 151, 0.35);
}
@media (max-width: 1199.98px) {
  .hourly-lesson-page .modal-body {
    padding: 3rem 6rem;
  }
}
@media (max-width: 991.98px) {
  .hourly-lesson-page .modal-dialog {
    max-width: 100%;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .hourly-lesson-page .modal-body {
    padding: 2.5rem 2rem;
  }
  .hourly-lesson-page .slp-stepper {
    padding: 0 0.25rem;
  }
  .hourly-lesson-page .slp-stepper .edge-line {
    flex: 3 3 auto;
  }
  .hourly-lesson-page .slp-stepper .dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .hourly-lesson-page .slp-choice-list {
    padding: 0.75rem;
  }
  .hourly-lesson-page .slp-choice-list .list-group-item {
    padding: 0.85rem 1rem;
  }
  .hourly-lesson-page .slp-choice-list .list-group-item img {
    width: 22px;
    height: 16px;
  }
  .hourly-lesson-page .trial-row {
    padding: 0.65rem 0.85rem;
  }
  .hourly-lesson-page .trial-duration {
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 767.98px) {
  .hourly-lesson-page .modal-content {
    min-height: auto;
  }
  .hourly-lesson-page .modal-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hourly-lesson-page .modal-header #slpHeaderBack {
    font-size: 0.95rem;
  }
  .hourly-lesson-page .modal-header .modal-title {
    font-size: 16px;
  }
  .hourly-lesson-page .modal-body {
    padding: 1.5rem 1rem;
  }
  .hourly-lesson-page .slp-stepper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 8px;
  }
  .hourly-lesson-page .slp-stepper .edge-line {
    flex: 2 2 auto;
    min-width: 24px;
  }
  .hourly-lesson-page .slp-stepper .line {
    min-width: 18px;
  }
  .hourly-lesson-page .slp-stepper .dot {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .hourly-lesson-page .slp-choice-list {
    padding: 0.6rem;
  }
  .hourly-lesson-page .slp-choice-list .list-group-item {
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.6rem;
  }
  .hourly-lesson-page .slp-choice-list .list-group-item .slp-radio {
    margin-left: 0.5rem;
  }
  .hourly-lesson-page .badge {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }
  .hourly-lesson-page .slp-packages-header {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .hourly-lesson-page .slp-schedule-card .card-body {
    padding: 1rem;
  }
  .hourly-lesson-page .slp-payment .row {
    --bs-gutter-x: 0.5rem;
  }
  .hourly-lesson-page .slp-payment .slp-method-list .list-group-item {
    padding: 0.75rem 0.85rem;
  }
  .hourly-lesson-page .slp-payment .slp-summary .card-body {
    padding: 0.85rem 1rem;
  }
  .hourly-lesson-page .slp-payment .slp-coupon .input-group-text {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .hourly-lesson-page .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hourly-lesson-page .modal-footer .d-flex.gap-2 {
    justify-content: stretch;
    width: 100%;
  }
  .hourly-lesson-page .modal-footer #slpNextBtn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .hourly-lesson-page .modal-body {
    padding: 1.1rem 0.75rem;
  }
  .hourly-lesson-page .slp-step-panel[data-step="4"] .slp-payment {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  .hourly-lesson-page .slp-step-panel[data-step="4"] .slp-payment .row {
    --bs-gutter-x: 0.35rem;
  }
  .hourly-lesson-page .slp-stepper {
    gap: 6px;
  }
  .hourly-lesson-page .slp-stepper .edge-line {
    min-width: 18px;
  }
  .hourly-lesson-page .slp-stepper .line {
    min-width: 14px;
  }
  .hourly-lesson-page .slp-stepper .dot {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }
  .hourly-lesson-page .slp-choice-list .list-group-item {
    padding: 0.7rem 0.8rem;
  }
  .hourly-lesson-page .trial-duration {
    font-size: 0.9rem;
  }
  .hourly-lesson-page .modal-header .btn-close {
    transform: scale(0.95);
  }
}

.testimonial-section {
  padding: 8rem 0;
  background-color: rgba(76, 175, 80, 0.6509803922);
  color: black;
  position: relative;
  overflow: hidden;
}

.testimonial-content {
  display: flex;
  gap: 5.5rem;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .testimonial-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.testimonial-photo {
  position: relative;
  flex-shrink: 0;
}

.testimonial-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #4CAF50;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  flex: 1;
  color: black;
  padding-top: 30px;
}

.testimonial-text blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .testimonial-text blockquote {
    font-size: 1rem;
    text-align: center;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
}
@media (max-width: 767.98px) {
  .testimonial-author {
    justify-content: center;
  }
}

.author-line {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

.decorative-quotes {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.1;
}
@media (max-width: 767.98px) {
  .decorative-quotes {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */

/* Container and Grid Layout */
.teacher-cards-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.teacher-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Teacher Profile Card */
.teacher-profile-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: fit-content;
}

.teacher-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.teacher-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.teacher-profile-card:hover .teacher-profile-image {
  transform: scale(1.05);
}

/* Flag Badge */
.teacher-flag-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Rating Badge */
.teacher-rating-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.teacher-rating-text {
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Card Content */
.teacher-card-content {
  padding: 1.25rem;
}

/* Header Section */
.teacher-header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.teacher-info-section {
  flex: 1;
}

.teacher-name-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d3748;
  margin: 0 0 0.25rem 0;
}

.teacher-subject-text {
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
}

/* Arrow Button */
.teacher-arrow-button {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.teacher-arrow-button:hover {
  color: #4a5568;
}

/* Pricing Section */
/* .teacher-pricing-section {
  text-align: right;
} */


.teacher-pricing-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.teacher-stats-section {
    flex: 1;
}

.teacher-price-section {
    text-align: right;
}

.teacher-lessons-start-text {
  font-size: 0.75rem;
  color: #a0aec0;
  margin: 0 0 0.25rem 0;
}

.teacher-price-amount {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000000;
  margin: 0 0 0.5rem 0;
}

.teacher-stats-text {
  font-size: 0.75rem;
  color: #718096;
  margin: 0;
  /* bold text */
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .teacher-cards-container {
    padding: 1rem;
  }
  
  .teacher-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .teacher-image-wrapper {
    height: 180px;
  }
  
  .teacher-card-content {
    padding: 1rem;
  }
  
  .teacher-flag-badge {
    bottom: 8px;
    left: 8px;
  }
  
  .teacher-rating-badge {
    bottom: 8px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  .teacher-image-wrapper {
    height: 200px;
  }
  
  .teacher-name-title {
    font-size: 1rem;
  }
  
  .teacher-price-amount {
    font-size: 1.1rem;
  }
}



.language-selection-container {
  /* display: flex;
  justify-content: center; */
  align-items: center;
  min-height: 25vh;
}

.language-selection-alt {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  min-width: 400px;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 4px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.language-option:last-child {
  margin-bottom: 0;
}

.language-option:hover {
  background-color: #f8fafc;
}

.language-option.selected {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
}

.language-option.selected .language-name {
  color: #059669;
  font-weight: 600;
}

.language-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.language-name {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  letter-spacing: -0.01em;
}

.radio-button {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.radio-button:checked {
  border-color: #10b981;
  background-color: #10b981;
}

.radio-button:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.radio-button:hover {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.radio-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Make the entire option clickable */
.language-option {
  cursor: pointer;
}

.language-option input[type="radio"] {
  pointer-events: none;
}

/* Add click handler to the entire option */
.language-option:active {
  transform: translateY(1px);
}

@media (max-width: 480px) {
  .language-selection-alt {
    min-width: auto;
    margin: 0 16px;
  }
  
  .language-option {
    padding: 14px 16px;
  }
  
  .language-name {
    font-size: 14px;
  }
}



/* Hourly Rate Lessons Section */
.hourly-rate-container {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  border-top : 3px solid #295B2A;
}

.hourly-rate-section {
  background: white;
  /* border-radius: 12px; */
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  min-width: 400px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0;
  letter-spacing: -0.01em;
}

.rate-info {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.lesson-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.lesson-option:hover {
  background-color: #f8fafc;
}

.lesson-option.selected {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
}

.lesson-option.selected .lesson-duration,
.lesson-option.selected .price {
  color: #059669;
  font-weight: 600;
}

.lesson-option:active {
  transform: translateY(1px);
}

.lesson-info {
  display: flex;
  align-items: center;
}

.lesson-duration {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  letter-spacing: -0.01em;
}

.lesson-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  letter-spacing: -0.01em;
}

.lesson-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lesson-radio:checked {
  border-color: #10b981;
  background-color: #10b981;
}

.lesson-radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.lesson-radio:hover {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.lesson-radio:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

@media (max-width: 480px) {
  .hourly-rate-section {
    min-width: auto;
    /* margin: 0 16px; */
  }
  
  .lesson-option {
    padding: 14px 8px;
  }
  
  .section-title {
    font-size: 15px;
  }
  
  .rate-info {
    font-size: 13px;
  }
  
  .lesson-duration,
  .price {
    font-size: 14px;
  }
}




/* Packages Section */
.packages-container {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  border-top : 3px solid #295B2A;

}

.packages-section {
  background: white;
  /* border-radius: 12px; */
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  min-width: 400px;
}

.package-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.package-option:hover {
  background-color: #f8fafc;
}

.package-option.selected {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
}

.package-option.selected .package-name {
  color: #059669;
  font-weight: 600;
}

.package-option.selected .price {
  color: #059669;
  font-weight: 600;
}

.package-option:active {
  transform: translateY(1px);
}

.package-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-name {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  letter-spacing: -0.01em;
}

.package-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recommended-badge {
  background-color: #dcfce7;
  color: #166534;
}

.best-value-badge {
  background-color: #dbeafe;
  color: #1e40af;
}

.package-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.original-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.package-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.package-radio:checked {
  border-color: #10b981;
  background-color: #10b981;
}

.package-radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.package-radio:hover {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.package-radio:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

@media (max-width: 480px) {
  .packages-section {
    min-width: auto;
    /* margin: 0 16px; */
  }
  
  .package-option {
    padding: 14px 8px;
  }
  
  .package-name {
    font-size: 14px;
  }
  
  .package-badge {
    font-size: 10px;
    padding: 1px 6px;
  }
  
  .original-price {
    font-size: 13px;
  }
}


.section--quote {
  background: #98BB61 !important;
  color: var(--color-dark-blue-inverse); }
.quote__box {
  background: #2B5F2E !important;
}
