@charset "UTF-8";
/* ========== DESIGN TOKENS ========== */
:root {
  --color-primary: #0a66ff;
  --color-primary-dark: #066ccb;
  --color-primary-navy: #0d1a2d;
  --color-dark-navy: #1b3763;
  --color-hero-text-navy: #252525;
  --color-accent-blue: #1d55b1;
  --color-accent-mid: #0340a3;
  --color-red-expert: #d72a36;
  --color-red-bg: rgba(255, 238, 239, 0.69);
  --color-red-border: rgba(215, 42, 54, 0.44);
  --color-advanced: #2965c8;
  --color-advanced-bg: rgba(216, 231, 255, 0.69);
  --color-advanced-border: rgba(41, 101, 200, 0.44);
  --color-text-dark: #252525;
  --color-text-mid: #3d3d3d;
  --color-text-light: #787878;
  --color-text-gray: #696969;
  --color-text-muted: #8d8d8d;
  --color-text-acacac: #acacac;
  --color-text-link: #222e48;
  --color-text-body: #404a60;
  --color-price: #f37739;
  --color-star: #ff9f29;
  --color-green: #2fa75f;
  --color-bg-white: #ffffff;
  --color-bg-light: #f6f8fc;
  --color-bg-blue-light: #f3f9ff;
  --color-bg-card: #f3f8fe;
  --color-bg-section: #f3f9ff;
  --color-bg-courses: #f8fbff;
  --color-border-light: rgba(186, 186, 186, 0.23);
  --color-border-gray: rgba(130, 130, 130, 0.3);
  --color-footer-bg-start: #061331;
  --color-footer-bg-end: #152c5d;
  --color-footer-text: #d3d3d3;
  --color-footer-link: #8bc9ff;
  --color-footer-heading: #efefef;
  --color-footer-icon-bg: #222e48;
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 56px;
  --radius-full: 9999px;
  --shadow-card: 0px 6px 15px rgba(0, 0, 0, 0.04);
  --shadow-course-card: 8px 4px 12.8px rgba(0, 0, 0, 0.05);
  --spacing-section: 120px;
  --spacing-section-x: 130px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #fff !important;
  padding: 0 52.5px !important;
  height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

.navbar__logo {
  height: 62px;
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 52px;
  width: auto;
}

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

.navbar__links a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 10px;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--color-primary);
}

.navbar__links a:hover::after {
  width: 60%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 38px;
  height: 56px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}

.navbar__cta:hover {
  background: #0850d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 255, 0.35);
}

.navbar__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 102, 255, 0.3);
}

.navbar__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.navbar__cta img {
  width: 28px;
  height: 28px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.navbar__mobile.is-open {
  max-height: 400px;
  padding: 16px 24px 24px;
}

.navbar__mobile a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.navbar__mobile a:hover {
  color: var(--color-primary);
}

.navbar__mobile .navbar__cta {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

.hd-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 130px;
  padding-right: 130px;
}

.full-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media (max-width: 1399.98px) {
  .hd-container,
  .full-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 991.98px) {
  .hd-container,
  .full-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767.98px) {
  .hd-container,
  .full-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ========== HERO ========== */
.hero {
  background: #fff;
}

.hero__inner {
  position: relative;
  margin: 0 30px;
  border-radius: 43px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  position: absolute;
  width: 148%;
  height: 148%;
  top: -5%;
  left: -34%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1b3763 10%, rgba(255, 255, 255, 0) 100%);
  border-radius: 43px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 55px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  min-height: calc(100vh - 112px);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 813px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.hero__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 75px;
  line-height: 83px;
  color: #fff;
  letter-spacing: -3px;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 35px;
  border-radius: 50px;
  height: 56px;
  width: 300px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}

.hero__cta-btn:hover {
  background: #055aae;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 108, 203, 0.4);
}

.hero__cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 108, 203, 0.3);
}

.hero__cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero__cta-btn img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.hero__cta-btn:hover img {
  transform: translateX(4px);
}

.hero__reviews {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__review-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 32px;
}

.hero__review-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__review-label {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  padding-right: 4px;
}

.hero__review-stars {
  height: 18px;
  width: auto;
}

.hero__review-logo-row {
  display: flex;
  align-items: center;
}

.hero__review-logo {
  height: 22px;
  width: auto;
}

.hero__review-count {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  padding-left: 20px;
}

.hero__google {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__google-icon {
  width: 39px;
  height: 39px;
}

.hero__google-info {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}

.hero__google-stars {
  height: 19px;
  width: auto;
  margin-bottom: 4px;
}

.hero__google-text {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

/* ========== ABOUT SECTION ========== */
.about {
  background: #fff;
  padding: var(--spacing-section) 0;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.section-badge {
  border: 1px solid rgba(10, 102, 255, 0.4);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-accent-blue);
  letter-spacing: 4px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.about__description {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 26px;
  line-height: 43.8px;
  color: #000;
}

.about__description em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent-mid);
}

.about__card--dark {
  background: var(--color-primary-navy);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  height: 100%;
}

.about__card--dark img.card-icon {
  width: 53px;
  height: 57px;
}

.about__card--dark p {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.26px;
}

.about__card--dark p strong {
  font-weight: 600;
  color: #fff;
}

.about__card--dark .card-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about__card--dark .card-footer img {
  width: 36px;
  height: 36px;
}

.about__card--dark .card-footer span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  color: #fff;
  letter-spacing: -0.26px;
  white-space: nowrap;
}

