:root {
    --kt-frame: #dfe8ff;
    --kt-shell: #ffffff;
    --kt-surface: #ffffff;
    --kt-surface-soft: #f5f8ff;
    --kt-text: #172033;
    --kt-muted: #667085;
    --kt-border: rgba(23, 32, 51, 0.1);
    --kt-primary: #4257ff;
    --kt-primary-2: #00b8d9;
    --kt-accent: #ff8a3d;
    --kt-green: #11b981;
    --kt-shadow: 0 22px 70px rgba(25, 39, 89, 0.18);
    --kt-soft-shadow: 0 16px 40px rgba(28, 42, 84, 0.11);
}

body {
    min-height: 100vh;
    color: var(--kt-text);
    background:
        linear-gradient(135deg, rgba(66, 87, 255, 0.18), rgba(0, 184, 217, 0.1)),
        url("/assets/images/frontend/banner/686d9f3d79e611752014653.png") center/cover fixed,
        var(--kt-frame);
}

body.kachi-dark-mode {
    --kt-frame: #0b1020;
    --kt-shell: #111827;
    --kt-surface: #182235;
    --kt-surface-soft: #101728;
    --kt-text: #f4f7fb;
    --kt-muted: #a9b4c7;
    --kt-border: rgba(255, 255, 255, 0.12);
    --kt-primary: #8aa0ff;
    --kt-primary-2: #38d9f3;
    --kt-accent: #ffb067;
    --kt-green: #4ade80;
    background:
        linear-gradient(135deg, rgba(11, 16, 32, 0.88), rgba(14, 30, 52, 0.9)),
        url("/assets/images/frontend/banner/686d9f3d79e611752014653.png") center/cover fixed,
        var(--kt-frame);
}

a {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-boxed-layout {
    width: min(1129px, calc(100% - 56px));
    margin: 24px auto;
    overflow: hidden;
    background: var(--kt-shell);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 10px;
    box-shadow: var(--kt-shadow);
}

body.kachi-dark-mode .site-boxed-layout {
    border-color: rgba(255, 255, 255, 0.1);
}

.site-boxed-layout .container {
    max-width: 1069px;
}

.workspace-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--kt-border);
    backdrop-filter: blur(18px);
}

body.kachi-dark-mode .workspace-header {
    background: rgba(17, 24, 39, 0.9);
}

.workspace-nav-shell {
    padding: 12px 0;
}

.workspace-nav,
.workspace-actions,
.workspace-menu,
.workspace-language,
.workspace-auth,
.workspace-mode-toggle,
.workspace-mobile-toggle {
    display: flex;
    align-items: center;
}

.workspace-nav {
    min-height: 58px;
    gap: 18px;
    justify-content: space-between;
}

.workspace-brand {
    display: inline-flex;
    align-items: center;
    min-width: 128px;
}

.workspace-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.workspace-brand img {
    width: auto;
    max-width: 142px;
    max-height: 46px;
    object-fit: contain;
}

.workspace-menu {
    gap: 4px;
    justify-content: center;
    flex: 1;
}

.workspace-menu a,
.workspace-menu__dropdown > button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 11px;
    border: 0;
    border-radius: 999px;
    color: var(--kt-muted);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.workspace-menu a i,
.workspace-menu__dropdown > button i {
    font-size: 12px;
}

.workspace-menu a:hover,
.workspace-menu a.active,
.workspace-menu__dropdown:hover > button {
    color: var(--kt-primary);
    background: rgba(66, 87, 255, 0.1);
}

.workspace-menu__dropdown {
    position: relative;
}

.workspace-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: var(--kt-surface);
    border: 1px solid var(--kt-border);
    border-radius: 10px;
    box-shadow: var(--kt-soft-shadow);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.workspace-menu__dropdown:hover .workspace-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.workspace-menu__panel a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
}

.workspace-actions {
    gap: 8px;
}

.workspace-language {
    height: 38px;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--kt-border);
    border-radius: 999px;
    color: var(--kt-muted);
    background: var(--kt-surface-soft);
}

.workspace-language select {
    width: 72px;
    padding: 0;
    color: var(--kt-text);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 700;
    outline: 0;
}

