.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card-image {
    position: relative;
}

.course-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.course-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.course-badges span {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-featured {
    background: #f59e0b;
    color: #fff;
}

.badge-trending {
    background: #2563eb;
    color: #fff;
}

.badge-free {
    background: #16a34a;
    color: #fff;
}

.course-card-content {
    padding: 20px;
}

.course-category {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.free-course {
    color: #16a34a;
    font-size: 22px;
    font-weight: 700;
}

.course-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.btn-read-more {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
}

.btn-syllabus {
    background: #16a34a;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
}


/* =========================================
   Course Trust Bar Section
========================================= */

.course-trust-wrapper {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.trust-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 22px 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
    overflow: hidden;
}

.trust-item::before {
    content: "";
    position: absolute;
    top: -38px;
    right: -38px;
    width: 100px;
    height: 100px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.trust-item:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.trust-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eef6ff;
    color: #0d6efd;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.trust-title {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 7px;
}

.trust-text {
    position: relative;
    z-index: 1;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .course-trust-wrapper {
        padding: 16px;
        border-radius: 18px;
    }

    .trust-item {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 21px;
    }

    .trust-title {
        font-size: 14px;
    }

    .trust-text {
        font-size: 12px;
    }
}
/* =========================================
   Course Overview Extra Feature Grid
========================================= */

.overview-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.overview-feature-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.overview-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.overview-feature-item h5 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.overview-feature-item p {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .overview-feature-grid {
        grid-template-columns: 1fr;
    }

    .overview-feature-item {
        padding: 16px;
    }
}

/* =========================================
   Course Curriculum Section
========================================= */

.curriculum-accordion .curriculum-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.curriculum-accordion .curriculum-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.curriculum-button {
    gap: 16px;
    padding: 20px 22px;
    background: transparent;
    color: #0f172a;
    box-shadow: none !important;
}

.curriculum-button:not(.collapsed) {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    color: #0d6efd;
}

.curriculum-button small {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.curriculum-module-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: #0d6efd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.curriculum-button.collapsed .curriculum-module-badge {
    background: #eef6ff;
    color: #0d6efd;
}

.curriculum-body {
    padding: 22px;
    background: #ffffff;
}

.curriculum-topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-topic-list li {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
    color: #475569;
    line-height: 1.6;
}

.curriculum-topic-list li:last-child {
    border-bottom: 0;
}

.curriculum-card {
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.curriculum-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.curriculum-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

.curriculum-card h5 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.curriculum-card ul {
    padding-left: 18px;
}

.curriculum-card li {
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.6;
}

.syllabus-download-btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 13px 24px;
}

/* =========================================
   Course Highlights Section
========================================= */

.highlight-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.highlight-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.highlight-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.highlight-card h4 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.highlight-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

/* =========================================
   Course Skills Section
========================================= */

.skill-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 24px;
    min-height: 125px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.skill-card::before {
    content: "";
    position: absolute;
    top: -38px;
    right: -38px;
    width: 105px;
    height: 105px;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(22, 163, 74, 0.24);
}

.skill-card:hover::before {
    transform: scale(1.18);
    background: rgba(22, 163, 74, 0.13);
}

.skill-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.12);
}

.skill-card h5 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    color: #0f172a;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .skill-card {
        padding: 20px;
        min-height: auto;
        border-radius: 16px;
    }

    .skill-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
        font-size: 19px;
    }

    .skill-card h5 {
        font-size: 15px;
    }
}/* =========================================
   Course Skills Section
========================================= */

.skill-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 24px 18px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.skill-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    background: rgba(22, 163, 74, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(22, 163, 74, 0.24);
}

.skill-card:hover::before {
    transform: scale(1.18);
    background: rgba(22, 163, 74, 0.13);
}

.skill-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.12);
}

.skill-card h5 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 0;
    max-width: 100%;
    word-break: normal;
}

/* Mobile */
@media (max-width: 768px) {
    .skill-card {
        padding: 20px 16px;
        min-height: 125px;
        border-radius: 16px;
    }

    .skill-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
        font-size: 19px;
    }

    .skill-card h5 {
        font-size: 15px;
    }
}

/* =========================================
   Course Tools Section - Safe Version
========================================= */

