@charset "UTF-8";
/* ================= WHITE · LUXE (Sana-inspired) ========================== */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --surface: #ffffff;
  --ink: #0e1524;
  --muted: #667089;
  --line: #e8edf4;
  --color-border: #e6e6e6;
  --accent: #2b6aff;
  --accent-soft: #eaf1ff;
  --cream-color: rgb(255, 254, 239);
  --success: #18a368;
  --error: #c22626;
  --r-10: 10px;
  --r-12: 12px;
  --r-14: 14px;
  --r-16: 16px;
  --r-18: 18px;
  --r-20: 20px;
  --r-22: 22px;
  --r-24: 24px;
  --r-28: 28px;
  --shadow-1: 0 1px 2px rgba(12, 18, 28, 0.06);
  --shadow-2: 0 10px 30px rgba(12, 18, 28, 0.08);
  --shadow-3: 0 24px 56px rgba(12, 18, 28, 0.12);
  --font: ui-sans-serif, -apple-system, system-ui, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial;
  --fs-12: clamp(0.76rem, 0.72rem + 0.15vw, 0.8rem);
  --fs-14: clamp(0.9rem, 0.86rem + 0.15vw, 0.95rem);
  --fs-16: clamp(1rem, 0.98rem + 0.2vw, 1.06rem);
  --fs-18: clamp(1.1rem, 1.06rem + 0.2vw, 1.2rem);
  --fs-20: clamp(1.22rem, 1.16rem + 0.3vw, 1.32rem);
  --fs-24: clamp(1.35rem, 1.2rem + 0.7vw, 1.55rem);
  --fs-30: clamp(1.6rem, 1.35rem + 1.2vw, 1.9rem);
  --max: 1440px;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
}

ul,
ul li {
  list-style: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--accent), #fff 18%);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  z-index: 999;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

/* Layout */
.app {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .app {
    grid-template-columns: 240px 1fr;
  }
}
@media (max-width: 960px) {
  .app {
    grid-template-columns: 1fr;
  }
}
/* sidebar overlays */
/* SIDEBAR */
/* .sidebar {
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  border-right: 1px solid #e6e6e6;
  padding-top: 18px;
  overflow-y: auto;
} */
.logo-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.logo-wrap img {
  max-width: 100px;
  height: auto;
}

.nav-link,
.sub-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: lab(35.5623% -1.74978 -15.4316);
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 18px;
  margin: 5px 18px;
  transition: all 0.22s ease;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: space-between;
}

.nav-link span,
.sub-link span,
.nav-link.logout span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background: #f5f5f4;
  border-radius: 12px;
}

.nav-link p,
.sub-link p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link strong {
  height: 36px;
  width: 36px;
  display: inline-block;
  background: conic-gradient(from 0deg, oklab(74.5991% -0.0970495 -0.127188 / 0.3) 0deg 180deg, oklab(76.4996% -0.16946 0.0511031 / 0.3) 180deg 360deg);
}

/* AI badge */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px !important;
  border-radius: 10px;
  background: lab(23.7236% -0.581712 -25.6358 / 0.1) !important;
  color: rgb(30, 58, 95);
  height: auto !important;
  width: auto !important;
}

.ai-badge svg {
  stroke: rgb(30, 58, 95) !important;
  flex-shrink: 0;
  width: 10px !important;
  height: 10px !important;
}

.nav-link strong img {
  height: 100%;
  width: 100%;
}

.nav-link span svg,
.sub-link span svg {
  width: 16px;
  height: 16px;
  color: lab(35.5623% -1.74978 -15.4316);
}

.nav-link.active span svg,
.nav-link.active:hover span svg {
  stroke: #fff;
}

.nav-link.active span {
  background-color: rgb(30, 58, 95);
}

.nav-link:hover {
  background: lab(96.5286% -0.0991821 0.364268);
}

.nav-link:hover span svg {
  stroke: lab(35.5623% -1.74978 -15.4316);
}

.nav-link.dropdown-toggle {
  cursor: pointer;
}

.nav-link.dropdown-toggle.active {
  background: lab(96.5286% -0.0991821 0.364268);
  color: lab(9.03835% 1.15298 1.92955);
}

.nav-link.dropdown-toggle.active span {
  background: lab(91.055% 0.663072 0.865579);
}

.nav-link.dropdown-toggle.active span svg {
  stroke: lab(9.03835% 1.15298 1.92955);
}

