body {
    background-color: #fff0e62b;
}

.course-hero {
    padding: 100px 0;
    overflow: hidden;
}

.course-hero__content {
    padding-right: 30px;
}

.course-hero__badge {
    background: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.course-hero__title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--Light_mode-Gray_Scale-5);
    margin-bottom: 30px;
}

.course-hero__title .text--highlight {
    color: var(--Light-Primary-50);
}

.course-hero__desc {
    font-size: 17px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.course-hero__info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.info-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid var(--Light-Primary-95);
    border-radius: 50px;
    background: var(--Light_mode-Gray_Scale-100);
    transition: 0.3s;
}

.info-tag i {
    color: var(--Light-Primary-50);
    font-size: 18px;
}

.info-tag span {
    font-weight: 700;
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-5);
}

.info-tag:hover {
    border-color: var(--Light-Tertiary-50);
    transform: translateY(-2px);
}

.course-hero__actions .c-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--Light-Senary-50);
    color: #000;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 207, 71, 0.3);
    transition: 0.3s;
}

.course-hero__actions .c-button-primary i {
    font-size: 18px;
}

.course-hero__actions .c-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 207, 71, 0.4);
}

/* Media (Video) Section */
.course-hero__media-wrapper {
    position: relative;
    margin-top: 140px;
}

.course-hero__media-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    /* Create starburst effect with multiple layered pseudo-elements or clip-path */
}

/* Simple starburst background using pseudo-elements */
.course-hero__media-wrapper::before,
.course-hero__media-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background: var(--Light-Senary-95);
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 20px;
    opacity: 0.6;
}

.course-hero__media-wrapper::after {
    transform: translate(-50%, -50%) rotate(15deg);
    background: var(--Light-Senary-90);
    width: 105%;
    height: 105%;
}

.course-hero__media-bg::before,
.course-hero__media-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Light-Primary-95);
    transform: rotate(-15deg);
    border-radius: 20px;
}

.course-hero__media-bg::after {
    transform: rotate(-45deg);
    background: var(--Light-Tertiary-95);
}

.course-hero__video {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

.course-hero__video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .course-hero__title {
        font-size: 40px;
    }
}

/* Course Goals Section */
.course-goals {
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.course-goals__wrapper {
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(134, 59, 0, 0.08);
    position: relative;
    text-align: center;
}

.course-goals__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 50px;
}

.goal-card {
    padding: 40px 20px;
    border-radius: 35px;
    height: 100%;
    transition: 0.3s;
}

.goal-card__icon {
    width: 80px;
    height: 80px;
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.goal-card__icon i {
    font-size: 32px;
    color: var(--Light-Senary-50);
}

.goal-card__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 15px;
}