.course-tools .tool-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.course-tools .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.course-tools .tool-logo-wrap {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    background: #ffffff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.course-tools .tool-logo {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 68px !important;
    max-height: 68px !important;
    object-fit: contain !important;
}

.course-tools .tool-fallback-icon {
    font-size: 34px;
    line-height: 1;
}

.course-tools .tool-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.course-tools .tool-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

@media (max-width: 768px) {
    .course-tools .tool-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .course-tools .tool-logo-wrap {
        width: 74px;
        height: 74px;
        border-radius: 18px;
    }

    .course-tools .tool-logo {
        max-width: 58px !important;
        max-height: 58px !important;
    }

    .course-tools .tool-card h4 {
        font-size: 19px;
    }

    .course-tools .tool-card p {
        font-size: 14px;
    }
}

/* =========================================
   Course Career Section
========================================= */

.career-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.career-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.career-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.career-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0d6efd;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.career-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.career-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

.career-guidance-box {
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.08);
}

.career-guidance-box h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.career-guidance-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.career-guidance-box .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .career-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .career-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        font-size: 24px;
    }

    .career-card h4 {
        font-size: 19px;
    }

    .career-card p {
        font-size: 14px;
    }

    .career-guidance-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }
}
/* =========================================
   Course Salary Section
========================================= */

.salary-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.salary-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.salary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.salary-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.salary-level {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.salary-card h3 {
    position: relative;
    z-index: 1;
    font-size: 27px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.salary-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}
/* =========================================
   Corporate Partners Auto Slider
========================================= */

.partner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
}

.partner-slider-wrapper::before,
.partner-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.partner-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.partner-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.partner-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: partnerSlideRightToLeft 36s linear infinite;
}

.partner-slider-wrapper:hover .partner-slider-track {
    animation-play-state: paused;
}

.partner-slide {
    width: 320px;
    min-width: 320px;
}

@keyframes partnerSlideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partner Card */

.partner-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    min-height: 330px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.partner-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.partner-logo-wrap {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: #ffffff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.partner-logo {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 74px !important;
    max-height: 74px !important;
    object-fit: contain !important;
}

.partner-fallback-icon {
    font-size: 36px;
    line-height: 1;
}

.partner-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.partner-industry {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.partner-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 14px;
}

.partner-btn {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    font-weight: 700;
    padding: 8px 16px;
}

/* Mobile */

@media (max-width: 768px) {
    .partner-slider-track {
        gap: 18px;
        animation-duration: 30s;
    }

    .partner-slide {
        width: 82vw;
        min-width: 82vw;
    }

    .partner-slider-wrapper::before,
    .partner-slider-wrapper::after {
        width: 35px;
    }

    .partner-card {
        padding: 24px 20px;
        border-radius: 18px;
        min-height: 310px;
    }

    .partner-logo-wrap {
        width: 78px;
        height: 78px;
        border-radius: 18px;
    }

    .partner-logo {
        max-width: 62px !important;
        max-height: 62px !important;
    }

    .partner-card h4 {
        font-size: 19px;
    }

    .partner-card p {
        font-size: 14px;
    }
}
/* =========================================
   Course Student Benefits Section
========================================= */

.student-benefit-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.student-benefit-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.student-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.student-benefit-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.student-benefit-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0d6efd;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.student-benefit-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.student-benefit-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

.student-why-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.08);
}

.student-why-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.student-why-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.student-why-box .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
}

/* Mobile */
@media (max-width: 768px) {
    .student-benefit-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .student-benefit-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        font-size: 24px;
    }

    .student-benefit-card h4 {
        font-size: 19px;
    }

    .student-benefit-card p {
        font-size: 14px;
    }

    .student-why-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .student-why-box h3 {
        font-size: 21px;
    }

    .student-why-box p {
        font-size: 14px;
    }
}
/* =========================================
   Course Placement Records Section
========================================= */

.course-placements {
    position: relative;
}

/* Make placement section fit properly inside course left column */
.course-placements .course-section-card {
    overflow: hidden;
}

/* Placement Card */
.placement-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.placement-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
    z-index: 0;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.placement-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

/* Student Photo */
.placement-photo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 250px;
    background: #f8fafc;
    overflow: hidden;
}

.placement-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Fallback when no photo */
.placement-photo-fallback {
    width: 100%;
    height: 100%;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
}

