@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif !important;
}

a:hover {
    background-image: none !important;
    -webkit-text-fill-color: unset !important;
    -moz-text-fill-color: unset !important;
    text-decoration: none !important;
    background-size: unset !important;
    -webkit-background-clip: unset !important;
}

/*Course single data*/
.iconShadowFooter {
    font-size: 14px;
    padding: 6px;
    border-radius: 50%;
    background: #fff;
    color: #af6908;
    box-shadow: inset -3px -3px 7px #d4d0bf, inset 2px 2px 5px rgb(94 104 121 / 70%);
}

.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.course-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.course-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.course-card__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.course-card:hover .course-card__thumb-img {
    transform: scale(1.04);
}

.course-card__category-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 5px;
    background: #d59030;
    color: #1a1a2e;
    z-index: 2;
    letter-spacing: 0.2px;
}

.course-card__wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fbf7f7;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease;
    z-index: 2;
}

.course-card__wishlist-btn i {
    font-size: 16px;
    color: #bbb;
    transition: color 0.2s ease;
}

.course-card__wishlist-btn:hover i,
.course-card__wishlist-btn.active i {
    color: #e53e3e;
}

.course-card__body {
    padding: 5px 5px 5px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-card__meta {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.course-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-card__meta-item strong {
    color: #1a1a2e;
    font-weight: 600;
}

.course-card__meta-item i {
    font-size: 14px;
    color: #e53e3e;
}

.course-card__meta-divider {
    color: #ddd;
}

.course-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #1a1a2e;
}

.course-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.course-card__title a:hover {
    color: #c68a00;
}

.course-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 12px;
}

.course-card__instructor-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.course-card__instructor-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5c518;
    flex-shrink: 0;
}

.course-card__instructor-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.course-card__instructor-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card__instructor-name {
    font-size: 14px;
    font-weight: 600;
    color: #c68a00;
}

.course-card__divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.course-card__rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.course-card__stars i {
    font-size: 14px;
    color: #ddd;
}

.course-card__stars i.active {
    color: #f5c518;
}

.course-card__rating-count {
    font-size: 14px;
    color: #999;
}

.course-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
    flex-wrap: wrap;
}

.course-card__price-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.course-card__price-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a7a4a;
    display: flex;
    align-items: center;
    gap: 7px;
}

.course-card__price-del {
    font-size: 14px;
    color: #bbb;
    font-weight: 400;
}

.course-card__price-free {
    color: #1a7a4a;
}

.course-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ffc107;
    border: 1px solid #bf9106;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: auto;
}

.course-card__btn:hover {
    transform: translateY(-1px);
    background-color: #303C48 !important;
    border: 1px solid #bf9106;
    color: white;
    text-decoration: none;
}

@media (max-width: 576px) {
    .course-card__body {
        padding: 5px 5px 5px;
    }

    .course-card__title {
        font-size: 20px;
    }
}

/*Course home page*/
/*banner part*/
.vb-outer {
    padding-bottom: 40px;
}

/* ── TOP BAR (hidden on desktop) ── */
.vb-top-bar {
    display: none;
}