.nav-link.active,
.nav-link.active:hover {
  background: lab(23.7236% -0.581712 -25.6358 / 0.1);
  color: rgb(30, 58, 95);
  font-weight: 500;
}

.nav-link i {
  width: 22px;
  text-align: center;
  font-size: 16px;
  color: #4b4b4b;
  transition: transform 0.22s ease, color 0.22s ease;
}

.nav-link:hover {
  background: #f4f6fb;
  color: rgb(75, 75, 75);
  /* transform: translateX(6px); */
}

.nav-link[data-bs-target="#settingsCollapse"] {
  position: relative;
  margin-top: 48px;
}

.nav-link[data-bs-target="#settingsCollapse"]::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 10px;
  /* aligns with other nav-link margins */
  right: 10px;
  height: 1px;
  background: #f5f5f4;
  /* soft grey line */
}

#appSidebar {
  display: flex;
  height: 100%;
}

/* Make sidebar a vertical flex container */
#appSidebar .nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Push last child to bottom */
#appSidebar .nav > *:last-child {
  margin-top: auto;
}

.section-small {
  font-size: 14px;
  color: #7e7e7e;
  font-weight: 600;
  padding: 7px 16px;
  margin-top: 8px;
}

.collapse .nav-link {
  padding-left: 36px;
  font-weight: 500;
  color: #444;
  margin: 2px 20px;
}

.nav-link.logout svg {
  stroke: lab(48.1164% 2.35701 4.26852);
  width: 16px;
  height: 16px;
}

.logout {
  color: lab(48.1164% 2.35701 4.26852) !important;
  font-weight: 500;
  background: white;
  position: fixed;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 18px;
  z-index: 10;
  transition: color 200ms ease;
  width: 215px;
  cursor: pointer;
}

.logout:hover {
  background: #fbeaea;
  color: #ef4444 !important;
}

.logout:hover svg {
  stroke: #ef4444 !important;
}

/* HEADER / TOPBAR */
header.topbar {
  position: sticky;
  top: 0;
  height: 84px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  z-index: 50;
  box-shadow: rgba(0, 0, 0, 0) 0px 25px 20px -20px;
}

.topbar .search {
  width: 340px;
  max-width: 50%;
}

.topbar .user-sm {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/*main middle content styles starts here */
/* Main */
/* .main {
  padding: 22px 24px;
  max-width: calc(var(--max) - 264px);
} */
/* @media (max-width: 1200px) {
  .main {
    max-width: calc(var(--max) - 240px);
  }
}

@media (max-width: 960px) {
  .main {
    max-width: var(--max);
  }
} */
/* Hero */
.centerMainIndex section {
  padding: 0px 2.5rem;
}

.centerMainIndex {
  height: 100% !important;
  background-color: #faf9f7;
}

.hero {
  padding: 40px !important;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.heroMain {
  display: flex;
  gap: 44px;
}

.hero-left {
  flex: 0 0 50%;
}

.hero-right {
  /* flex: 0 0 38%; */
  align-items: center;
  display: flex;
  gap: 50px;
}

.hero-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(30, 58, 95, 0.3), transparent);
}

.hero-right .quotation {
  margin-top: 15px;
  text-align: right;
}

.hero-right .quotation p {
  margin-bottom: 5px;
}

.hero-right .quote {
  font-size: 0.875rem;
  color: #45556c;
  font-style: italic;
}

.hero-right .writer {
  font-size: 0.75rem;
  font-weight: 500;
  color: #90a1b9;
}

/* 
.hero-right .streak {
  background-color: #fffffff2;
  border: 1px solid #0000000d;
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a),
    0 4px 6px -4px var(--tw-shadow-color, #0000001a);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-width: 140px;
}

.hero-right .streak .streaksvg {
  box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a),
    0 2px 4px -2px var(--tw-shadow-color, #0000001a);
  background: linear-gradient(to right, #4f46e5, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.hero-right .streak .streaksvg.orange {
  background: linear-gradient(
    to left,
    lab(57.1026% 64.2584 89.8886),
    lab(72.7183% 31.8672 97.9407)
  );
}

.hero-right .streak .streak-count {
  font-size: 32px;
  font-weight: 700;
}

.hero-right .streak .streak-txt {
  font-size: 14px;
  color: #6b7280;
} */
.hero-inner .on-track {
  font-size: 14px;
  padding: 0.625rem;
  color: #6366f1;
  font-weight: 600;
  background-color: rgba(99, 102, 241, 0.0784313725);
  padding: 0.625rem 1.25rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0.75rem 0 0.75rem;
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 1px 2px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
}

