/* ============================================================ */
/* PART 1: COMMON (All Pages)                                 */
/* Reset, Variables, Buttons, Section Title, Header, Footer   */
/* ============================================================ */

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0px;
  padding: 0px;
}

section {
  overflow: hidden;
  margin-bottom: var(--section-gap);
}

button {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ============================= */
/* Global form inputs (site-wide) */
/* ============================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus {
  border-color: #999999;
}

textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

textarea:focus {
  border-color: #999999;
}

select {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  cursor: pointer;
}

select:focus {
  border-color: #999999;
}

form label,
.form-box label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #555555;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.password-field {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.password-field input {
  padding-right: 2.75rem;
}

.eye-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.7;
}

.eye-icon:hover {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

:root {
  --color-primary: #1d587a;
  --color-secondary: #57a7b3;
  --color-secondary-rgb: 87, 167, 179;
  --site-padding-x: 14px;
  --section-gap: 1rem;
}
@media (min-width: 768px) {
  :root {
    --site-padding-x: 20px;
  }
}
@media (min-width: 1025px) {
  :root {
    --site-padding-x: 40px;
    --section-gap: 1.5rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --site-padding-x: 60px;
  }
}

/* ============================= */
/* Common Buttons */
/* ============================= */

.full-w-btn-web {
  width: 100%;
}

@media (max-width: 768px) {
  .full-w-btn {
    width: 100%;
  }
}

.btn-primary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn-primary {
    font-size: 16px;
    min-width: 180px;
  }
}

.btn-primary-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #eeeeee;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-primary-hero:hover::before {
  transform: translateX(0);
}
.btn-primary-hero:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn-primary-hero {
    font-size: 16px;
    min-width: 180px;
  }
}

.btn-primary-white {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-primary-white:hover::before {
  transform: translateX(0);
}
.btn-primary-white:hover {
  color: #ffffff;
}
@media (min-width: 768px) {
  .btn-primary-white {
    font-size: 16px;
  }
}

.btn-outline-white {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  z-index: 1;
}
.btn-outline-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-outline-white:hover::before {
  transform: translateX(0);
}
.btn-outline-white:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn-outline-white {
    font-size: 16px;
  }
}

.btn-secondary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  transform: translateX(0);
}

.btn-secondary:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .btn-secondary {
    font-size: 16px;
  }
}

/* ============================= */
/* Section Title */
/* ============================= */

.section-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--site-padding-x) 0 var(--site-padding-x);
}
@media (max-width: 768px) {
  .section-wrapper {
    padding-top: 32px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-wrapper {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}
@media (max-width: 360px) {
  .section-wrapper {
    padding-top: 20px;
    padding-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .section-wrapper {
    padding: 60px var(--site-padding-x) 0 var(--site-padding-x);
  }
}
@media (min-width: 1025px) {
  .section-wrapper {
    padding: 80px var(--site-padding-x) 0 var(--site-padding-x);
  }
}

.section-subtitle-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 16px;
    font-weight: 700;
  }
}

.subtitle-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .subtitle-line {
    width: 40px;
  }
}

.section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 38px;
    font-weight: 700;
  }
}

.section-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #5e5e5e;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .section-description {
    font-size: 18px;
    margin-top: 1rem;
  }
}

.explore-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .explore-btn-icon {
    display: none;
  }
}

.explore-btn-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .explore-btn-wrapper {
    display: block;
  }
}

.digits {
  display: inline-flex;
  gap: 2px;
}

.digit-container {
  overflow: hidden;
  height: 32px;
  width: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .digit-container {
    width: 18px;
  }
}

.digit-scroll {
  position: absolute;
  top: 0;
  transition: transform 0.6s ease-out;
}

.digit-scroll div {
  height: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 32px;
}
@media (min-width: 768px) {
  .digit-scroll div {
    font-size: 28px;
  }
}

/* ============================= */
/* Header */
/* ============================= */

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.backdrop.show {
  opacity: 1;
  transform: translateX(0);
  z-index: 1000;
}

.backdrop.hidden {
  pointer-events: none;
  transform: translateX(-100%);
}

.header {
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0.1px;
  background: white;
  z-index: 999;
}

/* When mobile menu is open, header (and menu) must be above backdrop so menu is clickable */
.header.menu-open {
  z-index: 1001;
}

.header-container {
  width: 100%;
  min-height: 60px;
  margin: 0 auto;
  padding: 0 var(--site-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header-container {
    min-height: 70px;
  }
}
@media (min-width: 1025px) {
  .header-container {
    min-height: 80px;
  }
}

.logo {
  height: 42px;
}

@media (min-width: 1024px) {
  .logo {
    height: 56px;
  }
}

.nav-menu {
  display: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
  }
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--color-primary);
}

.nav-link-active {
  color: var(--color-primary);
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  width: 220px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.dropdown-menu a:hover {
  background: #e5e7eb;
}

@media (min-width: 1025px) {
  .dropdown {
    position: relative;
  }

  .dropdown:hover > .dropdown-menu {
    display: flex;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon img {
  height: 25px;
  width: 25px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  z-index: 10;
}

@media (min-width: 768px) {
  .auth-buttons {
    display: flex;
  }
}

.login-mobile {
  display: flex;
}

@media (min-width: 768px) {
  .login-mobile {
    display: none;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}

.menu-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  max-width: 85vw;
  background: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.mobile-menu.show {
  display: flex;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu > ul {
  margin-top: 8px;
}

.mobile-menu a {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 8px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--color-primary);
  background-color: rgba(29, 88, 122, 0.08);
}

.mobile-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .dropdown-toggle {
  cursor: pointer;
}

.mobile-menu .dropdown-menu {
  display: none;
  position: static;
  box-shadow: none;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 8px;
  flex-direction: column;
  gap: 2px;
  background: transparent;
  border: none;
  margin: 0;
}

.mobile-menu .dropdown-menu.open {
  display: flex;
}

.mobile-menu .dropdown-menu a {
  font-size: 14px;
  color: #555;
  padding: 10px 10px;
}

.mobile-menu .dropdown-menu a:hover {
  color: var(--color-primary);
  background-color: rgba(29, 88, 122, 0.06);
}

.hidden {
  display: none;
}

.show {
  display: flex;
}

.sticky-cta {
  position: fixed;
  bottom: 0px;
  display: flex;
  z-index: 9999;
  background: var(--color-primary);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .sticky-cta {
    width: auto;
    bottom: 40px;
    right: 15px;
    border-radius: 30px;
  }
}

.cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cta-btn {
    flex: 1;
    gap: 8px;
    font-size: 14px;
    padding: 18px 24px;
    min-width: fit-content;
  }
}
.cta-divider {
  border-left: 1px solid #fff;
}
@media (min-width: 768px) {
  .cta-divider {
    border-left: 1px solid #eee;
  }
}

.call-icon {
  display: none;
}
@media (min-width: 768px) {
  .call-icon {
    width: 25px;
    height: 25px;
    display: block;
  }
}

.white-call-icon {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .white-call-icon {
    display: none;
  }
}

/* ============================= */

.box-image img {
  transition: transform 0.4s ease;
}

.box-image:hover img {
  transform: rotate(360deg) scale(1.05);
}

/* ============================= */
/* Footer (Common)              */
/* ============================= */

.footer {
  position: relative;
  background-color: #246080;
  overflow: hidden;
  margin-top: 34px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  .footer {
    margin-top: 80px;
  }
}

.footer-container {
  display: grid;
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--site-padding-x);
  gap: 2rem;

  grid-template-columns: 1fr;
  grid-template-areas:
    "about"
    "links1"
    "links2"
    "contact";
}

@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "about about"
      "contact contact"
      "links1 links2";
  }
}

@media (min-width: 768px) {
  .footer-container {
    padding: 60px var(--site-padding-x);
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "about contact"
      "links1 links2";
  }
}

@media (min-width: 1025px) {
  .footer-container {
    padding: 50px var(--site-padding-x);
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-areas: "about links1 links2 contact";
  }
}

.footer-about {
  grid-area: about;
}

.footer-links-1 {
  grid-area: links1;
}

.footer-links-2 {
  grid-area: links2;
}

.footer-contact {
  grid-area: contact;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-logo {
    height: 48px;
  }
}

.footer-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-text {
    font-size: 16px;
  }
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-icon {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .footer-icon {
    width: 50px;
    height: 50px;
  }
}
.footer-icon:hover {
  background-color: white;
  color: var(--color-primary);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (min-width: 768px) {
  .footer-icon svg {
    width: 20px;
    height: 20px;
  }
}

.footer-heading {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links li a {
  font-size: 16px;
  font-weight: 400;
  color: #cacdd3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer-contact li {
    font-size: 16px;
  }
}

.footer-contact img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  margin: 0 auto;
  padding: 16px var(--site-padding-x);
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .footer-bottom {
    flex-direction: row;
    padding: 16px var(--site-padding-x);
    margin-bottom: 0rem;
  }
}
@media (min-width: 1025px) {
  .footer-bottom {
    flex-direction: row;
    padding: 16px var(--site-padding-x);
    margin-bottom: 0rem;
  }
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom-links a {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.footer-copy {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .copyright-wrapper {
    gap: 2rem;
  }
}

.footer-vector {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.footer-vector-left {
  left: 0;
  bottom: 0;
  width: 50%;
  max-width: 400px;
}
.footer-vector-right {
  right: 0;
  top: 0;
  width: 300px;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .footer-vector-left,
  .footer-vector-right {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .footer-vector-left,
  .footer-vector-right {
    display: none;
  }
}

/* ============================================================ */
/* PART 2: COMMON SECTIONS (Reusable section components)       */
/* FAQ, Testimonials, YouTube, Our Mentors, etc.              */
/* ============================================================ */

/* ============================= */
/* FAQ                          */
/* ============================= */

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.faq-left {
  flex: 1;
}

.faq-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .faq-title {
    font-size: 38px;
    font-weight: 700;
  }
}

.faq-desc {
  font-size: 14px;
  font-weight: 400;
  color: #5e5e5e;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .faq-desc {
    font-size: 18px;
    margin-top: 1rem;
  }
}

.ask-question {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .ask-question {
    margin-top: 2rem;
  }
}

.ask-question p {
  font-size: 14px;
  font-weight: 400;
  color: #5e5e5e;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .ask-question p {
    font-size: 18px;
    margin-top: 1rem;
  }
}

.ask-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.ask-link:hover {
  text-decoration: underline;
}

.faq-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-item {
    padding: 20px 24px;
  }
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  width: 80%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
}
@media (min-width: 768px) {
  .faq-header h3 {
    font-size: 18px;
    font-weight: 600;
  }
}

.toggle-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: #eaf1f5;
  color: var(--color-primary);
  font-size: 20px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.faq-item.active .toggle-btn {
  background-color: var(--color-primary);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.3s ease;
}

@media (min-width: 768px) {
  .faq-body h3 {
    font-size: 16px;
  }
}

.faq-item.active .faq-body {
  max-height: 200px;
  margin-top: 12px;
}

@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

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

.faq-page .faq-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-page .faq-container .faq-right {
  width: 100%;
}

.faq-question-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.faq-question-title {
  font-size: 38px;
  font-weight: 700;
}

.faq-body p {
  margin-bottom: 12px;
}

.faq-page ul li {
  margin-left: 20px;
}

/* ============================= */
/* Hear From Our Students       */
/* ============================= */

.videoTestimonialsSwiper .swiper-slide {
  width: clamp(280px, 90vw, 380px);
  box-sizing: border-box;
}

.videoTestimonialsSwiper .testimonial-card {
  background: #eaeaea;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  width: 100%;
  min-width: 100px;
  height: 460px;
  min-height: 460px;
  position: relative;
}

.videoTestimonialsSwiper .video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.videoTestimonialsSwiper .video {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.video-testimonials-wrapper {
  position: relative;
}

.video-swiper-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.video-swiper-prev,
.video-swiper-next {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.video-swiper-prev svg,
.video-swiper-next svg {
  width: 20px;
  height: 20px;
}

.video-swiper-prev:hover,
.video-swiper-next:hover {
  background: var(--color-primary);
  color: #fff;
}

.video-swiper-prev.swiper-button-disabled,
.video-swiper-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============================= */
/* Testimonials (Other layout)   */
/* ============================= */

.testimonials-section {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
  margin: 0 auto;
  box-sizing: border-box;
}

.sub-heading {
  color: #1d587a;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading-container {
  display: flex;
  flex-direction: column;
}

.title-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
}

.main-heading {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

.subtitle {
  font-size: 18px;
  color: #5e5e5e;
  margin-top: 5px;
}

.testimonial-wrapper {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.info-card {
  width: 274px;
  min-width: 274px;
  height: 356px;
  min-height: 356px;
  background: linear-gradient(135deg, #2d6a8a 0%, #1d587a 100%);
  border-radius: 20px;
  color: white;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(29, 88, 122, 0.2);
}

.info-card::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: -10px;
  width: 200px;
  height: 200px;
  background-image: url("../images/svg/Layer 2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.info-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.info-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.info-content > div:first-child {
  display: flex;
  flex-direction: column;
}

.career-logo {
  width: 100px;
  height: 28px;
  margin-bottom: 24px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.google-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.google-image {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.google-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.google-image span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.2px;
}

.google-section > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score {
  font-weight: 700;
  font-size: 21px;
  color: #ffd029;
  line-height: 1;
  letter-spacing: -0.5px;
}

.teacher-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.teacher-rating img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.info-card .stars {
  color: #ffd029;
  font-size: 24px;
}
.info-heading {
  font-size: 24px;
  color: white;
  font-weight: 600;
}

.info-text {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.51);
  line-height: 1.5;
  font-weight: 400;
}

.google-section > div:last-child p {
  font-size: 12px;
  color: #1d587a;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.google-section > div:last-child p:hover {
  color: #1d587a;
}

.swiper {
  flex-grow: 1;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .alumni-card {
    flex: 0 0 calc(30% - 20px);
  }
}

@media (max-width: 600px) {
  .alumni-card {
    flex: 0 0 100%;
  }
}

.video-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ui-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  font-size: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.mute-btn {
  bottom: 14px;
  position: absolute;
  left: 14px;
}

.like-btn svg,
.share-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  stroke: #ffffff;
}

.testimonial-video-wrapper {
  width: 100%;
  height: 190px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-video-wrapper .youtube-iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px 20px 16px;
}

.testimonial-rating img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.testimonial-divider {
  width: 80%;
  height: 1px;
  background-color: #e5e7eb;
  margin: 0 auto;
}

.testimonial-student {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.student-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info {
  text-align: left;
}

.student-name {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding: 0;
}

.student-role {
  font-size: 14px;
  color: #9ca3af;
  margin: 4px 0 0 0;
  padding: 0;
}

.testimonial-card .stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 1rem;
}

.testimonial-img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #1d587a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.user-name {
  font-weight: bold;
  font-size: 18px;
}

.user-role {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    text-align: center;
  }

  .info-content {
    text-align: center;
  }

  .swiper {
    width: 100%;
  }

  .main-heading {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .testimonial-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }

  .info-card {
    width: 274px;
    min-width: 274px;
  }

  .swiper {
    flex-grow: 1;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  transform: translateY(-50%);
  background-color: #66b2b2;
  color: white;
  border: none;
  border-radius: 8px;
  width: 40px !important;
  height: 40px !important;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
  background-image: url("../images/svg/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  right: 0px;
  top: 50%;
  z-index: 10;
}

.swiper-button-prev {
  transform: rotate(180deg);
}
.swiper-button-next:hover {
  background-color: #3b9090;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(29, 88, 122, 0.4);
}

.swiper-button-prev:hover {
  background-color: #3b9090;
  box-shadow: 0 6px 16px rgba(29, 88, 122, 0.4);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev {
  display: none;
}

/* ============================= */
/* Explore Latest Videos (YouTube) */
/* ============================= */

.youtube-wrapper {
  width: 100%;
  padding-top: 100px;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .youtube-wrapper {
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (min-width: 1280px) {
  .youtube-wrapper {
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

.youtube-subtitle {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.youtube-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .youtube-header {
    flex-direction: row;
    gap: 1rem;
  }
}

.youtube-title {
  color: #000000;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .youtube-title {
    font-size: 48px;
    line-height: 52px;
  }
}

.youtube-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--section-gap);
}
@media (min-width: 768px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--section-gap);
  }
}

.youtube-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.youtube-card {
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.youtube-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  height: 100%;
}

.youtube-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.youtube-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.youtube-facade:hover img {
  opacity: 0.8;
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s;
}

.youtube-facade:hover .youtube-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (min-width: 768px) {
  .youtube-iframe {
    height: 100%;
  }
}

.youtube-info {
  margin-top: 1rem;
}

.youtube-text {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
}

.youtube-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 1rem;
}

.youtube-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.youtube-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 1rem;
  height: 100%;
}
@media (min-width: 768px) {
  .youtube-box {
    flex-direction: row;
  }
}

.youtube-video {
  flex: 1;
}

.youtube-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .youtube-desc {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .youtube-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--section-gap);
  }

  .youtube-left {
    width: 85vw;
    min-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }

  .youtube-right {
    display: contents;
  }

  .youtube-box {
    width: 85vw;
    min-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: start;
    height: auto;
  }
}

