        .course-carousel {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            overflow: hidden;
            max-width: 1350px;
            margin: auto;
        }
        .carousel-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .carousel-wrapper {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 10px;
        }
        .carousel-wrapper::-webkit-scrollbar {
            display: none;
        }
        .course-card {
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out;
            width: 240px;
            height: 400px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .course-card:hover {
            transform: translateY(-5px);
        }
        .course-card img {
            width: 100%;
            height: 150px;
            border-radius: 8px;
            object-fit: cover;
        }
        .course-info {
            font-size: 14px;
            color: rgb(0, 0, 0);
        }
        .course-desc {
            font-size: 12px;
            margin: 10px 0;
            color: #020000;
        }
        .enroll-btn {
            margin-top: auto;
            background: #002347;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: 0.3s;
        }
        .enroll-btn:hover {
            background: #002347;
            color: #fdc632;
        }
        
      .subtitle {
        display: flex;
        align-items: center;
        font-size: 35px;
        font-weight: bold;
        border-bottom: 6px solid #fdc632;
        padding-bottom: 4px;
        width: fit-content;
    }

    .subtitle span {
        margin-left: 10px;
        color: #fabc12;
        font-size: 30px;
    }