/* ── WRAP ── */
.vb-wrap {
    display: flex;
    align-items: stretch;
    min-height: 240px;
    border-radius: 12px;
    overflow: visible;
    /*background: linear-gradient(180deg, #f3d6b5 0%, #f8e4cc 100%);*/
    background: linear-gradient(180deg, #c8cbcf 0%, #dee2e6 100%);
    position: relative;
}

/* ── LEFT ── */
.vb-left {
    flex: 0 0 52%;
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.vb-left h2 {
    font-weight: 700;
    color: #000000;
    line-height: 1.38;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.vb-left p {
    color: #000000;
    line-height: 1.65;
    margin: 0;
    max-width: 700px;
}

/* ── AVATAR ── */
.av-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    font-weight: 500;
}

.av-stack {
    display: flex;
}

.av-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    margin-left: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

.av-item:first-child { margin-left: 0; }
.av-item.c1 { background: #5c2400; }
.av-item.c2 { background: #7a3000; }
.av-item.c3 { background: #3e1600; }
.av-item.c4 { background: #8a3c00; }
.av-item.plus {
    background: #2a1000;
    font-size: 14px;
    color: #f18f06;
}

/* ── BUTTON ── */
.btn-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-browse {
    background: #ffc107;
    border: 3px solid #ffc107;
    color: #070707;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 22px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: transform 0.12s;
}

.btn-browse:hover {
    transform: translateY(-2px);
    color: #bf5200;
    text-decoration: none;
}

/* ── RIGHT (desktop) ── */
.vb-right {
    flex: 1;
    position: relative;
    overflow: visible;
}

/* ── IMAGE (desktop) ── */
.banner-diagram-img {
    position: absolute;
    top: 50px;
    left: -50px;
    right: 0;
    bottom: -25px;
    width: calc(100% - 12px);
    height: calc(100% + 5px - 16px);
    object-fit: contain;
    object-position: left top;
    border-radius: 5px;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.47));
}

/* ══════════════════════════════
   MOBILE  ≤ 768px
   ══════════════════════════════ */
@media (max-width: 768px) {

    .vb-outer {
        padding-bottom: 0;
    }

    /* top bar */
    .vb-top-bar {
        display: block;
        background: #1a3a1a;
        border-radius: 0 0 0 0;
        padding: 10px 16px 8px;
        text-align: center;
    }

    .vb-top-bar__title {
        margin: 0;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.3;
    }

    .vb-top-bar__sub {
        margin: 3px 0 0;
        color: #f5c842;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .vb-wrap {
        flex-direction: column;
        overflow: hidden; /* clamp image inside */
        border-radius: 0 0 12px 12px;
        min-height: unset;
    }

    /* text block */
    .vb-left {
        flex: unset;
        width: 100%;
        padding: 5px 5px 5px;
        box-sizing: border-box;
        gap: 3px;
    }

    .vb-left h2 {
        font-size: 18px;
        line-height: 1.35;
    }

    .vb-left h2 br { display: none; }

    .vb-left p { font-size: 13px; }

    .av-item {
        width: 36px;
        height: 36px;
    }

    .av-item.plus { font-size: 11px; }

    .btn-browse {
        font-size: 15px;
        padding: 2px 6px;
    }

    /* image block — fixed height, image fills with padding gap on sides */
    .vb-right {
        flex: unset;
        width: 100%;
        position: relative;
        /*height: 240px;*/
        height: 140px;
        overflow: hidden;
        /* padding creates the visible background gap on all sides */
        padding: 12px 16px 16px;
        box-sizing: border-box;
        background: transparent; /* inherits vb-wrap background */
    }

    .banner-diagram-img {
        position: absolute;
        top: 12px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 28px);
        object-fit: contain;
        object-position: center top;
        border-radius: 8px;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    }
}
/*webinar part*/
.wb-section {

    background: #fff;
}

.wb-header {
    text-align: center;
    margin-bottom: 36px;
}

.wb-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #4a35c8;
    margin-bottom: 8px;
}

.wb-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wb-header p {
    color: #555;
    margin: 0 auto;
    line-height: 1;
}

.wb-grid {
    display: grid;
    grid-template-columns: 320px;
    justify-content: center;
}

.wb-card {
    border: 1.5px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.wb-card.featured {
    border: 2.5px solid #3ec26e;
}

.wb-thumb {
    position: relative;
    height: 200px;
    background: #111;
    overflow: hidden;
}

.wb-thumb-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.wb-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(10, 10, 35, 0.72) 45%, rgba(10, 10, 35, 0.1) 100%);
}

.wb-thumb-title {
    position: absolute;
    bottom: 85px;
    left: 14px;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    max-width: 54%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.wb-instructor-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 136px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-3px 0 8px rgba(0, 0, 0, 0.35));
}

.wb-badge {
    position: absolute;
    bottom: 5px;
    right: 140px;
    background: #fff;
    padding: 4px 3px 3px 6px;
    text-align: center;
    min-width: 80px;
    border-radius: 6px 0 0 6px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.wb-badge::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #fff;
    clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}

.wb-badge .b-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wb-badge .b-role {
    font-size: 12px;
    color: #666;
    display: block;
}

.wb-body {
    padding: 5px 5px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.wb-label {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.wb-label.green {
    color: #1987f6;
}

.wb-label.blue {
    color: #3a5bd9;
}

.wb-label.indigo {
    color: #5b4fcf;
}

.wb-course-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

.wb-desc {
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

.wb-info-box {
    border: 1px solid #e8e0ff;
    background: #f9f7ff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.wb-instructor-row {
    text-align: center;
}

.wb-instructor-row .lbl {
    font-size: 16px;
    color: #070707;
    display: block;
    font-weight: bold;
}

.wb-instructor-row .val {
    font-size: 15px;
    font-weight: 700;
    color: #f57c00;
    display: block;
}

.wb-datetime {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 15px;
    color: #333;
}

.wb-btn {
    display: block;
    background-color: #ffc107;
    border: 1px solid #bf9106;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    padding: 5px;
    text-decoration: none;
}

.wb-btn:hover {
    background-color: #303C48 !important;
    border: 1px solid #bf9106;
    color: white;
}

.wb-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.cd-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #f18f06;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    background: #f6f4ff;
}

.cd-lbl {
    font-size: 10px;
    color: #323030;
    font-weight: 700;
}

.cd-sep {
    width: 16px;
    height: 2px;
    background: #f18f06;
    border-radius: 2px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {

}

/*download sullabus button*/
.syllabus-btn {
    display: inline-block;
    background: #25D366;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    padding: 5px 28px;
    text-decoration: none;
    border: 2px solid #23282f;
    transition: background 0.2s, color 0.2s;
}

.syllabus-btn:hover {
    background: #f5b914;
    border: 2px solid #23282f;
    color: #000;
}

/*course toolbar*/
.course-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 0;
    margin-bottom: 28px;
}

.course-toolbar__left {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.course-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid #c5bcbc;
    padding-bottom: 12px;
}

.course-tab {
    font-size: 18px;
    font-weight: 700;
    color: #999393;
    text-decoration: none;
    padding: 0 14px;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    padding-bottom: 4px;
}

.course-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #f5b914;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s;
}

.course-tab:hover { color: #111; text-decoration: none; }

.course-tab.active {
    color: #111;
    font-weight: 700;
}

.course-tab.active::after {
    opacity: 1;
}

.course-toolbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.course-category-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 18px;
    color: #333;
    background: #fff;
    outline: none;
    cursor: pointer;
    font-weight: bold;
}

.course-search-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 30px;
    padding: 5px 6px 5px 14px;
    background: #fff;
    gap: 6px;
}

