/*==================================================
 SINGLE COURSE HERO
==================================================*/

.course-hero{

    background:#f5f9ff;

    padding:70px 0 40px;

}

.course-hero-container{

    width:100%;

    max-width:1320px;

    margin:0 auto;

    padding:0 15px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.course-hero-content h1{

    font-size:40px;

    font-weight:700;

    color:#002147;

    line-height:1.2;

    margin-bottom:25px;

}

.course-hero-content p{

    font-size:15px;

    line-height:1.9;

    color:#666;

    margin-bottom:30px;

}

.course-hero-rating{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-size:17px;

    color:#ffb400;

    font-weight:600;

}

.course-hero-rating span{

    color:#555;

}

.course-hero-experience{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:#fff;

    border-left:4px solid #ffb400;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    margin-bottom:35px;

    font-weight:600;

    color:#002147;

}


/*==================================================
 APPLY NOW BUTTON
==================================================*/

.course-hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:#ffb400;

    color:#002147;

    font-size:16px;

    font-weight:700;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.course-hero-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}


/*==================================================
 COURSE MODULE DOWNLOAD BUTTON
==================================================*/

.course-module-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-left:12px;

    padding:16px 28px;

    background:#002147;

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.course-module-btn:hover{

    background:#ffb400;

    color:#002147;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}


/*==================================================
 ABOUT COURSE
==================================================*/

.course-about{

    padding:40px 0 80px;

    background:#ffffff;

}

.course-about-container{

    width:100%;

    max-width:1320px;

    margin:0 auto;

    padding:0 15px;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:start;

}


/*==================================================
 ABOUT CONTENT
==================================================*/

.course-about-content h2{

    font-size:28px;

    color:#002147;

    margin-bottom:25px;

    font-weight:700;

}

.course-about-content p{

    font-size:17px;

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

}

.course-about-content ul{

    margin:25px 0;

    padding-left:22px;

}

.course-about-content li{

    margin-bottom:12px;

    line-height:1.8;

    color:#555;

}


/*==================================================
 QUICK INFORMATION
==================================================*/

.course-meta{

    background:#ffffff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:sticky;

    top:120px;

}

.course-meta h3{

    font-size:24px;

    color:#002147;

    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:2px solid #ffb400;

}

.course-meta p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #ececec;

    font-size:16px;

}

.course-meta p:last-child{

    border-bottom:none;

}

.course-meta strong{

    color:#002147;

    font-weight:600;

}


/*==================================================
 COURSE HERO IMAGE
==================================================*/

.course-hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}

.course-hero-image img{

    max-width:100%;

    max-height:520px;

    width:auto;

    height:auto;

    object-fit:contain;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}


/*==================================================
 TABLET
==================================================*/

@media (max-width:992px){

    .course-hero-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .course-hero-content{

        text-align:center;

    }

    .course-hero-experience{

        justify-content:center;

    }

    .course-hero-image{

        min-height:auto;

    }

    .course-about-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .course-meta{

        position:relative;

        top:auto;

    }

}


/*==================================================
 MOBILE
==================================================*/

@media (max-width:768px){

    .course-hero{

        padding:50px 0 30px;

    }

    .course-hero-container{

        padding:0 15px;

        gap:30px;

    }

    .course-hero-content h1{

        font-size:32px;

    }

    .course-hero-content p{

        font-size:15px;

    }

    .course-hero-rating{

        justify-content:center;

        flex-wrap:wrap;

    }

    .course-hero-experience{

        margin-bottom:25px;

        padding:11px 18px;

    }

    .course-hero-btn{

        width:auto;

        padding:14px 25px;

    }

    .course-module-btn{

        margin-left:0;

        margin-top:12px;

        width:auto;

        padding:14px 25px;

    }

    .course-hero-image img{

        max-height:420px;

    }

    .course-about{

        padding:30px 0 60px;

    }

    .course-about-container{

        padding:0 15px;

    }

    .course-about-content h2{

        font-size:25px;

    }

    .course-about-content p{

        font-size:16px;

    }

    .course-meta{

        padding:25px;

    }

}


/*==================================================
 SMALL MOBILE
==================================================*/

@media (max-width:480px){

    .course-hero-content h1{

        font-size:28px;

    }

    .course-hero-rating{

        font-size:15px;

    }

    .course-hero-experience{

        width:100%;

        justify-content:center;

        text-align:center;

    }

    .course-hero-btn,
    .course-module-btn{

        width:100%;

        margin-left:0;

    }

    .course-module-btn{

        margin-top:12px;

    }

    .course-hero-image img{

        max-height:350px;

    }

}