.workspace-mode-toggle,
.workspace-mobile-toggle {
    justify-content: center;
    height: 38px;
    min-width: 38px;
    padding: 0 10px;
    border: 1px solid var(--kt-border);
    border-radius: 999px;
    color: var(--kt-text);
    background: var(--kt-surface-soft);
    font-weight: 800;
    gap: 7px;
}

.workspace-mode-toggle:hover,
.workspace-mobile-toggle:hover {
    border-color: rgba(66, 87, 255, 0.35);
    color: var(--kt-primary);
    transform: translateY(-1px);
}

.workspace-mode-toggle span {
    font-size: 12px;
}

.workspace-auth {
    min-height: 40px;
    gap: 8px;
    padding: 0 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2));
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(66, 87, 255, 0.22);
}

.workspace-auth:hover {
    color: #fff;
    transform: translateY(-1px);
}

.workspace-mobile-drawer {
    color: var(--kt-text);
    background: var(--kt-shell);
}

.workspace-mobile-drawer .offcanvas-header {
    border-bottom: 1px solid var(--kt-border);
}

.workspace-mobile-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 16px;
    color: var(--kt-text);
    background: var(--kt-surface-soft);
    border-radius: 10px;
    font-weight: 800;
}

.workspace-mobile-profile img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.workspace-mobile-menu {
    display: grid;
    gap: 8px;
}

.workspace-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--kt-text);
    background: var(--kt-surface-soft);
    border: 1px solid var(--kt-border);
    border-radius: 8px;
    font-weight: 800;
}

.workspace-mobile-menu a.active,
.workspace-mobile-menu a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2));
}

.workspace-language--mobile {
    margin-top: 18px;
    justify-content: flex-start;
    border-radius: 8px;
}

.course-home {
    background:
        radial-gradient(circle at 12% 12%, rgba(66, 87, 255, 0.12), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(255, 138, 61, 0.14), transparent 28%),
        var(--kt-shell);
}

.course-home__intro {
    padding: 34px 0 18px;
}

.course-home__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
    gap: 28px;
    align-items: end;
    min-height: 310px;
    padding: 42px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.68), rgba(0, 184, 217, 0.52)),
        url("/assets/images/frontend/works/686da58132b4f1752016257.jpg") center/cover;
    border-radius: 10px;
}

.course-home__panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    border: 44px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.course-home__copy,
.course-home__metrics {
    position: relative;
    z-index: 1;
}

.course-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #082f49;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.course-home__copy h1 {
    max-width: 660px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    font-weight: 900;
}

.course-home__copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.7;
}

.course-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.course-home__primary,
.course-home__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
}

.course-home__primary {
    gap: 8px;
    color: #111827;
    background: #fff;
}

.course-home__secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.course-home__primary:hover {
    color: #111827;
    transform: translateY(-1px);
}

.course-home__secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.course-home__metrics {
    display: grid;
    gap: 12px;
}

.course-home__metrics div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.course-home__metrics strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.course-home__metrics span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.course-slider-section {
    padding: 20px 0 52px;
}

.course-section-head {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 22px;
}

.course-section-head > span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 12px;
    color: var(--kt-primary);
    background: rgba(66, 87, 255, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.course-section-head h2 {
    margin: 0 0 7px;
    color: var(--kt-text);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.course-section-head p {
    max-width: 650px;
    margin: 0;
    color: var(--kt-muted);
    font-size: 15px;
    line-height: 1.7;
}

.kachi-course-slider {
    margin: 0 -9px;
}

.kachi-course-slider .slick-list {
    padding: 4px 0 12px;
}

.kachi-course-slider .slick-track {
    display: flex;
}

.kachi-course-slider .slick-slide {
    height: auto;
}

.kachi-course-slide {
    height: 100%;
    padding: 0 9px;
}

.kachi-course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
    background: var(--kt-surface);
    border: 1px solid var(--kt-border);
    border-radius: 10px;
    box-shadow: var(--kt-soft-shadow);
}

.kachi-course-card:hover {
    transform: translateY(-4px);
}

.kachi-course-card__discount {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, var(--kt-accent));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.kachi-course-card__image {
    display: block;
    height: 178px;
    overflow: hidden;
    background: #dbe7ff;
}

.kachi-course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

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

.kachi-course-card__body {
    flex: 1;
    padding: 18px 18px 12px;
}

.kachi-course-card__category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    color: var(--kt-green);
    background: rgba(17, 185, 129, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.kachi-course-card__body h3 {
    min-height: 55px;
    margin: 0;
    color: var(--kt-text);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.kachi-course-card__body a:hover h3 {
    color: var(--kt-primary);
}

.kachi-course-card__meta {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.kachi-course-card__meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kt-muted);
    font-size: 13px;
    font-weight: 700;
}

.kachi-course-card__meta i {
    color: var(--kt-primary-2);
}

.kachi-course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--kt-border);
}