.hero-inner .on-track svg {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  margin: 6px 0 10px;
  font-size: 2.25rem;
  font-weight: 700;
}

.hero-sub {
  margin: 0;
  color: #62748e;
  font-size: 16px;
}

.hero-sub span {
  font-weight: 600;
  color: #1e3a5f;
}

.task-tiles {
  margin-top: 40px;
  background: rgb(30, 58, 95);
  border-radius: 16px;
  display: block;
  padding: 40px;
}

/* 
.task-tiles .task-head h2 {
  font-size: 32px;
  color: #111827;
  letter-spacing: -0.6px;
  font-weight: 600;
  margin-bottom: 16px;
}

.task-tiles .task-head p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
} */
.tile {
  /* gap: 50px;
  align-items: center;
  display: flex;
  width: 100%;
  border: 0;
  text-align: left;
  background: none; */
  position: relative;
  z-index: 2;
  width: 45%;
  color: #fff;
}

.continue_where_left {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #1e3a5f;
  padding: 40px;
  text-decoration: none;
}

.thumb {
  width: 104px;
  height: 104px;
  border-radius: 25px;
}

.thumb--peach {
  background: linear-gradient(135deg, #080300, #940500);
}

.thumb--aqua {
  background: linear-gradient(135deg, #038492, #182836);
}

.thumb--gold {
  background: linear-gradient(135deg, #70005d, #ffe882);
}

.thumb--goldIcon {
  width: 46px;
  height: 46px;
  box-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 8px 10px -6px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  background: linear-gradient(to right, #6366f1, #4f46e5);
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -16px;
  right: -16px;
}

.thumb--goldIcon svg {
  color: #fff;
  fill: #fff;
  width: 28px !important;
  height: 28px !important;
}

.pill {
  justify-self: start;
  margin-top: -24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-weight: 600;
  font-size: var(--fs-12);
  margin-left: -1px;
}

.pill--blue {
  background: var(--accent-soft);
  color: #163974;
}

.pill--live {
  background: #080808;
  color: #fff;
}

.tile-title .tile-title-main {
  font-weight: 600;
  font-size: 12px;
  color: white;
  border: 1px solid oklab(99.9994% 0.0000455678 0.0000200868 / 0.1);
  background-color: oklab(99.9994% 0.0000455678 0.0000200868 / 0.1);
  border-radius: 340282000000000000000000000000000000000px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tile-sub {
  color: #fff;
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  margin: 20px 0 16px;
}

.tile-description {
  color: #cad5e2;
  font-size: 0.875rem;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile-time span {
  font-size: 0.875rem;
  color: #cad5e2;
}

.tile-time .time-dot {
  background-color: #e5e7eb;
  border-radius: 340282000000000000000000000000000000000px;
  width: 6px;
  height: 6px;
}

.progress-card {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.progress-header .label {
  color: oklab(99.9994% 0.0000455677 0.0000200868 / 0.7);
  font-size: 0.75rem;
}

.progress-header .percent {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Bar track */
.progress-bar {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

/* fill */
.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  transition: width 0.6s ease;
}

.progress-fill-text {
  font-size: 11px;
  color: oklab(99.9994% 0.0000455678 0.0000200868 / 0.5);
}

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

.progressResume .resumeBtn {
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 7px 12px;
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 4px 6px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  border: 0;
}

.progressResume .resumeBtn svg {
  margin-right: 10px;
}

/* right img wrapper */
.banner-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}

/* img */
.banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.9;
  transition: transform 0.7s ease;
}

/* hover zoom */
.continue_where_left:hover .banner-image {
  transform: scale(1.05);
}

/* overlay */
.banner-image-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #1e3a5f 0%, rgba(30, 58, 95, 0.85) 40%, rgba(30, 58, 95, 0.4) 70%, transparent 100%);
}

/* .tile:hover {
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a),
    0 4px 6px -4px var(--tw-shadow-color, #0000001a);
  transform: translateY(-5px);
} */
/* .tile:hover .tile-sub {
  color: #6366f1;
} */
/* .tile .tile-arrow {
  transition: transform 0.3s ease;
} */
/* .tile:hover .tile-arrow {
  color: #6366f1;
  transform: translateX(5px);
} */
@media (max-width: 720px) {
  .task-tiles {
    grid-template-columns: 1fr;
  }
}
/* Sections */
/* .section {
  padding: 16px 0;
} */
.coach-card .section-title {
  font-size: 0.75rem;
  color: #90a1b9;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-p {
  font-size: 0.875rem;
  color: #62748e;
}

.muted {
  color: var(--muted);
}

/* Resume card */
.resume-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.resume-btn {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
}

.art {
  height: 140px;
}

.art--sky {
  background: linear-gradient(135deg, #f3f8ff, #e8f1ff);
}

.resume-body {
  padding: 12px;
}

.resume-title {
  margin: 6px 0 2px;
  font-size: var(--fs-18);
}

.resume-sub {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-14);
}

.skeleton {
  display: block;
  border-radius: 10px;
  height: 18px;
  margin: 6px 0;
  background: linear-gradient(90deg, #edf1f8, #f6f8fb, #edf1f8);
  background-size: 200% 100%;
  animation: sheen 1.1s linear infinite;
}

.skeleton.t1 {
  width: 52%;
  height: 20px;
}

.skeleton.t2 {
  width: 34%;
}

@keyframes sheen {
  to {
    background-position: 200% 0;
  }
}
/* Explore — overlay cards */
.cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(12, 1fr);
}

.linear_loader {
  grid-column: span 4;
}

.w-33p {
  width: 33%;
}

.card {
  grid-column: span 4;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid lab(90.952% 0 -0.0000119209);
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 1px 2px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card .card-text {
  padding: 22px;
}

.leftSideMain .card,
.rightSideMain .card {
  border-radius: 0;
  box-shadow: none;
  border: none;
  /* border-top: 1px solid var(--color-border); */
  /* padding: 8px 0 0 0; */
}

.no-border {
  border: 0 !important;
}

@media (max-width: 1200px) {
  .card {
    grid-column: span 6;
  }
}
@media (max-width: 760px) {
  .card {
    grid-column: auto;
    min-width: 280px;
  }
}
.card-art {
  height: 430px;
  position: relative;
  background: #fff;
}

.card-art .cardImgContainer {
  height: 218px;
  overflow: hidden;
  position: relative;
}

.card-art .cardImgContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklab(0% 0 0 / 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.card-art .cardImgContainer .lessons {
  position: absolute;
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 4px 6px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  background: #1e3a5f;
  padding: 0 12px;
  top: 15px;
  left: 15px;
  border-radius: 22px;
  z-index: 2;
}

.card-art .cardImgContainer .lessons.status-completed {
  background: #096;
}

.card-art .cardImgContainer .lessons.status-assigned {
  background: #e17100;
}

.card-art img {
  /* filter: brightness(60%) contrast(90%); */
  transform: scale(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* 
.card-art--amber {
  background-image: url("https://cdn.vsm.ai/assets/vsm/images/frame1.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top;
}

.card-art--violet {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame2.png");

  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
}

.card-art--teal {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame3.png");

  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
} */
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.06));
}

.overlay-top {
  /* position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  align-items: center; */
}

.overlay-top .progress {
  position: static;
}

.overlay-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.overlay-ico svg {
  width: 20px;
  height: 20px;
  fill: #2f3a5f;
}

.card-time {
  color: #62748e;
  font-size: 0.75rem;
}

.card-time-percent {
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
}

.card-percent {
  font-weight: 600;
  font-size: 0.75rem;
  color: #314158;
}

.card-title {
  margin-bottom: 10px !important;
  font-size: 1rem;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease, background-color;
  /* min-height: 48px; */
  max-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-text h5 {
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(30, 58, 95, 0.7019607843);
}

.progress-bar-base {
  background-color: #f5f5f4;
  border-radius: 340282000000000000000000000000000000000px;
  width: 100%;
  overflow: hidden;
  height: 6px;
}

.progress-bar-fill {
  background: #1e3a5f;
  border-radius: 9999px;
  height: 100%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.progress-bar-fill.status-completed {
  background-color: #096;
}

.progress-bar-fill.status-assigned {
  background-color: #e17100;
}

#courses-cards .card {
  transition: box-shadow 0.3s ease;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  /* subtle base shadow */
  /* for clean rounded corners */
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 1px 2px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
}

#courses-cards .card:hover {
  /* box-shadow: 0 12px 24px rgba(12, 12, 14, 0.322); */
  /* classy deep shadow on hover */
  /* transform: translateY(-3px); */
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 4px 6px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  /* slight lift on hover */
}

.card:hover .card-art img {
  /* transform: scale(1.5);
  filter: brightness(50%) contrast(90%); */
}

/* .card:hover .card-title {
  color: #6366f1;
} */
.card-type {
  margin-bottom: 0;
  color: #62748e;
  font-size: 13px;
  font-weight: 600;
}

.text-stone {
  color: #d6d3d1;
}

.totalLessons {
  color: #90a1b9;
  font-size: 0.75rem;
}

.progress {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 14px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-weight: 600;
  font-size: var(--fs-12);
}

.overlay-top .progress {
  border: none;
  background: transparent;
  box-shadow: none;
}

.progress .ico {
  width: 16px;
  height: 16px;
  fill: #14a565;
}

/* Dojo (tall) */
.dojo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: var(--surface);
}

.dojo-media {
  height: 360px;
}

@media (max-width: 720px) {
  .dojo-media {
    height: 260px;
  }
}
.dojo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dojo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.8));
}

.dojo-title {
  margin: 0 0 6px;
  font-size: var(--fs-24);
  color: #0f1a2e;
}

.dojo-sub {
  margin: 0 0 12px;
  color: #33415c;
  max-width: 70ch;
}

.dojo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
}

.btn-primary {
  background: #0f1a2e;
  color: #fff;
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  box-shadow: var(--shadow-2);
  background-color: #212121;
  color: #fff;
  transition: 0.8s ease;
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
}

/*dojo lx cards styles*/
.lx-card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.lx-card {
  grid-column: span 6;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.lx-btn {
  background-color: #fff;
  color: #6366f1 !important;
  font-weight: 600 !important;
  box-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 4px 6px -4px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 22px !important;
  display: inline-flex !important;
  gap: 10px;
}

.lx-btn.orange {
  color: #ea580c !important;
}

.lx-btn:hover {
  background-color: white;
  color: black;
}

.btn-dojo {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.btn-conversation {
  background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
}

.btn-index {
  width: 100%;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-index:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-index:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 
.lx-card,
.lx-card .lx-btn svg {
  transition: transform 0.3s ease;
}

.lx-card:hover {
  transform: translateY(-5px);
}

.lx-card:hover .lx-btn svg {
  transform: translateX(5px);
}

.lx-card--purple {
  box-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)),
    0 2px 4px -2px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  background-image: linear-gradient(
    to right bottom in oklab,
    rgb(99, 102, 241) 0%,
    rgb(139, 92, 246) 50%,
    rgb(168, 85, 247) 100%
  );
}

.lx-card--orange {
  background-image: linear-gradient(
    to right bottom in oklab,
    rgb(249, 115, 22) 0%,
    rgb(234, 88, 12) 50%,
    rgb(220, 38, 38) 100%
  );
}

.lx-card--blue {
  box-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)),
    0 2px 4px -2px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  background-image: linear-gradient(
    to right bottom in oklab,
    #1d293c 0%,
    #1e2a3f 50%,
    #1d2c43 100%
  );
}

.lx-card--green {
  background-image: linear-gradient(
    to right bottom in oklab,
    #004f3b 0%,
    #00513d 50%,
    #00533c 100%
  );
}

.lx-card--icon {
  background-color: #00bc9a;
  border-radius: 60px;
  width: 60px;
  height: 60px;
}

.lx-card--icon1 {
  background-color: #009cf2;
  border-radius: 60px;
  width: 60px;
  height: 60px;
}

.lx-card--blue .lx-card-art {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame7.png");

  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
}

.lx-card--copper .lx-card-art {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame3.png");

  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
}

.lx-card--geru .lx-card-art {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame8.png");

  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
}

.lx-card--bluish .lx-card-art {
  background: url("https://cdn.vsm.ai/assets/vsm/images/frame4.png");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;
}

.lx-card-art {
  position: absolute;
  inset: 0;
}

.lx-card-body {
  position: relative;
  padding: 40px;

  color: var(--cream-color);
}

.lx-card-title {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
}

.lx-card-sub .lx-card-sub-head {
  color: #fff;
  font-size: 16px;
}

.lx-card-sub .lx-card-sub-points {
  padding-left: 14px;
  display: inline-block;
}

.lx-card-sub .lx-card-sub-points li {
  margin-bottom: 12px;
  list-style: disc;
  font-size: 14px;
} */
/* GRID */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* MAIN CARD */
.coach-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  border-top: 6px solid #2f4f75;
  margin-top: 50px;
}

