@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: #333;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 10px 18px;
  transition: all 0.22s ease;
}

.nav-link.active,
.nav-link.active:hover {
  background: rgb(238, 242, 255);
  color: rgb(99, 102, 241);
  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));
}

.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: -40px;
  left: 10px;
  /* aligns with other nav-link margins */
  right: 10px;
  height: 1px;
  background: #e5e7eb;
  /* 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 i {
  color: #ef4444;
}

.logout {
  color: #ef4444 !important;
  font-weight: 500;
  padding: 14px 16px;
  background: white;
  position: fixed;
  bottom: 22px;
  z-index: 10;
  /* keeps it above scroll area */
  border-radius: 8px;
  transition: color 200ms ease;
}

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

.logout:hover svg {
  color: #ef4444;
}

/* 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 2rem;
}

.centerMainIndex {
  height: 100% !important;
}

.hero {
  padding: 6px 0 16px;
  background: radial-gradient(at 20% 30%, rgba(99, 102, 241, 0.0196078431) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(at 80% 70%, rgba(139, 92, 246, 0.0156862745) 0, rgba(0, 0, 0, 0) 50%), radial-gradient(rgba(59, 130, 246, 0.0117647059) 0, rgba(0, 0, 0, 0) 50%), #f9f9fd;
  border-bottom: 1px solid #e5e7eb;
}

.hero-inner {
  padding: 20px 0;
}

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

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

.hero-right {
  flex: 0 0 30%;
  align-items: flex-start;
  display: flex;
  gap: 20px;
}

.hero-right .streak {
  background-color: rgba(255, 255, 255, 0.9490196078);
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  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: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  /* flex: 1; */
  min-width: 140px;
}

.hero-right .streak .streaksvg {
  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: 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: #6b7280;
  font-size: 17px;
}

.task-tiles {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px; */
  margin-top: 50px;
}

.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 {
  /* display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 6px; */
  gap: 50px;
  align-items: center;
  display: flex;
  width: 100%;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  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));
  text-align: left;
  transition: transform 0.3s ease;
  /* box-shadow: var(--shadow-1); */
}

.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: 13px;
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.2);
  background-color: #eef2ff;
  border-radius: 340282000000000000000000000000000000000px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tile-sub {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
  transition: transform 0.3s ease;
}

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

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

.tile:hover {
  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));
  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;
} */
.section-title {
  font-size: 32px;
  color: #111827;
  letter-spacing: -0.6px;
  font-weight: 600;
}

.section-p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
}

.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: 396px;
  position: relative;
  background: #fff;
}

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

.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: #111827;
  font-weight: 600;
  font-size: 13px;
  background: #fff;
  padding: 8px 16px;
  top: 15px;
  right: 15px;
  border-radius: 22px;
}

.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: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

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

.card-percent {
  font-weight: 600;
  font-size: 16px;
  color: #111827;
}

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

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

.progress-bar-fill {
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  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);
}

#courses-cards .card {
  transition: transform 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: 16px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.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;
  /* display: flex;
  flex-direction: column;
  gap: 16px; */
  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;
}

@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: 14px;
}

.coach-card {
  grid-column: span 6;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  min-height: 220px;
  border: 1px solid var(--line);
}

.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;
  }
}