/* ============================= */
/* Numbers / Stats Section      */
/* ============================= */

.numbers-section {
  background-color: #1d587a;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.numbers-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--site-padding-x);
}

@media (min-width: 768px) {
  .numbers-container {
    padding: 60px var(--site-padding-x);
  }
}
@media (min-width: 1025px) {
  .numbers-container {
    padding: 80px var(--site-padding-x);
  }
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1.5rem;
  row-gap: 2.5rem;
}

@media (min-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.numbers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/*.numbers-number {*/
/*  font-size: 100px;*/
/*  font-weight: 700;*/
/*  color: transparent;*/
/*  -webkit-text-stroke: 2px #cfd8dc;*/
/*  */
/*}*/
.numbers-number {

  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
  /* Transparent fill — show only the stroke */
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Thin stroke with gradient-like color */
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}
.numbers-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.number-text {
  font-family: sans-serif;
  font-size: 130px;
  font-weight: 800;
  stroke-width: 1;
}
.numbers-icon {
  height: 40px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .numbers-icon {
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .numbers-icon {
    height: 80px;
  }
}

.numbers-text {
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}

@media (min-width: 768px) {
  .numbers-text {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .numbers-text {
    font-size: 16px;
  }
}

/* ============================= */
/* Our Mentors                  */
/* ============================= */

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--section-gap);
}
@media (max-width: 768px) {
  .mentors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .mentors-grid {
    grid-template-columns: 1fr;
  }
}

.mentor-card {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 16px;
  background-color: #57a7b3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mentor-card {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .mentor-card {
    height: 340px;
  }
}

.mentor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  z-index: 10;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mentor-card:hover img {
  transform: scale(1.1);
}

.mentor-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-radius: 0 0 16px 16px;
  z-index: 20;
}
@media (min-width: 768px) {
  .mentor-overlay {
    height: 120px;
  }
}

.mentor-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .mentor-info {
    gap: 1rem;
    padding-left: 20px;
  }
}

.mentor-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 768px) {
  .mentor-name {
    font-size: 26px;
    font-weight: 600;
    margin-top: 2rem;
  }
}

.mentor-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}

.mentor-role {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 768px) {
  .mentor-role {
    font-size: 14px;
    font-weight: 500;
  }
}

.mentor-icon {
  width: 20px;
  height: 20px;
  fill: white;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

/* ============================= */
/* Our Top Students (Top Students)  */
/* ============================= */

.alumni-carousel {
  position: relative;
}

.alumni-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.alumni-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.alumni-card {
  flex: 0 0 274px;
  margin-right: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 20px;
}

.alumniSwiper .swiper-slide {
  width: clamp(260px, 90vw, 320px);
  box-sizing: border-box;
}

.alumniSwiper .alumni-card {
  width: 100%;
  min-width: 0;
  flex: none;
  margin-right: 0;
}

.mySwiper .swiper-slide {
  width: clamp(140px, 22vw, 200px);
  box-sizing: border-box;
}

.alumni-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  margin: 0 auto 16px auto;
}

.alumni-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.alumni-card p {
  font-size: 26px;
  color: #5e5e5e;
  margin-bottom: 8px;
}

.alumni-card .company {
  font-weight: bold;
  color: #000000;
  font-size: 16px;
  margin-top: 6px;
}

.alumni-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.alumni-nav:hover {
  background-color: var(--color-primary);
}

.alumni-nav.left {
  left: -20px;
}

.alumni-nav.right {
  right: -20px;
}

@media (max-width: 1024px) {
  .alumni-card {
    flex: 0 0 calc(30% - 20px);
  }
}

@media (max-width: 600px) {
  .alumni-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 500px) {
  .alumni-carousel .alumni-nav.left,
  .alumni-carousel .alumni-nav.right {
    display: none !important;
  }
  .alumni-track-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    padding-bottom: 16px;
    position: relative;
  }
  .alumni-track-wrapper::-webkit-scrollbar {
    height: 6px;
    background: #f5f5f5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .alumni-track-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .alumni-track {
    display: flex;
    flex-wrap: nowrap;
    transition: none !important;
    transform: none !important;
  }
  .hero-course-card {
    min-width: 90vw;
    flex: 0 0 auto;
  }
}

/* ============================= */
/* Students Love Learning Here  */
/* ============================= */

.studentSwiper .swiper-slide {
  width: clamp(280px, 90vw, 380px);
  box-sizing: border-box;
}

.studentSwiper .user-info-card {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px;
}
@media (min-width: 767px) {
  .studentSwiper .user-info-card {
    height: 360px;
    min-height: 360px;
    padding: 32px;
  }
}

.studentSwiper .user-info-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
}
@media (min-width: 767px) {
  .studentSwiper .user-info-content {
    gap: 1.5rem;
  }
}

.studentSwiper .star-rating-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.studentSwiper .star-rating {
  display: flex;
  gap: 4px;
}

.studentSwiper .user-info-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .studentSwiper .user-info-text {
    font-size: 16px;
  }
}

.studentSwiper .testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
}
@media (min-width: 768px) {
  .studentSwiper .testimonial-profile {
    padding-top: 1rem;
  }
}

.studentSwiper .user-card {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #1d587a;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .studentSwiper .user-card {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 700;
  }
}

.studentSwiper .user-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .studentSwiper .user-profile {
    gap: 0.5rem;
  }
}

.studentSwiper .user-name {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .studentSwiper .user-name {
    font-size: 18px;
    font-weight: 600;
  }
}

.studentSwiper .user-role {
  font-size: 12px;
  font-weight: 500;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .studentSwiper .user-role {
    font-size: 16px;
  }
}

/* ============================= */
/* Partners                     */
/* ============================= */

.partners-section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .partners-section-header {
    margin-bottom: 0rem;
  }
}