.kachi-course-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
    font-weight: 900;
}

.kachi-course-card__price {
    text-align: right;
}

.kachi-course-card__price strong {
    display: block;
    color: var(--kt-primary);
    font-size: 19px;
    line-height: 1;
    font-weight: 900;
}

.kachi-course-card__price span {
    display: block;
    margin-top: 5px;
    color: var(--kt-muted);
    font-size: 12px;
    text-decoration: line-through;
}

.kachi-course-card--empty {
    min-height: 260px;
}

.kachi-course-slider .slick-prev,
.kachi-course-slider .slick-next {
    position: absolute;
    top: 48%;
    z-index: 4;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--kt-text);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--kt-border);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.kachi-course-slider .slick-prev {
    left: 4px;
}

.kachi-course-slider .slick-next {
    right: 4px;
}

.kachi-course-slider .slick-prev::before,
.kachi-course-slider .slick-next::before {
    display: none;
}

.kachi-course-slider .slick-prev:hover,
.kachi-course-slider .slick-next:hover {
    color: #fff;
    background: var(--kt-primary);
}

.workspace-footer {
    color: rgba(255, 255, 255, 0.8);
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(30, 64, 175, 0.92)),
        url("/assets/images/frontend/banner/676da1c4dc1401735238084.png") center/cover;
}

.workspace-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
    gap: 26px;
    padding: 48px 0 34px;
}

.workspace-footer__logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.workspace-footer__logo img {
    max-width: 155px;
    max-height: 52px;
    object-fit: contain;
}

.workspace-footer__text,
.workspace-footer__newsletter p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.workspace-footer h5 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.workspace-footer__links,
.workspace-footer__contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.workspace-footer__links a,
.workspace-footer__contact a,
.workspace-footer__bottom a {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.workspace-footer__links a:hover,
.workspace-footer__contact a:hover,
.workspace-footer__bottom a:hover {
    color: #fff;
}

.workspace-footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.workspace-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.workspace-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.workspace-social a:hover {
    background: var(--kt-accent);
}

.workspace-footer__newsletter form {
    display: flex;
    align-items: center;
    height: 46px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.workspace-footer__newsletter input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 16px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
}

.workspace-footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.workspace-footer__newsletter button {
    width: 42px;
    height: 42px;
    margin-right: 2px;
    color: #111827;
    background: #fff;
    border: 0;
    border-radius: 50%;
}

.workspace-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.dashboard-section {
    min-height: 100vh;
    padding: 22px 0;
    background:
        linear-gradient(135deg, rgba(66, 87, 255, 0.14), rgba(0, 184, 217, 0.08)),
        var(--kt-frame);
}

.dashboard {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    overflow: hidden;
    background: var(--kt-shell);
    border: 1px solid var(--kt-border);
    border-radius: 10px;
    box-shadow: var(--kt-shadow);
}

.dashboard-container-wrap,
.dashboard-body {
    background: var(--kt-surface-soft) !important;
}

.dashboard-body {
    min-height: calc(100vh - 44px);
    padding-bottom: 24px;
}

.dash-box,
.discover-box,
.dashboard-card,
.chart-bg,
.category-card,
.base-card,
.custom--card,
.card {
    border: 1px solid var(--kt-border) !important;
    border-radius: 10px !important;
    background: var(--kt-surface) !important;
    box-shadow: var(--kt-soft-shadow) !important;
}

.dash-box {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(66, 87, 255, 0.1), rgba(0, 184, 217, 0.08)),
        var(--kt-surface) !important;
}

.dash-box h2,
.dash-box h2 span,
.dashboard-card__amount,
.dashboard-card__title,
.section-content .title,
.title h4 {
    color: var(--kt-text) !important;
}

