﻿/* ══════════════════════════════════════════════════════════
   منصة خِبْرَة — Design System CSS
   site.css — Public Layout Styles
   ══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    /* Brand Colors */
    --kh-orange: #f7951d;
    --kh-yellow: #fbb715;
    --kh-green: #2db674;
    --kh-teal: #17898c;
    --kh-dteal: #168286;
    /* Neutral / Dark */
    --kh-dark: #0d2233;
    --kh-darker: #071624;
    --kh-navy: #0f2d40;
    /* Text */
    --kh-text: #1a2e3d;
    --kh-text-muted: #5a7080;
    --kh-text-light: #8fa8b8;
    /* Backgrounds */
    --kh-bg: #f4f8fb;
    --kh-white: #ffffff;
    --kh-surface: #eef4f9;
    /* Borders */
    --kh-border: #dce8f0;
    --kh-border-dark: #c5d8e6;
    /* Navbar */
    --kh-nav-h: 68px;
    --kh-topbar-h: 38px;
    /* Transitions */
    --kh-transition: 0.22s ease;
    /* Shadows */
    --kh-shadow-sm: 0 2px 12px rgba(13,34,51,.07);
    --kh-shadow-md: 0 4px 24px rgba(13,34,51,.11);
    --kh-shadow-lg: 0 8px 40px rgba(13,34,51,.14);
    /* Typography — خط Noto Kufi Arabic للأزرار */
    --kh-font-primary: 'Cairo', 'Tajawal', Tahoma, sans-serif;
    --kh-font-btn: 'Noto Kufi Arabic', 'Cairo', Tahoma, sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--kh-font-primary);
    font-size: 15px;
    color: var(--kh-text);
    background: var(--kh-bg);
    direction: rtl;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--kh-teal);
    text-decoration: none;
    transition: color var(--kh-transition);
}

    a:hover {
        color: var(--kh-dteal);
    }

img {
    max-width: 100%;
    height: auto;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.kh-topbar {
    background: var(--kh-darker);
    height: var(--kh-topbar-h);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    position: relative;
    overflow: hidden;
}

    .kh-topbar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(23,137,140,.2) 0%, transparent 35%, transparent 65%, rgba(247,149,29,.15) 100% );
        pointer-events: none;
    }

.kh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kh-topbar__left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 11.5px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.kh-topbar__dot {
    width: 6px;
    height: 6px;
    background: var(--kh-teal);
    border-radius: 50%;
    animation: kh-pulse 2.2s infinite;
    flex-shrink: 0;
}

.kh-topbar__sep {
    opacity: .25;
}

.kh-topbar__right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

    .kh-topbar__right a {
        font-size: 11.5px;
        color: rgba(255,255,255,.5);
        font-weight: 500;
        transition: color var(--kh-transition);
    }

        .kh-topbar__right a:hover {
            color: var(--kh-yellow);
        }

/* ══════════════════════════════════════
   MAIN NAVBAR
══════════════════════════════════════ */
.kh-nav {
    background: var(--kh-white);
    height: var(--kh-nav-h);
    border-bottom: 1.5px solid var(--kh-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 24px rgba(23,137,140,.07);
}

.kh-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    gap: 0.75rem;
}

/* ── Logos Group ── */
.kh-nav__logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.kh-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.kh-logo {
    object-fit: contain;
}

/* ─ وزارة الموارد: ارتفاع أكبر ليظهر بوضوح ─ */
.kh-logo--ministry {
    height: 52px;
    width: auto;
    max-width: 130px;
}

.kh-logo--partner {
    height: 42px;
    width: auto;
    max-width: 76px;
}

/* Logo Fallbacks */
.kh-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.kh-logo-fallback--ministry {
    width: 108px;
    height: 48px;
    background: linear-gradient(135deg, var(--kh-dark) 0%, var(--kh-teal) 100%);
    color: #fff;
    font-size: 8px;
    padding: 4px 6px;
}