.course-search-box input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    width: 140px;
    background: transparent;
}

.course-search-box input::placeholder { color: #aaa; }

.course-search-box button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffc107;
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
}

/* mobile search hidden on desktop */
.mobile-search { display: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
    .course-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 16px;
    }

    /* category row — top */
    .course-toolbar__right {
        width: 100%;
        order: -1;
    }

    /* desktop search hidden on mobile */
    .desktop-search { display: none; }

    .course-category-select {
        font-size: 14px;
        padding: 6px 12px;
        width: 100%;
    }

    /* tabs row — scrollable */
    .course-toolbar__left {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .course-toolbar__left::-webkit-scrollbar { display: none; }

    .course-tabs {
        flex-wrap: nowrap;
        gap: 0;
        padding-bottom: 2px;
        padding-right: 8px;
    }

    .course-tab {
        font-size: 14px;
        padding: 0 10px 4px;
        white-space: nowrap;
    }

    .course-tab::after {
        bottom: 2px;
    }

    /* mobile search shown inside tabs row */
    .mobile-search {
        display: flex;
        flex-shrink: 0;
        margin-left: 8px;
    }

    .mobile-search input {
        width: 110px;
        font-size: 13px;
    }

    .mobile-search button {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
/* ── Section 1 ── */
.kb-section {
    background: #f9f9f9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.kb-left h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.kb-left p {
    color: #555;
    line-height: 1;
    max-width: 340px;
}

.kb-syllabus-btn {
    display: inline-block;
    background-color: #ffc107;
    border: 1px solid #bf9106;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    padding: 5px 10px;
    text-decoration: none;
    margin-bottom: 10px;
}

.kb-syllabus-btn:hover {
    background-color: #303C48 !important;
    border: 1px solid #bf9106;
    color: white;
}

.kb-live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #22a855;
    margin-bottom: 12px;
}

.kb-video {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a2e;
    height: 320px;
}

.kb-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    position: absolute;
    inset: 0;
}

.kb-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 10, 40, 0.65) 45%, rgba(10, 10, 40, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.kb-video-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.kb-video-title span {
    color: #f5b914;
}

.kb-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 14px;
    text-decoration: none;
    width: fit-content;
}

.play-ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f5b914;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kb-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.kb-inst-photo {
    height: 120px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 2;
    filter: drop-shadow(-2px 0 6px rgba(0, 0, 0, 0.3));
}

.kb-inst-badge {
    background: #fff;
    padding: 6px 20px 6px 12px;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.kb-inst-badge .bn {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.kb-inst-badge .br {
    font-size: 10px;
    color: #666;
    display: block;
    line-height: 1.5;
}

.kb-right {
    display: flex;
    flex-direction: column;
}

.kb-benefit {
    display: flex;
    gap: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.kb-benefit:last-child {
    border-bottom: none;
}

.kb-benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.kb-benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: #070707;
    fill: none;
    stroke-width: 1.5;
}

.kb-benefit-body h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.kb-benefit-body p {
    color: #555;
    line-height: 1;
}

.kb-benefit-body p b {
    color: #111;
}

/* ── Section 2 ── */
.ins-bg-color {
    background: #565265;
}

.inst-section {
    padding: 10px 0;
    text-align: center;
}

.inst-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.35;
}

.inst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
}

.inst-card {
    display: flex;
    align-items: flex-start;
    padding: 0 24px;
}

.inst-card:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.inst-photo-wrap {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    margin-right: 16px;
    height: 210px;
    background: #0d1b4b;
    border-radius: 16px;
    overflow: hidden;
}

.inst-photo-wrap::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    background: rgba(245, 185, 20, 0.9);
    border-radius: 50%;
    z-index: 0;
}

.inst-photo-wrap::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 110px;
    height: 110px;
    background: rgba(245, 185, 20, 0.5);
    border-radius: 50%;
    z-index: 0;
}

.inst-photo {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
}

.inst-info {
    text-align: left;
    flex: 1;
}

.inst-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f5b914;
    margin-bottom: 4px;
}

.inst-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    line-height: 1.5;
}

.inst-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.star-ic {
    color: #f5b914;
    font-size: 14px;
}

.rating-badge {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2px 10px;
}

.inst-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 16px;
}

.inst-desc b {
    color: #fff;
}

.inst-btn {
    display: inline-block;
    background-color: #ffc107;
    border: 1px solid #bf9106;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    padding: 5px 10px;
    text-decoration: none;
}

/* ── MOBILE ── */
@media (max-width: 768px) {

    .inst-section h2 {
        font-size: 16px;
        margin-bottom: 1px;
    }

    .inst-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inst-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 32px;
        margin-bottom: 8px;
    }

    .inst-card {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        text-align: center;
    }

    .inst-photo-wrap {
        width: 260px;
        height: 260px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* info — center align */
    .inst-info {
        text-align: center;
        width: 100%;
    }

    .inst-info h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .inst-role {
        font-size: 13px;
        margin-bottom: 12px;
    }

    /* stars — center */
    .inst-stars {
        justify-content: center;
        margin-bottom: 12px;
    }

    .inst-desc {
        font-size: 13px;
        text-align: left;
        margin-bottom: 20px;
    }

    /* button — full width */
    .inst-btn {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 12px 10px;
        border-radius: 8px;
    }
}
/* ── Section 3 ── */
.rev-section {
    padding: 10px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.rev-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #d0d0e8 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}

.rev-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.rev-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.rev-card {
    background: #f0f0f5;
    border-radius: 12px;
    padding: 10px;
    position: relative;
}

.rev-quote {
    position: absolute;
    top: 0;
    right: 16px;
    font-size: 50px;
    color: #d8d8e891;
    line-height: 1;
}

.rev-card h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.rev-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #f5b914;
}