.about__card--image {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__card--image img.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__card--image .glass-badge {
  position: relative;
  z-index: 2;
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.598) 0%, rgba(81, 78, 78, 0.258) 100%);
  backdrop-filter: blur(5.9px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 74px;
  padding: 10px 24px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.36px;
  white-space: nowrap;
}

.about__card--stats {
  background: var(--color-bg-light);
  border-radius: 30px;
  padding: 32px;
  height: 100%;
  flex-shrink: 0;
}

.about__card--stats .stat-number {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 70px;
  color: #000;
  letter-spacing: -2.8px;
  line-height: 1;
}

.about__card--stats .stat-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 26px;
  line-height: 43.8px;
  color: #000;
  letter-spacing: -0.52px;
  margin: 16px 0;
}

.about__card--stats .stat-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-mid);
  letter-spacing: -0.36px;
  margin-bottom: 16px;
}

.about__card--stats .stat-bars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__card--stats .stat-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.about__card--stats .stat-bar-name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-mid);
}

.about__card--stats .stat-bar-dots {
  font-size: 18px;
  color: rgba(10, 102, 255, 0.4);
}

.about__card--stats .stat-bar-num {
  font-size: 18px;
  color: var(--color-text-mid);
}

/* Numbers row */
.about__numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 57px;
  text-align: center;
}

.about__numbers-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 26px;
  line-height: 43.8px;
  color: #000;
}

.about__stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1224px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 243px;
  text-align: center;
}

.about__stat-num {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 56px;
  color: #000;
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-gray);
}

/* ========== EXAMS SECTION ========== */
.exams {
  background: var(--color-bg-section);
  padding: var(--spacing-section) 0;
}

.exams__inner {
  max-width: 1647px;
  margin: 0 auto;
}

.exams__header {
  margin-bottom: 62px;
}

.exams__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 49px;
  color: var(--color-text-dark);
  letter-spacing: -1px;
  line-height: 1.1;
}

.exams__filters {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}

/* ===== REAL SEARCH INPUT ===== */
.search-input {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border-gray);
  border-radius: 30px;
  padding: 16px 24px;
  width: 329px;
  height: 56px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.search-input:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 255, 0.12);
}

.search-input img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.search-input input {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: #000;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
}
.search-input input:focus {
  outline: none !important;
}

.search-input input::-moz-placeholder {
  color: var(--color-text-acacac);
  font-weight: 600;
}

.search-input input::placeholder {
  color: var(--color-text-acacac);
  font-weight: 600;
}

/* ===== REAL FILTER SELECT ===== */
.filter-select-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border-gray);
  border-radius: 30px;
  padding: 16px 24px;
  width: 295px;
  height: 56px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.filter-select-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 255, 0.12);
}

.filter-select-wrap .filter-select__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.filter-select-wrap .filter-select__chevron {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  pointer-events: none;
}

.filter-select {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: #000;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  flex: 1;
}
.filter-select:focus {
  outline: none !important;
}

.filter-select option {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 8px;
}

/* ===== EXAM CARDS GRID (Bootstrap) ===== */
.exam-card {
  background: #fff;
  border-radius: 21px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.exam-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  width: -moz-fit-content;
  width: fit-content;
}

.exam-card__badge--expert {
  background: var(--color-red-bg);
  border: 1px solid var(--color-red-border);
  color: var(--color-red-expert);
}

.exam-card__badge--advanced {
  background: var(--color-advanced-bg);
  border: 1px solid var(--color-advanced-border);
  color: var(--color-advanced);
}

.exam-card__icon {
  width: 72px;
  height: 72px;
  background: var(--color-bg-card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-card__icon img {
  width: 37px;
  height: 39px;
}

.exam-card__title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 24px;
  color: #000;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}

.exam-card__divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
}

.exam-card__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exam-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exam-card__row-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exam-card__row-label img {
  width: 17px;
  height: 17px;
}

.exam-card__row-label span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: #eb515c;
  white-space: nowrap;
}

.exam-card__row-label--dur span {
  color: var(--color-text-acacac);
}

.exam-card__date {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-red-expert);
}

.exam-card__dur {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.exam-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 30px;
  height: 56px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.exam-card__btn:hover {
  background: #055aae;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 108, 203, 0.35);
}

.exam-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 108, 203, 0.25);
}

.exam-card__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.exam-card__btn img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.exam-card__btn:hover img {
  transform: translateX(4px);
}

/* Exam Categories */
.exam-cats {
  margin-top: 80px;
}

.exam-cats__header {
  text-align: center;
  margin-bottom: 65px;
}

.exam-cats__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 49px;
  color: var(--color-text-dark);
  letter-spacing: -1px;
  text-align: center;
  line-height: 1.1;
}

