/*=================================
RECORDED HERO
=================================*/

.recorded-hero{

    padding:120px 0;

    background:linear-gradient(135deg,#050505,#151515);

    color:#fff;

}

.recorded-hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.recorded-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#d4af37;

    color:#111;

    font-weight:700;

    margin-bottom:25px;

}

.recorded-hero h1{

    font-size:60px;

    line-height:1.2;

    margin-bottom:25px;

}

.recorded-hero h1 span{

    color:#d4af37;

}

.recorded-hero p{

    color:#ddd;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;

}

.recorded-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.recorded-stats{

    display:flex;

    gap:40px;

}

.recorded-stats h3{

    color:#d4af37;

    font-size:34px;

}

.recorded-stats span{

    color:#ccc;

}

.recorded-image img{

    width:100%;

}

@media(max-width:992px){

.recorded-hero .container{

grid-template-columns:1fr;

text-align:center;

}

.recorded-buttons{

justify-content:center;

}

.recorded-stats{

justify-content:center;

flex-wrap:wrap;

}

}

@media(max-width:768px){

.recorded-hero{

padding:80px 0;

}

.recorded-hero h1{

font-size:38px;

}

}
/*=================================
/*=================================
RECORDED CATEGORIES
=================================*/

.recorded-categories{
    padding:120px 0;
    background:#f8f9fc;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
}

.category-card{
    background:#fff;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    text-decoration:none;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .4s ease;
    border:2px solid transparent;
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* Icon Circle */

.category-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff8e5;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    transition:all .4s ease;
}

/* Icon */

.category-icon i{
    font-size:36px;
    color:#d4af37;
    transition:all .4s ease;
}

/* Hover Effect */

.category-card:hover .category-icon{
    background:#d4af37;
    transform:rotateY(180deg) scale(1.08);
}

.category-card:hover .category-icon i{
    color:#ffffff;
    transform:rotateY(180deg);
}

.category-card h3{
    font-size:24px;
    color:#111;
    margin-bottom:10px;
    transition:.3s;
}

.category-card span{
    color:#777;
    font-size:16px;
    transition:.3s;
}

.category-card:hover h3{
    color:#d4af37;
}

.category-card:hover span{
    color:#444;
}

@media(max-width:992px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.recorded-categories{
    padding:80px 0;
}

.category-grid{
    grid-template-columns:1fr;
}

}
/*==========================================
RECORDED COURSE LIBRARY
==========================================*/

.recorded-library{
    padding:100px 0;
    background:#fff;
}

.library-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
    margin-top:60px;
}

.library-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.library-card:hover{
    transform:translateY(-8px);
}

.library-image{
    position:relative;
    width:100%;
    height:240px;
    overflow:hidden;
}

.library-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.library-card:hover .library-image img{
    transform:scale(1.08);
}

.play-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.3s;
}

.library-card:hover .play-overlay{
    opacity:1;
}

.play-overlay i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.course-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#d4af37;
    color:#111;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.library-content{
    padding:25px;
}

.library-content h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111;
}

.library-content p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin-bottom:20px;
}

.course-info{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.course-info span{
    font-size:15px;
    color:#444;
}

.course-info i{
    color:#d4af37;
}

.course-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    font-size:30px;
    font-weight:700;
    color:#111;
}

.course-footer a{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    transition:.3s;
}

.course-footer a:hover{
    background:#d4af37;
    color:#111;
}

@media(max-width:992px){

.library-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.library-grid{
grid-template-columns:1fr;
}

.library-image{
height:220px;
}

.course-footer{
flex-direction:column;
gap:20px;
align-items:flex-start;
}

.course-footer a{
width:100%;
text-align:center;
}

}
/*=========================================
RECORDED FEATURES
=========================================*/

.recorded-features{
    padding:100px 0;
    background:#f8f9fc;
}

.recorded-features .section-heading{
    text-align:center;
    margin-bottom:70px;
}

.recorded-features .section-tag{
    display:inline-block;
    padding:10px 22px;
    background:#fff3d4;
    color:#c89d1c;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.recorded-features .section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.recorded-features .section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    border-bottom:4px solid transparent;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-bottom:4px solid #d4af37;
}

.feature-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s ease;
}

/* ONLY Font Awesome Icon */

.feature-icon i.fa-solid{
    font-size:38px;
    color:#d4af37;
    transition:.35s ease;
}

.feature-card:hover .feature-icon{
    background:#d4af37;
}

.feature-card:hover .feature-icon i.fa-solid{
    color:#ffffff;
}

.feature-card h3{
    font-size:28px;
    color:#111;
    margin-bottom:15px;
    font-weight:700;
}

.feature-card p{
    color:#666;
    font-size:16px;
    line-height:28px;
}

/* Responsive */

@media(max-width:992px){

.features-grid{
    grid-template-columns:repeat(2,1fr);
}

.recorded-features .section-heading h2{
    font-size:38px;
}

}

@media(max-width:768px){

.recorded-features{
    padding:80px 0;
}

.features-grid{
    grid-template-columns:1fr;
}

.recorded-features .section-heading h2{
    font-size:30px;
}

.feature-card{
    padding:35px 25px;
}

.feature-icon{
    width:80px;
    height:80px;
}

.feature-icon i.fa-solid{
    font-size:32px;
}

}