/* Body */
.placement-body {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.placement-student-name {
    font-size: 21px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
    line-height: 1.35;
}

.placement-designation {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Info List */
.placement-info-list {
    display: grid;
    gap: 9px;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
    padding: 12px 0;
    margin-bottom: 14px;
}

.placement-info-row {
    display: block;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.6;
}

.placement-info-label {
    font-weight: 900;
    color: #0f172a;
}

.placement-info-value {
    color: #0f172a;
    font-weight: 500;
}

/* Package Badge Style */
.placement-info-row .placement-info-label + .placement-info-value {
    word-break: break-word;
}

/* Remarks */
.placement-remarks {
    margin-top: 14px;
    background: #f8fafc;
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 12px 14px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Optional Company Logo */
.placement-company-logo {
    position: absolute;
    right: 16px;
    bottom: -26px;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    z-index: 3;
}

.placement-company-logo img {
    width: auto;
    height: auto;
    max-width: 56px;
    max-height: 56px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .placement-photo-wrap {
        height: 235px;
    }

    .placement-body {
        padding: 20px;
    }

    .placement-student-name {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .placement-card {
        border-radius: 18px;
    }

    .placement-photo-wrap {
        height: 230px;
    }

    .placement-body {
        padding: 18px;
    }

    .placement-student-name {
        font-size: 18px;
    }

    .placement-designation {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .placement-info-row {
        font-size: 14px;
    }

    .placement-remarks {
        font-size: 13px;
        line-height: 1.6;
    }

    .placement-company-logo {
        width: 62px;
        height: 62px;
        border-radius: 15px;
        right: 14px;
        bottom: -22px;
    }

    .placement-company-logo img {
        max-width: 48px;
        max-height: 48px;
    }
}

/* =========================================
   Course Reviews Auto Slider
========================================= */

.review-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
}

.review-slider-wrapper::before,
.review-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.review-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.review-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.review-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewSlideRightToLeft 35s linear infinite;
}

.review-slider-wrapper:hover .review-slider-track {
    animation-play-state: paused;
}

.review-slide {
    width: 340px;
    min-width: 340px;
}

@keyframes reviewSlideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */

.review-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.review-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.review-student {
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.review-avatar-fallback {
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
}

.review-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.review-card small {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.review-rating {
    position: relative;
    z-index: 1;
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
}

.review-star-muted {
    color: #cbd5e1;
}

.review-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0;
    font-size: 15px;
}

/* Mobile */

@media (max-width: 768px) {
    .review-slider-track {
        gap: 18px;
        animation-duration: 28s;
    }

    .review-slide {
        width: 82vw;
        min-width: 82vw;
    }

    .review-slider-wrapper::before,
    .review-slider-wrapper::after {
        width: 35px;
    }

    .review-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .review-avatar {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .review-card h4 {
        font-size: 17px;
    }

    .review-card p {
        font-size: 14px;
    }
}
/* =========================================
   Course Eligibility Section - Project Style
========================================= */

.eligibility-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.eligibility-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.eligibility-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.eligibility-top-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.eligibility-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.20);
}

.eligibility-small-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.eligibility-type {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.eligibility-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
}

.eligibility-subtitle {
    position: relative;
    z-index: 1;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 18px;
    font-size: 14px;
}

.eligibility-point-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.eligibility-point-list li:last-child {
    margin-bottom: 0;
}

.eligibility-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .eligibility-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .eligibility-top-row {
        gap: 13px;
        margin-bottom: 16px;
    }

    .eligibility-number,
    .eligibility-small-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
    }

    .eligibility-number {
        font-size: 16px;
    }

    .eligibility-small-icon {
        font-size: 21px;
    }

    .eligibility-type {
        font-size: 11px;
        padding: 5px 10px;
    }

    .eligibility-card h4 {
        font-size: 18px;
    }

    .eligibility-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .eligibility-point-list li {
        font-size: 14px;
    }
}
/* =========================================
   Course Projects Section
========================================= */

.course-project-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.course-project-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.course-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.course-project-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

/* Top row: number + small image */
.project-top-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.project-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.20);
}

.project-thumb {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.project-thumb img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.project-thumb span {
    font-size: 28px;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-type {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.course-project-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.35;
}

.course-project-card p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 15px;
}

.project-point-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.project-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 9px;
}

.project-point-list li span {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

.project-preview-btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 8px 16px;
}