.rev-text {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rev-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 56%);
}

.rev-author-info .name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: block;
}

.rev-author-info .role {
    font-size: 11px;
    color: #888;
    display: block;
}
/* Swiper pagination dots */
.rev-swiper .swiper-pagination-bullet {
    background: #d0d0d0;
    opacity: 1;
    width: 8px;
    height: 8px;
}

.rev-swiper .swiper-pagination-bullet-active {
    background: #f5b914;
    width: 24px;
    border-radius: 4px;
}

.rev-swiper-outer .swiper-button-prev,
.rev-swiper-outer .swiper-button-next {
    position: absolute;
    top: calc(50% + 20px);
    width: 38px;
    height: 38px;
    background: #100f0f1c;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    margin: 0;
    transition: background 0.2s, color 0.2s;
}

.rev-swiper-outer .swiper-button-prev { left: 0; }
.rev-swiper-outer .swiper-button-next { right: 0; }

.rev-swiper-outer .swiper-button-prev::after,
.rev-swiper-outer .swiper-button-next::after {
    font-size: 13px;
    font-weight: 700;
}

.rev-swiper-outer .swiper-button-prev:hover,
.rev-swiper-outer .swiper-button-next:hover {
    background: #f5b914;
    border-color: #f5b914;
    color: #fff;
}

/* disabled state */
.rev-swiper-outer .swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .kb-section {
        grid-template-columns: 1fr;
        padding: 5px 5px;
    }
    .kb-left h2 {
        font-size: 18px;
    }
    .kb-left p {
        font-size: 14px;
    }
    .kb-live-label{
        font-size: 22px;
    }
    .inst-grid {
        grid-template-columns: 1fr;
    }

    .inst-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .rev-grid {
        grid-template-columns: 1fr;
    }
    .kb-benefit {
        gap: 2px;
    }
    .kb-benefit-body h4{
        font-size: 19px;
    }
    .kb-benefit-body p{
        font-size: 14px;
    }
    .rev-header h2{
        font-size: 22px;
    }
    }

/*course details page*/
.cd-hero {
    /*background: linear-gradient(180deg, #f3d6b5 0%, #f8e4cc 100%);*/
    background: linear-gradient(180deg, #c8cbcf 0%, #dee2e6 100%);
    padding: 10px 10px 10px;
    border-radius: 14px;
}

.cd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #000000;
}

.cd-breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.cd-breadcrumb span {
    color: #000000;
}

.cd-hero__inner {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 5px;
    align-items: center;
}

/* ── LEFT ── */
.cd-hero__title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1.28;
    margin-bottom: 4px;
}

.cd-hero__subtitle {
    font-size: 14px;
    color: rgb(55 126 3);
    margin-bottom: 1px;
    font-style: italic;
}

.cd-hero__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.cd-star {
    color: rgba(255, 255, 255, 0.25);
    font-size: 17px;
}

.cd-star--active {
    color: #af8103;
}

.cd-rating {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-left: 6px;
}

.cd-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.73);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.cd-hero__meta i {
    margin-right: 3px;
    font-size: 13px;
}

.cd-meta-sep {
    color: rgb(255, 255, 255);
}

.cd-hero__desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 1px;
}

.cd-hero__by {
    font-size: 16px;
    color: rgb(7, 7, 7);
    margin-bottom: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cd-hero__by a {
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.cd-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: rgb(7, 7, 7);
    margin-bottom: 16px;
}

/* avatar stack */
.av-stack {
    display: inline-flex;
}

.av-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -7px;
    background: #7a3000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
}

.av-sm:first-child {
    margin-left: 0;
    background: #5c2400;
}

.av-sm:nth-child(2) {
    background: #8a4000;
}

.av-sm:nth-child(3) {
    background: #3e1600;
}

.cd-badge-sep {
    color: rgba(255, 255, 255, 0.35);
}

.cd-hero__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cd-price__current {
    font-size: 30px;
    font-weight: 700;
    color: #065a19;
    line-height: 1;
}

.cd-price__free {
    font-size: 26px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 18px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cd-price__old {
    font-size: 16px;
    color: rgb(253, 4, 4);
}

.cd-price__badge {
    background: rgba(165, 157, 157, 0.29);
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 14px;
    border: 3px solid rgb(96, 89, 89);
    letter-spacing: 0.3px;
}

.cd-hero__btns {
    display: flex;
    gap: 12px;
}

.btn-buy {
    background: #f5b914;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    padding: 11px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-cart {
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    padding: 11px 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* ── RIGHT CARD ── */
.cd-hero__card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 5px 20px 0px rgba(215, 215, 215, 0.9);
}

.cd-card-top {
    position: relative;
    height: 300px;
    background: #1a1a2e;
    overflow: hidden;
}

.cd-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

/* dark overlay left side */
.cd-card-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 40, 0.5) 0%, rgba(10, 10, 40, 0.1) 60%, transparent 100%);
}