.coach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #2f4f75;
  border-radius: 20px 20px 0 0;
}

/* HEADER */
.coach-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.coach-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  position: relative;
  /* background: conic-gradient(#22c55e, #4ade80, #86efac, #22c55e); */
  background: conic-gradient(from 0deg, oklab(74.5991% -0.0970495 -0.127188 / 0.3) 0deg 180deg, oklab(76.4996% -0.16946 0.0511031 / 0.3) 180deg 360deg);
  animation: spin 3s linear infinite;
}

.avatar-wrapper.dojo {
  background: conic-gradient(#ff8a5c, #ffb347, #ffd166, #ff9a9e, #ff8a5c);
}

.coach-avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  animation: spinReverse 3s linear infinite;
}

/* .avatar-wrapper .status-dot {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
  bottom: 2px;
  right: 2px;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
} */
.coach-avatar {
  background-clip: padding-box;
}

.coach-profile h3 {
  margin: 0;
  font-size: 20px;
}

.coach-profile p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 14px;
}

/* BUTTONS */
.primary-btn {
  background: #2f4f75;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-btn:hover {
  background: #2d5a8b;
}

.primary-btn svg,
.outline-btn svg {
  margin-right: 10px;
  display: inline-block;
}

.outline-btn {
  background: #fff;
  border: 2px solid #2f4f75 !important;
  color: #2f4f75 !important;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.outline-btn:hover {
  background: linear-gradient(to right, #1e3a5f 0%, #2d5a8b 100%);
  color: #fff !important;
}

/* SECTION TITLE */
.section-title {
  font-size: 24px;
  color: #111827;
  font-weight: 700;
}

/* SUGGESTION CARD */
.suggestion-card {
  display: flex;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  gap: 14px;
  background: linear-gradient(to right, lab(98.1434% -0.369519 -1.05966) 0%, lab(98.2686% -0.0991821 0.364304) 100%);
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid lab(91.055% 0.663072 0.865579);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
  cursor: pointer;
}

.arrow-icon {
  display: flex;
  align-items: start;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.25s ease;
  margin-left: auto;
  margin-right: 10px;
}

.suggestion-card:hover {
  background: linear-gradient(to right, lab(96.286% -0.852436 -2.46847) 0%, lab(96.5286% -0.0991821 0.364268) 100%);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08), 0 2px 6px rgba(16, 24, 40, 0.04);
  border-color: #d0d5dd;
}