.project-why-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.08);
}

.project-why-box h4 {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.project-why-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.project-why-box .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
}

/* Mobile */
@media (max-width: 768px) {
    .course-project-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .project-top-row {
        gap: 13px;
        margin-bottom: 16px;
    }

    .project-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 16px;
    }

    .project-thumb {
        width: 62px;
        height: 62px;
        min-width: 62px;
        border-radius: 16px;
    }

    .project-thumb img {
        width: 72%;
        height: 72%;
    }

    .project-type {
        font-size: 11px;
        padding: 5px 10px;
    }

    .course-project-card h4 {
        font-size: 18px;
    }

    .course-project-card p,
    .project-point-list li {
        font-size: 14px;
    }

    .project-why-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .project-why-box h4 {
        font-size: 20px;
    }

    .project-why-box p {
        font-size: 14px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .course-project-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .project-card-header {
        gap: 13px;
    }

    .project-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 16px;
    }

    .course-project-card h4 {
        font-size: 18px;
    }

    .project-preview img {
        height: 160px;
    }

    .course-project-card p,
    .project-point-list li {
        font-size: 14px;
    }

    .project-why-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .project-why-box h4 {
        font-size: 20px;
    }

    .project-why-box p {
        font-size: 14px;
    }
}
/* =========================================
   Course Projects Section
========================================= */

.course-project-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.course-project-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.course-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.course-project-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.project-top-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.project-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.20);
}

.project-thumb {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.project-thumb img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.project-thumb span {
    font-size: 28px;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-type {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.course-project-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.35;
}

.course-project-card p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 15px;
}

.project-point-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.project-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 9px;
}

.project-point-list li span {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

.project-preview-btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 8px 16px;
}

/* Bottom CTA Box */

.project-why-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.08);
}

.project-why-box h4 {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.project-why-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.project-why-box .btn,
.project-contact-btn {
    min-width: 150px;
    white-space: nowrap;
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
    text-align: center;
}

/* Mobile */

@media (max-width: 768px) {
    .course-project-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .project-top-row {
        gap: 13px;
        margin-bottom: 16px;
    }

    .project-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 16px;
    }

    .project-thumb {
        width: 62px;
        height: 62px;
        min-width: 62px;
        border-radius: 16px;
    }

    .project-thumb img {
        width: 72%;
        height: 72%;
    }

    .project-type {
        font-size: 11px;
        padding: 5px 10px;
    }

    .course-project-card h4 {
        font-size: 18px;
    }

    .course-project-card p,
    .project-point-list li {
        font-size: 14px;
    }

    .project-why-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .project-why-box h4 {
        font-size: 20px;
    }

    .project-why-box p {
        font-size: 14px;
    }

    .project-contact-btn {
        width: 100%;
        margin-top: 4px;
    }
}

/* =========================================
   Course Sidebar
========================================= */

.course-sidebar {
    z-index: 10;
}

.course-sidebar-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.sidebar-course-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f8fafc;
}

.sidebar-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-course-content {
    padding: 24px;
}

.sidebar-badge {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.sidebar-course-content h3 {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sidebar-tagline {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    font-size: 14px;
}

.sidebar-info-list {
    border-top: 1px dashed rgba(15, 23, 42, 0.14);
    border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
    padding: 12px 0;
    margin-bottom: 20px;
}

.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.sidebar-info-label {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-info-value {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.sidebar-fee-box {
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.07);
    margin-bottom: 22px;
}

.fee-box-title {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
}

.fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
}

.fee-old {
    color: #94a3b8;
    text-decoration: line-through;
}

.fee-main {
    color: #0d6efd;
    font-size: 20px;
    font-weight: 900;
}

.fee-save-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ecfdf5;
    border: 1px solid rgba(22, 163, 74, 0.18);
    color: #15803d;
    border-radius: 14px;
    padding: 10px 12px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 800;
}

.coupon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px dashed rgba(22, 163, 74, 0.35);
    background: #f0fdf4;
    color: #15803d;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.coupon-link:hover {
    background: #dcfce7;
    color: #166534;
}

.sidebar-action-grid {
    display: grid;
    gap: 12px;
}

.sidebar-action-grid .btn {
    border-radius: 15px;
    font-weight: 800;
    padding: 12px 16px;
}

