﻿/* ==========================================================================
   1. GLOBAL & LAYOUT STYLES
   ========================================================================== */
.splash-container {
  display: flex;
  background-color: #7b48ff;
  width: 425px;
  min-height: 100vh;
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.no-scrollbar::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar,
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
.h-title-figma {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
}

.p-desc-figma {
  color: #bdbdbd;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}

/* ==========================================================================
   3. COMPONENTS
   ========================================================================== */
.profile-img {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  object-fit: cover;
}
.cat-btn {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid #334155;
  background-color: #1e293b;
  white-space: nowrap;
}
.cat-btn.active {
  background-color: #9333ea;
  border-color: transparent;
  font-weight: 600;
}
.promo-banner {
  display: flex;
  height: 145px;
  padding: 12px 16px;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  margin-bottom: 32px;
  background: linear-gradient(
    94deg,
    #b1c7ff 0%,
    #a7a6d2 49.14%,
    #856cc3 98.27%
  );
}
.card-label {
  color: #f8fafc;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.14px;
  text-align: start;
  width: 100%;
}
.session-item-home {
  display: flex;
  height: 110px;
  padding-right: 24px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 12px;
  background: #1c1c1c;
}

.join-btn {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #743ffe;
  /* transition removed as per user request */
  cursor: pointer;
}

.instructor-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.instructor-info {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(126, 34, 206, 0.9);
  padding: 8px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rec-card {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid #1e293b;
  width: 190px;
}

.dot-track {
  width: 50px;
  height: 5px;
  background-color: #e2e8f0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

#active-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: #3b82f6;
  border-radius: 10px;
}

/* ==========================================================================
   4. SELECTION STATES
   ========================================================================== */
.option-card-figma {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 12px 20px;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid #3b3b3b;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.option-card-figma:hover {
  border-color: #6136d4;
  background-color: rgba(97, 54, 212, 0.08);
}

.option-btn.selected,
.option-card-figma.selected {
  border-color: #6136d4 !important;
  background-color: rgba(97, 54, 212, 0.1) !important;
}

.radio-circle,
.check-circle {
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.option-btn.selected .radio-circle,
.option-card-figma.selected .check-circle {
  background-color: #6136d4 !important;
  border-color: #6136d4 !important;
}

.radio-circle svg,
.check-circle svg {
  display: none;
}

.option-btn.selected .radio-circle svg,
.option-card-figma.selected .check-circle svg {
  display: block;
}

.option-btn.selected {
  border-color: #7b48ff !important;
  background-color: rgba(123, 72, 255, 0.1);
}

.option-btn.selected .radio-circle {
  background-color: #7b48ff;
  border-color: #7b48ff;
}

.option-btn.selected .radio-circle svg {
  display: block;
}

.radio-circle svg {
  display: none;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 425px;
  background: black;
  border-top: 1px solid #1e293b;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 50;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #64748b;
  border: none;
  background: none;
}

.nav-btn.active {
  color: #a855f7;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  transition:
    color 0.25s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  color: #b692ff;
  transform: scale(1.05);
}

.icon-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   6. FORM & INPUT STYLES
   ========================================================================== */
.edavro-input {
  border: 1px solid #374151;
  color: white;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.edavro-input::placeholder {
  color: rgba(136, 116, 172, 0.5);
}

.edavro-input:focus {
  border-color: #743ffe;
  box-shadow: 0 0 8px rgba(116, 63, 254, 0.3);
}

input:invalid:focus {
  border-color: #ef4444;
}

.social-button {
  border: 1px solid rgba(136, 116, 172, 0.3);
}

#email-error,
#password-error {
  color: #ef4444 !important;
  display: block;
  font-size: 10px;
  margin-top: 4px;
}

.hidden {
  display: none !important;
}

.input-error {
  border: 1px solid #ef4444 !important;
}

.forget-password {
  color: #523c8c;
  text-align: right;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

/* ==========================================================================
   7. UTILITIES
   ========================================================================== */
@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.span-hader {
  color: #b092ff;
}

.roboto-font {
  font-family: "Roboto", sans-serif;
}

.header-flex {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: center;
}

.heading-16px {
  color: #cdcdcd;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.16px;
}

.price-text {
  color: #cdcdcd;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.old-price {
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: line-through;
}

.stat-button {
  display: flex;
  height: 30px;
  padding: 6px 12px;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #2d2050;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}

.about-p {
  color: #697586;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.see-more-purple {
  color: #b294ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.feature-h {
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.feature-sub {
  color: #898989;
  font-size: 10px;
  font-weight: 400;
  line-height: 130%;
}

.why-list-item {
  display: flex;
  height: 38px;
  padding: 6px 12px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 6px;
  background: #2d2050;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 400;
}

.similar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 12px;
  background: #1c1c1c;
  overflow: hidden;
}

.bg-course-dettles {
  width: 100%;
  height: 205px;
  border-radius: 12px;
  border: 1px solid #3b3b3b;
  background-image: url("../assets/images/course_dettles.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1c1c1c;
}

.similar-card-img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: #2d2050;
}

/* ==========================================================================
   8. INTERACTIVE CARDS & BUTTONS
   ========================================================================== */
.lang-card {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.lang-card:hover {
  transform: translateY(-2px);
  background-color: rgba(123, 72, 255, 0.05);
  border-color: rgba(123, 72, 255, 0.3);
  box-shadow: 0 4px 12px rgba(123, 72, 255, 0.12);
}

a.lang-card:hover {
  transform: translateY(-2px) translateX(4px);
  background-color: rgba(123, 72, 255, 0.08);
  border-color: rgba(123, 72, 255, 0.4);
  box-shadow: 0 4px 12px rgba(123, 72, 255, 0.15);
}

.toggle-slot {
  transition: box-shadow 0.25s ease;
  cursor: pointer;
}

.toggle-slot:hover {
  box-shadow: 0 0 8px rgba(123, 72, 255, 0.35);
}

.toggle-checkbox:focus + .toggle-slot {
  box-shadow: 0 0 10px rgba(123, 72, 255, 0.5);
}

.btn-full {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123, 72, 255, 0.35);
}

.btn-full:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(123, 72, 255, 0.25);
}

button[onclick="history.back()"] {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

button[onclick="history.back()"]:hover {
  transform: scale(1.08);
  background-color: rgba(123, 72, 255, 0.1);
  border-radius: 8px;
}

button[onclick="history.back()"]:active {
  transform: scale(0.95);
}

/* ==========================================================================
   9. MY COURSES PAGE
   ========================================================================== */
.live-card-row {
  display: flex;
  height: 85px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  cursor: pointer;
}

.tab-container-fixed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-tab-active,
.btn-tab-deactive {
  display: flex;
  width: 160px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.btn-tab-active {
  background: #2d2050;
  color: #fff;
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(116, 63, 254, 0.25);
}

.btn-tab-deactive {
  background: transparent;
  color: #3b3b3b;
}

.btn-tab-deactive:hover {
  background-color: rgba(123, 72, 255, 0.08);
  transform: translateY(-1px);
}

.btn-tab-active:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 10px rgba(123, 72, 255, 0.2);
}

.tab-container {
  display: flex;
  width: 100%;
  padding: 2px;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  background: #0d011b;
  margin: 0 auto 16px auto;
}

.live-img-box {
  display: flex;
  width: 96px;
  height: 85px;
  border-radius: 4px;
  margin-left: -1px;
  background-color: #1f2937;
  overflow: hidden;
  transition: transform 0.25s ease;
}

img {
  transition: transform 0.5s ease;
}
img:hover {
  transform: scale(1.03);
}

a[href="./search-bar.html"] {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
  border-radius: 8px;
}

a[href="./search-bar.html"]:hover {
  background-color: rgba(123, 72, 255, 0.1);
  transform: scale(1.08);
}

/* ==========================================================================
   10. PAYMENT PAGE
   ========================================================================== */
.payment-item-card {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;
  cursor: pointer;
}

.payment-item-card:hover {
  transform: translateY(-2px);
  background-color: rgba(123, 72, 255, 0.08) !important;
  box-shadow: 0 4px 12px rgba(123, 72, 255, 0.15);
  border: 1px solid rgba(123, 72, 255, 0.3);
}

a[href="./make-payment.html"] {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

a[href="./make-payment.html"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123, 72, 255, 0.35);
  background: linear-gradient(135deg, #7b48ff, #6136d4) !important;
}

a[href="./make-payment.html"]:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(123, 72, 255, 0.25);
}

/* ==========================================================================
   11. PERSONAL INFO PAGE
   ========================================================================== */
button[aria-label="Edit profile picture"] {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

button[aria-label="Edit profile picture"]:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(123, 72, 255, 0.35);
  background: linear-gradient(135deg, #7b48ff, #6136d4) !important;
}

.search-bar-wrap {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.search-bar-wrap:hover {
  border-color: rgba(123, 72, 255, 0.45);
  box-shadow: 0 0 6px rgba(123, 72, 255, 0.15);
}

header button {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

header button:hover {
  background-color: rgba(123, 72, 255, 0.1);
  border-radius: 8px;
  transform: scale(1.04);
}

header button:active {
  transform: scale(0.95);
}

/* ==========================================================================
   12. PROFILE PAGE
   ========================================================================== */
.profile-header-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.profile-header-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(123, 72, 255, 0.12);
  border-radius: 12px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(123, 72, 255, 0.25);
}

.btn-skip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(176, 146, 255, 0.2);
  background-color: rgba(176, 146, 255, 0.08);
}
/* ==========================================================================
   14. REVIEWS PAGE
   ========================================================================== */

.review-user-img {
  transition: transform 0.25s ease;
  cursor: pointer;
}

.review-user-img:hover {
  transform: scale(1.08);
}

.progress-bar-bg {
  transition: transform 0.25s ease;
}

.progress-bar-bg:hover {
  transform: scaleY(1.15);
}

header button[aria-label="More options"] {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

header button[aria-label="More options"]:hover {
  background-color: rgba(123, 72, 255, 0.1);
  transform: scale(1.08);
  border-radius: 8px;
}

/* ==========================================================================
   16. VIEW TOGGLE & NAV BUTTON
   ========================================================================== */
.view-icon-btn {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.view-icon-btn.active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
  box-shadow: 0 2px 6px rgba(116, 63, 254, 0.35);
}

.view-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
}

.nav-button {
  transition: color 0.2s ease;
  position: relative;
}

/* ==========================================================================
   17. DOT NAVIGATION
   ========================================================================== */
.dot {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
  cursor: pointer;
}

.dot:hover {
  transform: scale(1.2);
  background: #7c3aed !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.dot.active {
  animation: pulse 0.5s ease-in-out;
}

/* ==========================================================================
   18. WISHLIST / BOOKMARK
   ========================================================================== */
.wishlist-bookmark {
  position: absolute !important;
  z-index: 50;
  cursor: pointer;
  transition: transform 0.2s ease;
  background: transparent !important;
}

.wishlist-bookmark:hover {
  transform: scale(1.12);
}

.wishlist-bookmark:active {
  transform: scale(0.9);
}

.course-card .wishlist-bookmark,
.rec-card .wishlist-bookmark,
.card-square .wishlist-bookmark {
  left: 153px;
  top: 10px;
}

.wishlist-bookmark-free {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
  height: 1.25rem;
  width: 1.25rem;
}

.session-item-home .wishlist-bookmark {
  left: 115px;
  top: 9px;
}

.free-course-card-inner .wishlist-bookmark {
  right: 10px;
  top: 10px;
}

.wishlist-bookmark.is-active path {
  fill: #ff0000 !important;
  stroke: #ff0000 !important;
}

.wishlist-bookmark-free.is-active path {
  fill: #ff0000 !important;
  stroke: #ff0000 !important;
}

.wishlist-bookmark-free:hover {
  transform: scale(1.12);
}

.wishlist-bookmark-free:active {
  transform: scale(0.9);
}

.wishlist-bookmark-recomendaded {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  cursor: pointer;
}

.wishlist-bookmark-recomendaded.is-active path {
  fill: #ff0000 !important;
  stroke: #ff0000 !important;
}

.wishlist-bookmark-recomendaded :hover {
  transform: scale(1.12);
}

.wishlist-bookmark-recomendaded :active {
  transform: scale(0.9);
}
.course-card,
.session-item-home,
.rec-card,
.card-square,
.free-course-card-inner {
  position: relative !important;
}

/* ==========================================================================
   19. CHAT PAGE
   ========================================================================== */
.chat-msg-sent,
.chat-msg-received {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-msg-sent:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(116, 63, 254, 0.14);
}

.chat-msg-received:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.chat-input-wrap {
  transition: box-shadow 0.25s ease;
}

.chat-input-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(116, 63, 254, 0.15),
    0 10px 24px rgba(116, 63, 254, 0.07);
  border-radius: 28px;
}

/* ==========================================================================
   20. CURRICULUM SECTION
   ========================================================================== */
.curriculum-title {
  color: #cdcdcd;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.16px;
}

.module-text {
  color: #898989;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.12px;
}

.select-heading {
  color: #bdbdbd;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.select-item-text {
  color: #9aa4b2;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 116%;
}

.curriculum-box {
  background: #1c1c1c;
  border: 1px solid #3b3b3b;
  border-radius: 12px;
  overflow: hidden;
}

.curriculum-card {
  background: #2d2050;
  border-radius: 12px;
  padding: 16px;
  width: 335px;
  margin: 0 auto;
}

.module-text-img {
  color: #898989;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.select-heading-img {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.curriculum-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  align-self: stretch;
  border-radius: 6px;
  background: transparent;
  transition: background-color 0.25s ease;
  cursor: pointer;
  padding: 5px;
}

.curriculum-item.active {
  background: #2d2050 !important;
  border-bottom: none;
}

.module-label {
  color: #898989;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.12px;
}

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

.module-heading-text {
  color: #bdbdbd;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.options-list {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding-left: 10px;
}

.options-list li {
  color: #bdbdbd;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.options-list li::before {
  content: "•";
  opacity: 0.6;
}

.curriculum-item.active .options-list {
  max-height: 500px;
}

.curriculum-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   21. MISC CARD & TEXT STYLES
   ========================================================================== */
.card-hader {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.16px;
}

.card-date {
  color: #9aa4b2;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 145%;
}

.card-price {
  color: #bdbdbd;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}

.course-card-main {
  display: flex;
  padding: 4px;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #2d2050;
}

.course-img-size {
  width: 96px !important;
  height: 80px !important;
  border-radius: 4px;
  object-fit: cover;
}

.live-title {
  color: #cdd5df;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.16px;
}

.live-section-main {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0 auto;
}

.course-meta {
  color: #bdbdbd;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 108%;
  letter-spacing: 0.12px;
}

/* ==========================================================================
   22. LOGOUT MODAL
   ========================================================================== */
#logoutPopup {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.h-logout-toast {
  display: flex;
  width: 335px;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #b294ff;
  background: #2d2050;
}

.h-toast-head {
  color: #b092ff;
  text-align: center;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.h-toast-desc {
  color: #9aa4b2;
  text-align: center;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  line-height: 124%;
  margin-top: 8px;
}

.h-toast-btn-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

/* ==========================================================================
   23. TOAST NOTIFICATION
   ========================================================================== */
#coming-soon-toast {
  display: none;
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  max-width: 350px;
  animation: slideUp 0.35s ease-out;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* ==========================================================================
   24. RADIO / LANGUAGE SELECTOR
   ========================================================================== */
input[type="radio"]:checked + .lang-radio {
  background-color: #7b48ff !important;
  border-color: #7b48ff !important;
}

input[type="radio"]:checked + .lang-radio img {
  display: block !important;
}

/* ==========================================================================
   25. PRIVACY POLICY PAGE
   ========================================================================== */

.h-policy-title:hover {
  color: #b092ff;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 0px;
}

#countryDropdown,
#paymentDropdown {
  transition: all 0.25s ease;
}

/* ==========================================================================
   26. MISC UTILITY STYLES
   ========================================================================== */
.upcomming-img {
  display: flex;
  width: 142px;
  align-self: stretch;
  border-radius: 12px 0 0 12px;
}

.topic-text {
  color: #bdbdbd;
}

#searchMenu {
  display: block !important;
  visibility: visible !important;
}

#menuOverlay:not(.hidden) {
  display: block !important;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

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

/* Toast Styles */
#coming-soon-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  width: 90%;
  max-width: 350px;
  pointer-events: none;
}

#coming-soon-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.social-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.social-icon:active {
  transform: scale(0.9);
}

/* Pagination Styling */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding-bottom: 20px;
}
.page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #120d1f;
  color: #9aa4b2;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.page-link.active {
  background: #7b48ff;
  color: white;
  border-color: #7b48ff;
}
.page-link.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-btn {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #120d1f;
  color: #9aa4b2;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.page-btn.active {
  background: #7b48ff;
  color: white;
}

.milestone-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.milestone-content.open {
  max-height: 1000px;
}
.rotate-180 {
  transform: rotate(180deg);
}
.locked-item {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(1);
}
.active-border {
  border-color: #7b48ff !important;
  background: rgba(123, 72, 255, 0.08) !important;
}

/* Modal Animation */
#videoModal {
  transition: all 0.3s ease;
}
.modal-scale {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#videoModal.flex .modal-scale {
  transform: scale(1);
  opacity: 1;
}

.bookmark-img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bookmark-img.active {
  transform: scale(1.1);
}

.options-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.5s cubic-bezier(0, 1, 0, 1),
    opacity 0.3s ease,
    padding 0.3s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.curriculum-item.active .options-list {
  max-height: 1000px; 
  opacity: 1;
  visibility: visible;
  transition:
    max-height 0.8s ease-in,
    opacity 0.7s ease,
    padding 0.6s ease;
  padding-top: 10px !important; 
  padding-bottom: 15px !important;
}

.dropdown-arrow {
  transition: transform 0.8s ease-in-out;
}

.curriculum-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

.options-list li {
  min-height: 0;
}
