

        /* Course Header */
        .course-header {
            background: linear-gradient(180deg, #e6f7ff 0%, #0099ff 100%);
            padding: 3rem 0;
            color: #333;
        }

        .course-header h1 {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .course-meta {
            display: flex;
            align-items: center;
            margin: 1.0rem 0;
        }

        .course-meta-item {
            display: flex;
            align-items: center;
            margin-right: 2rem;
            color: #333;
        }

        .course-meta-item i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .course-price {
            border-radius: 10px;
            display: flex;
            gap: 30px;
        }

        .price-tag {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .price-tag-discount {
            font-size: 1rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 1rem;
            margin-top: 12px;
            text-decoration:line-through;

        }

        /* Course Tabs */
        .course-tabs {
            background-color: white;
            border-radius: 10px;
            padding: 0.5rem;
            margin-top: -25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            z-index: 10;
        }

        .course-tab {
            padding: 1rem;
            text-align: center;
            font-weight: 500;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 2px solid transparent;
        }

        .course-tab.active {
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
        }

        .course-tab:hover {
            color: var(--primary-color);
        }

        /* Course Content */
        .course-content {
            padding: 3rem 0;
            margin: 50px 0;
        }

      
        .content-section h2 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .content-section h2:after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #6c757d;
        }

        .course-info-list {
            list-style: none;
            padding: 0;
        }

        .course-info-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .course-info-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        /* Study Plan */
        .study-plan-table {
            width: 100%;
            border-collapse: collapse;
        }

        .study-plan-table th,
        .study-plan-table td {
            padding: 1rem;
            border: 1px solid #e9ecef;
            text-align: center;
        }

        .study-plan-table th {
            background-color: #212529;
            color: white;
        }

        .study-plan-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        /* Course Content Accordion */
        .content-accordion-item {
            border-bottom: 1px solid #e9ecef;
            padding: 1rem 0;
        }

        .content-accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .accordion-item-left {
            display: flex;
            align-items: center;
        }

        .accordion-item-left i {
            margin-right: 1rem;
            color: #6c757d;
            width: 24px;
        }

        .accordion-item-right {
            color: #6c757d;
        }

        /* Course Sidebar */
        .course-sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 0.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 20px;
        }

        .sidebar-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            /* border-bottom: 1px solid #e9ecef; */
        }

        .sidebar-price {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #333;
        }

        /* Courses Section */
        .courses-section {
            padding: 4rem 0;
            background-color: #f9f9f9;
        }

        .course-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            height: 100%;
        }

        .course-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .course-card-body {
            padding: 20px;
        }

        .course-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }

        .course-price {
            font-weight: bold;
            color: var(--text-dark);
            margin-top: 15px;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 4rem 0;
            background: linear-gradient(to right, #fff8f8, #fff8ee);
        }

        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            height: 100%;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 0;
            background-color: #f8f9fa;
        }

        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .form-control {
            margin-bottom: 15px;
            padding: 12px;
            border-radius: 5px;
        }

        .advisor-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Apply Section */
        .apply-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .apply-section p {
            margin-bottom: 0.5rem;
        }

        .apply-email {
            color: var(--primary-color);
            text-decoration: none;
        }

        .apply-email:hover {
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 3rem 0;
        }

        .footer-logo {
            margin-bottom: 20px;
            height: 50px;
        }

        .footer h5 {
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links a {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
        }