.dashboard-card {
    overflow: hidden;
    transition: transform 0.2s ease;
}

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

.dashboard-card__icon {
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2)) !important;
    color: #fff !important;
}

.dashboard-card .card-shape {
    opacity: 0.08;
}

.discover-box {
    padding: 20px !important;
}

.discover-box .title {
    color: var(--kt-text) !important;
}

.btn--base,
.btn--base-3,
.cmn--btn {
    border: 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2)) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 24px rgba(66, 87, 255, 0.2);
}

.form--control,
.form-control,
.form-select,
select,
textarea,
input {
    border-color: var(--kt-border) !important;
}

@media (min-width: 1200px) {
    .dashboard {
        display: flex;
        align-items: stretch;
        position: relative;
        width: min(1220px, calc(100% - 42px));
        min-height: calc(100vh - 48px);
    }

    .dashboard .dashboard_profile {
        position: relative;
        top: auto;
        left: auto;
        width: 292px;
        flex: 0 0 292px;
        z-index: 4;
    }

    .dashboard .sidebar-menu {
        position: sticky;
        top: 20px;
        left: auto;
        width: auto;
        height: calc(100vh - 88px);
        margin: 20px 0 20px 20px;
        padding: 18px 12px;
        border-radius: 10px;
        background:
            linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(30, 64, 175, 0.92)),
            url("/assets/images/frontend/sidebar/sidebar-bg.png") center/cover;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
    }

    .dashboard-container-wrap {
        flex: 1;
        min-width: 0;
        margin-left: 0 !important;
    }
}

.dashboard .sidebar-menu {
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.dashboard .sidebar-menu .logo-wrapper {
    margin: 0 8px 18px;
    padding: 14px !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.dashboard .sidebar-menu .logo-wrapper img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.dashboard .sidebar-menu-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0 4px 18px;
}

.dashboard .sidebar-menu-list__item {
    margin: 0 !important;
}

.dashboard .sidebar-menu-list__link {
    display: flex !important;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 10px 12px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    border-radius: 8px !important;
    border: 1px solid transparent;
    font-weight: 800;
}

.dashboard .sidebar-menu-list__link .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.dashboard .sidebar-menu-list__link .icon i {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

.dashboard .sidebar-menu-list__link .text {
    color: inherit !important;
    font-size: 13px;
}

.dashboard .sidebar-menu-list__link:hover,
.dashboard .sidebar-menu-list__link.active,
.dashboard .sidebar-menu-list__item.has-dropdown.active > a {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(66, 87, 255, 0.95), rgba(0, 184, 217, 0.9)) !important;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.dashboard .sidebar-menu-list__link:hover .icon,
.dashboard .sidebar-menu-list__link.active .icon,
.dashboard .sidebar-menu-list__item.has-dropdown.active > a .icon {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard .sidebar-menu-list__item.has-dropdown > a::after {
    top: 14px;
    right: 13px;
    color: rgba(255, 255, 255, 0.72) !important;
}

.dashboard .sidebar-submenu {
    margin: 6px 0 6px 41px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.dashboard .sidebar-submenu-list__item {
    left: auto;
}

.dashboard .sidebar-submenu-list__item::before {
    display: none;
}

.dashboard .sidebar-submenu-list__link {
    display: block;
    padding: 8px 10px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 7px;
    font-size: 12px !important;
    font-weight: 800;
}

.dashboard .sidebar-submenu-list__link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.dashboard-header {
    gap: 16px;
    padding: 14px 16px !important;
    margin: 0 12px;
    background: rgba(255, 255, 255, 0.84) !important;
    border: 1px solid var(--kt-border);
    border-radius: 10px;
    box-shadow: var(--kt-soft-shadow);
    backdrop-filter: blur(14px);
}

body.kachi-dark-mode .dashboard-header {
    background: rgba(24, 34, 53, 0.88) !important;
}

.dashboard-header .navigator-text {
    justify-content: flex-start;
}

.dashboard-header h6 {
    color: var(--kt-text);
    font-size: 18px;
    font-weight: 900;
}

.dashboard .dashboard-body__bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2));
    border-radius: 10px;
}

.dashboard .home-icon .btn,
.dashboard-header ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 10px !important;
}

