.skill-card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.masked .lg-red-btn{
    margin-left: -15px;
}

.course-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 7%;
    background: var(--white);
    margin-bottom: 2rem;
    border-radius: 16px;
}

.course-content {
    flex: 1;
}

.course-image {
    flex: 1;
}

.course-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
    color: var(--blue-zodiac);
    font-size: 2rem;
    margin-bottom: .5rem;
}

.course-description {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    list-style-type: disc;
    margin-bottom: .5rem;
    color: #444;
    line-height: 1.5;
}

.features-list li strong {
    color: var(--blue-zodiac-light);
    margin-right: 0.5rem;
    min-width: fit-content;
}






/* Responsive Design */
@media (max-width: 1024px) {
    .skill-card-container {
        padding: 1.5rem;
    }
    
    .course-section {
        padding: 2rem;
        gap: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .course-section {
        flex-direction: column-reverse;
        padding: 1.5rem;
    }
    .masked .lg-red-btn{
        margin-left: -15px;
    }

    .course-content, .course-image {
        width: 100%;
        padding: 0;
    }

    .course-content .lg-red-btn{
        display: block;
        width: fit-content;
        text-align: center;
    }
    h2 {
        font-size: 1.6rem;
        margin-bottom: .5rem;
    }

    .course-description {
        margin-bottom: 1.5rem;
    }

    .features-list li {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .skill-card-container {
        padding: 1rem;
    }

    .course-section {
        padding: 1rem;
        gap: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .enroll-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    /* .features-list li strong {
        display: block;
        margin-bottom: 0.3rem;
    } */

    .features-list li {
        flex-direction: column;
    }
}






/* new sytles for courses */


body{
    margin: 0;
    padding: 0;
}


.parent-course-container{
    display: flex;
    justify-content: center;
    background-color: var(--biege-35);
}

.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    padding: 2rem;
    justify-content: center;
}
@media (min-width: 600px) {
    .course-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .course-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
.course-card {
    background: var(--white);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 400px;
}
.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}
.course-contents {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.course-contents .course-title {
    
    font-size: 18px;
    margin: 0 auto;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 10px;
    width: 100%;

}

.course-contents .duration {
    display: flex;
    justify-content: start !important;
    align-items: center;
    width: 100%;
    gap: .2rem;
    margin-bottom: 10px;
}

.course-contents .course-description {
    text-align: left;
}


.course-contents .course-title, .course-content .course-description,
.course-contents .duration{
    text-align: left;
    color: var(--blue-zodiac);
}



/* class to add in stylesheet */
.ai-course-container .title{
    background: linear-gradient(to right, #5E5A69, #191329);
    padding: 1rem 7%;
}

.sora-bold-white-24px{
    color: var(--neutral01100);
    font-family: var(--font-family-sora);
    font-size: var(--font-size-xxxl);
    font-style: normal;
    font-weight: 700;
}

.sora-bold-red-20px {
    color: var(--red);
    font-family: var(--font-family-sora);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.montserrat-bold-black-15px {
    color: var(--black);
    font-family: var(--font-family-montserrat);
    font-size: var(--font-size-l);
    font-style: normal;
    font-weight: 600;
}