.exam-cats__sub {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-light);
  letter-spacing: -0.36px;
}

.exam-cat-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.exam-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(10, 102, 255, 0.3);
}

.exam-cat-card:hover .exam-cat-card__arrow {
  background: var(--color-primary);
}

.exam-cat-card:hover .exam-cat-card__arrow img {
  filter: brightness(0) invert(1);
}

.exam-cat-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.exam-cat-card__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.exam-cat-card__icon {
  width: 79px;
  height: 79px;
  background: var(--color-bg-card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exam-cat-card__icon img {
  width: 37px;
  height: 39px;
}

.exam-cat-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exam-cat-card__name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 18px;
  color: #000;
  line-height: 1.3;
}

.exam-cat-card__tags {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exam-cat-card__tag {
  background: #f3f3f3;
  border-radius: 4px;
  padding: 3px 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.exam-cat-card__duration {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
}

.exam-cat-card__arrow {
  width: 45px;
  height: 45px;
  background: var(--color-bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.exam-cat-card__arrow img {
  width: 36px;
  height: 36px;
  transition: filter 0.3s ease, transform 0.2s ease;
}

.exam-cat-card:hover .exam-cat-card__arrow img {
  transform: translateX(3px);
}

/* View all button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 38px;
  padding: 10px 24px;
  height: 56px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-accent-blue);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 255, 0.3);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 102, 255, 0.2);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-center {
  text-align: center;
  margin-top: -290px;
  padding-top: 75px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.31) 0%, #FFF 53.37%);
}

/* ========== COURSES SECTION ========== */
.courses {
  background: #fff;
  padding: var(--spacing-section) var(--spacing-section-x);
}

.courses__inner {
  max-width: 1645px;
  margin: 0 auto;
}

.courses__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 81px;
}

.courses__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 557px;
}

.courses__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 49px;
  color: var(--color-text-dark);
  letter-spacing: -1px;
  line-height: 1.1;
}

.courses__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 430px;
}

.courses__header-right p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-light);
  letter-spacing: -0.36px;
}

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  background-color: transparent !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.nav-arrow:hover {
  background: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(10, 102, 255, 0.3);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.nav-arrow:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.nav-arrow img {
  width: 24px;
  height: 24px;
  transition: filter 0.25s;
}

.nav-arrow--prev img {
  transform: rotate(180deg);
}

.course-feature {
  background: #fff;
  border: 1px solid rgba(211, 211, 211, 0.37);
  border-radius: 30px;
  padding: 32px;
  display: flex !important;
  gap: 60px;
  align-items: center;
  box-shadow: 8px 4px 25.6px 0 rgba(0, 0, 0, 0.05);
}

.course-feature__img {
  flex-shrink: 0;
  width: 674px;
  height: 535px;
  border-radius: 20px;
  overflow: hidden;
}

.course-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.course-feature__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.course-feature__category {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-accent-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.course-feature__title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 34px;
  color: #000;
  line-height: 1.25;
}

.course-feature__desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-light);
  letter-spacing: -0.36px;
}

.course-feature__highlights {
  background: #fafbfd;
  border-radius: 15px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 101px;
}

.course-feature__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.course-feature__highlight img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.course-feature__highlight span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-dark);
  letter-spacing: -0.32px;
  line-height: 28px;
  white-space: nowrap;
}

.course-feature__divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
}

.course-feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-feature__instructor {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.course-feature__instructor-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.course-feature__instructor-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-dark);
}

.course-feature__pricing {
  display: flex;
  align-items: center;
  gap: 24px;
}

.course-feature__prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #969696;
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-primary);
}

.enroll-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 38px;
  height: 56px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.enroll-btn:hover {
  background: #055aae;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 108, 203, 0.35);
}

.enroll-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 108, 203, 0.25);
}

.enroll-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.enroll-btn img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.enroll-btn:hover img {
  transform: translateX(4px);
}

/* ========== COURSE LIBRARY ========== */
.library {
  background: var(--color-bg-courses);
  padding: var(--spacing-section) 0;
}

.library__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.library__heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 49px;
  color: var(--color-text-dark);
  letter-spacing: -1px;
  text-align: center;
  line-height: 1.1;
}

.library__sub {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-light);
  letter-spacing: -0.36px;
  max-width: 565px;
}

.library__tabs {
  background: #fff;
  border: 1px solid rgba(192, 192, 192, 0.17);
  border-radius: 800px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
}

.library__tab {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-body) !important;
  padding: 17px 25px;
  border-radius: 800px;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--color-bg-section) !important;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.library__tab:hover:not(.library__tab--active) {
  background: #e6f0ff;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.library__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.library__tab--active {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(6, 108, 203, 0.3);
}

.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.course-card__img {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin: 12px;
  position: relative;
}

.course-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.course-card:hover .course-card__img img {
  transform: scale(1.05);
}

.course-card__instructor-avatar {
  position: absolute;
  bottom: -22px;
  right: 12px;
  width: 58px;
  height: 58px;
  border-radius: 30px;
  border: 2px solid #fff;
  overflow: hidden;
  z-index: 2;
}