/* Mobile */
@media (max-width: 991px) {
    .course-sidebar {
        position: static !important;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .sidebar-course-image {
        height: 165px;
    }

    .sidebar-course-content {
        padding: 20px;
    }

    .sidebar-course-content h3 {
        font-size: 20px;
    }

    .sidebar-info-label,
    .sidebar-info-value,
    .fee-row {
        font-size: 13px;
    }

    .fee-main {
        font-size: 18px;
    }
}

/* =========================================
   Global Course Section Heading
========================================= */

.course-page .section-heading {
    position: relative;
    margin-bottom: 42px;
}

.course-page .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.10);
}

.course-page .section-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.course-page .section-heading p {
    color: #64748b !important;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
}

.course-page .section-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0d6efd, #60a5fa);
    margin: 20px auto 0;
}

/* Force old heading style inside course sections */
.course-page .section-heading .text-primary {
    color: #0d6efd !important;
}

.course-page .section-heading h2.fw-bold,
.course-page .section-heading h2 {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
}

/* Mobile */
@media (max-width: 768px) {
    .course-page .section-heading {
        margin-bottom: 30px;
    }

    .course-page .section-badge {
        font-size: 12px;
        padding: 7px 13px;
    }

    .course-page .section-title,
    .course-page .section-heading h2.fw-bold,
    .course-page .section-heading h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .course-page .section-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .course-page .section-heading::after {
        width: 56px;
        height: 3px;
        margin-top: 16px;
    }
}



/* Mobile */
@media (max-width: 768px) {
    .course-project-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .project-card-header {
        gap: 13px;
    }

    .project-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 16px;
    }

    .course-project-card h4 {
        font-size: 18px;
    }

    .project-preview {
        height: 160px;
        border-radius: 14px;
    }

    .project-preview img {
        width: 55%;
        height: 55%;
    }

    .course-project-card p,
    .project-point-list li {
        font-size: 14px;
    }

    .project-why-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .project-why-box h4 {
        font-size: 20px;
    }

    .project-why-box p {
        font-size: 14px;
    }
}
/* =========================================
   Course Gallery Auto Slider
========================================= */

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
}

.gallery-slider-wrapper::before,
.gallery-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.gallery-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.gallery-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: gallerySlideRightToLeft 38s linear infinite;
}

.gallery-slider-wrapper:hover .gallery-slider-track {
    animation-play-state: paused;
}

.gallery-slide {
    width: 340px;
    min-width: 340px;
}

@keyframes gallerySlideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Card */

.gallery-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.gallery-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.gallery-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.gallery-image-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 18px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.35s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-content {
    position: relative;
    z-index: 1;
}

.gallery-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.gallery-heading h4 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.35;
}

.gallery-type {
    display: inline-flex;
    white-space: nowrap;
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 800;
}

.gallery-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 14px;
}

/* Mobile */

@media (max-width: 768px) {
    .gallery-slider-track {
        gap: 18px;
        animation-duration: 30s;
    }

    .gallery-slide {
        width: 82vw;
        min-width: 82vw;
    }

    .gallery-slider-wrapper::before,
    .gallery-slider-wrapper::after {
        width: 35px;
    }

    .gallery-card {
        padding: 14px;
        border-radius: 18px;
    }

    .gallery-image-wrap {
        height: 180px;
        border-radius: 14px;
    }

    .gallery-heading {
        flex-direction: column;
        gap: 8px;
    }

    .gallery-heading h4 {
        font-size: 18px;
    }

    .gallery-card p {
        font-size: 14px;
    }
}

/* =========================================
   Course Gallery Section - Force Update
========================================= */

.course-gallery .gallery-card,
.course-gallery .project-card {
    position: relative !important;
    background: linear-gradient(135deg, #ffffff, #f8fbff) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 20px !important;
    padding: 18px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
}

.course-gallery .gallery-card::before,
.course-gallery .project-card::before {
    content: "" !important;
    position: absolute !important;
    top: -45px !important;
    right: -45px !important;
    width: 125px !important;
    height: 125px !important;
    background: rgba(13, 110, 253, 0.08) !important;
    border-radius: 50% !important;
    transition: all 0.25s ease !important;
}

.course-gallery .gallery-card:hover,
.course-gallery .project-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(13, 110, 253, 0.22) !important;
}