.cd-card-logos {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 5px 10px;
}

.cd-card-logos img {
    height: 20px;
    width: auto;
}

.cd-card-logo-text {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.cd-card-logo-text span {
    color: #f5b914;
}

.cd-card-instructor {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 195px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 3;
    filter: drop-shadow(-4px 0 12px rgba(0, 0, 0, 0.4));
}

.cd-card-body {
    padding: 5px 5px 5px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cd-card-unlock {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.35;
    margin: 0;
}
.cd-card-bottom-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-syllabus-btn {
    flex: 1;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    padding: 5px 5px;
    text-decoration: none;
    background-color: #000000;
    border: 1px solid #000000;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.cd-syllabus-btn:hover {
    background: #303C48;
    color: #fff;
}

.cd-phone {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cd-phone-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.cd-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cd-card-play .video-btn img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.15s;
}

.cd-card-play .video-btn:hover img {
    transform: scale(1.1);
}

.cd-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cd-card-play .video-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-card-play .video-btn img {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.cd-card-play .video-btn::before {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 1;
    animation: ripple 2s ease-out infinite;
}

.cd-card-play .video-btn::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    animation: ripple 2s ease-out infinite 0.6s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(3.2);
        opacity: 0;
    }
}

.cd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

/* Card wrapper */
.cd-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.cd-sidebar-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 14px;
    border-bottom: 2px solid #f0f0f8;
}

/* Details list */
.cd-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cd-details-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 8px;
}

.cd-details-list li:last-child {
    border-bottom: none;
}

.cd-dl__label {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cd-dl__label i {
    color: #734403;
    font-size: 14px;
}

.cd-dl__value {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-align: right;
}

/* Price */
.cd-sidebar-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f7ff;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    border: 1px solid #ebe8ff;
}

.cd-sidebar-price__left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cd-sp__current {
    font-size: 22px;
    font-weight: 700;
    color: #2d2da8;
}

.cd-sp__old {
    font-size: 13px;
    color: #aaa;
}

.cd-sp__badge {
    background: #fef3c7;
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 10px;
    border: 1px solid #fde68a;
}

/* Buttons */
.cd-sidebar-btns {
    margin-bottom: 14px;
}

/* Inquiry */
.cd-sidebar-inquiry {
    text-align: center;
}

.cd-sidebar-inquiry p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.cd-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    transition: background 0.15s;
}

.cd-inquiry-btn:hover {
    background: #1eb858;
    color: #fff;
}

.cd-inquiry-btn i {
    font-size: 16px;
}

/* Follow */
.cd-follow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cd-follow a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.15s;
}

.cd-follow a:hover {
    transform: scale(1.1);
}

.cd-follow__fb {
    background: #1877f2;
}

.cd-follow__yt {
    background: #ff0000;
}

.cd-follow__ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.cd-follow__tw {
    background: #1da1f2;
}

.cd-follow__li {
    background: #0a66c2;
}

.cd-follow__pi {
    background: #e60023;
}

/* Popular courses */
.cd-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cd-popular-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.cd-popular-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cd-popular-list img {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.cd-popular-info h6 {
    font-size: 12.5px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.4;
}

.cd-popular-info h6 a {
    color: #222;
    text-decoration: none;
}

.cd-popular-info h6 a:hover {
    color: #2d2da8;
}

.cd-popular-price {
    font-size: 12px;
    font-weight: 700;
    color: #065a19;
    display: block;
    margin-bottom: 3px;
}

.cd-popular-price del {
    font-size: 11px;
    color: #aaa;
    margin-left: 4px;
    font-weight: 400;
}

#course-info-navigation {
    background: #f4f4f8;
    border-radius: 12px;
    /*padding: 6px;*/
    /*margin-bottom: 16px;*/
}