.course-card__instructor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.course-card__body {
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-card__tags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.course-card__tag {
  padding: 8px 20px;
  border-radius: 800px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.course-card__tag--cat {
  background: var(--color-bg-section);
  color: var(--color-primary-dark);
}

.course-card__tag--lvl {
  background: #f1fbf5;
  color: var(--color-green);
}

.course-card__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-link);
  line-height: 28.8px;
  margin-bottom: 24px;
  min-height: 57.6px;
}

.course-card__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 0;
}

.course-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-card__meta-item img {
  width: 24px;
  height: 24px;
}

.course-card__meta-item span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text-link);
  line-height: 27px;
}

.course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 16px 16px;
  border-top: 1px dashed #c1c4cc;
  margin-top: 16px;
}

.course-card__price {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-price);
  line-height: 28.8px;
}

.course-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-card__rating-star {
  font-size: 24px;
  color: var(--color-star);
  line-height: 24px;
}

.course-card__rating-val {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text-link);
  line-height: 27px;
}

.course-card__rating-cnt {
  font-family: var(--font-primary);
  font-size: 18px;
  color: #798090;
  line-height: 27px;
}

.library__cta {
  text-align: center;
  padding-top: 66px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 38px;
  height: 56px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: #055aae;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 108, 203, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 108, 203, 0.25);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.btn-primary:hover img {
  transform: translateX(4px);
}

/* ── Slick overrides ── */
/* Hide Slick's own generated arrows completely */
.course-slider .slick-prev,
.course-slider .slick-next {
  display: none !important;
}

/* Each slide: Slick wraps cards in .slick-slide — remove inner margin quirks */
.course-slider .slick-slide {
  outline: none;
}

/* Give the slider a little overflow room so the card shadow isn't clipped */
.course-slider {
  overflow: visible;
}

/* Slick sets overflow:hidden on .slick-list; we compensate with padding */
.course-slider .slick-list {
  overflow: hidden;
  border-radius: 30px;
  /* match card radius so shadow renders cleanly */
}

/* Active dot pill — Slick adds .slick-active to the <li>, our span is inside */
.course-dots .slick-active .course-dot {
  width: 25px;
  border-radius: 5px;
  background: var(--color-primary);
}

/* Slick wraps each dot in an <li> — reset list styles */
.course-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 54px;
}

.page-banner {
  margin: 0 30px;
  height: 35vh;
}
.page-banner .banner-wrap {
  background: linear-gradient(90deg, #1B3763 0%, #0340A3 100%);
  height: 100%;
  border-radius: 43px;
}

.about-who-section .emphasize-txt {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.36px;
  color: #066CCB;
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid #0A66FF;
}

.about-serve-section {
  background-image: url("../images/serve-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.about-serve-section .serve-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 24px 0 #EBEEF2;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: 0.3s all ease-in-out;
}
.about-serve-section .serve-card img {
  transition: 0.3s all ease-in-out;
}
.about-serve-section .serve-card * {
  position: relative;
}
.about-serve-section .serve-card::before {
  content: "";
  background-color: #234679;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  transition: 0.3s all ease-in-out;
}

.about-serve-section .serve-card:hover * {
  color: #fff;
}
.about-serve-section .serve-card:hover img {
  filter: brightness(0) invert(1);
}
.about-serve-section .serve-card:hover::before {
  height: 100%;
}
.about-serve-section .mission-card {
  display: flex;
  padding: 32px;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: #F2F2F2;
  box-shadow: 0 -21px 4px 1px #FFF;
  margin: 114px 0 -210px 0;
}
.about-serve-section .mission-card p {
  width: 65%;
  color: #39557E;
  font-weight: 600;
}

.help-learn-section {
  padding-top: 210px !important;
}
.help-learn-section .help-no {
  color: #1363DF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.service-top-part {
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.service-main-card {
  padding: 64px 104px;
  border-radius: 30px;
  position: sticky;
}
.service-main-card .service-card-point {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mainCard1 {
  top: 30px;
  background: #D9E7FF;
  border-top: 5px solid #1D3D73;
}
.mainCard1 h3 {
  color: #1D3D73;
}
.mainCard1 .service-card-point {
  color: #1D3D73;
}

.mainCard2 {
  top: 70px;
  background: #FFE6D9;
  border-top: 5px solid #6D381D;
}
.mainCard2 h3 {
  color: #6D381D;
}
.mainCard2 .service-card-point {
  color: #6D381D;
}

.mainCard3 {
  top: 110px;
  background: #FBFFD9;
  border-top: 5px solid #5C6516;
}
.mainCard3 h3 {
  color: #5C6516;
}
.mainCard3 .service-card-point {
  color: #5C6516;
}

.mainCard4 {
  top: 150px;
  background: #D9FFE8;
  border-top: 5px solid #1D743F;
}
.mainCard4 h3 {
  color: #1D743F;
}
.mainCard4 .service-card-point {
  color: #1D743F;
}

.service-dimension-section {
  background: #F5F8FA;
}
.service-dimension-section .dimension-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(10, 102, 255, 0.48);
  background: #FFF;
  height: 100%;
}
.service-dimension-section .dimension-card h4 {
  opacity: 0.52;
}
.service-dimension-section .dimension-card h3 {
  color: #2F57EF;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(109.27deg, #061331 10.9%, #152c5d 93.7%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 143px;
  gap: 40px;
}

.footer-pattern {
  position: absolute;
  top: -110px;
  left: 0;
}

.footer__brand {
  max-width: 337px;
}

.footer__logo {
  height: 62px;
  margin-bottom: 24px;
}

.footer__logo img {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-footer-text);
  max-width: 314px;
  margin-bottom: 24px;
}

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

.footer__social {
  width: 46px;
  height: 46px;
  background: var(--color-footer-icon-bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.2s;
  color: #fff;
}

.footer__social:hover {
  background: #2d4060;
  transform: translateY(-3px);
  color: var(--color-advanced);
}

.footer__social svg {
  width: 30px;
  height: 30px;
}

.footer__social--li svg {
  width: 25px;
  height: 25px;
}

.footer__nav {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
}

.footer__col {
  padding: 0;
  min-width: 150px;
}

.footer__col-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-footer-heading);
  line-height: 31.2px;
  margin-bottom: 24px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

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

.footer__col ul li a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-footer-link);
  line-height: 27px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer__col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__bottom {
  margin-top: 60px;
  padding: 25px 143px;
  border-top: 1px solid #25494a;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-footer-text);
  line-height: 27px;
}

.footer__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 113px;
  opacity: 0.5;
}/*# sourceMappingURL=dreamignite.css.map */