.suggestion-card:hover .arrow-icon {
  transform: translateX(6px);
  color: #111827;
}

/* ICON */
.icon-circle {
  width: 46px;
  height: 46px;
  background: #2f4f75;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-circle.dark {
  background: linear-gradient(to right bottom, lab(26.9569% -1.47016 -15.6993) 0%, lab(16.132% -0.318035 -14.6672) 100%);
}

/* content */
#coachingContainer .arrow-icon {
  margin-top: 10px;
}

.suggestion-content {
  flex: 1;
  min-width: 0;
  /* this fixes overflow */
}

.suggestion-content h5 {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.title-row h5 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.tag {
  flex-shrink: 0;
}

.suggestion-content p {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hint {
  background: oklab(98.6998% -0.0020324 0.0219285 / 0.5);
  padding: 6px 10px 6px 20px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 18px;
  color: #6b7a90;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* #dojoDrillContainer .hint {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */
.hint svg {
  margin-right: 5px;
  display: inline-block;
}

/* TAGS */
.tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

.beginner {
  background: #dcfce7;
  color: #166534;
  border: 1px solid lab(90.2247% -31.039 9.47084);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.advanced {
  background: #fef3c7;
  color: lab(47.2709% 42.9082 69.2966);
  border: 1px solid lab(91.7203% -0.505269 49.9084);
  font-size: 10px;
}

@media (max-width: 960px) {
  .lx-card {
    grid-column: 1/-1;
  }
}
/*ends here*/
/* Coaching (two premium banners) */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.coach-card {
  grid-column: span 6;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
  min-height: 220px;
  border: 1px solid lab(91.055% 0.663072 0.865579);
}

.coach--blue .coach-art {
  background: linear-gradient(135deg, #e3e7ff, #cfd8ff);
}

.coach--copper .coach-art {
  background: linear-gradient(135deg, #f2e3db, #e3c9bb);
}

.coach-art {
  position: absolute;
  inset: 0;
}

.coach-body {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0f1a2e;
}

.coach-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}

.coach-ico svg {
  width: 22px;
  height: 22px;
  fill: #2f3a5f;
}

.coach-title {
  margin: 2px 0 2px;
  font-size: var(--fs-20);
}

.coach-sub {
  margin: 0 0 8px;
  color: #33415c;
}

@media (max-width: 960px) {
  .coach-card {
    grid-column: 1/-1;
  }
}
/* Tooltip */
.tooltip {
  position: fixed;
  z-index: 80;
  background: #111;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  font-size: var(--fs-12);
  pointer-events: none;
}

/* Toasts */
.toasts {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  z-index: 90;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  padding: 10px 14px;
  min-width: 240px;
}

.toast.success {
  border-color: color-mix(in oklab, var(--success), #fff 60%);
}

/* Assistant — premium & responsive */
.assistant {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}

.assistant-toggle {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(#fff, #f4f7ff);
  color: #31405a;
  box-shadow: 0 10px 30px rgba(24, 36, 64, 0.12), inset 0 0 0 2px #fff;
}

.assistant-toggle svg {
  width: 28px;
  height: 28px;
  margin: auto;
}

.halo {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, #6aa8ff, #9a89ff, #6aa8ff);
  filter: blur(18px);
  opacity: 0.45;
  z-index: -1;
  animation: halo 8s linear infinite;
}

@keyframes halo {
  to {
    transform: rotate(1turn);
  }
}
/* Dock (desktop: panel; mobile: bottom sheet) */
.dock {
  position: fixed;
  right: 20px;
  bottom: 98px;
  width: min(420px, 92vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-3);
  display: flex;
  flex-direction: column;
  max-height: 70vh;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dock.open {
  opacity: 1;
  transform: translateY(0);
}

.dock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.dock-head h2 {
  font-size: var(--fs-16);
  margin: 0;
}

.dock-actions .icon-btn {
  color: #36415a;
}

.dock-body {
  padding: 12px;
  overflow: auto;
}

.msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  margin: 6px 0;
}

.msg.bot {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.msg.user {
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklab, var(--accent), #fff 60%);
  margin-left: auto;
}

.msg.tip {
  background: transparent;
  color: var(--muted);
  padding: 0;
}

.dock-input {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 10px;
}

.dock-input textarea {
  flex: 1;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  font-size: var(--fs-14);
  background: var(--bg-soft);
}

.dock-input button {
  white-space: nowrap;
}

/* Backdrop for dock on small screens */
.dock-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 24, 0.32);
  backdrop-filter: blur(2px);
  z-index: 90;
}

/* Mobile bottom sheet behavior */
@media (max-width: 720px) {
  .dock {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 82vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(16px);
  }
  .assistant-toggle {
    right: 12px;
    bottom: 12px;
  }
}
/*main styles ends here*/
/*bottom slider*/
.first-word-bold {
  font-weight: bold;
}

/* Other styles remain the same */
.h-s-h-slider-b {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 20px;
}

.h-s-h-slider-b::-webkit-scrollbar {
  height: 6px;
  display: none;
}

.h-s-h-slider-b::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.h-s-course-card {
  flex: 0 0 300px;
  height: 500px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.h-s-course-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Adjust space between image and title */
  margin-bottom: 10px;
}

.h-s-course-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Make image circular */
  -o-object-fit: cover;
  object-fit: cover;
}

.h-s-course-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.h-s-course-summary {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #515151;
}

.h-s-course-strength {
  margin-top: 3px;
  font-size: 0.9rem;
  color: #515151;
}

.h-s-course-subtitle {
  font-size: 0.85rem;
  text-align: left;
  /* Align subtitle to left */
  color: #515151;
  margin-bottom: 15px;
}

.no-data-skills {
  display: flex;
  width: 100%;
  align-items: center;
  height: 360px;
  flex-direction: column;
}

.h-s-btn-course {
  background: linear-gradient(135deg, #0d0f0f, #253a41, #0c709b);
  border-radius: 20px;
  color: white;
  font-weight: 200;
  box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
  width: 100%;
  padding: 12px 0 !important;
}

.h-s-btn-course:hover {
  background-color: rgba(0, 0, 0, 0.6588235294);
  border-radius: 20px;
  color: white;
  font-weight: 200;
  box-shadow: rgb(255, 254, 254) 0px 20px 30px -10px;
}

.lx-btn:hover {
  background-color: white;
  color: black;
}

.h-s-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.h-s-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.h-s-dot.active {
  background-color: #221b2f;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  /* bluish-black gradient */
  color: rgba(255, 255, 255, 0.8);
  /* soft white */
  text-align: center;
  padding: 8px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  width: 100%;
}

/*common css*/
html,
body {
  overflow-x: hidden;
  /* no horizontal scroll */
}

ul {
  padding-left: 0;
}

.fixed-col {
  flex: 0 0 300px;
  max-width: 300px;
}

.centerMain {
  background: #f7f7f7;
}

.borderRight {
  border-right: 1px solid var(--color-border);
}

.borderLeft {
  border-left: 1px solid var(--color-border);
}

.overflow-y-auto {
  overflow-y: auto !important;
  height: calc(100vh - 100px);
}

.nav-link:hover {
  color: inherit;
}

/* Desktop (≥992px) */
@media (max-width: 992px) {
  .heroMain {
    flex-direction: column;
  }
  .hero-left,
  .hero-right {
    flex: 0 0 100%;
  }
  .hero-right .streak {
    /* flex: 0 0 50%; */
    width: 100%;
  }
  .cards {
    display: flex;
    gap: 12px;
    /* you said gap-4 → gap-2 */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .cards > * {
    flex: 0 0 auto;
    width: 250px;
    /* Set card width for scroll */
    scroll-snap-align: start;
  }
  .centerMainIndex section {
    padding: 0px 1.5rem;
  }
  .card-title {
    white-space: pre-wrap;
  }
}
@media (max-width: 768px) {
  .tile {
    padding: 20px;
  }
}
/* Mobile (<576px) */
@media (max-width: 575.98px) {
  /* .hero-right {
    flex-direction: column;
  } */
  .heroMain {
    flex-direction: column;
  }
  .tile {
    padding: 10px;
    flex-direction: column;
    gap: 20px;
  }
}
/*tabbing css*/
.custom-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  background: oklab(96.9998% -0.000292331 0.000981867 / 0.8);
  margin-bottom: 20px;
}

.custom-tabs .nav-link {
  border-radius: 12px;
  padding: 8px 16px;
  margin: 4px 10px;
  font-size: 0.875rem;
  font-weight: 500;
  background: oklab(96.9998% -0.000292331 0.000981867 / 0.8);
  color: #62748e;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  transition: all 0.18s ease;
}

.custom-tabs .nav-link:hover {
  background: #ffffff;
  color: #344054;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
}

.custom-tabs .nav-link.active {
  background: #ffffff;
  color: #344054;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
}

.count {
  background: #e4e7ec !important;
  color: #475467;
  font-size: 11px;
  font-weight: 600;
  width: auto !important;
  height: auto !important;
  padding: 2px 9px;
  border-radius: 999px !important;
  line-height: 20px;
}

/*tabs responsive*/
@media (max-width: 768px) {
  .tabs-header {
    width: 100%;
  }
  .custom-tabs .nav-link {
    padding: 6px 12px;
  }
}
/*search css*/
/* header*/
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* title plus subtitle */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.section-p {
  color: #8b95a7;
  margin: 0;
}

/* search container */
.searchContainer {
  position: relative;
}

.searchContainer svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#commonCourseSearch {
  width: 100%;
  height: 38px;
  padding: 0 18px 0 46px;
  border-radius: 999px;
  border: 2px solid #d6d6d6;
  outline: none;
  font-size: 0.875rem;
  color: #2b2b2b;
  background: #fff;
  transition: all 0.25s ease;
}

/* placeholder */
#commonCourseSearch::-moz-placeholder {
  color: #8b8f97;
}
#commonCourseSearch::placeholder {
  color: #8b8f97;
}

/* focus*/
#commonCourseSearch:focus {
  border: 2px solid #000;
  background-color: #f7f7f7;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* center container */
.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* empty box container */
.empty-state .empty-box {
  width: 100%;
  background: white;
  border: 1px solid lab(91.055% 0.663072 0.865579);
  border-radius: 16px;
  margin: 0;
  text-align: center;
  padding: 3rem 2rem;
}

/* icon circle */
.empty-state .icon-circle {
  width: 48px;
  height: 48px;
  background: lab(96.5286% -0.0991821 0.364268);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* icon */
.empty-state .icon-circle svg {
  color: rgb(228, 228, 231);
}

/* heading */
.empty-state .empty-box h2 {
  margin: 10px 0 8px;
  font-size: 0.975rem;
  color: #314158;
  font-weight: 500;
}

/* subtitle */
.empty-state .empty-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #90a1b9;
}

.hint-text {
  position: relative;
}

.hint .hint-text::before {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: -16px;
  top: 1px;
  background-image: url(../img/bulb.svg);
}