.course-gallery .gallery-card:hover::before,
.course-gallery .project-card:hover::before {
    transform: scale(1.15) !important;
    background: rgba(13, 110, 253, 0.12) !important;
}

.course-gallery .gallery-image-wrap,
.course-gallery .project-card > img {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 210px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    margin-bottom: 18px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.course-gallery .gallery-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: all 0.35s ease !important;
}

.course-gallery .gallery-card:hover .gallery-image,
.course-gallery .project-card:hover > img {
    transform: scale(1.05) !important;
}

.course-gallery .gallery-content,
.course-gallery .project-card > div,
.course-gallery .project-card > p {
    position: relative !important;
    z-index: 1 !important;
}

.course-gallery .gallery-heading,
.course-gallery .project-card .d-flex {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.course-gallery .gallery-heading h4,
.course-gallery .project-card h4 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 0 !important;
    line-height: 1.35 !important;
}

.course-gallery .gallery-type,
.course-gallery .project-card .badge {
    display: inline-flex !important;
    white-space: nowrap !important;
    padding: 6px 11px !important;
    border-radius: 999px !important;
    background: #eef6ff !important;
    color: #0d6efd !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.course-gallery .gallery-card p,
.course-gallery .project-card p {
    color: #475569 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .course-gallery .gallery-card,
    .course-gallery .project-card {
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .course-gallery .gallery-image-wrap,
    .course-gallery .project-card > img {
        height: 180px !important;
        border-radius: 14px !important;
    }

    .course-gallery .gallery-heading,
    .course-gallery .project-card .d-flex {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .course-gallery .gallery-heading h4,
    .course-gallery .project-card h4 {
        font-size: 18px !important;
    }

    .course-gallery .gallery-card p,
    .course-gallery .project-card p {
        font-size: 14px !important;
    }
}

/* =========================================
   Course Location Section
========================================= */

.location-info-card,
.location-map-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.location-info-card::before,
.location-map-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 135px;
    height: 135px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.location-info-card:hover,
.location-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.location-info-card:hover::before,
.location-map-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.location-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.location-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.location-card-header h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.location-card-header p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.location-detail-list {
    position: relative;
    z-index: 1;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

.location-detail-item:first-child {
    padding-top: 0;
}

.location-detail-item:last-child {
    border-bottom: 0;
}

.location-detail-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: #eef6ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.location-detail-item strong {
    color: #0f172a;
}

.location-detail-item a {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;
}

.location-detail-item a:hover {
    text-decoration: underline;
}

.location-action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-action .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 10px 18px;
}

.location-map-card {
    padding: 18px;
}

.location-map-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.location-map-frame iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 430px;
    border: 0 !important;
    display: block;
}

.location-map-empty {
    position: relative;
    z-index: 1;
    min-height: 430px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.location-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.location-map-empty h5 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.location-map-empty p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .location-info-card,
    .location-map-card {
        padding: 22px;
        border-radius: 18px;
    }

    .location-card-header {
        gap: 13px;
        margin-bottom: 20px;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 15px;
        font-size: 24px;
    }

    .location-card-header h4 {
        font-size: 19px;
    }

    .location-card-header p {
        font-size: 13px;
    }

    .location-detail-item {
        font-size: 14px;
    }

    .location-action {
        flex-direction: column;
    }

    .location-action .btn {
        width: 100%;
    }

    .location-map-frame,
    .location-map-frame iframe,
    .location-map-empty {
        min-height: 300px;
    }
}

/* =========================================
   Course Trust Bar Section
========================================= */

.course-trust-bar {
    position: relative;
}

.course-trust-wrapper {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.course-trust-bar .trust-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 22px 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
    overflow: hidden;
}

.course-trust-bar .trust-item::before {
    content: "";
    position: absolute;
    top: -38px;
    right: -38px;
    width: 100px;
    height: 100px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.course-trust-bar .trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.course-trust-bar .trust-item:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.course-trust-bar .trust-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eef6ff;
    color: #0d6efd;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.course-trust-bar .trust-title {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 7px;
}

.course-trust-bar .trust-text {
    position: relative;
    z-index: 1;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .course-trust-wrapper {
        padding: 16px;
        border-radius: 18px;
    }

    .course-trust-bar .trust-item {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .course-trust-bar .trust-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 21px;
    }

    .course-trust-bar .trust-title {
        font-size: 14px;
    }

    .course-trust-bar .trust-text {
        font-size: 12px;
    }
}
/* =========================================
   Course FAQs Section
========================================= */

.faq-wrapper {
    position: relative;
}

.course-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-faq-accordion .faq-item {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.course-faq-accordion .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    border-color: rgba(13, 110, 253, 0.20);
}

.course-faq-accordion .faq-button {
    background: transparent;
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    padding: 20px 24px;
    box-shadow: none;
    border: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-faq-accordion .faq-button:not(.collapsed) {
    background: #eef6ff;
    color: #0d6efd;
    box-shadow: none;
}

.course-faq-accordion .faq-button:focus {
    box-shadow: none;
    border: 0;
}

.faq-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.course-faq-accordion .faq-button:not(.collapsed) .faq-number {
    background: #0d6efd;
    color: #ffffff;
}

.faq-question {
    flex: 1;
    padding-right: 12px;
}

.course-faq-accordion .accordion-button::after {
    margin-left: auto;
}

.course-faq-accordion .faq-body {
    background: #ffffff;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
    padding: 0 24px 22px 82px;
}

.faq-help-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.08);
}