.course__tap__wrap {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.single__tab__link {
    background: #fff;
    border: 2px solid rgba(241, 143, 6, 0.25) !important;
    font-size: 16px;
    font-weight: 800;
    color: #666;
    padding: 9px 8px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.single__tab__link i {
    font-size: 14px;
}

.single__tab__link:hover {
    color: #000000 !important;
    background: rgba(241, 143, 6, 0.25) !important;
}

.single__tab__link.active {
    background-color: rgb(7, 7, 7) !important;
    border: 2px solid rgba(241, 143, 6, 0.25) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(45, 45, 168, 0.25) !important;
}

.single__tab__link.active i {
    color: #ffffff;
}

#section_description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.cd-desc-block {
    border: 1.5px solid #e8e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.cd-desc-block__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: #00000040;
    border-bottom: 1.5px solid #e8e8f0;
}

.cd-desc-block__header i {
    font-size: 18px;
    color: #000000;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddaf8;
    flex-shrink: 0;
}

.cd-desc-block__header h5 {
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.cd-desc-block__body {
    padding: 5px 5px;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.cd-desc-block__body p {
    margin-bottom: 10px;
}

.cd-desc-block__body p:last-child {
    margin-bottom: 0;
}

.cd-desc-block__body ul,
.cd-desc-block__body ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.cd-desc-block__body ul li,
.cd-desc-block__body ol li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.cd-desc-block__body ul li::marker {
    color: #b16a09;
}

.cd-desc-block__body ol li::marker {
    color: #b16a09;
    font-weight: 700;
}

.cd-desc-block__body h1,
.cd-desc-block__body h2,
.cd-desc-block__body h3,
.cd-desc-block__body h4 {
    color: #222;
    font-weight: 700;
    margin-bottom: 8px;
}

.cd-desc-block__body strong {
    color: #222;
}

.cd-desc-block__body a {
    color: #b16a09;
}

.cd-short-desc {
    background: #fff;
    border-left: 4px solid #734403;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 20px;
}

.cd-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cd-faq-item .accordion-item {
    border: 1.5px solid #e8e8f0;
    border-radius: 10px !important;
    overflow: hidden;
    background: #fff;
}

.cd-faq-btn {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    padding: 14px 18px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cd-faq-btn:not(.collapsed) {
    background: #e7f1ff;
    color: #000000;
    box-shadow: none !important;
}

.cd-faq-btn::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    flex-shrink: 0;
}

.cd-faq-btn:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2da8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Number badge */
.cd-faq-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #00000040;
    border: 2px solid #00000040;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-faq-btn:not(.collapsed) .cd-faq-num {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Answer body */
.cd-faq-body {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    padding: 14px 18px 14px 56px;
    border-top: 1px solid #f0f0f8;
    background: #fafaff;
}

/* ── Rating Box (big number) ── */
.review__box {
    background-color: #00000040 !important;
    border: 2px solid #00000040 !important;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
}

.review__number {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.review__box .review__icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.review__box .review__icon i.active {
    color: #f57314;
}

.review__box span {
    font-size: 13px;
    color: #000000;
}

/* ── Progress Bars ── */
.review__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

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

.rating__text {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    width: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating__text i {
    color: #f5b914;
    font-size: 12px;
}

.single__progress__bar .progress {
    flex: 1;
    height: 8px;
    border-radius: 20px;
    background: #f0f0f8;
    overflow: hidden;
}

.single__progress__bar .progress-bar {
    background: linear-gradient(90deg, #000000, #ca7909);
    border-radius: 20px;
}

.rating-value {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

/* ── Student Reviews List ── */
.property__facts__feature__2 h4 {
    font-weight: 700;
    color: #000000;
    margin: 28px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f8;
}

.property__comment {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.property__comment__list {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f8;
}

.property__comment__list:last-child {
    border-bottom: none;
}

.property__comment__img img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f8;
}

.property__comment__comment h6 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.property__comment__comment h6 a {
    color: #222;
    text-decoration: none;
}

.property__sidebar__icon ul {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.property__sidebar__icon ul li i {
    font-size: 14px;
    color: #f5b914;
}

.property__sidebar__icon ul li i.text-muted {
    color: #ddd !important;
}

.property__comment__comment p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 6px;
}

.property__comment__reply__btn {
    font-size: 11.5px;
    color: #aaa;
}

/* ── Write Review Form ── */
.add__a__review__wrapper {
    background: #f8f7ff;
    border: 1.5px solid #e8e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.add__a__review__wrapper h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #e8e8f0;
}

.add__a__review h6 {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.add__a__review .property__sidebar__icon ul li {
    cursor: pointer;
    transition: transform 0.1s;
}

.add__a__review .property__sidebar__icon ul li:hover {
    transform: scale(1.2);
}

.add__a__review .property__sidebar__icon ul li i.text-danger {
    color: #f5b914 !important;
}

.add__a__review__input textarea {
    width: 100%;
    border: 1.5px solid #e0ddf8;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: #333;
    background: #fff;
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
}

.add__a__review__input textarea:focus {
    border-color: #000000;
}

.add__a__review__input textarea::placeholder {
    color: #bbb;
}

.add__a__review__button {
    margin-top: 12px;
}

.add__a__review__button .default__button {
    background-color: #00000040 !important;
    border: 2px solid #00000040 !important;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    padding: 11px 28px;
    cursor: pointer;
    transition: background 0.15s;
}

.default__button:hover{
    background-image: unset !important;
    -webkit-text-fill-color: unset !important;
}

.cd-instructor-card {
    border: 1.5px solid #e8e8f0;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.cd-instructor-card__top {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 5px;
    /*background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%);*/
    border-bottom: 1.5px solid #f0f0f8;
}

.cd-instructor-card__photo-wrap {
    flex-shrink: 0;
    position: relative;
}

.cd-instructor-card__photo-wrap img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(45, 45, 168, 0.2);
}

.cd-instructor-card__meta {
    flex: 1;
}

.cd-instructor-card__meta h4 {
    font-size: 20px;
    font-weight: 700;
    color: #070707;
    margin-bottom: 4px;
}

.cd-instructor-card__title {
    font-size: 13.5px;
    font-weight: 600;
    color: #6c6a6a;
    margin-bottom: 3px;
}

.cd-instructor-card__exp {
    font-size: 12.5px;
    color: #888;
    margin-bottom: 14px;
}

.cd-instructor-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cd-instructor-card__stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #070707;
    background: #f0f0fb;
    border: 1px solid #dddaf8;
    border-radius: 20px;
    padding: 4px 12px;
}

.cd-instructor-card__stats span i {
    font-size: 13px;
}

.cd-instructor-card__bio {
    padding: 20px 24px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
}

.cd-instructor-card__bio p {
    margin-bottom: 10px;
}

.cd-instructor-card__bio p:last-child {
    margin-bottom: 0;
}

.cd-instructor-card__bio strong {
    color: #222;
}

.cd-instructor-card__bio a {
    color: #b16a09;
}

@media (max-width: 576px) {
    .cd-instructor-card__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cd-instructor-card__stats {
        justify-content: center;
    }
}

.cd-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f7ff;
    border: 1.5px solid #e8e8f0;
    border-radius: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cd-share > span {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cd-share > span i {
    color: #2d2da8;
    font-size: 16px;
}

.cd-share__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cd-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.15s;
    color: #fff;
}

.cd-share__btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff;
}

.cd-share__btn i {
    font-size: 15px;
}

.cd-share__tw {
    background: #1da1f2;
}

.cd-share__fb {
    background: #1877f2;
}

.cd-share__li {
    background: #0a66c2;
}
/* ══ Related Courses Section ══ */
.cd-related {
    padding: 10px 0 60px;
    background: #f4f4f8;
    position: relative;
    overflow: hidden;
}

/* subtle dot pattern bg */
.cd-related::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d0d0e8 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
    pointer-events: none;
}

.cd-related__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.cd-related__header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.cd-related__badge {
    display: inline-block;
    background-color: #00000040 !important;
    border: 2px solid #00000040 !important;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.cd-related__header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Cards grid */
.row__custom__class {
    position: relative;
    z-index: 1;
}

.column__custom__class {
    margin-bottom: 24px;
}

/* Empty state */
.cd-related__empty {
    text-align: center;
    padding: 48px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px dashed #dddaf8;
}

.cd-related__empty i {
    font-size: 40px;
    color: #c0bef0;
    display: block;
    margin-bottom: 12px;
}

.cd-related__empty p {
    font-size: 15px;
    color: #aaa;
    margin: 0;
}
.course__summery__button span {
    font-size: 20px;
    font-weight: bold;
}
.default__button.default__button--2 {
    background-color: #ffc107 !important;
    border: 2px solid #bf9106 !important;
}

.default__button span, .default__button--2 span {
    color: #000000 !important;
}
.model-btn {
    background: #018732;
    border: #014e1f 2px solid;
    background-size: 200% 100%;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 25px;
    transition: transform 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 20px rgba(248, 244, 233, 0.85);
}
.model-btn:hover {
    background-color: #303C48;
    border: 2px solid #303C48;
    background-size: 200% 100%;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 25px;
    transition: transform 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 20px rgba(248, 244, 233, 0.85);
}
/*course details instractor*/
.instructor-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    width: 100%;

}

.instructor-card__label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #f0f0f8;
}

.instructor-card__divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 0 0 16px;
}

.instructor-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.instructor-card__photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f0e0c8;
}

.instructor-card__name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.instructor-card__title {
    margin: 3px 0 0;
    font-size: 12px;
    color: #555;
}

.instructor-card__expertise {
    margin: 2px 0 0;
    font-size: 11px;
    color: #888;
}

.instructor-card__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ebebeb;
}

