/*=========================================
COURSE HERO
=========================================*/

.course-hero{

    padding:180px 0 120px;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../images/course-banner.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

}

.course-hero-content{

    max-width:850px;

    margin:auto;

}

.course-hero h1{

    font-size:62px;

    color:#fff;

    margin:25px 0;

    line-height:1.2;

}

.course-hero p{

    color:#ddd;

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:35px;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid #d4af37;

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.btn-secondary:hover{

    background:#d4af37;

    color:#111;

}

@media(max-width:768px){

.course-hero{

padding:140px 0 90px;

}

.course-hero h1{

font-size:40px;

}

.course-hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

}
/*=========================================
COURSE CATEGORY
=========================================*/

.course-category{

    padding:120px 0;

    background:#ffffff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.category-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #ececec;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.category-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.35s;

}

.category-card:hover::before{

    transform:scaleX(1);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.category-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#fff8e4;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.category-card:hover .category-icon{

    background:#d4af37;

    color:#fff;

}

.category-card h3{

    font-size:28px;

    color:#111;

    margin-bottom:18px;

}

.category-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.category-card a{

    color:#d4af37;

    font-weight:600;

    transition:.3s;

}

.category-card a:hover{

    letter-spacing:1px;

}

@media(max-width:1200px){

.category-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.course-category{

padding:80px 0;

}

.category-grid{

grid-template-columns:1fr;

}

}
/*=========================================
FEATURED COURSES
=========================================*/

.featured-courses{

    padding:120px 0;

    background:#f8f9fc;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.course-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}

.course-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.course-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.popular-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#d4af37;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.course-body{

    padding:30px;

}

.course-body h3{

    font-size:28px;

    color:#111;

    margin-bottom:15px;

}

.course-body p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.course-body ul{

    list-style:none;

    margin-bottom:25px;

}

.course-body li{

    margin-bottom:12px;

    color:#555;

}

.course-body li i{

    color:#d4af37;

    margin-right:10px;

}

.course-price{

    font-size:34px;

    color:#d4af37;

    font-weight:700;

    margin-bottom:25px;

}

.course-buttons{

    display:flex;

    gap:15px;

}

.btn-outline{

    flex:1;

    padding:14px;

    text-align:center;

    border:2px solid #d4af37;

    color:#d4af37;

    border-radius:50px;

    transition:.35s;

}

.btn-outline:hover{

    background:#d4af37;

    color:#fff;

}

@media(max-width:992px){

.featured-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.featured-courses{

padding:80px 0;

}

.featured-grid{

grid-template-columns:1fr;

}

.course-buttons{

flex-direction:column;

}

}
/*=========================================
WHY COURSE
=========================================*/

.why-course{

    padding:120px 0;

    background:#fff;

}

.why-course-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-top:70px;

}

.why-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.why-content{

    display:grid;

    gap:22px;

}

.why-box{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:25px;

    background:#fff;

    border-radius:20px;

    border:1px solid #ececec;

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-color:#d4af37;

}

.why-icon{

    min-width:70px;

    height:70px;

    border-radius:18px;

    background:#fff8e5;

    display:flex;

    justify-content:center;

    align-items:center;

}

.why-icon i{

    color:#d4af37;

    font-size:28px;

}

.why-box h3{

    font-size:24px;

    color:#111;

    margin-bottom:10px;

}

.why-box p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.why-course-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.why-course{

padding:80px 0;

}

.why-box{

flex-direction:column;

text-align:center;

align-items:center;

}

}
/*=========================================
LEARNING PROCESS
=========================================*/

.learning-process{

    padding:120px 0;

    background:#f8f9fc;

}

.process-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(11,1fr);

    align-items:center;

    gap:15px;

}

.process-card{

    background:#fff;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    position:relative;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-number{

    position:absolute;

    top:18px;

    right:18px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#d4af37;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:13px;

    font-weight:700;

}

.process-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#fff8e5;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.process-icon i{

    font-size:32px;

    color:#d4af37;

}

.process-card h3{

    font-size:22px;

    color:#111;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}

.process-arrow{

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-arrow i{

    font-size:28px;

    color:#d4af37;

}

@media(max-width:1200px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.process-arrow{

display:none;

}

}

@media(max-width:768px){

.learning-process{

padding:80px 0;

}

.process-grid{

grid-template-columns:1fr;

}

}
/*=========================================
COURSE COMPARISON
=========================================*/

.course-comparison{

    padding:120px 0;

    background:#ffffff;

}

.comparison-table{

    margin-top:70px;

    overflow-x:auto;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.comparison-table table{

    width:100%;

    border-collapse:collapse;

    min-width:850px;

    background:#fff;

}

.comparison-table thead{

    background:#111;

}

.comparison-table th{

    color:#fff;

    padding:22px;

    text-align:center;

    font-size:18px;

}

.comparison-table th:first-child{

    text-align:left;

}

.comparison-table td{

    padding:22px;

    text-align:center;

    border-bottom:1px solid #ececec;

    font-size:16px;

}

.comparison-table td:first-child{

    text-align:left;

    font-weight:600;

    color:#111;

}

.comparison-table tbody tr:hover{

    background:#fffdf5;

}

.yes{

    color:#28a745;

    font-size:20px;

}

.no{

    color:#dc3545;

    font-size:20px;

}

@media(max-width:768px){

.course-comparison{

padding:80px 0;

}

.comparison-table table{

min-width:700px;

}

}
/*=========================================
STUDENT BENEFITS
=========================================*/

.student-benefits{

    padding:120px 0;

    background:#f8f9fc;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.benefit-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border-top:4px solid transparent;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-top:4px solid #d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.benefit-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#fff8e5;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.benefit-icon i{

    font-size:34px;

    color:#d4af37;

}

.benefit-card h3{

    font-size:24px;

    color:#111;

    margin-bottom:18px;

}

.benefit-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:1200px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.student-benefits{

padding:80px 0;

}

.benefits-grid{

grid-template-columns:1fr;

}

}
/*=========================================
COURSE FAQ
=========================================*/

.course-faq{

    padding:120px 0;

    background:#fff;

}

.faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item.active{

    border-color:#d4af37;

}

.faq-question{

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question h3{

    font-size:22px;

    color:#111;

}

.faq-question i{

    color:#d4af37;

    transition:.35s;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.course-faq{

padding:80px 0;

}

.faq-question{

padding:20px;

}

.faq-question h3{

font-size:18px;

}

}