.faq-help-box h4 {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-help-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-help-box .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
}

/* Mobile */
@media (max-width: 768px) {
    .course-faq-accordion {
        gap: 13px;
    }

    .course-faq-accordion .faq-item {
        border-radius: 16px;
    }

    .course-faq-accordion .faq-button {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
        align-items: flex-start;
    }

    .faq-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 12px;
        font-size: 12px;
    }

    .course-faq-accordion .faq-body {
        font-size: 14px;
        line-height: 1.75;
        padding: 0 18px 18px 66px;
    }

    .faq-help-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .faq-help-box h4 {
        font-size: 20px;
    }

    .faq-help-box p {
        font-size: 14px;
    }
}

/* =========================================
   Course FAQs Section
========================================= */

.faq-wrapper {
    position: relative;
}

.course-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-faq-accordion .faq-item {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.course-faq-accordion .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    border-color: rgba(13, 110, 253, 0.20);
}

.course-faq-accordion .faq-button {
    background: transparent;
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    padding: 20px 24px;
    box-shadow: none;
    border: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-faq-accordion .faq-button:not(.collapsed) {
    background: #eef6ff;
    color: #0d6efd;
    box-shadow: none;
}

.course-faq-accordion .faq-button:focus {
    box-shadow: none;
    border: 0;
}

.faq-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.course-faq-accordion .faq-button:not(.collapsed) .faq-number {
    background: #0d6efd;
    color: #ffffff;
}

.faq-question {
    flex: 1;
    padding-right: 12px;
}

.course-faq-accordion .accordion-button::after {
    margin-left: auto;
}

.course-faq-accordion .faq-body {
    background: #ffffff;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
    padding: 0 24px 22px 82px;
}

.faq-help-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.08);
}

.faq-help-box h4 {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-help-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-help-box .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
}

/* Mobile */
@media (max-width: 768px) {
    .course-faq-accordion {
        gap: 13px;
    }

    .course-faq-accordion .faq-item {
        border-radius: 16px;
    }

    .course-faq-accordion .faq-button {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
        align-items: flex-start;
    }

    .faq-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 12px;
        font-size: 12px;
    }

    .course-faq-accordion .faq-body {
        font-size: 14px;
        line-height: 1.75;
        padding: 0 18px 18px 66px;
    }

    .faq-help-box {
        padding: 22px;
        border-radius: 18px;
        text-align: center;
    }

    .faq-help-box h4 {
        font-size: 20px;
    }

    .faq-help-box p {
        font-size: 14px;
    }
}/* =========================================
   Course Faculty Section
========================================= */

.course-faculty .faculty-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.course-faculty .faculty-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 125px;
    height: 125px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.course-faculty .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.course-faculty .faculty-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.faculty-photo-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.faculty-photo,
