/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*PlayFair  */
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
/* import files */
@import url("../css/auth.css");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
}

a:hover {
  color: #000;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Adjustments */
.dashboard-body {
  background: radial-gradient(171.64% 79.27% at 50% 33.37%, #EDCE60 0%, #DE7A17 100%);
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #1E2522;
  overflow-x: hidden;
  height: 100%;
  /* min-height: 100vh; */
}

.dashboard-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/auth/top-pattern.png) no-repeat top right;
  background-size: cover;
  height: 320px;
}

.dashboard-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/auth/bottom-pattern.png) no-repeat bottom right;
  background-size: cover;
  height: 320px;
}

/* Dashboard Layout */
.dashboard-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Palm Leaf Shadow Backgrounds */
.dash-bg-pattern-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.dash-bg-pattern-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Sidebar Navigation
   ========================================================================== */
.sidebar {
  width: 300px;
  height: calc(100% - 40px);
  margin: 20px;
  border-radius: 16px;
  background: #1A431B;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  flex-shrink: 0;
  z-index: 10;
  position: fixed;
  transition: var(--transition-smooth);
}

/* Sidebar Logo / Brand */
.dash-logo {
  text-align: center;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.logo_img {
  filter:
    drop-shadow(0px 1.05px 12px rgba(255, 255, 255, .9)) drop-shadow(0px 1.05px 24px rgba(255, 255, 255, .7)) drop-shadow(0px 1.05px 35.15px rgba(255, 255, 255, .5));
}


.sidebar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sidebar-logo-img {
  width: 100%;
  object-fit: contain;
}

/* Sidebar Menu */
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: auto;
}


.sidebar-item a {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  padding: 20px 0;
  color: #fff;
  transition: var(--transition-smooth);
  font-weight: 400;
  font-size: 18px;
  border-bottom: 1px solid #FFFFFF33;
}

.sidebar-item:last-child a {
  border-bottom: none;
}

.sidebar-item.active .sidebar-item a {
  color: #fff;
}

.sidebar-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #69EADE11;
  box-shadow:
    -1.44px 1.44px 1.44px 0px #54BBB156 inset,
    -0.72px 0.72px 0.72px 0px #FFFFFF56 inset,
    1.44px -1.44px 1.44px 0px #FFFFFF56 inset,
    0.72px -0.72px 0.72px 0px #54BBB156 inset;

  backdrop-filter: blur(15.048px);
  -webkit-backdrop-filter: blur(15.048px);
  transition: var(--transition-smooth);
}
.sidebar-icon-wrapper svg path{
  fill: rgb(255 255 255 / 70%);
}
/* Active Icon Styling (Orange background for active item icon) */
.sidebar-item.active .sidebar-icon-wrapper {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);

}

.sidebar-item.active .sidebar-icon-wrapper svg path {
  fill: #fff;
}

/* Sidebar Bottom Mascot */
.sidebar-mascot {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px 0;
}

.sidebar-mascot-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
  transition: var(--transition-smooth);
}

.sidebar-mascot-img:hover {
  transform: scale(1.08) rotate(2deg);
}

/* ==========================================================================
   Main Content Workspace
   ========================================================================== */
.main-workspace {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  position: relative;
  z-index: 2;
  margin-left: 320px;
  /* height: 100dvh; */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  overflow: hidden;
}

/* Floating Top Header Banner */
.dash-header {
  background-color: #0E3F1F;
  border-radius: 20px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin: 0 20px 30px;
  height: 98px;

}

.dash-header-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.dash-flx {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}

.dash-header-user {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #FFFFFF1A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #FFFFFF0F;
  transition: var(--transition-smooth);
}

.dash-header-user:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Search Filter */
.serch_bar {
  position: relative;
}

.serch_bar .form-control {
  background: #FFFFFF0F;
  border: 1px solid #DDDDDD4D;
  padding: 14px 46px;
  border-radius: 15px;
  color: #fff;
}

.serch_bar .form-control::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
}