.kh-logo-fallback--partner {
    width: 50px;
    height: 42px;
    background: linear-gradient(135deg, var(--kh-orange), var(--kh-yellow));
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.kh-logo-divider {
    width: 1px;
    height: 36px;
    background: var(--kh-border);
    flex-shrink: 0;
}

/* ── Brand Name ── */
.kh-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
    gap: 1px;
}

.kh-brand__ar {
    font-size: 21px;
    font-weight: 900;
    color: var(--kh-teal);
    letter-spacing: -.5px;
    line-height: 1.1;
}

.kh-brand__en {
    font-size: 8px;
    font-weight: 700;
    color: var(--kh-text-muted);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-family: 'Tajawal', sans-serif;
}

.kh-brand--light .kh-brand__ar {
    color: var(--kh-teal);
}

.kh-brand--light .kh-brand__en {
    color: rgba(255,255,255,.4);
}

/* ── Nav Links ── */
.kh-nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.kh-nav__link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--kh-text);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all var(--kh-transition);
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    display: block;
}

    .kh-nav__link:hover {
        background: rgba(23,137,140,.07);
        color: var(--kh-teal);
    }

    .kh-nav__link.active {
        color: var(--kh-teal);
        font-weight: 700;
    }

        .kh-nav__link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 10px;
            left: 10px;
            height: 2.5px;
            background: linear-gradient(90deg, var(--kh-teal), var(--kh-green));
            border-radius: 2px;
        }

/* ── Nav Action Buttons ── */
.kh-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   BUTTON SYSTEM
   خط Noto Kufi Arabic لجميع الأزرار
══════════════════════════════════════ */
.kh-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.42rem 0.95rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--kh-font-btn);
    cursor: pointer;
    transition: all var(--kh-transition);
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

/* Teal Outline */
.kh-btn--teal-outline {
    border-color: var(--kh-teal);
    color: var(--kh-teal);
    background: transparent;
}

    .kh-btn--teal-outline:hover {
        background: var(--kh-teal);
        color: #fff;
        border-color: var(--kh-teal);
        transform: translateY(-1px);
    }

/* Orange Fill */
.kh-btn--orange {
    background: linear-gradient(135deg, var(--kh-orange) 0%, var(--kh-yellow) 100%);
    color: #fff;
    border-color: var(--kh-orange);
    box-shadow: 0 3px 14px rgba(247,149,29,.28);
}

    .kh-btn--orange:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 5px 20px rgba(247,149,29,.38);
        border-color: var(--kh-orange);
    }

/* Green Fill */
.kh-btn--green {
    background: linear-gradient(135deg, var(--kh-green) 0%, var(--kh-teal) 100%);
    color: #fff;
    border-color: var(--kh-green);
    box-shadow: 0 3px 14px rgba(45,182,116,.26);
}

    .kh-btn--green:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 5px 20px rgba(45,182,116,.36);
        border-color: var(--kh-green);
    }

/* Ghost */
.kh-btn--ghost {
    color: var(--kh-text-muted);
    border-color: var(--kh-border-dark);
    background: transparent;
}

    .kh-btn--ghost:hover {
        background: var(--kh-surface);
        color: var(--kh-text);
    }

/* Icon Only — بعد تسجيل الدخول */
.kh-btn--icon {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    justify-content: center;
    font-size: 17px;
}

/* Full width (mobile) */
.kh-btn--full {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
}

/* Large */
.kh-btn--lg {
    padding: 0.65rem 1.6rem;
    font-size: 15px;
    border-radius: 10px;
}

/* ══════════════════════════════════════
   USER PROFILE CHIP (بعد تسجيل الدخول)
══════════════════════════════════════ */
.kh-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem 0.3rem 0.45rem;
    border-radius: 50px;
    border: 1.5px solid var(--kh-border-dark);
    background: var(--kh-surface);
    cursor: pointer;
    transition: all var(--kh-transition);
    text-decoration: none;
    color: var(--kh-text);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--kh-font-btn);
}

    .kh-user-chip:hover {
        border-color: var(--kh-teal);
        background: rgba(23,137,140,.06);
        color: var(--kh-teal);
    }

