/* Stats Styele of Course Details */
.meta-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    animation: chipEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
    cursor: default;
    flex: 1 0 auto;
    white-space: nowrap;
}

.meta-stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.meta-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.meta-stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.meta-stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.meta-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

/* Elegant Tinted Hover States */
.meta-stat-item:hover.rating-item {
    background: #fffdf5;
    border-color: #fef3c7;
}

.meta-stat-item:hover.students-item {
    background: #f0f9ff;
    border-color: #e0f2fe;
}

.meta-stat-item:hover.level-item {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.meta-stat-item:hover.duration-item {
    background: #fdf2f8;
    border-color: #fce7f3;
}

.stat-icon-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.meta-stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.stat-icon-wrapper.rating {
    background: #fff7ed;
    color: #f97316;
}

.stat-icon-wrapper.students {
    background: #f0f9ff;
    color: #0ea5e9;
}

.stat-icon-wrapper.level {
    background: #f0fdf4;
    color: #22c55e;
}

.stat-icon-wrapper.duration {
    background: #fdf2f8;
    color: #db2777;
}

.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.meta-stat-item:hover .stat-label {
    color: #64748b;
}

/* Sample Cerctificate Area Style */


/* Course Detail Page: Namespaced pricing redesign (Bootstrap 5.3 compatible) */
.vcd53-mode-tabs {
    background: #ffffff;
    border: 1px solid #e8e6ef;
    border-radius: 1.25rem;
    width: 100%;
    padding: 0.35rem;
    box-shadow: 0 8px 30px rgba(18, 15, 42, 0.06);
}

.vcd53-mode-tabs .nav-item {
    flex: 1 1 0;
}

.vcd53-mode-tabs .nav-link {
    border: 0;
    border-radius: 1rem;
    color: #77748a;
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 160px;
    width: 100%;
}

.vcd53-mode-tabs .nav-link.active {
    color: #ea0b52;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(234, 11, 82, 0.18);
    border-bottom: 3px solid #ea0b52;
}

/* .vcd53-mode-tabs .tab-btn-subtext{
    font-size: .8rem;
} */
.vcd53-online-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.vcd53-card {
    --vcd53-accent: #ea0b52;
    --vcd53-tint: #fff4f8;
    --vcd53-cta: #ea0b52;
    background: #ffffff;
    border: 1px solid #ebeaf0;
    border-radius: 1.35rem;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 5px 20px rgba(24, 19, 58, 0.06);
    position: relative;
    /* overflow: hidden;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) minmax(185px, 260px); */
    align-items: center;
    column-gap: 1.15rem;
}

.vcd53-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 78px;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 0 3px, transparent 4px),
      radial-gradient(circle at 75% 75%, rgba(232, 230, 246, 0.95) 0%, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.vcd53-card__icon-box {
    min-height: 52px;
    border-radius: 1.05rem;
    background: var(--vcd53-tint);
    color: var(--vcd53-accent);
    display: grid;
    place-items: center;
    font-size: 3rem;
}
.vcd53-card__icon-box .fa-comment-dots{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}


.vcd53-card__content {
    border-left: 2px solid var(--vcd53-accent);
    padding-left: 1.35rem;
    z-index: 1;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.vcd53-card__title {
    font-size: clamp(1.1rem, 1.55vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f1032;
    margin-bottom: 0.35rem;
}

.vcd53-card__desc {
    font-size: clamp(0.88rem, 0.95vw, 1.02rem);
    color: #66657a;
    margin: 0;
    line-height: 1.45;
    font-weight: 500;
}

.vcd53-card__price {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
    color: var(--vcd53-accent);
}

.vcd53-card__price span {
    color: #68667b;
    font-weight: 600;
    font-size: 0.85em;
}

.vcd53-card__action {
    justify-self: end;
    max-width: 260px;
    z-index: 1;
}

.vcd53-btn {
    border-radius: 10px;
    min-height: 34px;
    padding: 0.5rem 1.15rem;
    font-size: clamp(0.96rem, 0.95vw, 1.08rem);
    font-weight: 700;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vcd53-btn:hover {
    transform: translateY(-1px);
}

.vcd53-btn--filled {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 35%), var(--vcd53-cta);
    color: #ffffff !important;
    border: 0;
    box-shadow: 0 10px 22px rgba(17, 22, 42, 0.2);
}

.vcd53-btn--outlined {
    background: #ffffff;
    color: var(--vcd53-cta) !important;
    border: 2px solid var(--vcd53-cta);
    box-shadow: 0 5px 14px rgba(17, 22, 42, 0.08);
}

.vcd53-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.vcd53-btn__label {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    line-height: 1.1;
}

.vcd53-btn i {
    width: 16px;
    text-align: center;
}

.vcd53-btn--pink {
    --vcd53-cta: #ea0b52;
}

.vcd53-btn--violet {
    --vcd53-cta: #6534f2;
}

.vcd53-btn--blue {
    --vcd53-cta: #1e79ec;
}

.vcd53-btn--green {
    --vcd53-cta: #0caa3a;
}

.vcd53-card--school {
    --vcd53-accent: #ea0b52;
    --vcd53-tint: #fff2f7;
}

.vcd53-card--group {
    --vcd53-accent: #6534f2;
    --vcd53-tint: #f6f1ff;
}

.vcd53-card--single {
    --vcd53-accent: #1e79ec;
    --vcd53-tint: #edf4ff;
}

.vcd53-card--demo {
    --vcd53-accent: #0caa3a;
    --vcd53-tint: #f1fff5;
    background: #f9fff5;
    border-color: #8fd9a6;
}

.vcd53-card__chips {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.vcd53-card__chips span {
    border: 1px solid #dcebd9;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.9rem;
    color: #4b5559;
    background: #ffffff;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .vcd53-card {
      grid-template-columns: 86px minmax(0, 1fr);
      row-gap: 0.95rem;
    }

    .vcd53-card__content {
      padding-left: 1rem;
      border-left-width: 3px;
    }

    .vcd53-card__action {
      grid-column: 1 / -1;
      max-width: none;
      justify-self: stretch;
    }
}

@media (max-width: 991px) {
    .vcd53-mode-tabs {
      width: 100%;
    }

    .vcd53-mode-tabs .nav-link {
      min-width: unset;
      width: 100%;
    }

    .vcd53-btn {
      min-height: 32px;
    }
}

@media (max-width: 576px) {
    .vcd53-card {
      padding: 1rem;
      grid-template-columns: 72px minmax(0, 1fr);
      column-gap: 0.85rem;
    }

    .vcd53-card__icon-box {
      min-height: 72px;
      font-size: 1.65rem;
      border-radius: 0.9rem;
    }

    .vcd53-card__chips span {
      font-size: 0.8rem;
      padding: 0.35rem 0.7rem;
    }

    .vcd53-btn {
      min-height: 32px;
      padding: 0.45rem 0.9rem;
      font-size: 0.9rem;
    }

    /* Meta Stats Responsive Overrides */
    .course_sub_section {
      flex-wrap: wrap !important;
      gap: 0.75rem !important;
    }

    .meta-stat-item {
      flex: 1 1 calc(50% - 0.375rem) !important;
      min-width: 120px !important;
      padding: 0.6rem 0.8rem !important;
    }

    /* Mode Tabs Responsive Overrides */
    .vcd53-mode-tabs {
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      scrollbar-width: none !important;
      width: 100% !important;
    }

    .vcd53-mode-tabs::-webkit-scrollbar {
      display: none;
    }

    .vcd53-mode-tabs .nav-item {
      flex: 0 0 auto !important;
    }

    .vcd53-mode-tabs .nav-link {
      white-space: nowrap !important;
      min-width: 120px !important;
      padding: 0.6rem 1.0rem !important;
    }
}

/* Course Includes */
 .course-includes {
    padding: 80px 0;
}

.course-includes .includes-wrapper {
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.04);
}

/* Header */
.course-includes .includes-header {
    padding: 8px 0 15px;
}

.course-includes .includes-header h2 {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.course-includes .includes-header p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.course-includes .include-card {
    height: 100%;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 26px;
    padding: 8px 2px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s ease;
}

.course-includes .include-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Icons */
.course-includes .include-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-includes .include-icon i {
    font-size: 20px;
}

.blue {
    background: #D9E3F7;
    color: #2563eb;
}

.green {
    background: #dcf8e7;
    color: #22c55e;
}

.yellow {
    background: #faeed7;
    color: #f59e0b;
}

.greenish {
    background: #c3fdf8;
    color: #009688;
}

/* Text */
.course-includes .include-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.course-includes .include-content span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Footer */
.course-includes .includes-footer {
    border-top: 1px solid #cbdeff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-includes .footer-icon {
    color: #eb257e;
    font-size: 24px;
}

.course-includes .includes-footer p {
    margin: 0;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {

    .course-includes .includes-header,
    .course-includes .row,
    .course-includes .includes-footer {
        padding-left: 4px;
        padding-right: 4px;
    }

}