.serch_bar span {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.serch_icon {
  left: 14px;
}

.filter_icon {
  right: 14px;
  cursor: pointer;
}

/* Main Dashboard Panel Layout */
.content-page {
  height: calc(100dvh - 164px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px 60px;
  /* Firefox */
  /* scrollbar-width: thin;
    scrollbar-color: #FCA728  #fff; */

}

.content-page::-webkit-scrollbar {
  width: 8px;
}

.content-page::-webkit-scrollbar-track {
  margin: 8px 0;
  /* Top & Bottom gap */
  border-radius: 20px;
  background: transparent;
}

.content-page::-webkit-scrollbar-thumb {
  background: #FCA728;
  border-radius: 20px;
  border: 2px solid #fff;
}


.dash-left-content {
  width: 100%;
}

.subtitle {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  gap: 20px;
  margin-bottom: 14px;
}

/* Left Content Area (Progress & Grid) */

.greeting-text {
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 20px;
}

/* Cards System */


.progress-bar-track {
  width: 100%;
  height: 6px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background-color: #FCA728;
  border-radius: 10px;
  width: 60%;
  transition: width 1s ease-out;
}

/* Card 2: Continue Learning */
.continue-learning-card {
  background: #1A431BE5;
  border-radius: 20px;
  padding: 15px 25px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(14, 63, 31, 0.15);
}

.continue-label {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}

.continue-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 4px;
}

.continue-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);

}