.partners-section {
  background-color: rgba(var(--color-secondary-rgb), 0.2);
  margin-top: 40px;
}
@media (min-width: 768px) {
  .partners-section {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  .partners-section {
    margin-top: 80px;
  }
}

.partners-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  overflow: hidden;
  padding: 34px var(--site-padding-x);
  gap: 1rem;
}
@media (min-width: 768px) {
  .partners-container {
    padding: 40px var(--site-padding-x);
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 1025px) {
  .partners-container {
    padding: 60px var(--site-padding-x);
  }
}

.partners-left {
  flex: 1.5;
}

.partners-right {
  flex: 2;
  position: relative;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.partners-section .marquee {
  overflow: hidden;
}
@media (min-width: 769px) {
  .partners-section .marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
}

.partners-marquee {
  margin-bottom: 1rem;
}

.marquee-partner-card,
.marquee-partner-morgan {
  width: 120px;
  height: 40px;
  padding: 6px 12px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-partner-card {
  background: #fff;
}
.marquee-partner-morgan {
  background: #112d50;
}
@media (min-width: 768px) {
  .marquee-partner-card,
  .marquee-partner-morgan {
    width: 150px;
    height: 60px;
    padding: 12px 20px;
  }
}

.marquee img {
  width: 100%;
  height: 30px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .marquee img {
    height: 100%;
  }
}

.partners-section .marquee-left .marquee-track {
  animation: partners-scroll-left 100s linear infinite;
}

.partners-section .marquee-right .marquee-track {
  animation: partners-scroll-right 100s linear infinite;
}

@keyframes partners-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes partners-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ============================= */
/* Captured Moments             */
/* ============================= */

.gallerySwiper .swiper-wrapper {
  align-items: center;
}

.gallerySwiper .swiper-slide {
  width: clamp(280px, 90vw, 400px);
  box-sizing: border-box;
}

.gallerySwiper .slide {
  width: 100%;
  min-width: 0;
}

.gallerySwiper .slide.large,
.gallerySwiper .slide.small {
  width: 100%;
  min-width: 0;
}

.gallerySwiper .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-title {
  width: 100%;
  padding-bottom: 1re;
  padding-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  text-transform: capitalize;
}

/* ============================================================ */
/* PART 3: PAGE-WISE (Page-specific styles)                   */
/* ============================================================ */

/* ============================= */
/* Page: About                    */
/* ============================= */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mission-card {
  background-color: #f8fafc;
  border: #e5e5e5;
  border-width: 1px;
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background-color: #1d587a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card h3 {
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.mission-card p {
  color: #666666;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.our-mission {
  margin-bottom: 60px !important;
}

.hero {
  position: relative;
  background: url("../images/comboHero.png") center 20% / cover no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: var(--site-padding-x);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-padding-x);
}

.breadcrumb {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.subtitle {
  font-size: 20px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 16px;
}

.info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #ffffff;
}

.info i {
  margin-right: 8px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars i {
  color: #f5b301;
  font-size: 1.2rem;
  vertical-align: middle;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
}

@media (max-width: 360px) {
  .hero {
    padding: 20px 15px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .info {
    gap: 10px;
    font-size: 0.85rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
  }
  .hero {
    padding: 20px 15px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .filter-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-select {
    width: 100%;
  }
  .container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .main-title {
    font-size: 1.75rem;
  }
  .hero {
    padding: 20px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .main-title {
    font-size: 2rem;
  }
  .hero {
    padding: 20px 15px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (min-width: 1440px) {
  .container {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .main-title {
    font-size: 2.5rem;
  }
}

/* ============================= */
/* Page: Our Centers              */
/* ============================= */

.contact-wrapper,
.locations,
.form-box,
.form-box input,
.form-box textarea,
.form-box select {
  box-sizing: border-box;
}

.contact-section {
  width: 100%;
  background-color: rgba(248, 250, 252, 1);
  overflow-x: hidden;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(29, 88, 122, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.contact-card.left-info {
  padding: 32px;
}

@media (max-width: 768px) {
  .contact-card.left-info {
    padding: 14px;
  }
}

.contact-heading.section-title {
  font-size: 2rem;
  margin-top: 12px;
  margin-bottom: 32px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .contact-heading.section-title {
    font-size: 2.5rem;
  }
}

.contact-form-card.form-box {
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  padding: 40px 32px;
  transition: box-shadow 0.3s ease;
}

.contact-form-card.form-box:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card.form-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(29, 88, 122, 0.15);
}

.contact-form-card.form-box .row {
  margin-bottom: 20px;
}

.contact-form-card.form-box textarea {
  margin-bottom: 20px;
}

.contact-form-card.form-box .file-row {
  margin-bottom: 24px;
}

.contact-socials.footer-socials {
  margin-top: 8px;
  gap: 12px;
}

.contact-social-icon.footer-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.contact-social-icon.footer-icon:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.contact-social-icon.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.info-block .labels {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.contact-wrapper,
.locations {
  width: 100%;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
  margin-left: auto;
  margin-right: auto;
  color: #333;
  line-height: 1.6;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.locations {
  padding-top: 50px;
  padding-bottom: 100px;
}

h5 {
  font-size: 16px;
  color: rgba(29, 88, 122, 1);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

h5::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: rgba(29, 88, 122, 1);
}

.locations h5 {
  justify-content: flex-start;
}

.left-info {
  flex: 1;
  min-width: 300px;
}

.left-info h1 {
  font-size: 2.8em;
  color: #000;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.info-block {
  margin-bottom: 25px;
}

.info-block .label {
  font-size: 0.75em;
  color: #666;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.info-block .value {
  font-size: 1.1em;
  color: #2c3e50;
  margin: 0;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.form-box {
  flex: 1;
  min-width: 350px;
  background-color: #fff;
  border-radius: 8px;
}

.form-box h3 {
  font-size: 1.8em;
  color: #2c3e50;
  margin-top: 0;
  font-weight: normal;
}

.form-box .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
  outline: none;
  border-color: #999999;
}

.form-box ::placeholder {
  color: #999;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
}

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

.phone-box {
  display: flex;
  width: 100%;
  gap: 10px;
}

.phone-box select {
  flex: 0 0 80px;
  padding: 12px 8px;
  font-size: 0.9em;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  background-size: 0.7em;
}

.phone-box input {
  flex: 1;
}

.file-row {
  margin-bottom: 25px;
}

.file-row label {
  font-size: 0.9em;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-row .file-desc {
  font-size: 0.75em;
  color: #999;
  margin: 5px 0 0 0;
}

.btn {
  background-color: #164d69;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn:hover {
  background-color: #34495e;
}

.contact-divider {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
  box-sizing: border-box;
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-divider div {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--section-gap);
  margin-top: 30px;
  text-align: left;
}

.location-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.location-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.loc.location-card h3 {
  font-size: 1.2em;
  color: #1d587a;
  margin-top: 0;
  margin-bottom: 15px;
}

.loc.location-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 10px;
}

.new-box.location-card {
  background: linear-gradient(135deg, rgba(29, 88, 122, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
  color: #1d587a;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px dashed rgba(29, 88, 122, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .contact-wrapper,
  .locations,
  .contact-divider {
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (min-width: 1280px) {
  .contact-wrapper,
  .locations,
  .contact-divider {
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .left-info,
  .form-box {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .contact-wrapper {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .locations {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .contact-divider {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .left-info h1 {
    font-size: 2.2em;
  }

  .contact-form-card.form-box {
    padding: 28px 20px;
  }

  .contact-form-card.form-box h3 {
    font-size: 1.35rem;
    margin-bottom: 22px;
    padding-bottom: 12px;
  }

  .form-box .row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .form-box .row input,
  .form-box .row .phone-box {
    margin-bottom: 20px;
    width: 100%;
  }

  .phone-box {
    flex-direction: column;
    gap: 0;
  }

  .phone-box select {
    flex: 0 0 auto;
    margin-bottom: 20px;
  }
}
.map-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.gj-map {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gj-map {
    width: 800px;
    height: 650px;
  }
}

/* ============================= */
/* Page: Fee (ACCA Fees – course cards swiper) */
/* ============================= */

.feesStudentSwiper .swiper-slide {
  width: clamp(320px, 90vw, 500px);
  box-sizing: border-box;
}

.feesStudentSwiper .hero-course-card {
  width: 100%;
  min-width: 0;
}

/* ============================= */
/* Page: Blog Details             */
/* ============================= */

.blog-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.back-to-blogs {
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1d587a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #004999;
}

.blog-header {
  margin-bottom: 2rem;
}

.blog-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-meta {
  color: #666;
  font-size: 0.95rem;
}

.blog-author {
  color: #858585;
}

.blog-thumbnail-placeholder {
  width: 100%;
  height: 676px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  object-fit: cover;
}

.blog-thumbnail-placeholder p {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.blog-update-info {
  margin-bottom: 1.5rem;
}

.blog-update-info p {
  margin: 0;
}

.blog-intro {
  margin-bottom: 1.5rem;
}

.blog-intro p {
  margin: 0;
}

.blog-section {
  margin-bottom: 1.5rem;
}

.blog-section p {
  margin: 0.5rem 0;
}

.blog-section ol,
.blog-section ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.blog-section li {
  margin-bottom: 0.5rem;
}

.blog-closing {
  margin-top: 1.5rem;
}

.blog-closing p {
  margin: 0;
}
.blog-para {
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 25px;
  word-spacing: 6px;
  width: 78%;
  font-size: 17px;
}
.blog-para-one {
  line-height: 1.4;
  margin-top: -13px;
  margin-bottom: 25px;
  word-spacing: 6px;
  width: 78%;
}

.mild {
  font-weight: 600;
}
.blog-section-one {
  margin-top: 2rem;
}
.blog-heading {
  word-spacing: 4px;
  width: 80%;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.blog-div {
  margin-top: 1.4rem;
}
.blog-div ul {
  padding: 0 50px;
  margin-top: 1rem;
}
.blog-div ul li {
  padding: 11px;
}
.blog-para-two {
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 10px;
  word-spacing: 4px;
  width: 78%;
  font-size: 17px;
}
.blog-para-three {
  margin-top: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}
.blog-para-four {
  margin-bottom: 15px;
}
.blog-div-one {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5rem;
}
.blog-div-two {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-div-three {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-div-four {
  margin-top: 0rem;
}
.blog-para-five {
  margin-top: 1rem;
}
.blog-div-five {
  margin-bottom: 1.8rem;
}
.blog-div-six {
  margin-top: 1.6rem;
  padding: 0 20px;
}
.blog-div-seven {
  margin-top: -2rem;
}
.blog-para-six {
  word-spacing: 4px;
}
.third-blog-header {
  width: 90%;
}
.third-blog-div {
  margin-top: -1rem;
}
.blog-heading-one {
  margin-top: 1.5rem;
}
.blog-para-seven {
  margin-top: -1rem;
}
.blog-div-eight ul {
  margin-top: 2rem;
}
.blog-div-nine {
  margin-top: -1rem;
  margin-bottom: 25px;
}
.blog-div-ten {
  margin-top: 2rem;
}
@media (max-width: 1080px) {
  .blog-thumbnail-placeholder {
    height: 600px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .blog-thumbnail-placeholder {
    height: 600px;
  }

  .blog-thumbnail-placeholder p {
    font-size: 1.2rem;
  }

  .blog-content,
  .blog-content * {
    font-size: 16px !important;
  }
}
@media (min-width: 692px) and (max-width: 968px) {
  .blog-thumbnail-placeholder {
    height: 467px;
    width: 100%;
  }
}
@media (max-width: 690px) {
  .blog-thumbnail-placeholder {
    height: 341px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .blog-thumbnail-placeholder {
    height: 231px;
  }
}
@media (max-width: 386px) {
  .blog-thumbnail-placeholder {
    height: 180px;
    width: 100%;
  }
}
@media (max-width: 295px) {
  .blog-thumbnail-placeholder {
    height: 150px;
    width: 100%;
  }
}
@media (max-width: 254px) {
  .blog-thumbnail-placeholder {
    height: 173px;
    width: 100%;
  }
}

/* ============================= */
/* Page: Cfa                      */
/* ============================= */

.career {
  background: #f7f9fb;
  color: #143c57;
  padding: 70px 0;
  max-width: 100%;
}

.career-container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
}

.career-subtitle {
  color: rgba(29, 88, 122, 1);
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.career-subtitle::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #1d587a;
  margin-left: 10px;
  vertical-align: middle;
}

.career-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-top: 16px;
}

.career-desc {
  font-size: 18px;
  color: #555;
  margin: 8px 0 40px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 25px;
}

.career-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 25px;
  background: #fff;
  border: 1px solid #e1e7ec;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

.career-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.career-box img {
  width: 48px;
  height: 48px;
  background: #e8eef4;
  padding: 10px;
  border-radius: 10px;
}

.career-box span {
  font-size: 1.15rem;
  font-weight: 600;
  color: #143c57;
}

@media (max-width: 992px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .career-title {
    font-size: 2rem;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary: #1d587a;
  --primary-dark: #1f2937;
  --bg-light: #1d587a66;
  --text-dark: #000;
  --text-gray: #6b6b6b;
  --white: #fff;
}

.login-wrapper {
  display: flex;
  height: 100vh;
}

.login-wrapper .form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.left-panel {
  width: 35%;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("../images/login-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loginFooter {
  margin-top: auto;
  font-size: 12px;
  color: white;
  font-weight: 500;
}

.login-logo {
  height: 30px;
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-panel {
  width: 65%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
}

/* Registration pages: hide left panel only on mobile */
@media (max-width: 880px) {
  .page-register .left-panel {
    display: none;
  }

  .page-register .right-panel {
    width: 100%;
    border-radius: 0;
  }
}

/* Registration pages: more space between input fields */
.page-register .form-box {
  gap: 22px;
}

.page-register .name-row {
  gap: 20px;
}

.page-register .form-row-three {
  gap: 20px;
}

.login-box {
  width: 100%;
  max-width: 500px;
}

.login-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-align: center;
}

.login-wrapper .login-box label,
.login-wrapper .right-panel label {
  font-weight: 600;
  font-size: 12px;
  margin: 6px 0 4px;
  display: block;
  color: #5e5e5e;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d3d2d2;
  font-size: 15px;
}

.login-wrapper .right-panel input,
.login-wrapper .right-panel select {
  padding: 10px 12px;
}

.password-field {
  display: flex;
  align-items: center;
  position: relative;
}

.eye-icon {
  width: 18px;
  cursor: pointer;
  position: absolute;
  right: 12px;
}

.forgot {
  text-align: right;
  margin-top: 4px;
  margin-bottom: 12px;
}

.forgot a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.btn-login {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border: none;
  height: 36px;
}

.register-text {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #5e5e5e;
}

.register-text a {
  color: var(--primary);
}

input::placeholder,
textarea::placeholder {
  color: #d1d5db !important;
  opacity: 1;
}

@media (max-width: 880px) {
  .login-wrapper {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 100%;
    height: auto;
  }

  .left-panel {
    padding: 30px;
    text-align: center;
  }

  .author-box {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .left-panel {
    width: 100%;
    padding: 40px;
    justify-content: flex-start;
    border-radius: 0;
    text-align: center;
    background: none;
  }

  .loginFooter {
    display: none;
  }

  .login-wrapper {
    flex-direction: column;
  }

  .right-panel {
    width: 100%;
    padding: 20px;
  }

  .login-box {
    width: 100%;
    padding: 0;
  }

  .login-box h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
  }

  .name-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-row-three {
    flex-direction: column;
    gap: 12px;
  }

  .form-row-three .input-options {
    width: 100%;
  }

  .phone-wrapper {
    height: 48px;
  }

  .phone-select {
    min-width: 110px;
    padding: 0 10px;
    gap: 5px;
  }

  .phone-input {
    padding: 0 10px;
  }

  .btn-login {
    width: 100%;
    height: 48px;
    font-size: 15px;
  }

  .register-text {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .login-wrapper {
    flex-direction: column;
    background: #fff;
  }

  .right-panel {
    width: 100%;
    padding: 16px var(--site-padding-x);
    border-radius: 0;
  }

  .login-box h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
  }

  .name-row {
    flex-direction: column;
    gap: 12px;
  }

  .name-row .input-options {
    width: 100% !important;
  }

  .phone-wrapper {
    height: 46px;
  }

  .phone-select {
    min-width: 95px;
    padding: 0 10px;
  }

  .country-code {
    font-size: 13px;
  }

  .phone-input {
    padding: 0 10px;
  }

  .btn-login {
    height: 46px;
    font-size: 15px;
  }

  .register-text {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
  }

  .country-dropdown {
    width: 90%;
    left: 5% !important;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .login-wrapper {
    flex-direction: column;
    background: #fff;
  }

  .left-panel {
    width: 100%;
    padding: 40px;
    justify-content: flex-start;
    border-radius: 0;
    text-align: center;
    background: none;
  }

  .loginFooter {
    display: none;
  }

  .right-panel {
    width: 100%;
    padding: 24px var(--site-padding-x);
    border-radius: 0;
  }

  .login-box {
    max-width: 480px;
    margin: 0 auto;
  }

  .name-row {
    flex-direction: row;
    gap: 16px;
  }

  .phone-select {
    min-width: 120px;
  }

  .btn-login {
    height: 48px;
  }
}

@media (min-width: 1025px) {
  .login-wrapper {
    flex-direction: row;
    height: 100vh;
  }

  .left-panel {
    display: flex;
    width: 38%;
  }

  .right-panel {
    width: 62%;
    padding: 40px 48px;
  }

  .login-box {
    max-width: 450px;
  }
}

@media (min-width: 1440px) {
  .right-panel {
    padding: 48px 64px;
  }
}

/* ============================= */
/* Page: Hero Carousel            */
/* ============================= */

.fees-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 60px var(--site-padding-x);
  overflow: hidden;
}

.fees-hero .overlay {
  display: none;
}

.fees-hero .content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.fees-hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 44px;
}

.fees-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.fees-hero .google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.fees-hero .rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.fees-hero .google-rating .google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fees-hero .google-rating .rating-score {
  font-size: 16px;
  font-weight: 600;
  color: #ffc107;
  margin: 0;
}

.fees-hero .google-rating .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fees-hero .google-rating .stars img {
  width: 16px;
  height: 16px;
}

.fees-hero .rating-border {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, #656565, transparent);
}

.fees-hero .aspirants {
  font-size: 14px;
  font-weight: 500;
}

.fees-hero .subtitle {
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.fees-hero .hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fees-hero .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 4px;
  margin-top: 0;
}

.fees-hero .info > div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

.fees-hero .info img {
  flex-shrink: 0;
}

.fees-hero .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fees-heros .rating .stars {
  display: flex;
  gap: 4px;
  color: #ffc107;
  font-size: 18px;
}

.fees-hero .rating span {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

/* Fees hero – mobile responsive (align with site padding/margin/text) */
@media (max-width: 1024px) {
  .fees-hero {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .fees-hero-left {
    margin-bottom: 28px;
    gap: 12px;
  }

  .fees-hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .fees-hero .rating-section {
    gap: 10px;
    flex-wrap: wrap;
  }

  .fees-hero .google-rating {
    padding: 6px 12px;
  }

  .fees-hero .google-rating .rating-score {
    font-size: 15px;
  }

  .fees-hero .google-rating .stars img {
    width: 14px;
    height: 14px;
  }

  .fees-hero .rating-border {
    height: 36px;
  }

  .fees-hero .aspirants {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .fees-hero {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .fees-hero-left {
    margin-bottom: 24px;
    gap: 10px;
  }

  .fees-hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .fees-hero .rating-section {
    gap: 8px;
  }

  .fees-hero .google-rating {
    padding: 6px 10px;
  }

  .fees-hero .google-rating .google-icon {
    width: 18px;
    height: 18px;
  }

  .fees-hero .google-rating .rating-score {
    font-size: 14px;
  }

  .fees-hero .google-rating .stars img {
    width: 12px;
    height: 12px;
  }

  .fees-hero .rating-border {
    height: 32px;
  }

  .fees-hero .aspirants {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .fees-hero {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .fees-hero-left {
    margin-bottom: 20px;
    gap: 8px;
  }

  .fees-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .fees-hero .rating-section {
    gap: 6px;
    justify-content: flex-start;
  }

  .fees-hero .google-rating {
    padding: 5px 10px;
  }

  .fees-hero .google-rating .google-icon {
    width: 16px;
    height: 16px;
  }

  .fees-hero .google-rating .rating-score {
    font-size: 13px;
  }

  .fees-hero .google-rating .stars img {
    width: 11px;
    height: 11px;
  }

  .fees-hero .rating-border {
    height: 28px;
  }

  .fees-hero .aspirants {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .fees-hero {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .fees-hero-left {
    margin-bottom: 16px;
    gap: 6px;
  }

  .fees-hero h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .fees-hero .google-rating .rating-score {
    font-size: 12px;
  }

  .fees-hero .aspirants {
    font-size: 10px;
  }
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.hero-carousel {
  display: flex;
  gap: 16px;
  animation: scrollLeft 30s linear infinite;
}

.hero-carousel:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-course-card {
  position: relative;
  width: 500px;
  height: 390px;
  background-image: url("../images/combos/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.hero-course-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.card-content-wrapper {
  display: flex;
  gap: 0;
  height: 100%;
  position: relative;
  z-index: 1;
}

.card-left-column {
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
  z-index: 1;
  flex: 1;
  gap: 36px;
}

.card-right-column {
  position: absolute;
  right: -85px;
  bottom: -5px;
  top: 20px;
  padding: 0;
  margin: 0px;
  width: auto;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.save-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc107;
  color: #1a1a1a;
  padding: 6px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  width: 100px;
  border: 1.5px solid #1d587a;
  box-shadow: 0px 4px 4px 0px #1d587a40;
}

.best-seller-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.best-seller-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.best-seller-badge .badge-text {
  display: none;
}

.card-title-hero {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: pre-line;
  color: #ffffff;
}
.card-subtitles {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.card-subtitle {
  font-size: 14px;
  color: white;
  font-weight: 600;
  margin: 0 0 16px 0;
  white-space: nowrap;
}

.card-badges {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid white;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.badge-access {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid white;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.badge-num {
  font-weight: 700;
  font-size: 14px;
}

.badge-label {
  font-weight: 400;
  font-size: 11px;
}

.card-footer-hero {
  display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1.6px solid #184762;
  padding: 16px 0 15px 20px;
  z-index: 1;
  margin-top: 36px;
}

.price-section-hero {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.add-to-cart-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.current-price-hero {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}

.original-price-hero {
  font-size: 16px;
  color: #0000006b;
  font-weight: 500;
  text-decoration: line-through;
}

.add-to-cart-hero {
  background: white;
  color: #1e3a5f;
  border: none;
  padding: 12px 24px;
  margin-top: 10px;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 150px;
}

.add-to-cart-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.instructor-image-hero {
  position: relative;
  height: 100%;
  max-height: 120%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: bottom right;
  display: block;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .hero-left {
    flex-direction: column;
    gap: 30px;
  }

  .hero .subtitle {
    max-width: 100%;
  }

  .hero-info {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero .info {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 14px;
  }

  .hero .info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-carousel-wrapper {
    padding: 0 10px;
  }

  .hero-carousel {
    gap: 12px;
  }

  .hero-course-card {
    min-width: 50vw !important;
    max-width: 330px;
    min-width: 300px;
    width: 298px;
    height: 219px;
  }

  .card-left-column {
    padding: 14px;
    flex: 1;
    min-width: 0;
    gap: 12px;
  }

  .card-footer-hero {
    margin: 0;
    padding: 10px;
  }

  .card-title-hero {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0 0 4px 0;
  }

  .card-subtitles {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
  }

  .card-subtitle {
    font-size: 10px;
    margin: 0 0 8px 0;
    white-space: normal;
  }

  .current-price-hero {
    font-size: 18px;
  }

  .original-price-hero {
    font-size: 11px;
  }

  .card-right-column {
    right: -35px;
    top: -18px;
    max-width: 45%;
  }

  .instructor-image-hero {
    max-height: 110%;
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .add-to-cart-hero {
    padding: 8px 14px;
    font-size: 11px;
    width: 110px;
    margin-top: 6px;
  }

  .badge-pill {
    font-size: 8px;
    padding: 3px 6px;
    gap: 1px;
  }

  .badge-access {
    font-size: 8px;
    padding: 3px 6px;
  }

  .badge-num {
    font-size: 11px;
  }

  .badge-label {
    font-size: 8px;
  }

  .card-badges {
    gap: 6px;
    flex-wrap: wrap;
  }

  .save-badge {
    padding: 4px 11px;
    font-size: 10px;
    width: 77px;
  }

  .best-seller-badge {
    width: 54px;
    height: 54px;
    top: 10px;
    right: 10px;
    padding: 5px;
  }

  .price-section-hero {
    margin-top: 6px;
    gap: 4px;
  }

  .add-to-cart-section .btn-primary {
    padding: 8px 12px;
  }

  .add-to-cart-section {
    margin: 0;
  }
}

@media (max-width: 360px) {
  .hero-carousel-wrapper {
    padding: 0 8px;
  }

  .hero-carousel {
    gap: 10px;
  }

  .hero-course-card {
    width: calc(100vw - 32px);
    max-width: 300px;
    height: 180px;
    min-width: 280px;
  }

  .card-left-column {
    padding: 12px;
  }

  .card-title-hero {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0 0 3px 0;
    line-height: 1.1;
  }

  .card-subtitles {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 0 0 3px 0;
  }

  .card-subtitle {
    font-size: 9px;
    margin: 0 0 6px 0;
  }

  .current-price-hero {
    font-size: 16px;
  }

  .original-price-hero {
    font-size: 10px;
  }

  .card-right-column {
    right: -20px;
    bottom: -12px;
    max-width: 40%;
  }

  .instructor-image-hero {
    max-height: 105%;
    max-width: 100%;
  }

  .add-to-cart-hero {
    padding: 6px 12px;
    font-size: 10px;
    width: 100px;
    margin-top: 5px;
  }

  .badge-pill {
    font-size: 7px;
    padding: 2px 5px;
    gap: 1px;
  }

  .badge-access {
    font-size: 7px;
    padding: 2px 5px;
  }

  .badge-num {
    font-size: 10px;
  }

  .badge-label {
    font-size: 7px;
  }

  .card-badges {
    gap: 5px;
  }

  .save-badge {
    padding: 2px 5px;
    font-size: 9px;
    width: 65px;
  }

  .best-seller-badge {
    width: 35px;
    height: 35px;
    top: 8px;
    right: 8px;
    padding: 4px;
  }

  .price-section-hero {
    margin-top: 5px;
    gap: 3px;
  }
}

/* ============================= */
/* Page: Register                 */
/* ============================= */

.name-row {
  display: flex;
}

.input-options label {
  color: #6b7280;
  font-weight: 600;
  font-size: 12px;
}

.name-row input,
.phone-box input {
  width: 100%;
}

.name-row .input-options {
  width: 50%;
}

.form-row-three {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-three .input-options {
  flex: 1;
  min-width: 0;
}

.password-title {
  color: #6b7280;
  font-weight: 600;
  font-size: 12px;
}

.profile-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 8px;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #d3d2d2;
  border-radius: 6px;
  height: 43px;
  overflow: hidden;
  background: #fff;
}

.phone-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-right: 1px solid #e2e6ea;
  height: 100%;
  cursor: pointer;
  min-width: 100px;
}

.flag {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.country-code {
  font-size: 12px;
  font-weight: 500;
  color: #1f2937;
}

.arrow {
  width: 14px;
  height: 14px;
}

.phone-input {
  border: none;
  outline: none;
  flex: 1;
  height: 100%;
  padding: 0 14px;
  font-size: 16px;
  color: #1d222b;
}

.phone-input::placeholder {
  color: #c2c8d0;
}

.country-dropdown {
  position: absolute;
  background: #fff;
  width: 260px;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 200;
}

.country-search {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccd3db;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 8px;
}

.country-list {
  max-height: 180px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
}

.country-item:hover {
  background: #f5f8fc;
}

.country-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.mode-radio-button {
  display: flex;
  gap: 16px;
}

.mode-radio-button label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #5e5e5e;
  cursor: pointer;
}

.custom-dropdown-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.custom-dropdown-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.custom-dropdown-input {
  width: 100%;
  padding: 12px 38px 12px 14px;
  border-radius: 6px;
  border: 1px solid #d3d2d2;
  font-size: 15px;
  background: #fff;
  color: #1d222b;
  cursor: pointer;
  outline: none;
  transition: border 0.2s;
}
.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d3d2d2;
  font-size: 15px;
  background: #fff;
  color: #1d222b;
  cursor: pointer;
  outline: none;
  transition: border 0.2s;
}
.custom-dropdown-input.active,
.custom-dropdown-input:focus {
  border: 1.5px solid #1d587a;
}
.custom-dropdown-input::placeholder {
  color: #d1d5db;
  opacity: 1;
}

.custom-dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 200;
  padding: 8px 0;
  margin-top: 2px;
}
.custom-dropdown-menu .dropdown-item {
  padding: 10px 18px;
  font-size: 15px;
  color: #1d222b;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.custom-dropdown-menu .dropdown-item:hover {
  background: #f5f8fc;
}

.custom-dropdown-menu .dropdown-item.selected {
  background: #e6f0fa;
  color: #1d587a;
  font-weight: 600;
  border-radius: initial;
}

.custom-dropdown .dropdown-menu:not(.hidden) {
  display: block;
}

.register-step3.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000bf;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.register-step3.modal-overlay.hidden {
  display: none;
}

.register-step3 .modal-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 24px;
  max-width: 466px;
  width: 90vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  min-height: auto;
}

.register-step3 .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.register-step3 .modal-message {
  font-size: 16px;
  color: #5e5e5e;
  margin: 0;
  line-height: 1.5;
}

.hidden {
  display: none;
}

/* ============================= */
/* Page: Bt Hero Section          */
/* ============================= */

.bt-hero-section {
  position: relative;
  background: url("../images/hero/bg.png") center/cover no-repeat;
  padding: 120px 0 140px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.bt-hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

.bt-hero-container {
  position: relative;
  width: 100%;
  padding: 0 var(--site-padding-x);
  margin-left: auto;
  margin-right: auto;
}

.bt-breadcrumb {
  font-size: 14px;
  margin-bottom: 22px;
  color: #f1f1f1;
  opacity: 0.9;
}

.bt-breadcrumb a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
}

.bt-breadcrumb span {
  margin: 0 6px;
  opacity: 0.7;
}

.bt-breadcrumb .active {
  font-weight: 600;
  opacity: 1;
}

.bt-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.25;
}

.bt-subtext {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 28px;
}

.bt-stats-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 18px;
}

.bt-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
}

.bt-stat img {
  width: 20px;
  height: 20px;
}

.bt-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.bt-rating img {
  width: 18px;
  height: 18px;
}

.bt-rating span {
  margin-left: 8px;
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .bt-title {
    font-size: 30px;
  }
  .bt-subtext {
    font-size: 15px;
  }
  .bt-stats-wrapper {
    flex-wrap: wrap;
    gap: 18px;
  }
  .bt-hero-section {
    padding: 80px 0 100px;
  }
}

@media (max-width: 1024px) {
  .bt-hero-container {
    padding: 0 var(--site-padding-x);
  }
}

@media (max-width: 768px) {
  .bt-hero-container {
    padding: 0 var(--site-padding-x);
  }

  .bt-title {
    font-size: 28px;
    line-height: 36px;
  }

  .bt-subtext {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
  }

  .bt-stats-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bt-stat {
    font-size: 14px;
  }

  .bt-rating span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bt-title {
    font-size: 24px;
    line-height: 32px;
  }

  .bt-stat img {
    width: 16px;
    height: 16px;
  }
}

/* ============================= */
/* Page: Filter Tabs              */
/* ============================= */

.filter-tabs-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #666;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
}

.filter-tab:hover {
  border-color: #2c5f7c;
  color: #2c5f7c;
  background: rgba(44, 95, 124, 0.05);
}

.filter-tab.active {
  background: #2c5f7c;
  border-color: #2c5f7c;
  color: white;
}

.tab-badge {
  background: #f0f0f0;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-tab.active .tab-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.showing-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.sort-icon {
  width: 16px;
  height: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .filter-tabs-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .filter-tabs-wrapper {
    margin-bottom: 24px;
    gap: 12px;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }

  .tab-badge {
    padding: 2px 6px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .filter-tabs-wrapper {
    margin-bottom: 20px;
    gap: 10px;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .tab-badge {
    padding: 2px 5px;
    font-size: 10px;
  }
}

/* ============================= */
/* Page: Cart                     */
/* ============================= */

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-padding-x);
}

.subtitle {
  font-size: 20px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 16px;
}

.cart-hero .subtitle {
  width: 50%;
}

.cart-grid {
  margin-top: 40px;
}

.cart-wrapper {
  display: flex;
  gap: 30px;
}

.cart-left {
  width: 70%;
}

.cart-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.cart-thumb {
  width: 223px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-info {
  margin-left: 20px;
  flex-grow: 1;
}

.cart-info .card-stats {
  border-bottom: none;
  padding: 0;
}

.cart-info .cart-instructor {
  margin: 16px 0;
}
.cart-course-name {
  font-size: 15px;
  font-weight: 700;
}

.cart-instructor {
  font-size: 15px;
  color: #5e5e5e;
  margin: 5px 0;
  font-weight: 500;
}

.cart-price-box {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-price {
  font-size: 20px;
  font-weight: 700;
  color: #1d587a;
}

.cart-old-price {
  text-decoration: line-through;
  color: #9c9c9c;
  font-size: 14px;
  font-weight: 500;
  color: #5e5e5e;
}

.cart-discount {
  background: #00b67a1a;
  color: #00b67a;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 82px;
  font-weight: 500;
}

.cart-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
}

.cart-summary {
  width: 30%;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-summary h3 {
  font-weight: 600;
  font-size: 16px;
}

.cart-summary-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
}

.summary-title {
  font-size: 16px;
  font-weight: 500;
  color: #5e5e5e;
}

.summary-price {
  font-weight: 600;
  font-size: 16px;
}

.summary-total {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-weight: 600;
  font-size: 18px;
}

.total-amount {
  font-size: 18px;
  font-weight: 700;
}

.coupon-label {
  font-size: 14px;
  display: block;
  font-weight: 600;
  color: #5e5e5e;
  margin: 0;
}

.coupon-box {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.coupon-box input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d0d5dd;
  width: 100%;
}

.coupon-apply-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.coupon-apply-btn input {
  width: 65%;
}

.coupon-apply-btn button {
  width: 35%;
  min-width: 35%;
}

/* Apply button uses common .btn-primary - no extra visual overrides */

.checkout-btn {
  margin-top: 15px;
}

.cart-ratings-info {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.cart-rating {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.mobile-checkout-bar {
  display: none;
}

@media (max-width: 1024px) {
  .cart-wrapper {
    flex-direction: column;
  }

  .cart-left,
  .cart-summary {
    width: 100%;
  }

  .cart-item {
    padding: 14px;
  }

  .cart-thumb {
    width: 180px;
    height: 120px;
  }

  .coupon-apply-btn {
    flex-direction: row;
  }

  .coupon-apply-btn input {
    width: 70%;
  }

  .coupon-apply-btn button {
    width: 30%;
  }

  .checkout-btn {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .cart-hero .subtitle {
    width: 90%;
  }
  .cart-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .cart-left {
    width: 100%;
  }

  .cart-summary {
    width: 100%;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 14px;
  }

  .cart-thumb {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .cart-info {
    margin-left: 0;
  }

  .cart-course-name {
    font-size: 14px;
    line-height: 20px;
  }

  .cart-instructor {
    font-size: 13px;
  }

  .cart-meta,
  .card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .stats-item,
  .cart-ratings-info {
    font-size: 12px;
  }

  .cart-price-box {
    flex-wrap: wrap;
  }

  .cart-price {
    font-size: 18px;
  }

  .cart-delete {
    position: absolute;
    top: auto !important;
    right: 15px;
    bottom: 15px;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-item {
    position: relative;
  }

  .coupon-apply-btn {
    flex-direction: row;
    gap: 10px;
  }

  .coupon-apply-btn input {
    width: 65%;
  }

  .coupon-apply-btn button {
    width: 35%;
  }

  .checkout-btn {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cart-hero .subtitle {
    width: 100%;
  }
  .cart-course-name {
    font-size: 13px;
    font-weight: 600;
  }

  .cart-thumb {
    height: 180px;
  }

  .cart-delete {
    right: 10px;
    bottom: 10px;
    padding: 5px;
  }

  .stats-item,
  .cart-ratings-info {
    font-size: 11px;
    gap: 6px;
  }

  .cart-summary .checkout-btn {
    display: none;
  }

  .mobile-checkout-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-total {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 18px;
  }

  .mobile-total strong {
    font-size: 18px;
    font-weight: 700;
  }

  .mobile-checkout-bar .checkout-btn {
    width: auto;
    padding: 10px 18px;
    height: auto;
  }
}

/* ============================= */
/* Page: Cma                      */
/* ============================= */

.exam-pattern-subtitle {
  letter-spacing: 3px;
  font-weight: 700;
  color: #14476d;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.exam-pattern-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #14476d;
  display: inline-block;
}

.exam-pattern-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #14476d;
}

.exam-pattern-desc {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}
.exam-card-container {
  background-color: rgba(248, 250, 252, 1);
  border-radius: 12px;
  padding: 32px;
}
.exam-pattern-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.exam-pattern-box {
  background: rgba(255, 255, 255, 1);
  border: 1px solid #e6eaef;
  padding: 25px;
  border-radius: 12px;
}

.exam-pattern-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #14476d;
}

.exam-pattern-box-header img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  background: rgba(29, 88, 122, 0.15);
  padding: 8px;
  border-radius: 6px;
}

.exam-pattern-box-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.exam-pattern-box-content p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
}

.exam-pattern-box-content .left {
  flex-grow: 1;
  padding-right: 15px;
}
.exam-pattern-box-content .left-part {
  font-weight: 700;
}

.exam-pattern-box-content .right {
  font-weight: 700;
  color: rgba(29, 88, 122, 1);
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

.exam-pattern-box-content .right span {
  color: #777;
  font-weight: 500;
}
.left-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  line-height: 1;
  font-weight: 700;
  padding-right: 15px;
}

.sub-detail {
  font-size: 12px;
  color: #777;
  font-weight: normal;
  margin-top: 7px;
  line-height: 1.2;
}

.exam-pattern-box-content .right br {
  display: block;
  content: "";
  line-height: 0.5;
}
.exam-pattern-box-content .right {
  display: block;
  text-align: right;
  line-height: 1.2;
}
.exam-pattern-box-content .right:first-child {
  font-size: 16px;
}

.exam-pattern-box-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exam-pattern-box-content > p {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
}

.exam-pattern-box-content > .right.highlight {
  position: relative;
  top: 3px;
  left: 2px;
  margin-top: -10px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(29, 88, 122, 1);
  text-align: right;
  align-self: flex-start;
}

.exam-pattern-divider {
  height: 1px;
  background: #d8dde3;
  margin: 18px 0;
}

.exam-pattern-total {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
}

.exam-pattern-total .right {
  color: #0d4c92;
}

.exam-pattern-box-content.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.exam-pattern-box-content.center-content p {
  margin: 0;
  display: block;
  width: 100%;
}
.exam-pattern-box-content.center-content .prcnt {
  font-size: 32px;
  font-weight: 700;
  font-style: bold;
  color: rgba(29, 88, 122, 1);
}
.exam-pattern-small {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px !important;
}
.exam-pattern-percentage {
  font-size: 38px;
  font-weight: 800;
  color: #0d4c92;
  margin: 0 0 5px 0 !important;
}

.exam-pattern-marks-info {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.exam-pattern-testing-window {
  background: #f9fafc;
  border: 1px solid #e6eaef;
  padding: 25px;
  border-radius: 12px;
}

.exam-pattern-testing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #14476d;
}

.exam-pattern-testing-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.exam-pattern-testing-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.exam-pattern-testing-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.exam-pattern-testing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exam-pattern-testing-box {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  border: 2px solid #d4e3e9;
  color: #14476d;

  border-top: 4px solid rgba(87, 167, 179, 1);
}

@media (max-width: 1024px) {
  .exam-pattern-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exam-pattern-cards {
    grid-template-columns: 1fr;
  }
  .exam-pattern-testing-grid {
    grid-template-columns: 1fr;
  }
  .exam-pattern-title {
    font-size: 32px;
  }
}

/* ============================= */
/* Page: Acca                     */
/* ============================= */

.acca-hero-section {
  max-width: 100% !important;
  color: #fff;
  overflow: hidden;
  background: var(--color-primary);
  min-height: 650px;
  display: flex;
  align-items: center;
}

.acca-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px var(--site-padding-x);
  gap: 2rem;
}
@media (min-width: 769px) {
  .acca-container {
    padding: 0px var(--site-padding-x);
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .acca-container {
    padding: 0px var(--site-padding-x);
  }
}

.acca-left {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .acca-left {
    gap: 1.5rem;
    flex: 1 1 100%;
  }
}
@media (min-width: 1024px) {
  .acca-left {
    flex: 1 1 100%;
  }
}

.acca-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .acca-badge {
    width: 65px;
    height: 65px;
  }
}

.acca-left h1 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .acca-left h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .acca-left h1 {
    font-size: 60px;
    line-height: 60px;
  }
}

.acca-subtext {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .acca-subtext {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .acca-subtext {
    font-size: 28px;
  }
}

.acca-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 769px) {
  .acca-stats {
    justify-content: start;
    gap: 30px;
  }
}

.acca-stats .stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.acca-stats .stat .stat-number {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  line-height: 1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.acca-stats .stat .stat-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}
@media (min-width: 768px) {
  .acca-stats .stat .stat-label {
    font-size: 14px;
  }
}

.acca-stats .stat:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 25px;
}

.acca-stats .digit-scroll div {
  color: #fff;
}

.google-logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}
.google-logo-group img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  width: 100%;
}

.google-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.google-text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.rating-stack {
  display: flex;
  align-items: center;
}

.rating-top-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-stars img {
  width: 16px;
  height: 16px;
}

.rating-number {
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 208, 41, 1);
}

.reviews-text {
  font-size: 0.75rem;
  opacity: 0.75;
  color: #fff;
  margin-top: 2px;
  cursor: pointer;
  text-decoration: none;
}

.acca-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  height: 36px;
}

.acca-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 1025px) {
  .acca-buttons {
    flex-direction: row;
  }
}
.demo-btn-wrapper {
  display: flex;
  gap: 1rem;
}

.acca-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 280px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .acca-right {
    flex: 1 1 100%;
    width: 100%;
    min-width: unset;
  }
}

.cta-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  word-wrap: break-word;
  margin-top: 2rem;
}
@media (min-width: 1025px) {
  .cta-text {
    font-size: 26px;
  }
}

.student-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(10, 60, 90, 1) 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(10, 60, 90, 1) 10%,
    black 90%,
    transparent 100%
  );
}

.studentAlumniSwiper .swiper-slide {
  width: clamp(280px, 90vw, 360px);
  box-sizing: border-box;
}

.studentAlumniSwiper .slide {
  width: 100%;
  min-width: 0;
}
@media (max-width: 768px) {
  .student-slider-wrapper {
    max-width: 330px;
  }
}

.slide {
  min-width: 280px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #eeeeee;
  border-radius: 12px;
}

.slide-image {
  width: 100%;
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
}

.student-data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px;
  background-color: #fff;
  color: #143c57;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  z-index: 3;
}

.student-data h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: #000000;
}

.student-data .exam-info {
  font-size: 14px;
  margin: 2px 0 8px 0;
  opacity: 0.8;
  font-weight: 500;
}

.student-data .ranks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.student-data .rank-item {
  font-size: 14px;
  color: #555;
  line-height: 1.3;
  font-weight: 500;
}

.student-data .rank-item strong {
  font-size: 14px;
  color: #143c57;
  font-weight: 500;
}

.student-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column;
}

.student-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #000000;
}

.exam-badge {
  color: #164d69;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  white-space: nowrap;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 3 - 30px * 3));
  }
}

@media (max-width: 1024px) {
  .rating-row {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .rating-row {
    gap: 15px;
    margin-top: 1rem;
    width: 100%;
  }

  .google-logo {
    width: 22px;
    height: 22px;
  }

  .rating-stars img {
    width: 14px;
    height: 14px;
  }

  .google-text {
    font-size: 1.1rem;
  }

  .google-logo-group {
    flex-wrap: nowrap;
  }

  .slide {
    min-width: 280px;
  }

  .student-data {
    padding: 10px 12px;
  }

  .student-data h4 {
    font-size: 1rem;
  }

  .student-data .exam-info {
    font-size: 0.75rem;
    margin: 1px 0 6px 0;
  }

  .student-data .rank-item {
    font-size: 0.7rem;
  }

  .student-data .rank-item strong {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .google-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .google-logo {
    width: 20px;
    height: 20px;
  }

  .rating-number {
    font-size: 0.9rem;
  }

  .rating-stars img {
    width: 13px;
    height: 13px;
  }

  .reviews-text {
    font-size: 0.7rem;
  }

  .slide {
    min-width: 260px;
  }

  .student-data {
    padding: 10px 10px;
  }

  .student-data h4 {
    font-size: 0.95rem;
  }

  .student-data .exam-info {
    font-size: 0.7rem;
  }

  .student-data .rank-item {
    font-size: 0.65rem;
  }

  .student-data .rank-item strong {
    font-size: 0.75rem;
  }

  .rating-row {
    gap: 12px;
    flex-direction: column;
  }
}

/* ============================= */
/* ============================= */

.what-acca-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
}
@media (min-width: 768px) {
  .what-acca-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .what-acca-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 3rem;
  }
}

.acca-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  gap: 12px;
}

.acca-box-image {
  width: 60px;
  height: 60px;
  background: #ecf1f6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    background-color 200ms ease,
    transform 200ms ease,
    filter 200ms ease;
}

.acca-box-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #143c57;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .acca-box-title {
    font-size: 14px;
  }
}

/* ============================= */
/* ============================= */

.exemption-section {
  background: #fff;
  color: #143c57;
}

.exemption-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.exemption-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .exemption-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 2.5rem;
  }
}

.exemption-title span {
  color: rgba(29, 88, 122, 1);
}

.exemption-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .exemption-tabs {
    gap: 1rem;
  }
}

.exemption-tab {
  font-size: 14px;
  color: #143c57;
  background: #fff;
  border: 1.5px solid #dcdcdc;
  border-radius: 25px;
  padding: 10px 22px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .exemption-tab {
    font-size: 1rem;
  }
}

.exemption-tab.active {
  background: rgba(29, 88, 122, 1);
  color: #fff;
}

.exemption-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 1rem;
}

.exemption-card {
  height: auto;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 14px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 18px 22px;
}
@media (min-width: 768px) {
  .exemption-card {
    padding: 25px 30px;
  }
}

.exemption-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.exemption-title-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .exemption-title-icon {
    width: 28px;
    height: 28px;
  }
}

.exemption-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #143c57;
}
@media (min-width: 768px) {
  .exemption-card-header h3 {
    font-size: 20px;
    font-weight: 700;
  }
}

.exemption-card-content {
  margin-left: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exemption-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
}

.exemption-fee {
  font-size: 2.6rem;
  color: rgba(29, 88, 122, 1);
  margin: 0;
}

.exemption-fee span {
  font-size: 0.9rem;
  color: #555;
  font-weight: 400;
  margin-left: 4px;
}

.exemption-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exemption-tags span {
  border: 1px solid #143c57;
  color: #143c57;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
}

.exemption-dot {
  width: 10px;
  height: 10px;
  object-fit: contain;
}

.exemption-summary {
  font-size: 1rem;
  background: rgba(213, 233, 236, 1);
  border-radius: 10px;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin-top: 1rem;
  padding: 18px 22px;
}

.exemption-summary-heading {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .exemption-summary-heading {
    font-size: 24px;
  }
}

.exemption-summary-text {
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .exemption-summary-text {
    font-size: 16px;
  }
}

.fee-structure {
  margin-top: 40px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
}

.fee-structure-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #143c57;
  margin-bottom: 20px;
}

.fee-structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fee-structure-item {
  background: rgba(248, 250, 252, 1);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.fee-structure-item:first-child {
  background: rgba(248, 250, 252, 1);
  border-color: #dcdcdc;
}

.fee-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

.fee-structure-item span:last-child {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(29, 88, 122, 1);
  margin-top: auto;
  line-height: 1;
  text-align: left;
}

.fee-structure-item span:last-child:empty,
.fee-structure-item span:last-child:contains("-") {
  color: #999;
  font-weight: 500;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .fee-structure {
    padding: 20px;
  }

  .fee-structure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .fee-structure-item {
    padding: 15px;
    min-height: 90px;
  }

  .fee-structure-item span:last-child {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .fee-structure {
    padding: 15px;
  }

  .fee-structure-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fee-structure-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    padding: 15px 20px;
    text-align: left;
  }

  .fee-structure-item span:last-child {
    margin-top: 0;
  }

  .fee-label {
    margin-bottom: 0;
    font-size: 1rem;
  }
}

.syllabus-container {
  background-color: transparent;
  color: #143c57;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.syllabus-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.syllabus-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(29, 88, 122, 1);
  letter-spacing: 2.5px;
  position: relative;
  display: inline-block;
}

.syllabus-header h2::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -70px;
  width: 60px;
  height: 3px;
  background-color: rgba(29, 88, 122, 1);
  display: inline-block;
  vertical-align: middle;
}

.syllabus-header h1 {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0 10px 0;
  line-height: 1.2;
}

.syllabus-header p {
  font-size: 18px;
  color: #718096;
  line-height: 1.6;
  max-width: 800px;
  margin-top: 0;
}

.syllabus-levels {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.syllabus-level-card {
  flex: 1 1 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: transparent;
  border: 1.5px solid #dcdcdc;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 0.5rem;
  padding: 18px 22px;
}
@media (min-width: 768px) {
  .syllabus-level-card {
    gap: 1rem;
    padding: 35px 30px;
  }
}

.syllabus-level-card:hover {
  border-color: #143c57;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.syllabus-level-card.selected {
  border-color: #143c57;
  background-color: transparent;
  color: #143c57;
  box-shadow: 0 5px 15px rgba(20, 60, 87, 0.1);
}

.syllabus-level-card h6 {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .syllabus-level-card h6 {
    font-size: 14px;
  }
}

.syllabus-level-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
@media (min-width: 768px) {
  .syllabus-level-card h3 {
    font-size: 24px;
    font-weight: 600;
  }
}

.syllabus-level-card p {
  font-size: 14px;
  font-weight: 500;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .syllabus-level-card p {
    font-size: 16px;
  }
}

.syllabus-radio-button {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 22px;
  height: 22px;
  border: 2px solid #a0aec0;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .syllabus-radio-button {
    top: 35px;
  }
}
.syllabus-level-card:hover .syllabus-radio-button::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #a0aec0;
  border-radius: 50%;
}
.syllabus-level-card.selected .syllabus-radio-button {
  border-color: #143c57;
  background-color: #fff;
}
.syllabus-level-card.selected .syllabus-radio-button::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #143c57;
  border-radius: 50%;
}

.syllabus-subjects {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  background: #f8fafc;
  border-radius: 14px;
  padding: 1rem;
  margin-top: 1rem;
}

.syllabus-subject-card {
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid #e2e8f0;
  border-radius: 14px;

  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  width: 100%;
  padding: 18px 22px;
}
@media (min-width: 768px) {
  .syllabus-subject-card {
    flex: 0 0 calc(33.333% - 13.333px);
    padding: 25px 30px;
  }
}

.syllabus-subject-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: #ccc;
}

.syllabus-subject-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}
@media (min-width: 768px) {
  .syllabus-subject-card h4 {
    font-size: 20px;
  }
}

/* ============================= */
/* ============================= */
.acca-numbers-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1d587a;
  margin-top: 80px !important;
  padding: 34px var(--site-padding-x);
}
@media (min-width: 768px) {
  .acca-numbers-section {
    padding: 40px var(--site-padding-x);
  }
}
@media (min-width: 1025px) {
  .acca-numbers-section {
    padding: 60px var(--site-padding-x);
  }
}

.acca-numbers-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
}

@media (min-width: 768px) {
  .acca-numbers-container {
    padding: 0 var(--site-padding-x) 80px var(--site-padding-x);
  }
}

@media (min-width: 1280px) {
  .acca-numbers-container {
    padding: 0 var(--site-padding-x) 80px var(--site-padding-x);
  }
}

.acca-numbers-header {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .acca-numbers-header {
    margin-bottom: 40px;
  }
}

.acca-numbers-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .acca-numbers-header h2 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .acca-numbers-header h2 {
    font-size: 30px;
  }
}

.acca-numbers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2rem;
  column-gap: 1.5rem;
  justify-items: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 640px) {
  .acca-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .acca-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.acca-numbers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
}

.acca-numbers-icon {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .acca-numbers-icon {
    height: 65px;
  }
}

@media (min-width: 1024px) {
  .acca-numbers-icon {
    height: 75px;
  }
}

.acca-numbers-text {
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .acca-numbers-text {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .acca-numbers-text {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .acca-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .acca-numbers-icon {
    height: 60px;
  }

  .acca-numbers-text {
    font-size: 14px;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .acca-numbers-container {
    padding: 40px 20px;
  }

  .acca-numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .acca-numbers-icon {
    height: 50px;
  }

  .acca-numbers-text {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 520px) {
  .acca-numbers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .acca-numbers-icon {
    height: 40px;
  }

  .acca-numbers-text {
    font-size: 12px;
    max-width: 200px;
  }
}

/* ============================= */
/* ============================= */
.why-career-compass-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.why-career-compass-feature-card {
  min-height: 280px;
  height: auto;
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-sizing: border-box;
  width: 100%;
}

.why-career-compass-feature-card > div {
  display: flex;
  align-items: flex-start;
  /* gap: 40px; */
  flex-direction: column;
}

.why-career-compass-feature-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-top: 0;
  margin-bottom: 26px;
}

.why-career-compass-feature-content {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.why-career-compass-feature-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  word-wrap: break-word;
}

.why-career-compass-feature-content p {
  font-size: 18px;
  color: #4b5563;
  margin-top: 0;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-weight: 500;
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out;
}

.why-career-compass-text {
  text-align: left;
  margin-bottom: 40px;
}

.why-career-compass-subheading {
  font-size: 16px;
  font-weight: 700;
  color: rgba(29, 88, 122, 1);
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.why-career-compass-subheading::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: rgba(29, 88, 122, 1);
  border-radius: 2px;
}

.why-career-compass-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-top: 1rem;
  margin-bottom: 12px;
}

.why-career-compass-description {
  font-size: 18px;
  color: #4b5563;
  max-width: 770px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .why-career-compass-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-career-compass-feature-card {
    width: 100%;
    min-height: 280px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .why-career-compass-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-career-compass-feature-card {
    height: auto;
    min-height: 220px;
    padding: 24px;
  }

  .why-career-compass-feature-content h3 {
    font-size: 1.2rem;
  }

  .why-career-compass-feature-content p {
    max-height: 180px;
    font-size: 0.85rem;
  }

  .why-career-compass-feature-img {
    margin-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .why-career-compass-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-career-compass-feature-card {
    min-height: 220px;
    padding: 20px;
  }

  .why-career-compass-feature-content h3 {
    font-size: 1.1rem;
  }

  .why-career-compass-feature-content p {
    font-size: 0.8rem;
    opacity: 1;
  }

  .why-career-compass-feature-img {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .why-career-compass-text {
    margin-bottom: 40px;
  }

  .why-career-compass-main-heading {
    font-size: 28px;
  }

  .why-career-compass-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ============================= */
/* ============================= */

.comparison-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #1d587a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -1px;
}

.comparison-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
}

.comparison-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: flex-end;
  margin-bottom: 0;
}

.header-label {
  grid-column: 1;
}

.header-acca {
  grid-column: 2;
  background-color: #1d587a;
  border-radius: 20px 20px 0 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-align: left;
  padding-left: 1.5rem;
}

.header-ca {
  grid-column: 3;
  padding: 12px 20px;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1d587a;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 68px;
  gap: 0;
}

.comparison-row.row-alternate {
  background-color: rgba(29, 88, 122, 0.08);
  border-radius: 8px;
}

.row-label {
  padding: 18px 28px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #1d587a;
  display: flex;
  align-items: center;
}

.row-acca {
  background-color: #1d587a;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  min-height: 68px;
  display: flex;
  align-items: center;
}

.row-acca.has-gradient {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 11.77%, rgba(255, 255, 255, 0) 86%), #1d587a;
}

.row-ca {
  padding: 10px 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  min-height: 68px;
  display: flex;
  align-items: center;
}

.comparison-row:last-child .row-acca {
  border-radius: 0 0 20px 20px;
  min-height: 8px;
}

.comparison-row:last-child {
  min-height: 8px;
}

@media (max-width: 1200px) {
  .comparison-headers {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .row-label {
    font-size: 18px;
    padding: 16px 20px;
  }

  .row-acca,
  .row-ca {
    font-size: 16px;
    padding: 10px 20px;
  }

  .header-acca,
  .header-ca {
    font-size: 22px;
    padding: 12px 18px;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding-top: 35px;
  }

  .header-title {
    font-size: 32px;
  }

  .comparison-headers {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1rem;
  }

  .header-label {
    display: none;
  }

  .header-acca {
    border-radius: 14px;
    padding: 14px;
    font-size: 20px;
    grid-column: 1;
    text-align: center;
  }

  .header-ca {
    background-color: #f8fafc;
    border: 2px solid #1d587a;
    border-radius: 14px;
    padding: 14px;
    font-size: 20px;
    text-align: center;
    grid-column: 2;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: auto;
    margin-bottom: 20px;
  }

  .comparison-row:last-child {
    display: none;
  }

  .row-label {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
  }

  .row-acca {
    grid-column: 1;
  }

  .row-acca,
  .row-ca {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 10px;
  }

  .row-ca {
    background-color: #f8fafc;
    border: 2px solid #e5e5e5;
    grid-column: 2;
  }

  .comparison-row:last-child .row-acca {
    border-radius: 10px;
    min-height: auto;
    display: none;
  }

  .comparison-row.row-alternate {
    background-color: transparent;
    border-radius: 0;
  }

  .row-acca.has-gradient {
    background: #1d587a;
  }
}

@media (max-width: 480px) {
  .comparison-header {
    margin-bottom: 28px;
  }

  .header-title {
    font-size: 24px;
  }

  .header-acca,
  .header-ca {
    font-size: 18px;
    padding: 12px;
  }

  .row-label {
    font-size: 14px;
    padding: 0;
  }

  .row-acca,
  .row-ca {
    font-size: 13px;
    padding: 10px 14px;
  }
}

.placement-title {
  font-size: 44px;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 1.2px;
  margin: 0;
}

.placement-title .placement-highlight {
  display: block;
  font-size: 44px;
  color: #000000;
  letter-spacing: 1.6px;
  margin-top: 4px;
}

.certificate-section {
  background-color: #fff;
}

.certificate-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.certificate-text {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
}

.certificate-subheading {
  color: rgba(29, 88, 122, 1);
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.certificate-subheading::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #1d587a;
  margin-left: 10px;
  vertical-align: middle;
}

.certificate-heading {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.certificate-description {
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.certificate-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  margin-top: 40px;
}

.certificate-features li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #374151;
  margin-bottom: 14px;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.certificate-btn {
  background: rgba(29, 88, 122, 1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.certificate-btn:hover {
  border: 1px solid #1d587a;
  background: #f8fafc;
  color: rgba(29, 88, 122, 1);
}

.certificate-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.certificate-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 937px) {
  .certificate-container {
    gap: 8rem;
  }

  .certificate-image-wrapper {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .certificate-image {
    max-width: 420px;
    height: auto;
  }

  .certificate-heading {
    font-size: 40px;
  }

  .certificate-description {
    font-size: 17px;
  }
}

@media (max-width: 920px) {
  .certificate-container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }

  .certificate-heading {
    font-size: 36px;
  }

  .certificate-image-wrapper {
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
  }

  .certificate-image {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .certificate-section {
    padding: 60px 20px 70px 20px;
  }

  .certificate-heading {
    font-size: 1.8rem;
  }

  .certificate-description {
    font-size: 15px;
  }

  .certificate-btn {
    font-size: 15px;
    padding: 12px 30px;
  }

  .certificate-image {
    max-width: 340px;
  }
}

.price-table-wrapper {
  width: 100%;
  margin-bottom: 60px;
  margin-top: 12px;
}

.price-table {
  width: 100%;
  min-width: 1204px;
  border-collapse: collapse;
  background-color: #ffffff;
}

.price-table thead {
  background-color: #ffffff;
}

.price-table thead tr {
  border-bottom: 2px solid #e5e7eb;
}

.price-feature-header {
  text-align: left;
  padding: 24px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  width: 200px;
  position: relative;
  z-index: 10;
}

.price-plan-header {
  text-align: center;
  font-weight: 700;
  position: relative;
  color: #000000;
  padding: 20px;
  background-color: white;
  width: 33%;
  font-size: 20px;
}

.price-plan-header.price-popular {
  position: relative;
  padding: 0px;
}

.price-popular-badge {
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29, 88, 122, 1);
  color: #ffffff;
  padding: 6px 8px 6px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px 6px 0 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  width: 100%;
}

.price-popular-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.price-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.price-table tbody tr:nth-child(odd):not(.price-section-spacer):not(.price-section-header) {
  background-color: #f8fafc;
}

.price-feature-value.price-highlighted,
.price-feature-name.price-highlighted {
  color: #1d587a;
  font-weight: bold;
  font-size: 18px;
}

.price-table tbody tr:hover {
  background-color: #f9fafb;
}

.price-feature-name {
  text-align: left;
  padding: 13px 0 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  width: 200px;
  vertical-align: middle;
}

.price-feature-value {
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  vertical-align: middle;
}

.price-checkmark {
  background: url("../images/icons/tick.svg") no-repeat center center;
  background-size: contain;
  height: 20px;
  width: 100%;
  display: block;
}

.price-section-spacer td {
  padding: 8px 0;
  border: none;
}

.price-section-header {
  background-color: #ffffff;
}

.price-section-header .price-feature-name {
  color: #14b8a6;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 0 13px 20px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

th {
  color: #000000;
  padding: 20px;
  font-weight: 600;
  background-color: white;
  width: 25%;
  font-size: 20px;
}

th:nth-child(1),
td:nth-child(1) {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

thead tr:nth-child(2) th {
  border: 1px solid #f3f4f6;
}

thead tr:nth-child(2) th:first-child {
  border-right: 1px solid #f3f4f6;
}

.price-table-wrapper thead th:first-child {
  border: none;
}
tr:nth-child(even) {
  background-color: #ffffff;
}

tr:nth-child(odd) {
  background-color: #f3f4f6;
}

tr:nth-child(odd) td:nth-child(3) {
  background-color: transparent;
}
tr:nth-child(odd) td:nth-child(2) {
  background-color: #e8eef2;
}

tr:nth-child(-n + 3) td {
  color: #1d587a;
  font-weight: bold;
  font-size: 16px;
}

.price-faq-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background-color: #f3f4f6;
  border-radius: 6px;
  justify-content: center;
}

.price-faq-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-faq-content p {
  font-size: 14px;
  color: #374151;
  margin: 0;
}

.price-faq-link {
  color: #14b8a6;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

.price-faq-link:hover {
  color: #0d9488;
}

@media (max-width: 1024px) {
  .price-header-section {
    padding: 0;
  }

  .price-table-wrapper {
    padding: 0;
    margin-bottom: 48px;
  }

  .price-main-title {
    font-size: 36px;
  }

  .price-feature-header,
  .price-feature-name {
    width: 160px;
    font-size: 13px;
  }

  .price-table {
    min-width: 100%;
    font-size: 13px;
  }

  .price-faq-section {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .price-header-label {
    gap: 12px;
    margin-bottom: 16px;
  }

  .price-label {
    font-size: 12px;
  }

  .price-divider {
    width: 32px;
  }

  .price-main-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .price-table-wrapper {
    margin-bottom: 36px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .price-feature-header,
  .price-feature-name {
    width: 140px;
    font-size: 12px;
    padding: 12px;
  }

  .price-feature-value {
    font-size: 12px;
    padding: 12px 8px;
  }

  .price-plan-header {
    font-size: 12px;
    padding: 20px 8px;
  }

  .price-popular-badge {
    font-size: 7px;
    padding: 1px;
    top: 16px;
  }

  .price-checkmark {
    font-size: 14px;
  }

  .price-faq-section {
    gap: 10px;
    padding: 16px 20px;
    margin: 0;
    font-size: 12px;
  }

  .price-faq-icon {
    font-size: 18px;
    min-width: 18px;
  }

  .price-faq-content p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .price-header-section {
    margin-bottom: 32px;
  }

  .price-main-title {
    font-size: 24px;
  }

  .price-feature-value.price-highlighted,
  .price-feature-name.price-highlighted,
  th:nth-child(1),
  td:nth-child(1),
  tr:nth-child(-n + 3) td,
  .price-feature-header,
  .price-feature-name {
    width: 100px;
    font-size: 11px;
    padding: 8px 6px;
  }

  .price-feature-value {
    font-size: 11px;
    padding: 8px 4px;
  }

  .price-plan-header {
    font-size: 11px;
    padding: 16px 4px;
  }

  .price-table {
    min-width: 100%;
  }

  .price-checkmark {
    font-size: 12px;
  }

  .price-faq-section {
    padding: 12px 16px;
    gap: 8px;
  }

  .price-faq-icon {
    font-size: 16px;
    min-width: 16px;
  }

  .price-faq-content p {
    font-size: 11px;
    text-align: center;
  }

  .price-faq-link {
    font-size: 11px;
  }
}

@media print {
  .price-table tbody tr {
    page-break-inside: avoid;
  }
}

.price-cta {
  color: #fff !important;
  background: var(--color-primary);
  border-bottom: 0px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  cursor: pointer;
}

.career-grid {
  display: grid;
  grid-template-columns: 1;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .career-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.career-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e1e7ec;
  border-radius: 14px;
  transition: 0.3s ease;
  cursor: pointer;
  padding: 15px;
}
@media (min-width: 769px) {
  .career-box {
    padding: 20px;
  }
}

.career-box-image {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: #ecf1f6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    background-color 200ms ease,
    transform 200ms ease,
    filter 200ms ease;
}
.career-box-image img {
  transition: transform 0.4s ease;
}

.career-box:hover img {
  transform: rotate(360deg) scale(1.05);
}

.career-box-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}
@media (min-width: 769px) {
  .career-box-title {
    font-size: 18px;
  }
}

.pastStudentSwiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.pastStudentSwiper .swiper-slide {
  width: 280px;
  flex-shrink: 0;
}

.student-card-img img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.student-card {
  width: 280px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.student-img-wrapper {
  flex: 1;
  background: #f8f8f8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.student-img-wrapper img {
  width: 75%;
  height: auto;
  filter: grayscale(100%);
}

.student-data-info {
  background: #ffffff;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 8px;
}

.student-data-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.student-company {
  width: 40px;
  height: 40px;
}

.glass-left,
.glass-right {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .glass-left,
  .glass-right {
    width: 25px;
  }
}

.glass-left {
  left: 0;
  background: linear-gradient(to right, rgba(10, 60, 90, 0.7), rgba(10, 60, 90, 0));
}

.glass-right {
  right: 0;
  background: linear-gradient(to left, rgba(10, 60, 90, 0.7), rgba(10, 60, 90, 0));
}

/* ============================= */
/* Page: Onboarding               */
/* ============================= */

.question-container {
  background: #f8fafc;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.question-heading {
  font-size: 14px;
  font-weight: 500;
  color: #1d587a;
  margin-bottom: 30px;
}

.question-block {
  margin-bottom: 25px;
}

.question-title {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.radio-block {
  display: flex;
  gap: 16px;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #5e5e5e;
  margin-bottom: 12px;
  font-weight: 500;
}

.option input {
  width: 16px;
  height: 16px;
}

.start-btn {
  width: 200px;
  height: 44px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
}

.indicator-dots {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #c4c4c4;
  border-radius: 50%;
}

.dot.active {
  background: #1d587a;
}

.learning-btn {
  display: flex;
  justify-content: center;
}

@media (max-width: 880px) {
  .question-container {
    width: 90%;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .right-panel {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }

  .question-container {
    width: 100%;
    padding: 24px;
  }

  .question-title {
    font-size: 14px;
  }
  .option {
    font-size: 14px;
  }
  .start-btn {
    width: 100%;
    height: 46px;
  }
}

/* ============================= */
/* Page: Modal                    */
/* ============================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  width: 900px;
  max-width: 95%;
  border-radius: 14px;
  position: relative;
  overflow: visible;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}
@media (min-width: 768px) {
  .modal-close {
    font-size: 32px;
  }
}

.modal-content {
  display: flex;
  min-height: 500px;
}

.modal-image {
  width: 45%;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.modal-form {
  width: 55%;
  padding: 40px;
}

.stepone-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .stepone-title {
    font-size: 30px;
    font-weight: 700;
  }
}

.modal-form h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .modal-form h2 {
    font-size: 30px;
    font-weight: 700;
  }
}

.modal-form h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .modal-form h3 {
    font-size: 30px;
    font-weight: 700;
  }
}

.modal-form h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .modal-form h4 {
    font-size: 22px;
  }
}

.modal-form p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .modal-form p {
    font-size: 16px;
  }
}

.modal-form label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #5e5e5e;
  text-transform: capitalize;
}

.modal-form input,
.modal-form select {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  margin-bottom: 0.5rem;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"] {
  cursor: text;
}

.modal-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.modal-form input:hover,
.modal-form select:hover {
  border-color: #999;
}

.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: #0b5c4b;
  box-shadow: 0 0 0 3px rgba(11, 92, 75, 0.1);
}

.modal-form input::placeholder {
  color: #999;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.modal-form input:-webkit-autofill,
.modal-form input:-webkit-autofill:hover,
.modal-form input:-webkit-autofill:focus,
.modal-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #333 !important;
  background-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

#timeSelect {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  padding-right: 40px;
}

@media (min-width: 768px) {
  .modal-form input,
  .modal-form select {
    margin-bottom: 1rem;
  }
}

#stepOne,
#stepTwo {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-group {
  display: flex;
  gap: 0.5rem;
}

.phone-group select {
  width: 20%;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  margin-bottom: 0.5rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.phone-group select:hover {
  border-color: #999;
}

.phone-group select:focus {
  outline: none;
  border-color: #0b5c4b;
  box-shadow: 0 0 0 3px rgba(11, 92, 75, 0.1);
}

.phone-group input {
  width: 80%;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  .phone-group select,
  .phone-group input {
    margin-bottom: 1rem;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1rem;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0b5c4b;
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

.checkbox span {
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
}

.checkbox a {
  color: #0b5c4b;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    min-height: 0;
  }

  .modal-image {
    display: none;
  }

  .modal-form {
    width: 100%;
    padding: 20px;
  }
}

.date-picker {
  position: relative;
  width: 100%;
}

.date-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-bottom: 0.5rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.date-input:hover {
  border-color: #999;
}

.date-input:focus-within {
  border-color: #0b5c4b;
  box-shadow: 0 0 0 3px rgba(11, 92, 75, 0.1);
}

.date-input.invalid {
}

.date-input.invalid:focus-within {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.date-input #selectedDate {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.date-input #selectedDate:empty::before {
  content: "Select Date *";
  color: #999;
}

.date-input.invalid #selectedDate {
}

.date-error-message {
  position: relative;
  background-color: #fff;
  border: 1px solid #ff9800;
  border-radius: 4px;
  padding: 8px 12px;
  color: #333;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  margin-top: 4px;
  margin-bottom: 0.5rem;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.date-error-message::before {
  content: "⚠";
  display: inline-block;
  margin-right: 6px;
  color: #ff9800;
  font-size: 14px;
}

.date-error-message::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ff9800;
}

.date-error-message.show {
  display: block;
}

.time-error-message {
  position: relative;
  background-color: #fff;
  border: 1px solid #ff9800;
  border-radius: 4px;
  padding: 8px 12px;
  color: #333;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  margin-top: 4px;
  margin-bottom: 0.5rem;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.time-error-message::before {
  content: "⚠";
  display: inline-block;
  margin-right: 6px;
  color: #ff9800;
  font-size: 14px;
}

.time-error-message::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ff9800;
}

.time-error-message.show {
  display: block;
}

.modal-form select.invalid {
}

.modal-form select.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.modal-form select:invalid {
  box-shadow: none;
}

.modal-form select:invalid:focus {
  box-shadow: 0 0 0 3px rgba(11, 92, 75, 0.1);
}

@media (min-width: 768px) {
  .date-input {
    margin-bottom: 1rem;
  }
}

.calendar {
  position: absolute;
  top: 110%;
  left: 0;
  width: 340px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  z-index: 99999;
}

/* Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.month-year {
  display: flex;
  gap: 8px;
}

.month-year select {
  padding: 6px 10px;
  padding-right: 30px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.month-year select:hover {
  border-color: #999;
}

.month-year select:focus {
  outline: none;
  border-color: #0b5c4b;
  box-shadow: 0 0 0 3px rgba(11, 92, 75, 0.1);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-dates span {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
}

.calendar-dates span:hover {
  background: #eef4ff;
}

.calendar-dates .selected {
  background: #4f8df7;
  color: #fff;
}

.calendar-dates .disabled {
  color: #ccc;
  pointer-events: none;
}

.another-account-link {
  margin-top: 8px;
}

.book-cta {
  margin-top: 0.5rem;
}

.modal.step-three-active {
  width: 100%;
  max-width: 700px;
  max-height: 400px;
  padding: 0px;
}

.modal.step-three-active .modal-content {
  flex-direction: column;
}

.modal.step-three-active .modal-image {
  display: none;
}

.modal.step-three-active .modal-form {
  width: 100%;
  text-align: center !important;
}

.success-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-icon {
  width: 300px;
  height: 150px;
}

.modal.simple-step-two-active {
  width: 100%;
  max-width: auto;
  min-height: auto;
  padding: 0px;
}
@media (min-width: 768px) {
  .modal.simple-step-two-active {
    width: 100%;
    max-width: 700px;
    min-height: 400px;
    padding: 0px;
  }
}

.modal.simple-step-two-active .modal-content {
  flex-direction: column;
  min-height: auto;
}

.modal.simple-step-two-active .modal-image {
  display: none;
}

.modal.simple-step-two-active .modal-form {
  width: 100%;
  text-align: center !important;
  padding: 30px;
}

/* ============================= */
/* Page: Course Details           */
/* ============================= */

.course-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.course-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.course-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: #333;
}

.course-table tr:nth-child(even) {
  background-color: #f9fafc;
}

.course-table tr:hover {
  background-color: #f1f5ff;
  transition: 0.3s ease;
}

.course-table tr:last-child td {
  border-bottom: none;
}

.demo-section {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.course-sections-nav {
  position: sticky;
  top: 1px;
  background-color: #f8fafc;
  z-index: 100000;
  padding: 0;
}

.sections-container {
  background-color: #f8fafc;
  overflow-x: auto;
  width: 100%;
}

.sections-container::-webkit-scrollbar {
  height: 1px;
  width: 1px;
}

.sections-container::-webkit-scrollbar-track {
  background: transparent;
}

.sections-container::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

.section-link {
  min-width: max-content;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.section-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.section-link:hover {
  color: #1d587a;
  background-color: #f8fafc;
}

.section-link.active {
  color: #1d587a;
  font-weight: 600;
  background-color: transparent;
}

.section-link.active::after {
  background-color: #1d587a;
}

.sections-container .section-link.tab-link.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 640px) {
  .section-link {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .section-link {
    padding: 0 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .sections-container {
    gap: 0;
    padding: 0 12px;
  }

  .section-link {
    padding: 0 16px;
    font-size: 13px;
  }
}

.container-instructor {
  background: #f8fafc;
  margin-top: 40px;
}

.section-subtext {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.instructor-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.instructor-left {
  width: 230px;
  text-align: center;
}

.teacher-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin-bottom: 15px;
}

.teacher-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.teacher-role {
  color: #666;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.teacher-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

.teacher-rating img {
  width: 24px;
  height: 24px;
}

.instructor-right {
  flex: 1;
  min-width: 300px;
}

.about-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-text {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

.instructor-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.inst-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.inst-column p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.inst-column img {
  width: 16px;
  height: 16px;
}

.inst-column span {
  color: #777;
  font-size: 13px;
}

.experience-column {
  display: flex;
  align-items: center;
  gap: 40px;
}

.experience-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: stretch;
}

.experience-item span {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.experience-heading {
  display: flex;
  gap: 8px;
  align-items: center;
}

.experience-heading img {
  width: 20px;
  height: 20px;
}

.experience-desc {
  font-size: 14px;
  font-weight: 500;
  color: #5e5e5e;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  .instructor-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instructor-right {
    text-align: center;
  }

  .instructor-stats {
    justify-content: flex-start;
  }
}

/* ============================= */
/* ============================= */

section#about {
  overflow: visible;
}

.course-detail-container {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--site-padding-x);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.left-section {
  order: 1;
}

.course-about {
  margin-bottom: 40px;
}

.course-section-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 16px;
  line-height: 36px;
}

.course-section-text {
  font-size: 16px;
  font-weight: 400;
  color: #5e5e5e;
  line-height: 1.6;
  margin-bottom: 16px;
  overflow: hidden;
}

.show-more-btn {
  background: none;
  border: none;
  color: #1d587a;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.show-more-btn:hover {
  color: #164d69;
}

.course-what-learn {
  margin-bottom: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8fafc;
}

.learn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}

.learn-header:hover {
  background-color: #f0f4f8;
}

.collapse-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: white;
  color: #1d587a;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collapse-btn:hover {
  background-color: #eaf1f5;
}

.course-subsection-title {
  font-size: 24px;
  font-weight: 600;
  color: #3d3d3d;
  margin: 0;
  line-height: 28px;
}

.learn-content {
  padding: 32px 20px;
  background: #f8fafc;
}

.course-what-learn.collapsed .learn-content {
  display: none;
}

.chevron-icon {
  width: 24px;
  height: 24px;
  color: #1d587a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke-width: 2;
}

.course-what-learn.collapsed .chevron-icon {
  transform: rotate(180deg);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.learn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #5e5e5e;
  line-height: 1.5;
}

.learn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.course-features-inner {
  display: block;
}

.features-title-inner {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin: 0 0 20px 0;
  line-height: 26px;
}

.features-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .features-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .features-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-grid-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.feature-item:hover img {
  transform: rotate(360deg) scale(1.05);
}

.feature-icon-small {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #1d587a1a;
  border-radius: 8px;
}

.feature-icon-small svg {
  width: 100%;
  height: 100%;
}

.feature-item span {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.course-features {
  margin-bottom: 40px;
}

.features-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: #eaf1f5;
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.curriculum-breakdown {
  margin-top: 40px;
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.curriculum-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.curriculum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.curriculum-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 28px;
}

.curriculum-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.expand-all {
  color: #1d587a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.expand-all:hover {
  color: #164d69;
}

.expand-chevron {
  width: 20px;
  height: 20px;
  color: #1d587a;
  transition: transform 0.3s ease;
  stroke-width: 2;
}

.curriculum-breakdown.expanded .expand-chevron {
  transform: rotate(180deg);
}

.curriculum-meta {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.see-all-lessons {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f8fafc;
  border: 1px solid #e5e5e5;
  border-radius: 99px !important;
  color: #1d587a;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-all-lessons:hover {
  background-color: #eaf1f5;
  border-color: #1d587a;
}

.curriculum-list.expanded .see-all-lessons {
  background-color: #eaf1f5;
}

.curriculum-breakdown {
  overflow: hidden;
  transition: all 0.3s ease;
}

.curriculum-item:hover {
  border-color: #1d587a;
  box-shadow: 0 2px 8px rgba(29, 88, 122, 0.1);
}

.item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.partition {
  border: 0.8px solid #e5e5e5;
  width: 100%;
}

.item-header:hover {
  background: #f8fafc;
}

.item-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf1f5;
  color: #1d587a;
  font-weight: 700;
  border-radius: 8px;
  font-size: 20px;
  flex-shrink: 0;
}

.item-title-section {
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.item-chapter {
  font-size: 14px;
  color: #5e5e5e;
  margin: 0;
}

.toggle-icon {
  width: 20px;
  height: 20px;
  color: #1d587a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.item-content {
  display: none;
  padding: 24px 20px 16px 24px;
  border-top: 1px solid #e5e5e5;
  border-radius: 0 0 8px 8px;
}

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

.content-img {
  width: 40px;
  height: 40px;
  background: #ecf1f6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.accordion-info {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.content-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.content-time {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #5e5e5e;
}

.curriculum-item.active .item-content {
  display: block;
}

.curriculum-item.active .toggle-icon {
  transform: rotate(180deg);
}

.item-content p {
  font-size: 15px;
  color: #5e5e5e;
  line-height: 1.6;
  margin-bottom: 16px;
}

.topics-covered {
  margin-top: 12px;
}

.topics-covered h5 {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topics-covered ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.topics-covered li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5e5e5e;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.see-all-lessons {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #1d587a;
  background: transparent;
  color: #1d587a;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .learn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .course-subsection-title {
    font-size: 18px;
  }

  .item-header {
    gap: 12px;
    padding: 14px;
  }

  .learn-content {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .features-grid-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-item {
    padding: 12px;
    gap: 10px;
  }

  .learn-content {
    padding: 16px;
  }

  .item-header {
    flex-wrap: wrap;
  }

  .demo-section {
    flex-direction: column;
  }

  .instructor-left {
    text-align: left;
  }
  .instructor-wrapper {
    align-items: flex-start;
    gap: 32px;
  }
  .teacher-rating {
    justify-content: flex-start;
  }
  .inst-column h4 {
    text-align: left;
  }
  .instructor-stats {
    gap: 32px;
  }
  .experience-desc {
    text-align: left;
  }
}

.left-section {
  width: 70%;
}

.right-section {
  order: 2;
  border: 1px solid #e5e5e5;
  height: fit-content;
  position: relative;
  border-radius: 8px;
  width: 30%;
}

@media (min-width: 340px) {
  .right-section {
    width: 100%;
    position: static;
  }
  .course-detail-container {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 0;
  }
  .left-section {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .course-detail-container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .left-section {
    max-width: 100%;
  }

  .right-section {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .course-detail-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }

  .left-section {
    flex: 2;
    order: 1;
  }

  .right-section {
    order: 2;
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: flex-start;
  }
}

@media (min-width: 1280px) {
  .course-detail-container {
    gap: 40px;
  }
}

.video-img {
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  overflow: hidden;
  display: block;
  background: #f6f7f9;
  height: 260px;
}

.video-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}

.top-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-prices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.course-price {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.discounted-price {
  color: #1d587a;
  font-weight: 700;
  font-size: 28px;
}

.actual-price {
  font-weight: 500;
  font-size: 16px;
  text-decoration: line-through;
  color: #5e5e5e;
}

.save-percentage {
  font-size: 15px;
  font-weight: 600;
  color: #00b67a;
  background-color: #00b67a1a;
  padding: 12px;
  border-radius: 82px;
}

.course-title {
  font-size: 20px;
  font-weight: 600;
}

.course-desc {
  font-size: 16px;
  font-weight: 500;
  color: #5e5e5e;
}

.course-video-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-includes {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.add-to-cart {
  background-color: #1d587a;
  border-radius: 82px;
  padding: 16px 26px;
  color: white;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  justify-content: center;
}

.package-features {
  list-style: none;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #5e5e5e;
  font-weight: 500;
}

.divider {
  border: 1px solid #e5e5e5;
}

.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.bottom-section h4 {
  color: #5e5e5e;
  font-size: 16px;
  font-weight: 500;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.course-rating span {
  font-weight: 600;
  font-size: 16px;
}

.course-rating img {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .video-img {
    height: 180px;
  }
  .course-detail-container {
    padding: 0 var(--site-padding-x);
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .right-section {
    width: 100%;
    position: static;
  }

  .course-video-info {
    padding: 18px;
  }

  .discounted-price {
    font-size: 24px;
  }

  .course-rating img {
    width: 18px;
    height: 18px;
  }

  .course-rating span {
    font-size: 15px;
  }

  .course-subsection-title {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .video-img {
    height: 200px;
  }
  .course-detail-container {
    flex-direction: row;
    padding: 0 var(--site-padding-x);
    gap: 32px;
    width: 100%;
  }

  .left-section {
    flex: 1;
  }

  .right-section {
    width: 35%;
    position: sticky;
    top: 90px;
    align-self: flex-start;
  }

  .discounted-price {
    font-size: 26px;
  }

  .actual-price {
    font-size: 15px;
  }

  .save-percentage {
    font-size: 14px;
    padding: 10px 14px;
  }

  .add-to-cart {
    padding: 14px 24px;
  }

  .course-section-title {
    font-size: 38px;
    font-weight: 700;
  }

  .curriculum-title {
    font-size: 30px;
    font-weight: 700;
  }

  .course-subsection-title {
    font-size: 20px;
  }

  .course-learn-list li,
  .course-req-list li {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .video-img {
    height: 220px;
  }
  .course-detail-container {
    padding: 0 var(--site-padding-x);
    width: 100%;
  }

  .right-section {
    width: 32%;
  }

  .discounted-price {
    font-size: 28px;
  }

  .actual-price {
    font-size: 16px;
  }

  .add-to-cart {
    padding: 16px 26px;
  }

  .course-rating img {
    width: 20px;
    height: 20px;
  }

  .course-rating span {
    font-size: 16px;
  }

  .course-subsection-title {
    font-size: 22px;
  }

  .course-learn-list li,
  .course-req-list li {
    font-size: 16px;
  }
}

.faq-question-title {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.faq-header h3 {
  font-size: 14px !important;
}

.tab-content {
  border-radius: 0 15px 15px 15px;
  border: 1px solid #f8fafc;
  padding: 12px;
}

.faq-container {
  gap: 24px !important;
}

.select-plan-validity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.select-plan-validity-wrapper label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  padding-bottom: 6px;
}

/* ============================= */
/* Page: Pagination               */
/* ============================= */

.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #f4f6f7;
}

.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination button {
  padding: 8px 15px;
  border: none;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  min-width: 40px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
  color: #000;
}

.pagination button.active {
  background: #2d577b;
  color: #fff;
  font-weight: bold;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (hover: hover) {
  .pagination button:hover:not(.active):not(:disabled) {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .pagination button {
    padding: 7px 12px;
    font-size: 14px;
    min-width: 35px;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 5px;
  }

  .pagination button {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 30px;
    border-radius: 6px;
  }
}

@media (max-width: 360px) {
  .pagination button {
    padding: 5px 8px;
    font-size: 12px;
    min-width: 28px;
  }
}

/* ============================= */
/* Page: Verification             */
/* ============================= */

.verify-box {
  text-align: center;
}

.verify-box h2 {
  font-size: 18;
  font-weight: 700;
  color: var(--text-dark);
}

.verify-subtext {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.verify-subtext strong {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
}

.verify-subtext .user-info {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.otp-container {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0;
}

.otp-input {
  width: 50px;
  height: 50px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.otp-input:focus {
  border-color: #5e5e5e !important;
  outline: none !important;
  box-shadow: none !important;
}

.resend-text {
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 600;
}

.resend-text a {
  color: #6b6b6b;
  font-weight: 400;
  font-size: 12px;
}

.verify-btn {
  height: 36px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .otp-container {
    gap: 10px;
  }

  .otp-input {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .verify-btn {
    width: 100%;
    height: 46px;
  }
}

/* ============================= */
/* Page: Home                     */
/* ============================= */

.text-gradient {
  background: linear-gradient(
    144.73deg,
    var(--color-primary) -4.64%,
    var(--color-secondary) 104.53%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-section {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 16px var(--site-padding-x);
}
@media (min-width: 768px) {
  .hero-section {
    gap: 1.5rem;
    padding: 20px var(--site-padding-x);
  }
}
@media (min-width: 1025px) {
  .hero-section {
    padding: 40px var(--site-padding-x);
  }
}
@media (min-width: 1024px) {
  .hero-section {
    grid-template-columns: 5fr 3fr;
    gap: 1.5rem;
  }
}

.hero-left {
  background-color: #eeeeee;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
@media (min-width: 767px) {
  .hero-left {
    padding: 3rem;
  }
}

.hero-left-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 767px) {
  .hero-left-wrapper {
    gap: 2rem;
  }
}

.hero-content-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-heading-h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-heading-h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 1024px) {
  .section-heading-h1 {
    font-size: 80px;
    line-height: 80px;
  }
}

.section-sub-heading {
  font-size: 14px;
  font-weight: 400;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .section-sub-heading {
    font-size: 18px;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .hero-stats {
    gap: 36px;
    justify-content: flex-start;
  }
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .stat-item {
    text-align: left;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.stat-number {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 28px;
  }
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 14px;
    font-weight: 500;
  }
}

.stat-divider {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
}
@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    margin-top: 3rem;
  }
}

.hero-slider-wrapper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.heroImageSwiper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .heroImageSwiper {
    height: 575px;
  }
}

.heroImageSwiper .swiper-wrapper {
  height: 100%;
}

.heroImageSwiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroImageSwiper .hero-right-image {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-swiper-pagination {
  bottom: 12px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.6;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-right {
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .hero-right {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-right-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-right-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero-right-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }
}

.hero-tag {
  font-size: 12px;
  font-weight: 500;
  background-color: #ffffff;
  color: #164d69;
  border-radius: 9999px;
  padding: 4px 12px;
}
@media (min-width: 768px) {
  .hero-tag {
    font-size: 14px;
    font-weight: 600;
  }
}

.hero-list {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .hero-list {
    font-size: 16px;
  }
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-icon {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero-image {
    height: 400px;
  }
}

.hero-image-overlay {
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
}

.div-gradient {
  background: linear-gradient(180deg, rgba(29, 88, 122, 0) 0.43%, var(--color-primary) 44.37%);
}

.hero-name {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .hero-name {
    font-size: 22px;
    font-weight: 500;
  }
}

.hero-role {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 5px;
}

.online-event {
  position: absolute;
  bottom: 180px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.online-event .event-title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.32px;
}
@media (min-width: 768px) {
  .online-event .event-title {
    font-size: 16px;
    font-weight: 500;
  }
}

.online-event .event-desc {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.64px;
}
@media (min-width: 768px) {
  .online-event .event-desc {
    font-size: 32px;
    font-weight: 700;
  }
}

/* ============================= */
/* ============================= */

/* ============================= */
/* ============================= */
.company-section {
  width: 100%;
  margin: 0 auto;
  padding: 0px var(--site-padding-x) 14px var(--site-padding-x);
}
@media (min-width: 768px) {
  .company-section {
    padding: 0 var(--site-padding-x) 20px var(--site-padding-x);
  }
}
@media (min-width: 1025px) {
  .company-section {
    padding: 0 var(--site-padding-x) 40px var(--site-padding-x);
  }
}

.company-title {
  font-size: 16px;
  font-weight: 400;
  color: #5e5e5e;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .company-title {
    font-size: 18px;
    color: #5e5e5e;
    text-align: left;
  }
}

.company-logos {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
}
@media (min-width: 1024px) {
  .marquee-track {
    gap: 4rem;
  }
}

.company-logo img {
  width: 100px;
  height: 35px;
  object-fit: contain;
}

.marquee-left .marquee-track {
  animation: scroll-left 36s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================= */
/* ============================= */

/* ============================= */
/* ============================= */

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

.certification-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--Border, #e5e5e5);
  background-color: #fff;
  transition: all 0.05 ease;
  height: 100%;
}

.certification-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--Dark-Blue, var(--color-primary));
  box-shadow: 0 2px 25px rgba(29, 88, 122, 0.15);
}

.certification-card:hover .btn-primary::before {
  transform: translateX(0);
}

.certification-card:hover .btn-primary {
  color: var(--color-primary);
}

.certification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.certification-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.certification-icon {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 6.4px;
  background: rgba(29, 88, 122, 0.15);
  flex-shrink: 0;
}

.certification-icon img {
  width: 100%;
  height: 100%;
}

.certification-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}

.certification-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--Dark-Blue, var(--color-primary));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.certification-duration img {
  width: 16px;
  height: 16px;
}

.certification-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--Light-Gray, #858585);
  margin-bottom: 20px;
  line-height: 1.4;
}

.certification-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--Border, #e5e5e5);
}

.certification-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.certification-stats .stat svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.certification-stats .stat > div {
  text-align: center;
  display: flex;
  gap: 12px;
}

.certification-stats .stat-number {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.certification-stats .stat-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--Dark-gray, #5e5e5e);
  margin: 0;
  opacity: 0.8;
}

.certification-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.certification-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--Dark-gray, #5e5e5e);
  line-height: 1.4;
  opacity: 0.8;
}

.certification-features img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 4px;
}

.certification-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--Border, #e5e5e5);
}

.brochure-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Dark-gray, #5e5e5e);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.brochure-link img {
  width: 20px;
  height: 20px;
}

.btn-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 81.292px;
  background: var(--Dark-Blue, var(--color-primary));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-explore:hover {
  background: darken(var(--color-primary), 10%);
  transform: translateX(4px);
}

.btn-explore-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 81.292px;
  border: 0.821px solid var(--Dark-Blue, var(--color-primary));
  background: transparent;
  color: var(--Dark-Blue, var(--color-primary));
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-explore-outline:hover {
  background: rgba(29, 88, 122, 0.05);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certification-card {
    padding: 20px;
  }

  .certification-stats {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .certification-grid {
    grid-template-columns: 1fr;
  }

  .certification-header {
    flex-wrap: wrap;
  }

  .certification-card {
    padding: 16px;
  }

  .certification-stats {
    gap: 12px;
    padding-bottom: 16px;
  }

  .certification-features li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .certification-grid {
    gap: 16px;
  }

  .certification-card {
    padding: 16px;
  }

  .certification-title {
    font-size: 20px;
  }

  .certification-name {
    font-size: 16px;
  }

  .certification-stats {
    gap: 16px;
  }

  .stat {
    flex-direction: row;
    gap: 8px;
  }

  .stat > div {
    text-align: left;
  }

  .certification-footer {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-explore,
  .btn-explore-outline {
    width: 100%;
  }
}

/* ============================= */
/* ============================= */

/* ============================= */
/* ============================= */

.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-slider:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  cursor: pointer;
}

.slider-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: calc(400%);
  animation: scroll 22s linear infinite;
}

.slide {
  border-radius: 18px;
  overflow: hidden;
}

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

.slide.large {
  width: 90%;
  height: 400px;
  min-width: 90%;
  min-height: 400px;
}

.slide.small {
  width: 90%;
  height: 320px;
  min-width: 90%;
  min-height: 320px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================= */
/* ============================= */

/* ============================= */
/* ============================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--section-gap);
}

@media (max-width: 1024px) {
  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .blog-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  width: 100%;
  height: 272px;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 173px;
  object-fit: cover;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

.blog-time {
  font-size: 12px;
  font-weight: 500;
  color: #5e5e5e;
}

.blog-text {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
}

.blog-author {
  font-size: 12px;
  font-weight: 400;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .blog-author {
    font-size: 14px;
  }
}

.blog-date {
  font-size: 12px;
  font-weight: 400;
  color: #5e5e5e;
}
@media (min-width: 768px) {
  .blog-author {
    font-size: 14px;
  }
}

@media (max-width: 780px) {
  .alumni-nav.right {
    right: -8px !important;
  }
  .alumni-nav.left {
    left: -8px !important;
  }
}

/* ============================= */
/* ============================= */

.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-name {
  font-weight: bold;
  margin: 0;
}

.user-role {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* ============================= */
/* Page: Course Section           */
/* ============================= */

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
}

.header-section {
  margin-bottom: 40px;
}

.header-section .label {
  color: #1e5a7d;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.label::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #1e5a7d;
}

.header-section .main-title {
  font-size: 38px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Explore Our Individual Courses – mobile responsive */
@media (max-width: 1024px) {
  .header-section {
    margin-bottom: 32px;
  }

  .header-section .label {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .header-section .main-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header-section {
    margin-bottom: 28px;
  }

  .header-section .label {
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .label::after {
    width: 32px;
  }

  .header-section .main-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .header-section {
    margin-bottom: 24px;
  }

  .header-section .label {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .label::after {
    width: 28px;
  }

  .header-section .main-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

@media (max-width: 360px) {
  .header-section {
    margin-bottom: 20px;
  }

  .header-section .label {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .label::after {
    width: 24px;
  }

  .header-section .main-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

.description {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
}

.filter-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.filter-wrapper {
  justify-items: flex-end;
}

.showing-text {
  color: #6b7280;
  font-size: 16px;
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 16px;
}

.sort-icon {
  width: 16px;
  height: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .cards-grid {
    gap: 20px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    gap: 16px;
    margin-bottom: 28px;
  }
}

@media (max-width: 360px) {
  .cards-grid {
    gap: 12px;
    margin-bottom: 24px;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  background: url("../images/comboThumbnail.png") center 10% / cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.professional-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #1e5a7d;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.badge-icon {
  width: 12px;
  height: 12px;
  background: #1e5a7d;
  border-radius: 50%;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: black;
  min-height: 48px;
  line-height: 1.4;
}

.card-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 12px;
  color: #5e5e5e;
  border: #e5e5e5 solid 1px;
  border-radius: 25px;
  padding: 3px 8px;
  white-space: nowrap;
}

.stat-icon {
  width: 14px;
  height: 14px;
  color: #9ca3af;
  flex-shrink: 0;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  color: #1d587a;
}

.original-price {
  font-size: 14px;
  color: #5e5e5e;
  text-decoration: line-through;
}

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

.instructor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}

.instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-name {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
  flex-wrap: wrap;
}

.add-to-cart-btn {
  background: #1e5a7d;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 81px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.add-to-cart-btn:hover {
  background: #164a63;
}

.load-more-section {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: #1e5a7d;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 81px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.load-more-btn:hover {
  background: #164a63;
}

@media (max-width: 360px) {
  .hero {
    padding: 20px 15px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .container {
    padding: 30px 15px;
  }

  .info {
    gap: 10px;
    font-size: 0.85rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
  }
  .hero {
    padding: 20px 15px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .filter-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-select {
    width: 100%;
  }
  .container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .main-title {
    font-size: 1.75rem;
  }
  .hero {
    padding: 20px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--site-padding-x);
    padding-right: var(--site-padding-x);
  }

  .main-title {
    font-size: 2rem;
  }
  .hero {
    padding: 20px 15px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding-top: 30px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding-top: 40px;
  }

  .main-title {
    font-size: 2.5rem;
  }
}
