.apply-btn {
    display: inline-block;
    margin-top: 20px;
    border: 2px solid var(--hover-blue);
    color: var(--hover-blue);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background-color: var(--hover-blue);
    color: white;
}

/* DIPLOMA-INNER PAGE START */
#course-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8vw;
    gap: 2rem;
    flex-wrap: wrap;
}

#course-inner h3 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    padding: 35px 0 25px 0;
    color: #29303B;
}

#course-inner p {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    color: #68626e;
}

#course-inner hr {
    height: 1px;
    background: rgba(236, 226, 229, 0.5);
    margin-top: 40px;
}

#course-inner .overview {
    flex: 1 1 65%;
    min-width: 300px;
}

#course-inner .overview .course-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

#course-inner .overview .course-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#course-inner .overview .course-head .c-name {
    width: 70%;
}

#course-inner .overview .course-head .c-name h2 {
    color: #29303B;
}

#course-inner .overview .course-head .c-name .star {
    margin: 6px 0;
}

#course-inner .overview .course-head .c-name .star i {
    color: var(--yellow);
    font-size: 0.9rem;
}

#course-inner .overview .course-head .c-name p {
    font-size: 15px;
}

#course-inner .overview .course-head span {
    padding: 16px 22px;
    border-radius: 5px;
    color: #5838fc;
    font-size: 24px;
    font-weight: 700;
    background-color: rgba(88, 56, 252, 0.1);
}

#course-inner .tutor {
    display: flex;
}

#course-inner .tutor img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

#course-inner .tutor h5 {
    font-size: 15px;
}

#course-inner .learn p {
    font-size: 15px;
    padding-bottom: 15px;
}

#course-inner .learn p i {
    color: #654ce4;
    font-weight: 700;
    margin-right: 20px;
}

#course-inner .enroll {
    flex: 1 1 30%;
    min-width: 260px;
    max-width: 350px;
    padding: 0 30px 30px 30px;
    border-radius: 11px;
    box-shadow: 0px 20px 40px 0 rgb(11 2 55 / 8%);
}

#course-inner .enroll h3 {
    padding-bottom: 10px;
}

#course-inner .enroll p {
    font-size: 15px;
    color: #64626e;
    margin: 15px 0;
}

#course-inner .enroll p i {
    color: #654ce4;
    font-weight: 500;
    margin-right: 18px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
}

#course-inner .enroll .enroll-btn {
    padding: 25px 0 20px 0;
    margin: auto;
    text-align: center;
}

#course-inner .enroll .enroll-btn a {
    text-decoration: none;
    font-size: .8rem;
    padding: 13px 45px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--light);
    background: rgb(50, 50, 136);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #diploma-home {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    #diploma-home .image img {
        width: 100%;
        height: auto;
    }
}