.continue-progress-bar-track {
  width: 100%;
  height: 8px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.continue-progress-bar-fill {
  height: 100%;
  background-color: #FCA728;
  border-radius: 10px;
  width: 12%;
  /* Small representation */
}

/* Modules Grid Section */


.module-card {
  background: #FFFFFFCC;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #989898;
  margin-bottom: 14px;
}

.module-card.active {
  border: 1px solid #FECB0B;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(14, 63, 31, 0.12);
}

.module-info {
  display: flex;
  align-items: center;
  grid-gap: 14px;
}

.mango-imgbox {
  width: 100px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
}

.mango-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-tag {
  font-size: 14px;
  color: #989898;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.module-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 2px 0;
}

.module-lessons-count {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

/* New */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 20px;
  background: #FBD684;
  border: 1px dashed #1A431B;
  border-radius: 16px;
  box-shadow: 0px 4px 10px 0px #1A431B66;
  transition: 0.5s ease-in-out;
}

.cta-banner:hover {
  transform: translateY(-5px);
  box-shadow: rgba(14, 63, 31, 0.12) 0px 12px 28px;
  cursor: pointer;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  width: auto;
  height: auto;
  z-index: 0;
  filter: blur(16px);
}

.cta-icon img {
  z-index: 1;
}

.cta-text h3 {
  margin: 0 0 6px 0;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.cta-text p {
  font-weight: 400;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.start-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.start-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.45);
  color: #fff;
}

.start-button:active {
  transform: translateY(0);
}

.start-button svg {
  width: 16px;
  height: 16px;
}

/* Badges / Icons on Right of Module Cards */
.module-badge-free {
  background: #62B04533;
  font-family: "Jost", sans-serif;
  color: #4A8B2D;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;

}

.module-lock-wrapper {
  border-radius: 8px;
  border: 1px solid #E2D9CD;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5F5F5F33;
  color: #B4A99A;
  transition: var(--transition-smooth);
}

.module-card:hover .module-lock-wrapper {
  background-color: #0E3F1F;
  color: #fff;
  border-color: #0E3F1F;
}



/* ==========================================================================
   Responsive / Toggle Menu
   ========================================================================== */
.menu-toggle-label {
  display: none;
}

/* Toggle Checkbox / Button */
.menu-toggle-btn {
  display: none;
}

/* -------------Need Lesson----------- */
.dash-btns {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.outline-btn {
  background: #E8CA88;
  padding: 10px 20px;
  border: 1px solid #989898;
  border-radius: 14px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #000;
}

.dash-btns h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  margin-bottom: 0;
}

.course-accordion .accordion-item {
  border: 1px solid #E7D8B3;
  border-radius: 16px;
  overflow: hidden;
  background: #FBF8F0;
  padding: 16px;
  box-shadow: 0px 4px 4px 0px #00000040;

}

.course-accordion .accordion-button,
.course-accordion .accordion-button:not(.collapsed) {
  background: #FBF8F0;
  box-shadow: none;
  padding: 0;
  /* margin-bottom: 15px; */
  color: #222;

}

.course-accordion .accordion-button:focus {
  box-shadow: none;
}

.course-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.module {
  font-weight: 500;
  font-size: 16px;
  display: block;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  margin-bottom: 5.5px;
}

.course-title h5 {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;

}

.course-title p {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 0;

}

.course-badge {
  background: #62B04533;
  padding: 5px 12px;
  display: inline-block;
  border-radius: 8px;
}

.course-badge span {
  font-size: 11px;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(180deg, #4A8B2D 0%, #1A431B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.course-accordion .accordion-body {
  padding: 15px 0 0;
  margin: 15px 0 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.lesson {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px;
  border: 1px solid #0000001A;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

.lesson-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lesson-no {
  width: 38px;
  height: 38px;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  color: #000;
  border-radius: 50%;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.lesson h6 {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 2px;
}

.lesson small {
  font-weight: 400;
  font-size: 14px;
  color: rgb(0 0 0 / 50%);
}

.status {
  font-size: 16px;
}

.main-workspace .accordion-button::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none !important;
  color: #000;
  width: auto;
  height: auto;
}

.main-workspace .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.white-bx {
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px #0000000D;
  margin-bottom: 15px;
}

.white-bx h3 {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.white-bx span {
  font-weight: 400;
  font-size: 14px;
  color: #000;

}

/* Audio */
.audio-player {

  padding: 12px 16px;
  border: 1px solid #d8b44c;
  border-radius: 12px;
  background: #FFFFFFCC;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  box-shadow: 0px 4px 4px 0px #0000001f;
  backdrop-filter: blur(50px);
}

.audio-player h4 {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  text-align: left;
  margin-bottom: 10px;

}

.play-btn {
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-flx {
  display: flex;
  align-items: center;
  gap: 8px;
  /* width:150px; */
}

.progress-wrap {
  flex: 1;
}

.progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 24px;
}

.progress-track {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 50px;
  background: #fff;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 50px;
  background: #F39C12;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F39C12;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%);
  /* transition:left .05s linear; */
  transition: none;
}

.time {
  width: 70px;
  text-align: right;
  font-size: 14px;
}

.waveform.playing span {
  animation-play-state: running;
}

.waveform span {
  animation-play-state: paused;
}

@keyframes wave {

  0%,
  100% {
    transform: scaleY(.5);
  }

  50% {
    transform: scaleY(1.4);
  }
}

.description-bx {
  background: #E8CA88;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 16px;
  padding: 75px 20px 20px;
  position: relative;
  margin: 100px auto 20px;
}

.descri-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: -165px auto 0;
  text-align: center;
  animation: bellRing .8s ease-in-out;
}

.descri-logo:hover {
  transform: scale(1.08) rotate(2deg);
}

.description-bx h4 {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #000000;
  margin-bottom: 15px;
}

.description-bx p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0px;
  margin-bottom: 10px;
  color: #000;

}

.iner-foot {
  background: linear-gradient(180deg, #4A8B2D 0%, #1A431B 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px;
  border-radius: 16px;
  margin: 0 auto 15px;
}

.iner-foot p {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin: 10px 0 0;
}

.note-bx {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 16px;
  padding: 20px 16px;
}

.note-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;

}

.note-flx h4 {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.note-flx a {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.note-list {
  border: 0.5px solid #989898;
  border-radius: 16px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.note-lft h5 {
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;

}

.note-lft p {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;

}

.note-lft span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  display: block;

}

.note-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.no-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;

}

.no-notes svg {
  opacity: 0.5;
}

.yel-btn {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  padding: 12px 15px;
  display: block;
  width: 30%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0px 7px 18px 0px #F37D1B80;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 16px;
}

.yel-btn:hover {
  background: linear-gradient(180deg, #F2741D 0%, #FECB0B 100%);
  color: #fff;
}

/* -----------------Prompt Modal [ START ] -----------*/

/* ---------------Module Detail [ END ]---------- */
.modal-bx .modal-content {
  background: radial-gradient(171.64% 79.27% at 50% 33.37%, #EDCE60 0%, #DE7A17 100%);
  padding: 50px 30px 30px;
  border-radius: 20px;
}

.modal-bx .modal-header {
  padding: 0;
  border: 0;
  align-items: flex-start;
}

.modal-bx .modal-header .btn-close {
  background: none;
  padding: 0;
  margin: 3em 2em 0 0;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
}

.modal-bx .modal-header h5 {
  margin: 0 auto;
  text-align: center;
}

.modal-bx .modal-body {
  padding: 0;
}

.modal-bx .modal-footer {
  margin: 20px 0 0;
  border: 0;
  padding: 0;
}

.modal-logo {
  margin: 0 auto 15px;
  text-align: center;
}

.prompt-body h4 {
  font-family: "Playfair", serif;
  font-weight: 900;
  font-style: Black;
  font-size: 36px;
  text-align: center;
  color: #1A431B;
  margin-bottom: 15px;
}

.prompt-bx {
  background: #E8CA88;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 16px;
}

.prompt-bx img {
  border-radius: 16px 16px 0 0;
}

.prompt-flx {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  padding: 12px;
}

.prompt-flx img {
  border-radius: 16px;
}

.prompt-flx h6 {
  font-family: "Playfair", serif;
  font-weight: 600;
  font-size: 22px;
  color: #000;
  margin-bottom: 0;
}

.modal-bx .cmn-btn {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  justify-content: center;
}

/* ======animation ============== */

.sidebar-mascot {
  cursor: pointer;
  transform-origin: top center;
  transition: filter .3s ease;
  animation: floatMascot 4s ease-in-out infinite;
}

.sidebar-mascot:hover {
  /* animation: bellRing .8s ease-in-out; */
  filter: drop-shadow(0 4px 10px rgba(255, 140, 0, .45));
}

@keyframes bellRing {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(18deg);
  }

  30% {
    transform: rotate(-18deg);
  }

  45% {
    transform: rotate(14deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(6deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* =============profile page css==================== */
.profile-layout {
  display: grid;
  grid-template-columns: 396px 1fr;
  gap: 24px;
}


.profile_card {
  padding: 16px 16px;
  border: 0.5px solid #989898;
  background: #FFFFFF;
  border-radius: 16px;
}

.userProfile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile_name {
  font-weight: 600;
  font-size: 18px;
  color: #1A431B;
  margin-bottom: 3px;
}

.user_main {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-bottom: 0;
}

.profile_img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.profile_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile_card ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  padding: 16px 0;
  border-bottom: 1px solid #ced4da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile_card ul li:last-child a {
  border-bottom: none;
}

.profile_card ul li a.active {
  color: #4a8b2d;
}

.profile_wrapper {
  background: linear-gradient(180deg, #F2791C 0%, rgba(153, 153, 153, 0) 100%);
  border: 1px solid #FBD684;
  box-shadow: 0px 24px 54px 0px #00000040;
  padding: 25px;
  border-radius: 30px;
}

.profile_wrapper form {
  max-width: 380px;
  margin: 0 auto;
}

.profile_wrapper .card-title {
  position: relative;
  font-size: 24px;
}

.profile_wrapper p {
  font-weight: 400;
  font-size: 16px;
  color: #1A431B;


}

/* Profile Upload */
.uprofile {
  padding: 26px 0;
}

.upload-profile {
  width: 128px;
  height: 128px;
  margin: 0 auto 21px;
  position: relative;
  display: block;
  cursor: pointer;
  border: 2px solid #f09734;
  border-radius: 50%;
  overflow: visible;
  text-align: center;
}

.upload-profile input {
  display: none;
}

.upload-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(3, 122, 189, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  


}
.upload-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  /* Show only border */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: none;
}

.upload-icon {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1A431B;
  border: 3px solid #D99E51;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-profile.active .upload-preview {
  display: block;
}

.upload-profile.active .upload-icon {
  display: flex;
}


/* Small Pop Animation */
.profile_card ul li a:hover span svg {
  animation: iconPop .45s ease-in-out;
}

@keyframes iconPop {
  0% {
    transform: scale(1) rotate(0deg);
  }

  40% {
    transform: scale(1.25) rotate(-8deg);
  }

  70% {
    transform: scale(.92) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

/* ===================================
   Modal Styles
=================================== */
.modal_sm .modal-content {
  border: none;
  border-radius: 20px;
  background: #FFFFFF;
}

.modal_sm .modal-content h5 {
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #000000;
  padding: 20px 0;
}

.modal_sm .modal-btn {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2%;
  text-transform: capitalize;
  border-radius: 16px;
  border: 1px solid #ECECEC33;
  padding: 16px 15px;
  width: 100%;
  color: #000000;
  background: #C9C9C9;
}

.modal_sm .modal-btn-primary {
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  background: #1A431B;
  color: #fff;
}

.modal_sm .modal-btn-secondary:hover {
  border-color: #1a431b;
  color: #1a431b;
  background-color: transparent;
}

.modal_sm .modal-btn-primary:hover {
  background-color: #1a431be8;
}

.modal-sm {
  max-width: 428px;
  margin: auto;
}

/* =================my notebook page design css========================== */
.notebooks_card {
  background: #1A431B;
  border: 1px solid #989898;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  height: 100%;
}

.notebooks_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(14, 63, 31, 0.12);
}

.notebooks_card:hover img {
  animation: iconPop .45s ease;
}

.notebooks_card span {
  font-weight: 600;
  font-size: 30px;
  color: #FFFFFF;
}

.notebooks_card h6 {
  font-weight: 500;
  font-size: 16px;
  color: #FBD684;
  margin: 8px 0 0;
}



.Badges_grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}

.Badges_card {
  background: #000000B2;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.Badges_card h6 {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #FBD684;
  margin: 6px 0 0;
  line-height: 1.5;
}

.disable-card span,
.disable-card h6 {
  opacity: 0.4;
}

.Badges_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(14, 63, 31, 0.12);
}

.Badges_card:hover svg {
  animation: iconPop .45s ease;
}

.hand_icon {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: waveHand 1.5s ease-in-out infinite;
}

@keyframes waveHand {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ----------------------Practice Area [ START ]-------------- */
.tool-bx h4 {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: #1A431B;
  margin-bottom: 5px;
}

.tool-bx p {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}

.tool-bx p b {
  font-weight: 600;
  color: #1A431B;
}

.grid-tool {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 20px 0 0;
}

.grid-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  width: 100%;
  transition: var(--transition-smooth);
}

.grid-item span {
  background: #1A431B1A;
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.tool-txt h5 {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 2px;
}

.tool-txt p {
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.grid-item:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.grid-item.active,
.grid-item:hover {
  background: linear-gradient(180deg, #4A8B2D 0%, #1A431B 100%);

}

.grid-item.active span,
.grid-item:hover span {
  background: #fff;
}

.grid-item.active span svg path,
.grid-item:hover span svg path {
  stroke: #1A431B;
}

.grid-item.active .tool-txt h5,
.grid-item:hover .tool-txt h5 {
  color: #fff;
}

.grid-item.active .tool-txt p,
.grid-item:hover .tool-txt p {
  color: rgb(255 255 255 / 60%);
}

/* ----------------------Practice Area [ END ] ----------------*/
/* ---------------------My Notebook [ START ] -------------------*/
.no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  max-width: 562px;
  margin: 0 auto;
  text-align: center;
}

.no-data span {
  background: linear-gradient(180deg, #FFA200 0%, #E9BA4F 100%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.no-data .cmn-btn {
  width: fit-content;
  padding: 15px 46px;
}

.no-data h5 {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin-bottom: 2px;
  color: #1A431B;
}

.no-data p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 13px;
}

.lesson-wrapper {
  margin: 30px auto;
}

.lesson-card {
  background: #fff;
  border: 0.5px solid #989898;
  border-radius: 16px;
  margin-bottom: 15px;
  position: relative;
}

.lesson-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

/* .lesson-left{
  flex:1;
  padding-right:20px;
} */
.lesson-left {
    max-width: 625px;
}
.lesson-left h4 {
  font-weight: 500;
  font-size: 14px;
  color: #989898;
  margin-bottom: 5px;
}

.lesson-left h3 {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;

}

.lesson-left p {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.lesson-date {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  display: block;
}

.lesson-actions {
  display: flex;
  gap: 20px;
}

.lesson-actions a {
  text-decoration: none;
  transition: .3s;
}

.lesson-actions a:hover {
  transform: scale(1.15);
}

/* ---------------------My Notebook [ END ] -------------------- */
/* -----My Notebook Modal-------- */
.note-modal .modal-content {
  background: radial-gradient(171.64% 79.27% at 50% 33.37%, #EDCE60 0%, #DE7A17 100%);
  padding: 30px;
  border-radius: 20px;
}

.note-modal .modal-header {
  padding: 0;
  border-bottom: 0;
  align-items: flex-start;
  margin-bottom: 20px;
}

.note-modal .modal-header .btn-close {
  background: none;
  opacity: 1;
  padding: 0;
}

.note-modal .modal-header h5 {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  color: #1A431B;
  margin: 0 auto;
  width: 100%;
}

.note-modal .modal-body {
  padding: 0;
}

.note-modal .modal-body form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.note-modal .modal-body form .form-control {
  background: #FFFFFF1A;
  border: 1px solid #ECECEC33;
  padding: 15px;
  border-radius: 16px;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #000;

}
.note-modal .modal-body form select {
  
-moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(../images/down-arrow.png) no-repeat 95% center !important;
}

.note-modal .modal-body form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.error {
  font-size: 12px;
  color: red;
  margin: 5px 0 0;
  display: none;
}

.note-modal .modal-footer {
  margin: 0;
  border: 0;
  padding: 0;
  flex-wrap: nowrap;
  gap: 15px;
}

.note-modal .cmn-btn {
  justify-content: center;
  display: flex;
  align-items: center;
  grid-gap: 6px;
}

/* ------------Delete Modal ------------ */
.delete-modal .modal-content {
  background: #FFFFFF;
  padding: 30px 20px;
  border-radius: 28px;
}

.delete-modal .modal-body {
  padding: 0;
}

.delete-modal .modal-body h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 37px;
  text-align: center;
  color: #000;
}

.delete-modal .modal-footer {
  flex-wrap: nowrap;
  border: 0;
  grid-gap: 12px;
  padding: 0;
  margin: 15px 0 0;
}

.yes-btn {
  width: 100%;
  padding: 15px 15px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: #000;
  background: #C9C9C9;
  border-radius: 16px;
  text-align: center;
}

.yes-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 78, 40, 0.3);
}

/* Hide native calendar icon */
.form-control::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
  -webkit-appearance: none;
}

.form-control::-webkit-inner-spin-button,
.form-control::-webkit-clear-button {
  display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.serch_bar {
  position: relative;
}

.serch_bar .form-control {
  background: #FFFFFF0F;
  border: 1px solid #DDDDDD4D;
  padding: 14px 46px;
  border-radius: 15px;
  color: #fff;
}

.serch_bar .form-control::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
}

.serch_bar span {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.serch_icon {
  left: 14px;
}

.filter_icon {
  right: 14px;
}

.add_btn {
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  border: 1px solid #FFFFFF;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.search-toggle {
  display: none;
}

.search-back {
  display: none;
}

/* ==========================================================================
   Dashboard Redesign (XP Card Banner & Continue Learning Card)
   ========================================================================== */
.db-xp-card {
  background: #1A431B;
  border: 1px solid #DE7A17;
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #ffffff;
}

.db-xp-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.db-hex-xp {
  position: relative;
  width: 58px;
  height: 64px;
  background: linear-gradient(180deg, #82A439 0%, #2F611D 100%);
  box-shadow: 0px 4px 4px 0px #2F611D1A;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  z-index: 0;
}

/* Hexagon Border */
.db-hex-xp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #A5CE30;
  clip-path: inherit;
  z-index: -2;
}

/* Inner area */
.db-hex-xp::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg, #82A439 0%, #2F611D 100%);
  clip-path: inherit;
  z-index: -1;
}

.db-xp-info {
  display: flex;
  flex-direction: column;
}

.db-xp-label {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.6;
}

.db-xp-name {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin: 2px 0 6px 0;

}

.db-xp-value {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 2px 0;
}

.db-xp-sub {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  opacity: 0.6;
}

.db-xp-divider {
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 28px;
}

.db-xp-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1.4;
  justify-content: space-between;
}

.db-level-hex {
  position: relative;
  width: 58px;
  height: 64px;
  background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

/* Purple */
.db-level-purp {
  position: relative;
  width: 58px;
  height: 64px;
  background: linear-gradient(180deg, #A565B7 0%, #633F81 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
}

.db-level-purp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #C79AFF;
  clip-path: inherit;
  z-index: -2;
}

/* Inner area */
.db-level-purp::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg, #A565B7 0%, #633F81 100%);
  clip-path: inherit;
  z-index: -1;
}

/* Blue */
.db-level-blue {
  position: relative;
  width: 58px;
  height: 64px;
  background: linear-gradient(180deg, #A565B7 0%, #633F81 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
}

.db-level-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #6916DE;
  clip-path: inherit;
  z-index: -2;
}

/* Inner area */
.db-level-blue::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg, #22AEEA 0%, #4B119D 100%);
  clip-path: inherit;
  z-index: -1;
}

.db-level-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.db-level-label {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.6;
}

.db-level-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 6px 0;
}

.db-progress-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.db-progress-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.db-progress-total {
  font-weight: 300;
  color: #ffffff;
  opacity: 0.6;
}

/*  */
.badge-title {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;

}

.badge-title span {
  font-size: 18px;
  color: #1A431B;

}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.prog-item {
  background: #FFFFFF;
  padding: 15px;
  border: 1px solid #98989833;
  border-radius: 14px;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.prog-item:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  cursor: pointer;
}

.prog-item span {
  margin: 0 auto 15px;
  display: block;
  text-align: center;
}

.prog-item h5 {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #000000;
  margin-bottom: 4px;
}

.prog-item .prog-desc {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.3;
}

.prog-item .prog-xp {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #E88A00;
  margin-bottom: 0;
}

.prog-item .prog-xp.orange {
  color: #E55A00;
}

/* Badge status indicator (top-right corner) */
.prog-item .badge-status {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Locked badge styling */
.prog-item.locked {
  position: relative;
}

.prog-item.locked::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #98989833;
  width: 100%;
  height: 100%;

}

.prog-item.locked span svg {
  opacity: 0.45;
  filter: grayscale(1);
}

.prog-item.locked h5,
.prog-item.locked .prog-desc,
.prog-item.locked .prog-xp {
  opacity: 0.5;
}


/* Legacy lock/unlock classes */
.prog-item .unlock {
  color: #1A431B;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.prog-item .lock {
  color: #989898;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 0;
  text-transform: capitalize;
}

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

.stats-item {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.stats-item span {
  background: linear-gradient(180deg, #4A8B2D 0%, #1A431B 100%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.stats-txt h3 {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}

.stats-txt p {
  font-weight: 500;
  font-size: 16px;
  color: #989898;
  margin-bottom: 0;
}

/* ==========================================
   Custom Profile Page Redesign Scoped Styles
   ========================================== */



/* Auto play lessons switch styles */
.autoplay-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FECB0B 0%, #F2741D 100%);
  box-shadow: 0px 4px 4px 0px #62A05133;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoplay-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.autoplay-subtitle {
  font-weight: 500;
  font-size: 12px;
  color: #989898;
}

/* Left sidebar card menus styling */
.profile_card ul li a {
  border-bottom: 1px solid #F1F1F1 !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.profile_card ul li a span {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}

.profile_card ul li a.active {
  background: linear-gradient(180deg, rgba(254, 203, 11, 0.1) 0%, rgba(242, 116, 29, 0.1) 100%);

  color: #1A431B !important;
  font-weight: 600 !important;
}

.profile_card ul li a.active:first-child {
  border-radius: 12px 12px 0 0 !important;
}

.profile_card ul li a.active svg path {
  fill: #1A431B !important;
}

.profile_card ul li a:hover {
  background-color: #FAFAFA !important;
}

/* Delete account centered red link styling */
.delete-account-btn {
  color: #FF3B30 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  padding: 16px 0 8px !important;
  transition: opacity 0.2s ease !important;
}

.profile-page-custom .delete-account-btn:hover {
  opacity: 0.8 !important;
  color: #FF3B30 !important;
}

/* ----------------Change password---------- */
.change-email form {
  max-width: 100%;
}

/* Premium cards styles */
.premium-upgrade-card {
  border: 1.5px dashed #1A431B !important;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000 !important;
  text-decoration: none !important;
}

.premium-upgrade-card:hover {
  background-color: #f9f9f9 !important;
  border-color: #1A431B !important;
}

.premium-active-card {
  background: linear-gradient(90deg, #4A8B2D 0%, #1A431B 100%) !important;
 border: 1px solid #FBD684 !important;
}

.premium-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.premium-badge-wrapper.gray-badge {
  background: linear-gradient(180deg, #A2A2A2 0%, #A7A7A7 100%);

}

.premium-badge-wrapper.white-badge {
  background: #FFFFFF !important;
}

.premium-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.premium-upgrade-card .premium-title {
  color: #000000 !important;
}

.premium-active-card .premium-title {
  color: #FFFFFF !important;
}

.premium-subtitle {
  font-weight: 500;
  font-size: 12px;
}

.premium-upgrade-card .premium-subtitle {
  color: #989898 !important;
}

.premium-active-card .premium-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}

.premium-arrow-wrapper {
  display: flex;
  align-items: center;
}

.change-pwd form {
  max-width: 100%;
}

/* -------- OTP Verification Modal -------- */
#otp-modal .modal-dialog {
  max-width: 460px;
}

.otp-modal-content {
  background: radial-gradient(171.64% 79.27% at 50% 33.37%, #EDCE60 0%, #DE7A17 100%);
  border: none !important;
  border-radius: 20px !important;
  padding: 30px 24px !important;
  position: relative;
}

.otp-modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 2;
  opacity: 0.7;
  filter: none;
}

.otp-modal-close:hover {
  opacity: 1;
}

.otp-modal-icon {
  margin-bottom: 16px;
}

.otp-modal-title {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-bottom: 6px;
}

.otp-modal-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

.otp-modal-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-modal-inputs .otp-digit {
  width: 58px;
  height: 56px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #FFFFFF33;
  background: #FFFFFF1A;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;

  color: #000;
}

.otp-modal-inputs .otp-digit:focus {
  border-color: #1A431B;
  box-shadow: 0 0 0 2px rgba(26, 67, 27, 0.15);
  outline: none;
}

.otp-modal-verify-btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-modal-resend {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
}

.otp-modal-resend .otp-timer {
  color: #1A431B;
  font-weight: 600;
}

/* ----------------Privacy Policy----------------- */
.terms_list li {
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 14px;
}

/* -------- Continue in App Modal -------- */
#continue-app-modal .modal-dialog {
  max-width: 580px;
}

.app-modal-content {
  background: radial-gradient(171.64% 79.27% at 50% 33.37%, #EDCE60 0%, #DE7A17 100%);
  border: none !important;
  border-radius: 24px !important;
  padding: 36px 30px !important;
  position: relative;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.app-modal-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 2;
  opacity: 0.7;
  filter: brightness(0) !important;
  background: none;
  /* Make it black / dark */
}

.app-modal-close:hover {
  opacity: 1;
}

.app-modal-icon-wrapper {
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, #FFA200 0%, #ECC95B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0px 6px 16px rgba(222, 122, 23, 0.3);
}

.app-modal-title {
  font-weight: 600;
  font-size: 24px;
  color: #1A431B;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.app-modal-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin: 0 auto 24px;
}

.qr-cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.qr-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.qr-card-box {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 12px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.qr-card-box:hover {
  transform: translateY(-3px);
}

.qr-card-box svg {
  width: 100%;
  height: 100%;
}

.store-badge-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.store-badge-img:hover {
  transform: scale(1.05);
}
.continue-card{
  background: #FFFFFFCC;
  border-radius: 16px;
  padding: 18px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #989898;
  margin-bottom: 14px;
}
.continue-card h5{
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;

}
.continue-card .module-card{
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
.w-70{
  width: 70%;
}
.continue-card .module-card:hover {
    transform: none;
    box-shadow:none;
}
.continue-card:hover{
   transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(14, 63, 31, 0.12);
}
.wht-btn{
  background: #C9C9C9;
  border: 1px solid #ECECEC33;
  backdrop-filter: blur(45px);
  box-shadow: 0px 5px 12px 0px #0000001A;
  padding:15px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: #000000;
  transition: all 0.3s ease-in-out;
  width: 100%;
  border-radius: 16px;
  text-align: center;
}
.wht-btn:hover{
  transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 78, 40, 0.3);
}