.kh-user-chip__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kh-teal), var(--kh-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   MOBILE BURGER
   يظهر فقط على الشاشات الصغيرة
══════════════════════════════════════ */
.kh-burger {
    display: none; /* مخفي افتراضياً، يظهر بال media query */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background var(--kh-transition);
}

    .kh-burger:hover {
        background: var(--kh-surface);
    }

    .kh-burger span {
        width: 24px;
        height: 2px;
        background: var(--kh-text);
        border-radius: 2px;
        transition: all .3s ease;
        display: block;
    }

    .kh-burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .kh-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .kh-burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ══════════════════════════════════════
   MOBILE OVERLAY
══════════════════════════════════════ */
.kh-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,22,36,.55);
    z-index: 950;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: kh-fade-in .2s ease;
}

    .kh-mobile-overlay.open {
        display: block;
    }

/* ══════════════════════════════════════
   MOBILE SIDEBAR MENU
══════════════════════════════════════ */
.kh-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--kh-white);
    z-index: 1000;
    padding: 1.5rem;
    box-shadow: -6px 0 40px rgba(7,22,36,.18);
    transition: right .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

    .kh-mobile-menu.open {
        right: 0;
    }

.kh-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kh-mobile-menu__close {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--kh-border-dark);
    background: var(--kh-surface);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kh-text-muted);
    font-size: 16px;
    transition: all var(--kh-transition);
}

    .kh-mobile-menu__close:hover {
        background: #fee2e2;
        border-color: #fca5a5;
        color: #dc2626;
    }

.kh-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid var(--kh-border);
    padding-top: 0.9rem;
}

.kh-mobile-menu__link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--kh-text);
    text-decoration: none;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--kh-transition);
    border-bottom: 1px solid var(--kh-border);
}

    .kh-mobile-menu__link:last-child {
        border-bottom: none;
    }

    .kh-mobile-menu__link:hover {
        background: rgba(23,137,140,.07);
        color: var(--kh-teal);
    }

    .kh-mobile-menu__link i {
        font-size: 17px;
        color: var(--kh-teal);
        width: 22px;
        text-align: center;
    }

.kh-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--kh-border);
}

/* ══════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════ */
.kh-main {
    min-height: calc(100vh - var(--kh-topbar-h) - var(--kh-nav-h) - 380px);
}

/* ══════════════════════════════════════
   COLOR ACCENT STRIP
══════════════════════════════════════ */
.kh-strip {
    height: 4px;
    background: linear-gradient( 90deg, var(--kh-teal) 0%, var(--kh-green) 30%, var(--kh-yellow) 65%, var(--kh-orange) 100% );
}

/* ══════════════════════════════════════
   FOOTER  — مارجن مظبوط وأيقونات واضحة
══════════════════════════════════════ */
.kh-footer {
    background: var(--kh-darker);
    color: rgba(255,255,255,.72);
    padding: 3rem 1.5rem 0; /* كان 4rem — قللناه */
    border-top: 3px solid rgba(23,137,140,.25);
}

.kh-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.kh-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem; /* كان 3rem */
    padding-bottom: 2.5rem; /* كان 3.5rem */
}

/* Brand Column */
.kh-footer__desc {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255,255,255,.45);
    margin-top: 0.75rem;
    max-width: 290px;
}

/* Social Buttons — أيقونات أوضح */
.kh-footer__social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.kh-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.1); /* كان .07 — أوضح */
    border: 1px solid rgba(255,255,255,.2); /* كان .12 — أوضح */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75); /* كان .55 — أوضح */
    font-size: 16px;
    text-decoration: none;
    transition: all var(--kh-transition);
}

    .kh-social-btn:hover {
        background: var(--kh-teal);
        border-color: var(--kh-teal);
        color: #fff;
        transform: translateY(-2px);
    }

/* Footer Columns */
.kh-footer__col-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.9rem;
    letter-spacing: .3px;
    position: relative;
    padding-bottom: 0.5rem;
}

    .kh-footer__col-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 28px;
        height: 2px;
        background: var(--kh-teal);
        border-radius: 2px;
    }