.goal-card__desc {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card variants based on design */
.goal-card--1 {
    background-color: #fff1ed;
}

/* Light reddish/pink */
.goal-card--2 {
    background-color: var(--Light-Senary-95);
}

/* Very light yellow */
.goal-card--3 {
    background-color: var(--Light-Tertiary-95);
}

/* Very light peach */
.goal-card--4 {
    background-color: var(--Light-Senary-90);
}

/* Light yellow */

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Decor Icons */
.course-goals__decor {
    position: absolute;
    color: var(--Light-Senary-50);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.course-goals__decor--cloud {
    top: 40px;
    right: 40px;
    font-size: 40px;
}

.course-goals__decor--star {
    bottom: 40px;
    left: 40px;
    font-size: 35px;
}

@media (max-width: 991px) {
    .course-goals {
        padding: 40px 0;
        margin-top: 0;
    }

    .course-goals__wrapper {
        padding: 40px 20px;
    }

    .goal-card {
        margin-bottom: 25px;
    }

    .course-goals__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .course-hero {
        padding: 60px 0;
        text-align: center;
    }

    .course-hero__content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .course-hero__desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .course-hero__info-tags {
        justify-content: center;
    }

    .course-hero__media-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .course-hero__title {
        font-size: 32px;
    }

    .course-hero__desc {
        font-size: 15px;
    }

    .info-tag {
        padding: 8px 15px;
        font-size: 13px;
    }

    .course-hero__actions .c-button-primary {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Course Special Section */
.course-special {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.course-special__main-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 40px;
}

.course-special__card {
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(134, 59, 0, 0.05);
}

.special-image {
    padding: 20px;
}

.special-image__frame {
    position: relative;
    border: 8px solid var(--Light-Secondary-50);
    border-radius: 20px;
    padding: 0;
    background: var(--Light_mode-Gray_Scale-100);
    transform: rotate(-2deg);
    transition: 0.3s;
}

.special-image__frame:hover {
    transform: rotate(0deg);
}

.special-image__frame img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.decor-tag {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.decor-tag--top {
    top: -25px;
    right: -25px;
    color: #4096ff;
}

.decor-tag--bottom {
    bottom: -25px;
    left: -25px;
}

.decor-tag--bottom img {
    width: 25px !important;
}

.special-content {
    padding-left: 40px;
}

.special-content__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
    padding: 8px 25px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

.special-content__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--Light-Primary-50);
    margin-bottom: 40px;
}

.special-content__title .text--highlight {
    -webkit-text-stroke: 1px var(--Light-Primary-50);
    color: transparent;
}

.special-usp {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-usp__item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--Light_mode-Gray_Scale-100);
    border: 1px solid var(--Light_mode-Gray_Scale-90);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.usp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon--yellow {
    background-color: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
}

.usp-icon--brown {
    background-color: var(--Light-Primary-50);
    color: var(--Light_mode-Gray_Scale-100);
}

.special-usp__item p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--Light-Primary-50);
}

.c-button-special {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--Light-Primary-50);
    color: var(--Light_mode-Gray_Scale-100);
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.c-button-special i {
    font-size: 18px;
}

.c-button-special:hover {
    background: var(--Light-Tertiary-50);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 126, 1, 0.3);
}