.dashboard .dash-box {
    position: relative;
    padding: 28px !important;
    background:
        linear-gradient(135deg, rgba(66, 87, 255, 0.16), rgba(0, 184, 217, 0.1)),
        var(--kt-surface) !important;
}

.dashboard .dash-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 88% 20%, rgba(255, 138, 61, 0.2), transparent 28%);
}

.dashboard .dash-box > .row {
    position: relative;
    z-index: 1;
}

.dashboard .dash-box h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.dashboard .dash-box h2 span {
    display: block;
    margin-top: 6px;
    color: var(--kt-primary) !important;
}

.dashboard .dash-box img.rounded-circle {
    width: 138px !important;
    height: 138px !important;
    padding: 6px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--kt-primary), var(--kt-primary-2));
    box-shadow: 0 18px 34px rgba(66, 87, 255, 0.22);
}

.dashboard .dashboard-card {
    min-height: 150px;
    padding: 24px !important;
    border: 0 !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.98)) !important;
}

body.kachi-dark-mode .dashboard .dashboard-card {
    background:
        linear-gradient(145deg, rgba(24, 34, 53, 0.96), rgba(16, 23, 40, 0.98)) !important;
}

.dashboard .dashboard-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -45px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(66, 87, 255, 0.1);
}

.dashboard .dashboard-card__content {
    position: relative;
    z-index: 1;
}

.dashboard .dashboard-card__amount {
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1.1;
}

.dashboard .dashboard-card__title {
    margin-top: 7px;
    color: var(--kt-muted) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.dashboard .dashboard-card__icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 46px !important;
    height: 46px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    box-shadow: 0 12px 24px rgba(66, 87, 255, 0.2);
}

.dashboard .chart,
.dashboard .container.chart {
    border-radius: 10px;
}

.dashboard .chart-bg {
    padding: 20px;
}

.dashboard .container.chart {
    max-width: none;
}

.dashboard .category-card {
    padding: 18px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard .category-card:hover,
.dashboard .base-card:hover {
    transform: translateY(-4px);
}

.dashboard .base-card {
    overflow: hidden;
}

.dashboard .base-card .thumb-wrap img {
    transition: transform 0.35s ease;
}

.dashboard .base-card:hover .thumb-wrap img {
    transform: scale(1.05);
}

@media (max-width: 1199px) {
    .dashboard .sidebar-menu {
        background:
            linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(30, 64, 175, 0.94)) !important;
    }
}

body.kachi-dark-mode .form--control,
body.kachi-dark-mode .form-control,
body.kachi-dark-mode .form-select,
body.kachi-dark-mode select,
body.kachi-dark-mode textarea,
body.kachi-dark-mode input {
    color: var(--kt-text);
    background-color: var(--kt-surface);
}

body.kachi-dark-mode .table,
body.kachi-dark-mode .table tbody tr td,
body.kachi-dark-mode .table thead tr th {
    color: var(--kt-text) !important;
    background-color: var(--kt-surface) !important;
    border-color: var(--kt-border) !important;
}

@media (max-width: 1199px) {
    .workspace-brand {
        min-width: auto;
    }

    .workspace-brand img {
        max-width: 134px;
    }
}

@media (max-width: 991px) {
    .site-boxed-layout {
        width: min(100% - 28px, 1129px);
        margin: 14px auto;
    }

    .course-home__panel {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 34px;
    }

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

    .course-section-head,
    .workspace-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body {
        background-attachment: scroll;
    }

    .site-boxed-layout {
        width: 100%;
        min-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: 0;
    }

    .workspace-nav {
        min-height: 54px;
    }

    .workspace-mode-toggle span {
        display: none;
    }

    .course-home__intro {
        padding-top: 22px;
    }

    .course-home__panel {
        padding: 26px 20px;
        border-radius: 0;
    }

    .course-home__copy h1 {
        font-size: 34px;
    }

    .course-home__metrics {
        grid-template-columns: 1fr;
    }

    .course-section-head h2 {
        font-size: 25px;
    }

    .kachi-course-slider {
        margin: 0;
    }

    .kachi-course-slide {
        padding: 0 6px;
    }

    .kachi-course-card {
        min-height: 410px;
    }

    .workspace-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-section {
        padding: 0;
    }

    .dashboard {
        width: 100%;
        border-radius: 0;
        border: 0;
    }
}