.kh-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .kh-footer__col ul li a {
        font-size: 13px;
        color: rgba(255,255,255,.5);
        transition: color var(--kh-transition);
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .kh-footer__col ul li a::before {
            content: '›';
            color: var(--kh-teal);
            font-size: 15px;
            line-height: 1;
        }

        .kh-footer__col ul li a:hover {
            color: var(--kh-yellow);
        }

/* Footer Bottom Bar */
.kh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.kh-footer__bottom-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* شعارات الفوتر السفلية — أوضح وأكبر */
.kh-footer__logo {
    height: 40px; /* كان صغير — كبّرناه */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85; /* كانت شبه مخفية */
    filter: brightness(1.1);
    transition: opacity var(--kh-transition);
}

    .kh-footer__logo:hover {
        opacity: 1;
    }

.kh-footer__logo--sm {
    height: 34px;
    max-width: 80px;
}

.kh-footer__logo-fallback,
.kh-footer__logo-fallback2 {
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

.kh-footer__bottom-sep {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.15);
}

.kh-footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    margin: 0;
}

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.kh-page-hero {
    background: linear-gradient(145deg, var(--kh-darker) 0%, var(--kh-dark) 50%, #0a2d30 100%);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

    .kh-page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 75% at 15% 50%, rgba(23,137,140,.28) 0%, transparent 60%), radial-gradient(ellipse 35% 55% at 90% 80%, rgba(247,149,29,.13) 0%, transparent 55%);
        pointer-events: none;
    }

.kh-page-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

.kh-page-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.kh-page-hero__title {
    font-size: clamp(24px, 4.5vw, 44px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

    .kh-page-hero__title span {
        background: linear-gradient(90deg, var(--kh-yellow), var(--kh-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.kh-page-hero__subtitle {
    font-size: 15.5px;
    color: rgba(255,255,255,.62);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes kh-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.8);
    }
}

@keyframes kh-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes kh-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */

/* ── ≤ 1199px: إخفاء الروابط والأزرار، إظهار البرجر ── */
@media (max-width: 1199.98px) {
    .kh-nav__links {
        display: none !important;
    }

    .kh-nav__actions {
        display: none !important;
    }
    /* إظهار البرجر فقط في الموبايل / التابلت */
    .kh-burger {
        display: flex !important;
    }
}

/* ── ≤ 991px ── */
@media (max-width: 991.98px) {
    .kh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
}

/* ── ≤ 767px ── */
@media (max-width: 767.98px) {
    :root {
        --kh-topbar-h: 34px;
        --kh-nav-h: 60px;
    }

    .kh-topbar__right a:not(:first-child) {
        display: none;
    }

    .kh-footer {
        padding: 2.5rem 1rem 0;
    }

    .kh-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kh-footer__logo {
        height: 34px;
    }
}

/* ── ≤ 575px ── */
@media (max-width: 575.98px) {
    .kh-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kh-footer__desc {
        max-width: 100%;
    }

    .kh-nav__logos {
        gap: 0.5rem;
    }

    .kh-logo--ministry {
        max-width: 80px;
        height: 36px;
    }

    .kh-logo--partner {
        height: 32px;
    }

    .kh-logo-divider {
        height: 30px;
    }
}

/* ══════════════════════════════════════
   SCROLLBAR CUSTOM
══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--kh-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--kh-teal);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--kh-dteal);
    }

/* ══════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════ */
.text-kh-teal {
    color: var(--kh-teal) !important;
}

.text-kh-orange {
    color: var(--kh-orange) !important;
}

.text-kh-green {
    color: var(--kh-green) !important;
}

.text-kh-yellow {
    color: var(--kh-yellow) !important;
}

.text-kh-muted {
    color: var(--kh-text-muted) !important;
}

.bg-kh-teal {
    background-color: var(--kh-teal) !important;
}

.bg-kh-orange {
    background-color: var(--kh-orange) !important;
}

.bg-kh-green {
    background-color: var(--kh-green) !important;
}

.bg-kh-dark {
    background-color: var(--kh-dark) !important;
}

.bg-kh-surface {
    background-color: var(--kh-surface) !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.rounded-kh {
    border-radius: 12px !important;
}

.rounded-kh-lg {
    border-radius: 16px !important;
}