/*New Css */
/* =============================================
           DREAMIGNITE COURSE PAGE — PREMIUM REDESIGN
           ============================================= */

/* Override default page-wrapper padding for full-width sections */
.page-wrapperr .page-content {
  padding: 0 !important;
  margin: 0 !important;
}

html {
  scroll-behavior: smooth;
}

/* ── Course Hero ─────────────────────────────── */
.course-hero {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #f5f8ff 100%);
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}

.course-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.course-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.course-hero__container,
.course-section__container,
.course-nav__container,
.course-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.course-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
}

.course-hero__breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.course-hero__breadcrumb a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.course-hero__breadcrumb-sep {
  color: #94a3b8;
  font-size: 11px;
}

.course-hero__breadcrumb-current {
  color: #334155;
  font-weight: 600;
}

.course-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 370px;
  gap: 48px;
  /* align-items: start; */
}

.course-hero__category {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.course-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

.course-hero__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 26px;
  max-width: 580px;
}
.course-hero__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #27c127;
  padding-top: 10px;
  border-top: 1px solid #b6edb6;
}

.course-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  background: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.course-hero__meta-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.course-hero__meta-item i {
  font-size: 15px;
}

.course-hero__meta-item--video i {
  color: #2563eb;
}

.course-hero__meta-item--pdf i {
  color: #ef4444;
}

.course-hero__meta-item--exam i {
  color: #10b981;
}

/* ── Stats Card (Hero Right) ─────────────────── */
.course-hero__stats-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}

.course-hero__stats-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.course-hero__stats-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.course-hero__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 12px;
  transition: background 0.2s;
}

.course-hero__stat:hover {
  background: #eff6ff;
}

.course-hero__stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.course-hero__stat-icon--video {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.course-hero__stat-icon--pdf {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.course-hero__stat-icon--exam {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.course-hero__stat-info {
  display: flex;
  flex-direction: column;
}

.course-hero__stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.course-hero__stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.course-hero__stats-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.course-hero__stats-btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.course-hero__stats-btn i {
  font-size: 13px;
  transition: transform 0.2s;
}

.course-hero__stats-btn:hover i {
  transform: translateX(3px);
}

/* ── Course Quick Nav ────────────────────────── */
.course-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.course-nav--shadow {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.course-nav__container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.course-nav__container::-webkit-scrollbar {
  display: none;
}

.course-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 16px 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  position: relative;
}

.course-nav__link:hover {
  color: #252525;
}

/* .course-nav__link--active {
            color: #2563eb;
            border-bottom-color: #2563eb;
        } */

#videoLessons.course-nav__link--active {
  color: #2563eb !important;
  border-bottom-color: #2563eb !important;
}

#studyMaterials.course-nav__link--active {
  color: #ef4444 !important;
  border-bottom-color: #ef4444 !important;
}

#assessments.course-nav__link--active {
  color: #10b981 !important;
  border-bottom-color: #10b981 !important;
}

.course-nav__link i {
  font-size: 14px;
}

/* Button reset for tab nav */
button.course-nav__link {
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  outline: none;
}

/* ── Tab Panes ───────────────────────────────── */
.course-tab-pane {
  display: none;
}

.course-tab-pane--active {
  display: block;
}

/* ── Course Sections ─────────────────────────── */
.course-sections {
  padding: 56px 0;
  background-color: #f8fafc;
}

.course-section--alt {
  background: #f8fafc;
}