/*=========================================
LEARN ANYTIME ANYWHERE
==========================================*/

.recorded-anywhere{

    padding:120px 0;

    background:#ffffff;

}

.anywhere-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

.anywhere-image{

    flex:1;

}

.anywhere-image img{

    width:100%;

    max-width:550px;

    display:block;

    margin:auto;

}

.anywhere-content{

    flex:1;

}

.anywhere-content h2{

    font-size:48px;

    line-height:1.3;

    margin:20px 0;

    color:#111;

}

.anywhere-content p{

    font-size:17px;

    line-height:30px;

    color:#666;

    margin-bottom:35px;

}

.anywhere-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.list-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:500;

}

.list-item i{

    color:#d4af37;

    font-size:20px;

}

.anywhere-btn{

    display:inline-block;

    background:#111;

    color:#fff;

    padding:16px 35px;

    border-radius:8px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.anywhere-btn:hover{

    background:#d4af37;

    color:#111;

}

@media(max-width:992px){

.anywhere-wrapper{

flex-direction:column;

text-align:center;

}

.anywhere-content h2{

font-size:40px;

}

.anywhere-list{

grid-template-columns:1fr;

text-align:left;

}

}

@media(max-width:768px){

.recorded-anywhere{

padding:80px 0;

}

.anywhere-content h2{

font-size:32px;

}

}

/*=========================================
LEARNING PROGRESS
=========================================*/

.recorded-progress{

    padding:120px 0;

    background:#f8f9fc;

}

.progress-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    margin-top:70px;

    align-items:center;

}

.progress-left{

    background:#111;

    color:#fff;

    padding:45px;

    border-radius:25px;

    text-align:center;

}

.progress-circle{

    margin-bottom:40px;

}

.circle{

    width:180px;

    height:180px;

    margin:auto;

    border-radius:50%;

    background:conic-gradient(#d4af37 0 78%, #333 78% 100%);

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.circle::before{

    content:"";

    position:absolute;

    width:135px;

    height:135px;

    background:#111;

    border-radius:50%;

}

.circle span{

    position:relative;

    z-index:2;

    font-size:40px;

    font-weight:700;

    color:#fff;

}

.progress-circle h3{

    margin-top:25px;

    font-size:28px;

}

.progress-title{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

}

.progress-bar{

    width:100%;

    height:12px;

    background:#333;

    border-radius:20px;

    overflow:hidden;

}

.progress-fill{

    width:78%;

    height:100%;

    background:#d4af37;

}

.progress-btn{

    display:inline-block;

    margin-top:35px;

    padding:15px 35px;

    background:#d4af37;

    color:#111;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.progress-btn:hover{

    background:#fff;

}

.progress-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.dashboard-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-10px);

}

.dashboard-card i{

    width:80px;

    height:80px;

    background:#111;

    color:#d4af37;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:30px;

    margin-bottom:25px;

}

.dashboard-card h4{

    font-size:22px;

    margin-bottom:12px;

}

.dashboard-card span{

    color:#666;

    font-size:18px;

}

@media(max-width:992px){

.progress-wrapper{

grid-template-columns:1fr;

}

.progress-right{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.recorded-progress{

padding:80px 0;

}

.progress-left{

padding:30px;

}

.progress-right{

grid-template-columns:1fr;

}

.circle{

width:150px;

height:150px;

}

.circle::before{

width:110px;

height:110px;

}

}
/*=========================================
STUDENT REVIEWS
=========================================*/

.recorded-reviews{

    padding:120px 0;

    background:#ffffff;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.review-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-card::before{

    content:"★★★★★";

    position:absolute;

    right:20px;

    top:15px;

    font-size:80px;

    color:rgba(212,175,55,.08);

    font-weight:bold;

}

.review-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;

}

.review-top img{

    width:75px;

    height:75px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #d4af37;

}

.review-top h3{

    font-size:22px;

    color:#111;

}

.review-top span{

    color:#888;

    font-size:15px;

}

.rating{

    margin-bottom:20px;

}

.rating i{

    color:#d4af37;

    margin-right:4px;

}

.review-card p{

    color:#666;

    line-height:30px;

    font-size:16px;

}

@media(max-width:992px){

.reviews-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.recorded-reviews{

padding:80px 0;

}

.reviews-grid{

grid-template-columns:1fr;

}

.review-card{

padding:30px;

}

}
/*=========================================
RECORDED FAQ
=========================================*/

.recorded-faq{

    padding:120px 0;

    background:#f8f9fc;

}

.faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#fff;

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.faq-item.active{

    border-left:5px solid #d4af37;

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    cursor:pointer;

}

.faq-question h3{

    font-size:22px;

    color:#111;

    font-weight:600;

}

.faq-question span{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#111;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.3s;

}

.faq-item.active .faq-question span{

    background:#d4af37;

    color:#111;

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-answer p{

    color:#666;

    line-height:30px;

    font-size:16px;

}

@media(max-width:768px){

.recorded-faq{

padding:80px 0;

}

.faq-question{

padding:20px;

}

.faq-question h3{

font-size:18px;

padding-right:15px;

}

.faq-answer{

padding:0 20px 20px;

}

}