.instructor-card__stat {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px;
    color: #2a2a2a;
}

.instructor-card__stat svg {
    flex-shrink: 0;
    color: #666;
}

.instructor-card__btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 6px;
    background: #F5C518;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s;
}

.instructor-card__btn:hover {
    background: #e0b200;
    color: #1a1a1a;
    text-decoration: none;
}
.instructor-card__stats li {
    display: flex !important;
    width: 100%;
}
/*popular course slider*/
.related-swiper-wrapper {
    position: relative; /* parent relative */
}

.related-swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-btn-prev,
.swiper-btn-next {
    position: absolute; /* slider এর উপরে ভাসবে */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swiper-btn-prev {
    left: -20px;
}

.swiper-btn-next {
    right: -20px;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: #ffc107;
    color: #fff;
    border-color: #ffc107;
}

.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
/*mobile course details*/
.cd-card-body--mobile-only { display: none; }
.cd-card-body--desktop-only { display: flex; flex-direction: column; gap: 5px; }
.cd-card-bottom-row-mobile{
    display: none;
}
.workshop-mode-for-mobile{
    display: none;
}
@media (max-width: 991px) {
    .cd-card-bottom-row-mobile{
        display: flex;
    }
    .workshop-mode-for-mobile{
        display: flex;
    }
    /* hero bg reset */
    .cd-hero {
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .cd-hero > .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* breadcrumb hidden on mobile */
    .cd-breadcrumb { display: none !important; }

    /* ── Top green header bar ── */
    .cd-mobile-topbar {
        display: block;
        background: #1a3a1a;
        text-align: center;
        padding: 8px 16px;
    }

    .cd-mobile-topbar__title {
        margin: 0;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .cd-mobile-topbar__sub {
        margin: 2px 0 0;
        color: #f5c842;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    /* ── Mobile breadcrumb row ── */
    .cd-mobile-breadcrumb {
        display: flex !important;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #333;
        padding: 10px 16px;
        background: #fff;
    }

    .cd-mobile-breadcrumb a {
        color: #333;
        text-decoration: none;
    }

    /* ── grid becomes single column ── */
    .cd-hero__inner {
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }

    /* RIGHT — video goes first */
    .cd-hero__right {
        order: -1;
        width: 100%;
    }

    .cd-hero__card {
        border-radius: 0;
        box-shadow: none;
    }

    /* video area full width */
    .cd-card-top {
        height: 230px;
        border-radius: 0;
        position: relative;
    }

    .cd-card-bg {
        opacity: 1;
        object-fit: cover;
        object-position: center top;
    }

    /* hide desktop card bottom */
    .cd-card-body { display: none !important; }

    /* ── White overlap card ── */
    .cd-hero__left {
        background: #fff;
        border-radius: 10px 10px 0 0;
        margin-top: -35px; /* overlap into video */
        position: relative;
        z-index: 10;
        padding: 5px 10px 5px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        max-width: 320px;
    }

    .cd-hero__title {
        font-size: 20px;
        color: #000;
        line-height: 1.3;
    }

    /* stars row */
    .course__star {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 10px;
    }

    /* meta row */
    .cd-hero__meta {
        font-size: 12px;
        padding: 5px 5px;
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 2px;
        background: rgba(0,0,0,0.73);
        border-radius: 8px;
        display: inline-flex;
    }

    .cd-hero__subtitle { font-size: 12px; margin-bottom: 6px; }
    .cd-hero__desc { font-size: 13px; margin-bottom: 8px; }
    .cd-hero__by { font-size: 14px; margin-bottom: 10px; }

    .cd-hero__badges {
        font-size: 12px;
        margin-bottom: 12px;
        gap: 6px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    /* each badge item */
    .cd-hero__badges > span {
        display: flex;
        align-items: center;
        gap: 4px;
        background: #f5f5f5;
        border-radius: 20px;
        padding: 3px 10px;
        font-size: 15px;
    }

    .cd-hero__price-row {
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .cd-price__current { font-size: 20px; }

    /* buttons full width */
    .cd-hero__btns {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .cd-hero__btns a,
    .cd-hero__btns button {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 5px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
    }
    .cd-short-desc {
        background: #fff;
        border-left: none;
        border-radius: 0 10px 10px 0;
        padding: 0 0;
        font-size: 13.5px;
        color: #444;
        line-height: 1.75;
        margin-bottom: 20px;
    }
    /*curculer menu bar*/
    .course-fixed-nav {
        position: fixed !important;
        left: 0;
        right: 0;
        z-index: 999;
        border-radius: 0 !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }
    #course-info-navigation {
        padding: 4px !important;
        border-radius: 10px !important;
        /* prevent the nav itself from clipping the scroll */
        overflow: visible !important;
    }

    .course-fixed-nav {
        overflow: visible !important;
        padding: 4px 0 !important;
    }

    .course__tap__wrap {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 4px !important;
        /* full width when sticky so scroll works edge to edge */
        width: 100% !important;
        padding: 0 8px 2px !important;
        box-sizing: border-box !important;
    }

    .course__tap__wrap::-webkit-scrollbar {
        display: none !important;
    }

    .course__tap__wrap .nav-item {
        flex-shrink: 0 !important;
    }

    .single__tab__link {
        white-space: nowrap !important;
        font-size: 13px !important;
        padding: 7px 12px !important;
    }
    /*cicular items*/
}
@media (max-width: 768px) {
    .content__cirriculum__wrap .accordion-button {
        font-size: 16px;
        padding: 5px 5px;
    }

    .content__cirriculum__wrap .accordion-button span {
        font-size: 10px;
        padding: 2px 5px;
    }

    .cd-desc-block__header {
        padding: 7px 16px;
    }

    .cd-desc-block__body p:last-child {
        font-size: 15px;
    }

    #section_faqs .accordion-button {
        font-size: 14px;
        line-height: 19px;
    }

    .cd-faq-btn {
        padding: 5px 5px;
        gap: 2px;
    }

    .cd-faq-body {
        font-size: 14px;
        padding: 1px 1px 3px 23px;
    }

    .review__box {
        padding: 1px 20px;
    }

    .scc__wrap {
        display: block;
    }

    .scc__wrap:hover {
        margin: 0 -12px;
        padding: 12px 12px;
    }

    .scc__info {
        align-items: flex-start;
    }

    .scc__info i {
        margin-top: 2px;
    }

    .scc__info h5 {
        font-size: 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.5;
        writing-mode: horizontal-tb;
    }

    .scc__info h5 span {
        font-size: 15px;
    }

    .scc__meta {
        width: auto !important;
        justify-content: flex-end;
    }

    .scc__wrap .question {
        font-size: 14px;
    }

    .mobile-size-icofont-circular {
        font-size: 20px;
    }

    .review__wrapper .single__progress__bar .rating__text {
        top: 5px;
    }
    .cd-share{
        gap: 3px;
        padding: 5px 5px;
    }
    .cd-share__btn {
        padding: 5px 7px;
    }
    }
@media (max-width: 480px) {
    .cd-card-top { height: 200px; }
    .cd-hero__title { font-size: 18px; }
}
.mobile-hr {
    display: none;
}
@media (max-width: 768px) {
    .mobile-hr {
        display: block;
        margin: 12px 0;
        border: none;
        border-top: 2px solid rgb(0 0 0 / 72%);
    }
}
.explor-all-course-button{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:9px 18px;
    background:linear-gradient(135deg,#070707,#f18f06);
    color:#fff;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}
.explor-all-course-button:hover{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:9px 18px;
    background:#ffc107;
    color:#000;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}