.course-section__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.course-section__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.course-section__icon--video {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.course-section__icon--pdf {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.course-section__icon--exam {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.course-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 5px;
}

.course-section__desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* Scroll target offset */
.course-hero,
.course-sections {
  scroll-margin-top: 16px;
}

/* ── Video Cards ─────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #dbeafe;
}

.video-card__thumbnail-link {
  display: block;
  text-decoration: none;
}

.video-card__thumbnail {
  position: relative;
  padding-top: 56.25%;
  background: #0f172a;
  overflow: hidden;
}

.video-card__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s;
}

.video-card:hover .video-card__thumbnail img {
  transform: scale(1.06);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-card__overlay {
  opacity: 1;
}

.video-card__play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 20px;
  transition: transform 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-card:hover .video-card__play {
  transform: scale(1.1);
}

.video-card__play i {
  margin-left: 3px;
}

.video-card__content {
  padding: 20px 22px;
}

.video-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.video-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.video-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.video-card__category {
  font-size: 13px;
  color: #64748b;
}

.video-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition:
    gap 0.2s ease,
    color 0.2s;
}

.video-card__link:hover {
  gap: 10px;
  color: #1d4ed8;
}

/* ── Resource / PDF Items ────────────────────── */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.resource-item:hover {
  border-color: #dbeafe;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.resource-item__icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(239, 68, 68, 0.07);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.resource-item__content {
  flex: 1;
  min-width: 0;
}

.resource-item__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 7px;
}

.resource-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-item__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.07);
  color: #ef4444;
}

.resource-item__info {
  font-size: 13px;
  color: #64748b;
}

.resource-item__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #fff;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.resource-item__action:hover {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* ── Exam Cards ──────────────────────────────── */
.exam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exam-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border-left: 4px solid #10b981;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.exam-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border-color: #dbeafe;
  border-left-color: #10b981;
}

.exam-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  text-transform: capitalize;
}

.exam-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.exam-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.exam-card__meta-item i {
  font-size: 14px;
  color: #94a3b8;
}

.exam-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background: #10b981;
  color: #fff;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.exam-card__action:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.exam-card__action i {
  font-size: 12px;
  transition: transform 0.2s;
}

.exam-card__action:hover i {
  transform: translateX(3px);
}

/* ── Continue Learning CTA ───────────────────── */
.course-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #e0ecff 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.course-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.course-cta__container {
  max-width: 640px;
  position: relative;
}

.course-cta__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

.course-cta__desc {
  font-size: 16px;
  color: #475569;
  margin: 0 0 28px;
  line-height: 1.65;
}

.course-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.course-cta__btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.course-cta__btn i {
  font-size: 14px;
  transition: transform 0.2s;
}

.course-cta__btn:hover i {
  transform: translateX(4px);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .course-hero__grid {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }

  .course-hero__title {
    font-size: 30px;
  }

  .video-grid,
  .exam-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px !important;
  }
  .course-hero {
    padding: 28px 0 36px;
  }

  .course-hero__container,
  .course-section__container,
  .course-nav__container,
  .course-cta__container {
    padding: 0 20px;
  }

  .course-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .course-hero__title {
    font-size: 26px;
  }

  .course-hero__desc {
    font-size: 14.5px;
    max-width: 100%;
  }

  .course-hero__meta {
    gap: 8px;
  }

  .course-hero__meta-item {
    font-size: 13px;
    padding: 7px 12px;
  }

  .course-nav__link {
    padding: 14px 16px;
    font-size: 13px;
  }

  .course-sections {
    padding: 40px 0;
  }

  .course-section__title {
    font-size: 20px;
  }

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

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

  .resource-item {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
  }

  .resource-item__action {
    width: 100%;
    justify-content: center;
  }

  .course-cta {
    padding: 40px 0;
  }

  .course-cta__title {
    font-size: 22px;
  }

  .course-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .exam-card {
    padding: 20px;
  }

  .exam-card__action {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .course-hero__meta {
    flex-direction: column;
  }

  .course-hero__meta-item {
    width: 100%;
  }

  .course-section__header {
    flex-direction: column;
    gap: 12px;
  }

  .course-hero__breadcrumb {
    font-size: 13px;
  }

  .course-hero__stats-card {
    padding: 22px;
  }
}

/* ── Profile Avatar Dropdown ────────────────── */
.profile-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  outline: none;
  user-select: none;
  position: relative;
}

.profile-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.profile-avatar:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.profile-avatar.is-active {
  border-color: #dbeafe;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Dropdown Menu */
.profile-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.profile-dropdown__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.profile-dropdown__header {
  padding: 14px 18px 10px;
}

.profile-dropdown__name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.profile-dropdown__divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0 12px;
}

.profile-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.profile-dropdown__item:hover {
  background: #f8fafc;
  color: #2563eb;
}

.profile-dropdown__item i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: #94a3b8;
  transition: color 0.15s ease;
}

.profile-dropdown__item:hover i {
  color: #2563eb;
}

.profile-dropdown__item--logout:hover {
  color: #ef4444;
}

.profile-dropdown__item--logout:hover i {
  color: #ef4444;
}

.profile-dropdown__form {
  margin: 0;
  padding: 0;
}