@media (max-width: 1199px) {
    .special-content__title {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .course-special {
        padding: 40px 0;
    }

    .course-special__card .row {
        display: block;
    }

    .course-special__card {
        padding: 40px 20px;
    }

    .special-image {
        margin-bottom: 50px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .special-content {
        padding-left: 0;
        text-align: center;
    }

    .special-content__badge,
    .special-usp__item {
        justify-content: center;
    }
}

/* Course Roadmap Section */
.course-roadmap {
    padding: 100px 0;
    position: relative;
}

.course-roadmap__title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 80px;
}

.roadmap-container {
    position: relative;
    padding: 0 50px;
}

.roadmap-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.roadmap-step {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Alternating Logic: Reversed direction for even children */
.roadmap-step:nth-child(even) {
    flex-direction: column-reverse;
}

/* Add margin to content to separate from point */
.roadmap-content {
    margin-bottom: 40px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.roadmap-step:nth-child(even) .roadmap-content {
    margin-bottom: 0;
    margin-top: 40px;
    justify-content: flex-start;
}

.step-stage {
    font-size: 13px;
    font-weight: 700;
    color: var(--Light-Secondary-50);
    display: block;
    margin-bottom: 10px;
    margin-top: 12px;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 15px;
}

.step-desc {
    font-size: 15px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.5;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Roadmap Point Styling */
.roadmap-point {
    position: relative;
    width: 150px;
    height: 150px;
}

.point-icon {
    width: 100%;
    height: 100%;
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.point-icon i {
    font-size: 50px;
}

.point-icon.color--green {
    color: #28a745;
    border-color: #28a74522;
}

.point-icon.color--orange {
    color: #fd7e14;
    border-color: #fd7e1422;
}

.point-icon.color--pink {
    color: #e83e8c;
    border-color: #e83e8c22;
}

.point-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--Light-Senary-50);
    color: var(--Light-Primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Roadmap Step vertical offsets */
.roadmap-step:nth-child(odd) .roadmap-point {
    transform: translateY(-40px);
}

.roadmap-step:nth-child(even) .roadmap-point {
    transform: translateY(40px);
}

/* Updated Roadmap Line: Zigzag effect using pseudo-elements on steps */
.roadmap-line {
    display: none;
    /* Hide the old straight line */
}

/* Connecting line segment */
.roadmap-step:not(:last-child) .roadmap-point::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 176%;
    /* Approximate width to bridge the gap */
    height: 3px;
    border-top: 3px dashed var(--Light-Senary-50);
    z-index: -1;
    transform-origin: left center;
    opacity: 0.5;
}

/* Rotation for zigzag */
.roadmap-step:nth-child(odd):not(:last-child) .roadmap-point::after {
    transform: rotate(343deg);
}

.roadmap-step:nth-child(even):not(:last-child) .roadmap-point::after {
    transform: rotate(23deg);
}

/* Responsive */
@media (max-width: 1199px) {
    .roadmap-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .roadmap-step:nth-child(odd) .roadmap-point,
    .roadmap-step:nth-child(even) .roadmap-point {
        transform: none;
        /* Reset offsets on mobile */
    }

    .roadmap-step:not(:last-child) .roadmap-point::after {
        display: none;
        /* Hide lines on mobile */
    }

    .roadmap-step,
    .roadmap-step:nth-child(even) {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 30px;
        justify-content: center;
    }

    .roadmap-content,
    .roadmap-step:nth-child(even) .roadmap-content {
        margin: 0;
        min-height: auto;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .course-roadmap {
        padding: 40px 0;
    }

    .course-roadmap__title {
        font-size: 28px;
    }

    .roadmap-step,
    .roadmap-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-point {
        width: 120px;
        height: 120px;
    }
}

/* Course Commitment Section */
.course-commitment {
    padding: 100px 0;
    position: relative;
    background-image: radial-gradient(circle, var(--Light-Senary-50) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: center;
    overflow: hidden;
}

.course-commitment__header {
    text-align: center;
    margin-bottom: 80px;
}

.commitment-badge {
    background: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    border: 1.5px dashed var(--Light-Senary-50);
    display: inline-block;
    margin-bottom: 20px;
}

.commitment-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--Light-Secondary-50);
    margin-bottom: 20px;
}

.commitment-divider {
    font-size: 24px;
    color: var(--Light-Primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.commitment-divider::before,
.commitment-divider::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--Light-Primary-50);
    border-radius: 10px;
}

.commitment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.commitment-card {
    border-radius: 50px;
    padding: 50px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(134, 59, 0, 0.05);
}

.commitment-card .card-icon {
    background: var(--Light-Primary-50);
    color: #ffcc00;
    width: 90px;
    height: 90px;
    border-radius: 25px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    font-size: 38px;
}

.commitment-card .card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

.commitment-card .card-highlight {
    background: rgb(255 255 255);
    border: 1px dashed var(--Light-Primary-50);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-card .card-highlight p {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}

.commitment-card .card-footer {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
}

/* Card Variants */
.commitment-card--attendance {
    background: linear-gradient(135deg, #ffd8c4, #ffb088);
    color: var(--Light-Primary-50);
}

.commitment-card--connect {
    background: #ffcc00;
    color: var(--Light-Primary-50);
}


.commitment-card--tools {
    background: #fff;
    border: 3px dashed var(--Light-Senary-50);
    color: var(--Light-Primary-50);
}

/* Connectors */
.commitment-card-wrapper {
    position: relative;
    display: flex;
}

.card-connector-line {
    position: absolute;
    right: -100px;
    bottom: -13px;
    width: 150px;
    height: 50px;
    border-top: 3px dashed var(--Light-Primary-50);
    border-bottom: transparent;
    border-right: transparent;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: rotate(194deg);
    z-index: 5;
    pointer-events: none;
    opacity: 0.6;
}

/* Bg Decors */
.commitment-bg-decor {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.commitment-bg-decor--book {
    right: 10%;
    top: 20%;
    font-size: 150px;
}

/* Responsive */
@media (max-width: 1199px) {
    .commitment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-connector-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .commitment-cards {
        grid-template-columns: 1fr;
    }

    .commitment-title {
        font-size: 32px;
    }

    .commitment-card {
        padding: 40px 20px;
    }
}

/* Course Section Separation */
.course-section-container {
    padding-bottom: 150px;
    border-bottom: 1px dashed var(--Light-Secondary-50);
    position: relative;
    scroll-margin-top: 100px;
    /* Offset for sticky header */
}

.course-section-container:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Background variations for sections to break visual monotony */
.course-section-container:nth-child(even) {
    background-color: rgba(255, 126, 20, 0.02);
}

.course-section-container:nth-child(odd) {
    background-color: rgba(241, 126, 1, 0.01);
}