.faculty-avatar {
    width: 96px;
    height: 96px;
    min-width: 96px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.faculty-photo {
    object-fit: cover;
    display: block;
}

.faculty-avatar {
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

.faculty-primary-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.course-faculty .faculty-card h4 {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.faculty-designation {
    position: relative;
    z-index: 1;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.course-faculty .faculty-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

/* Teaching Approach + Success Cards */

.faculty-approach-wrapper {
    position: relative;
}

.teaching-approach-card,
.student-success-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.teaching-approach-card::before,
.student-success-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 135px;
    height: 135px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.teaching-approach-card:hover,
.student-success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.teaching-approach-card:hover::before,
.student-success-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.faculty-mini-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.faculty-mini-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.faculty-mini-heading span {
    display: inline-flex;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.faculty-mini-heading h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.3;
}

.teaching-point-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.teaching-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}

.teaching-point-list li:first-child {
    padding-top: 0;
}

.teaching-point-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.teaching-point-list li span {
    width: 23px;
    height: 23px;
    min-width: 23px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

.student-success-card p {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 22px;
}

.student-success-card .btn {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    font-weight: 800;
    padding: 11px 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .course-faculty .faculty-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .faculty-photo,
    .faculty-avatar {
        width: 82px;
        height: 82px;
        min-width: 82px;
    }

    .faculty-avatar {
        font-size: 28px;
    }

    .course-faculty .faculty-card h4 {
        font-size: 18px;
    }

    .course-faculty .faculty-card p {
        font-size: 14px;
    }

    .teaching-approach-card,
    .student-success-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .faculty-mini-heading {
        gap: 13px;
        margin-bottom: 20px;
    }

    .faculty-mini-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 15px;
        font-size: 23px;
    }

    .faculty-mini-heading h3 {
        font-size: 20px;
    }

    .teaching-point-list li,
    .student-success-card p {
        font-size: 14px;
    }
}
/* =========================================
   Course Certificate Section
========================================= */

.certificate-preview-card,
.certificate-benefit-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.certificate-preview-card::before,
.certificate-benefit-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 135px;
    height: 135px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.certificate-preview-card:hover,
.certificate-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 110, 253, 0.22);
}

.certificate-preview-card:hover::before,
.certificate-benefit-card:hover::before {
    transform: scale(1.15);
    background: rgba(13, 110, 253, 0.12);
}

.certificate-image-wrap,
.certificate-empty-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 300px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.certificate-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: contain;
    display: block;
    padding: 14px;
}

.certificate-empty-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    text-align: center;
}

.certificate-empty-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 18px;
}

.certificate-empty-preview h3 {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.certificate-empty-preview p {
    color: #64748b;
    margin-bottom: 0;
}

.certificate-status-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ecfdf5;
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 18px;
    padding: 18px;
}

.certificate-status-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.certificate-status-icon.info {
    background: #0d6efd;
}

.certificate-status-box h4 {
    font-size: 17px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.certificate-status-box p {
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
    font-size: 14px;
}

.certificate-card-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.certificate-heading-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.certificate-card-heading span {
    display: inline-flex;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.certificate-card-heading h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.3;
}

.certificate-benefit-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificate-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}

.certificate-benefit-list li:first-child {
    padding-top: 0;
}

.certificate-benefit-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.certificate-benefit-list li span {
    width: 23px;
    height: 23px;
    min-width: 23px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

.certificate-benefit-card .btn {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    font-weight: 800;
    padding: 12px 20px;
}

@media (max-width: 768px) {
    .certificate-preview-card,
    .certificate-benefit-card {
        padding: 22px;
        border-radius: 18px;
    }

    .certificate-image-wrap,
    .certificate-empty-preview,
    .certificate-image-wrap img {
        min-height: 230px;
    }

    .certificate-card-heading {
        gap: 13px;
        margin-bottom: 20px;
    }

    .certificate-heading-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 15px;
        font-size: 23px;
    }

    .certificate-card-heading h3 {
        font-size: 20px;
    }

    .certificate-benefit-list li,
    .certificate-status-box p {
        font-size: 14px;
    }
}
/* =========================================
   Mobile
========================================= */

@media (max-width: 768px) {
    .curriculum-button {
        padding: 16px;
        gap: 12px;
    }

    .curriculum-module-badge {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .curriculum-card {
        padding: 22px;
    }

    .curriculum-card h5 {
        font-size: 18px;
    }

    .curriculum-topic-list li {
        font-size: 14px;
    }

    .highlight-card {
        padding: 22px;
        border-radius: 18px;
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 23px;
    }

    .highlight-card h4 {
        font-size: 18px;
    }

    .highlight-card p {
        font-size: 14px;
    }
}