/* =============================================
   DREAMIGNITE STUDENT DASHBOARD — PREMIUM REDESIGN
   ============================================= */

/* ── Dashboard Container ────────────────────── */
.dashboard {
  background: #f8fafc;
  min-height: 60vh;
}

.dashboard__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section Headers ────────────────────────── */
.dashboard__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard__section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard__section-title i {
  font-size: 20px;
  color: #2563eb;
}

.dashboard__section-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s;
}

.dashboard__section-link:hover {
  gap: 10px;
  color: #1d4ed8;
}

/* ── 1. Welcome Section ─────────────────────── */
.dashboard__welcome {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #f5f8ff 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.dashboard__welcome::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dashboard__welcome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dashboard__welcome-text {
  flex: 1;
}

.dashboard__greeting {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.dashboard__greeting-emoji {
  display: inline-block;
  animation: dashboard-wave 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes dashboard-wave {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60%, 100% { transform: rotate(0deg); }
}

.dashboard__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  color: #475569;
  margin: 0 0 16px;
  line-height: 1.6;
  max-width: 520px;
}

.dashboard__welcome-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dashboard__welcome-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
}

.dashboard__welcome-meta-item i {
  font-size: 14px;
  color: #94a3b8;
}

.dashboard__welcome-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

/* ── 2. Quick Statistics ────────────────────── */
.dashboard__stats-section {
  padding: 32px 0 0;
}

.dashboard__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dashboard__stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dashboard__stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border-color: #dbeafe;
}

.dashboard__stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dashboard__stat-card__icon--courses {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.dashboard__stat-card__icon--exams {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.dashboard__stat-card__icon--scheduled {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.dashboard__stat-card__icon--certs {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.dashboard__stat-card__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dashboard__stat-card__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dashboard__stat-card__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

/* ── 3. Learning Progress + Continue Learning ─ */
.dashboard__dual-section {
  padding: 32px 0 0;
}

.dashboard__dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Learning Progress */
.dashboard__progress-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
}

.dashboard__progress-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard__progress-card__title i {
  font-size: 18px;
  color: #2563eb;
}

.dashboard__progress-overall {
  margin-bottom: 24px;
}

.dashboard__progress-overall__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard__progress-overall__percent {
  font-size: 16px;
  font-weight: 800;
  color: #2563eb;
}

.dashboard__progress-bar {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.dashboard__progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 20px;
  transition: width 1s ease-out;
  position: relative;
}

.dashboard__progress-bar__fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0 20px 20px 0;
}

.dashboard__progress-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dashboard__progress-mini {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.dashboard__progress-mini__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dashboard__progress-mini__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
}

/* Continue Learning Card */
.dashboard__continue-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #2563eb;
}

.dashboard__continue-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.dashboard__continue-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.3;
}

.dashboard__continue-card__module {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard__continue-card__module i {
  font-size: 14px;
  color: #94a3b8;
}

.dashboard__continue-card__progress-wrap {
  margin-bottom: 24px;
}

.dashboard__continue-card__progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dashboard__continue-card__progress-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.dashboard__continue-card__progress-percent {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.dashboard__continue-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
  align-self: flex-start;
}

.dashboard__continue-card__btn:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.dashboard__continue-card__btn i {
  font-size: 13px;
  transition: transform 0.2s;
}

.dashboard__continue-card__btn:hover i {
  transform: translateX(3px);
}

/* ── 4. Enrolled Courses Section ────────────── */
.dashboard__courses-section {
  padding: 40px 0 0;
}

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

/* Course Card Component */
.course-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #dbeafe;
}

.course-card__image {
  position: relative;
  padding-top: 52%;
  background: linear-gradient(135deg, #e0ecff 0%, #dbeafe 50%, #eff6ff 100%);
  overflow: hidden;
}

.course-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-card__image img {
  transform: scale(1.05);
}

.course-card__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #94a3b8;
}

.course-card__content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card__category {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
}

.course-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.35;
}

.course-card__instructor {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-card__instructor i {
  font-size: 13px;
  color: #94a3b8;
}

.course-card__progress-wrap {
  margin-bottom: 12px;
}

.course-card__progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.course-card__progress-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.course-card__progress-percent {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
}

.course-card__progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.course-card__progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 20px;
  transition: width 0.8s ease-out;
}

.course-card__lessons {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 16px;
}

.course-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
  align-self: flex-start;
}

.course-card__action:hover {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.course-card__action i {
  font-size: 12px;
  transition: transform 0.2s;
}

.course-card__action:hover i {
  transform: translateX(3px);
}

/* ── 5. Upcoming Exams ──────────────────────── */
.dashboard__exams-section {
  padding: 40px 0 0;
}

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

.exam-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.exam-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border-color: #dbeafe;
  border-left-color: #2563eb;
}

.exam-item__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.exam-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.exam-item__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.exam-item__meta-item i {
  font-size: 14px;
  color: #94a3b8;
}

.exam-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.exam-item__status {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
}

