/* =========================================
   COURSE PAGE HERO
========================================= */

.course-page-hero{
    background:linear-gradient(135deg,#001b3d,#002147);
    padding: 120px 0 80px;
    text-align:center;
}

.course-page-content{
    max-width:850px;
    margin:auto;
}

.course-tag{
    display:inline-block;
    background:rgba(255,180,0,.15);
    color:#ffb400;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.course-page-content h1{
    font-size:52px;
    color:#fff;
    font-weight:600;
    line-height:1.2;
    margin-bottom:20px;
}

.course-page-content p{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}


/* =========================================
   COURSE SECTION
========================================= */

.course-details-section{
    padding:80px 0;
}

.course-details-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}


/* =========================================
   GRID
========================================= */

.course-details-grid{

    display:grid;

    grid-template-columns:repeat(3, 360px);

    justify-content:center;

    gap:35px;

    max-width:1200px;

    margin:0 auto;

}


/* =========================================
   CARD
========================================= */

.course-detail-card{

    background:#ffffff;

    border:2px solid #d8e2ef;

    border-radius:22px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,33,71,.06);

}

.course-detail-card:hover{

    transform:translateY(-8px);

    border-color:#ffb400;

    box-shadow:0 20px 45px rgba(0,33,71,.15);

}

.course-detail-card:hover{

    transform:translateY(-8px);

    border-color:#ffb400;

    box-shadow:0 20px 45px rgba(0,33,71,.15);

}


/* =========================================
   IMAGE
========================================= */

.course-detail-image{

    width:100%;

    height:190px;

    overflow:hidden;

}

.course-detail-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.course-detail-card:hover .course-detail-image img{

    transform:scale(1.05);

}


/* =========================================
   CONTENT
========================================= */

.course-info{

    padding:28px;

}

.course-info h3{

    font-size:18px;

    color:#111;

    font-weight:700;

    line-height:1.4;

    margin-bottom:18px;

}

.course-info p{

    font-size:15px;

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

    min-height:85px;

}


/* =========================================
   DURATION & FEES
========================================= */

.course-meta{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.course-meta span{

    background:#fff4d6;

    color:#002147;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}


/* =========================================
   BUTTONS
========================================= */

.course-buttons{

    display:flex;

    gap:12px;

}

.module-btn{

    flex:1;
    min-width:160px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    font-size:14px;

    border:2px solid #ffb400;

    color:#ffb400;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.module-btn:hover{

    background:#ffb400;

    color:#002147;

}

.apply-course-btn{

    flex:1;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#002147;

    color:#ffffff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.apply-course-btn:hover{

    background:#ffb400;

    color:#002147;

}

.course-details-section{
    padding:100px 0 80px;
    background:#ffffff;
}

/* =========================================
   TABLET
========================================= */

@media (max-width:1200px){

    .course-details-grid{

        grid-template-columns:repeat(2, 360px);

        justify-content:center;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

    .course-details-section{

        padding:70px 0;

    }

    .course-details-grid{

        grid-template-columns:1fr;

        justify-content:center;

    }

    .course-detail-card{

        max-width:400px;

        width:100%;

        margin:auto;

    }

    .course-image{

        height:220px;

    }

    .course-info{

        padding:20px;

    }

    .course-info h3{

        font-size:22px;

    }

    .course-info p{

        font-size:14px;

    }

    .course-buttons{

        flex-direction:column;

        display:flex;

        flex-direction:column;

        gap:12px;

        margin-top:20px;

    }

    .module-btn,
    .apply-course-btn{

        width:100%;

        height:56px;
        min-height:56px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:16px;
        font-weight:700;
        white-space:nowrap;
        line-height:1;

    }

}