
    /* ============================================
   COURSE DETAILS PAGE - BLACK/GOLD THEME
   ============================================ */

    .course-details-page {
        background: #f8f9fa;
    }

    /* Course Header */
    .course-header-section {
        background: #000000;
        position: relative;
        padding: 60px 0;
        margin-top: -1px;
    }

    .course-header-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    }

    .course-header-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffc107, transparent);
    }

    .course-header-content {
        position: relative;
        z-index: 1;
    }

    .course-badge {
        display: inline-block;
        background: rgba(255, 193, 7, 0.15);
        color: #ffc107;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .course-header-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .course-meta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .course-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .course-meta-item i {
        color: #ffc107;
    }

    /* Main Content */
    .course-main-content {
        padding: 80px 0;
    }

    /* Course Overview */
    .course-overview {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 40px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #ffc107, #ffed4e);
        border-radius: 3px;
    }

    .course-overview p {
        color: #4a5568;
        line-height: 1.8;
    }

    /* Popular Courses */
    .popular-courses {
        background: #ffffff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .popular-course-card {
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .popular-course-card:hover {
        background: #ffffff;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
        border-left: 3px solid #ffc107;
    }

    .popular-course-img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .popular-course-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .popular-course-info h6 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .popular-course-info span {
        font-size: 0.75rem;
        color: #ffc107;
        font-weight: 500;
    }

    .popular-course-info p {
        font-size: 0.7rem;
        color: #6c757d;
        margin: 0;
    }

    /* Sidebar */
    .course-sidebar {
        position: sticky;
        top: 100px;
    }

    .course-info-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .course-info-img {
        position: relative;
        overflow: hidden;
    }

    .course-info-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .course-info-card:hover .course-info-img img {
        transform: scale(1.05);
    }

    .course-info-details {
        padding: 25px;
    }

    .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .info-list li:last-child {
        border-bottom: none;
    }

    .info-label {
        font-weight: 600;
        color: #000000;
    }

    .info-value {
        color: #ffc107;
        font-weight: 500;
    }

    .enroll-btn {
        width: 100%;
        background: #000000;
        color: #ffffff;
        border: 2px solid #000000;
        padding: 14px 20px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
        display: inline-block;
        text-decoration: none;
        margin-top: 20px;
    }

    .enroll-btn:hover {
        background: #ffc107;
        border-color: #ffc107;
        color: #000000;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .course-header-section {
            padding: 50px 0;
        }

        .course-header-content h1 {
            font-size: 2rem;
        }

        .course-main-content {
            padding: 60px 0;
        }

        .course-sidebar {
            position: relative;
            top: 0;
            margin-top: 40px;
        }
    }

    @media (max-width: 768px) {
        .course-header-section {
            padding: 40px 0;
        }

        .course-header-content h1 {
            font-size: 1.6rem;
        }

        .course-main-content {
            padding: 50px 0;
        }

        .course-overview,
        .popular-courses {
            padding: 20px;
        }

        .section-title {
            font-size: 1.3rem;
        }

        .courses-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .course-header-content h1 {
            font-size: 1.3rem;
        }

        .course-meta {
            gap: 12px;
        }

        .course-meta-item {
            font-size: 0.75rem;
        }

        .course-main-content {
            padding: 40px 0;
        }

        .course-overview p {
            font-size: 0.9rem;
        }

        .course-info-details {
            padding: 20px;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .course-overview,
    .popular-courses,
    .course-info-card {
        animation: fadeInUp 0.6s ease forwards;
    }
    [dir="ltr" ] {
            float: none !important;
    }
    td  [dir="ltr" ] {
            padding: 3px 9px !important;
    }