.exam-item__status--upcoming {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.exam-item__status--completed {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.exam-item__action {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease, color 0.2s;
}

.exam-item__action:hover {
  gap: 8px;
  color: #1d4ed8;
}

.exam-item__action i {
  font-size: 12px;
}

/* ── 6. Split Grid (Enrolled Courses & Exams / Recent Activity) ── */
.dashboard__split-section {
  padding: 32px 0 48px;
}

.dashboard__split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Enrolled Panel (Courses & Exams) */
.dashboard__enrolled-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard__enrolled-panel__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard__enrolled-panel__title i {
  font-size: 18px;
  color: #2563eb;
}

/* Table Enhancements */
.dashboard__table-desc {
  font-size: 13px !important;
  color: #64748b !important;
  line-height: 1.4;
  max-width: 240px;
}

.dashboard__table-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #0f172a;
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
  white-space: nowrap;
}

.dashboard__table-attempts {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  display: inline-block;
}

/* Mobile cards for enrolled sections (hidden on desktop) */
.dashboard__enrolled-cards-mobile {
  display: none;
}

/* Recent Exams Table */
.dashboard__recent-exams {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
  overflow: hidden;
}

.dashboard__recent-exams__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard__recent-exams__title i {
  font-size: 18px;
  color: #2563eb;
}

.dashboard__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.dashboard__table thead th {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  white-space: nowrap;
}

.dashboard__table tbody td {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  padding: 14px 14px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.dashboard__table tbody tr:last-child td {
  border-bottom: none;
}

.dashboard__table tbody tr {
  transition: background 0.15s ease;
}

.dashboard__table tbody tr:hover {
  background: #f8fafc;
}

.dashboard__table-score {
  font-weight: 700;
  color: #0f172a;
}

.dashboard__table-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
}

.dashboard__table-status--passed {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.dashboard__table-status--failed {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.dashboard__table-action {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.dashboard__table-action:hover {
  color: #1d4ed8;
}

/* Mobile cards for recent exams (hidden on desktop) */
.dashboard__recent-exams-cards {
  display: none;
}

.dashboard__exam-mobile-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.dashboard__exam-mobile-card:last-child {
  margin-bottom: 0;
}

.dashboard__exam-mobile-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.dashboard__exam-mobile-card__row:last-child {
  margin-bottom: 0;
}

.dashboard__exam-mobile-card__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.dashboard__exam-mobile-card__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-align: end;
}

/* Activity Feed */
.dashboard__activity-feed {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
}

.dashboard__activity-feed__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard__activity-feed__title i {
  font-size: 18px;
  color: #2563eb;
}

.dashboard__activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.activity-item:first-child {
  padding-top: 0;
}

.activity-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.activity-item__icon--completed {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.activity-item__icon--video {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.activity-item__icon--exam {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.activity-item__icon--cert {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.activity-item__content {
  flex: 1;
  min-width: 0;
}

.activity-item__text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin: 0 0 3px;
  line-height: 1.4;
}

.activity-item__time {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
}

/* ── 7. Achievements Section ────────────────── */
.dashboard__achievements-section {
  padding: 40px 0 48px;
}

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

.achievement-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.achievement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border-color: #dbeafe;
}

.achievement-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}

.achievement-card__icon--certs {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.achievement-card__icon--courses {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.achievement-card__icon--exams {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.achievement-card__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.achievement-card__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

/* ── Dashboard Responsive ───────────────────── */
@media (max-width: 1024px) {
  .dashboard__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard__courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard__exams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .dashboard__achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard__container {
    padding: 0 20px;
  }

  .dashboard__welcome {
    padding: 28px 0;
  }

  .dashboard__welcome-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .dashboard__greeting {
    font-size: 24px;
  }

  .dashboard__welcome-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
    position: absolute;
    top: 28px;
    right: 20px;
  }

  .dashboard__welcome-inner {
    position: relative;
  }

  .dashboard__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .dashboard__stat-card {
    padding: 18px;
  }

  .dashboard__stat-card__value {
    font-size: 24px;
  }

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

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

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

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

  .dashboard__achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Table → Cards on mobile */
  .dashboard__table-desktop {
    display: none;
  }

  .dashboard__recent-exams-cards,
  .dashboard__enrolled-cards-mobile {
    display: block;
  }

  .dashboard__section-title {
    font-size: 19px;
  }

  .dashboard__continue-card__btn {
    width: 100%;
    justify-content: center;
  }

  .course-card__action {
    width: 100%;
    justify-content: center;
  }

  .exam-item__action {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .dashboard__stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dashboard__stat-card {
    padding: 14px;
    gap: 10px;
  }

  .dashboard__stat-card__icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .dashboard__stat-card__value {
    font-size: 20px;
  }

  .dashboard__welcome-meta {
    flex-direction: column;
    gap: 8px;
  }

  .dashboard__progress-mini-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .dashboard__greeting {
    font-size: 22px;
  }

  .dashboard__section-title {
    font-size: 17px;
  }

  .dashboard__recent-exams,
  .dashboard__enrolled-panel {
    padding: 18px;
  }

  .dashboard__activity-feed {
    padding: 20px;
  }
}
