/*=================================
LIVE HERO
=================================*/

.live-hero{

    padding:120px 0;

    background:linear-gradient(135deg,#000,#1d1d1d);

    color:#fff;

}

.live-hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.live-badge{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:10px 20px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:25px;

}

.live-hero h1{

    font-size:60px;

    line-height:1.2;

    margin-bottom:25px;

}

.live-hero h1 span{

    color:#d4af37;

}

.live-hero p{

    color:#ddd;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.live-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.live-stats{

    display:flex;

    gap:40px;

}

.live-stats h3{

    color:#d4af37;

    font-size:34px;

}

.live-stats span{

    color:#ccc;

}

.live-hero-image img{

    width:100%;

}

@media(max-width:992px){

.live-hero .container{

grid-template-columns:1fr;

text-align:center;

}

.live-buttons{

justify-content:center;

}

.live-stats{

justify-content:center;

flex-wrap:wrap;

}

.live-hero h1{

font-size:42px;

}

}

@media(max-width:768px){

.live-hero{

padding:80px 0;

}

.live-hero h1{

font-size:34px;

}

}
/*=================================
TODAY LIVE
=================================*/

.today-live{

    padding:120px 0;

    background:#f8f9fc;

}

.live-class-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.live-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}

.live-card:hover{

    transform:translateY(-8px);

}

.live-status{

    display:inline-block;

    background:#e53935;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.live-status.upcoming{

    background:#d4af37;

    color:#111;

}

.live-card h3{

    font-size:26px;

    margin-bottom:20px;

    color:#111;

}

.live-card ul{

    list-style:none;

    margin-bottom:30px;

}

.live-card ul li{

    margin-bottom:15px;

    color:#555;

}

.live-card ul li i{

    width:25px;

    color:#d4af37;

}

.join-btn{

    display:block;

    text-align:center;

    background:#111;

    color:#fff;

    text-decoration:none;

    padding:15px;

    border-radius:10px;

    transition:.3s;

}

.join-btn:hover{

    background:#d4af37;

    color:#111;

}

@media(max-width:992px){

.live-class-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.today-live{

padding:80px 0;

}

.live-card{

padding:25px;

}

.live-card h3{

font-size:22px;

}

}
/*=================================
LIVE SCHEDULE
=================================*/

.live-schedule{

    padding:120px 0;

    background:#fff;

}

.schedule-table{

    margin-top:60px;

    overflow-x:auto;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.schedule-table table{

    width:100%;

    border-collapse:collapse;

    min-width:900px;

}

.schedule-table thead{

    background:#111;

}

.schedule-table th{

    color:#fff;

    padding:20px;

    text-align:center;

    font-size:18px;

}

.schedule-table td{

    padding:20px;

    text-align:center;

    border-bottom:1px solid #ececec;

    color:#555;

    line-height:1.8;

}

.schedule-table tbody tr:hover{

    background:#fffdf4;

}

.schedule-table td:first-child{

    font-weight:700;

    color:#111;

    background:#fafafa;

}

.schedule-table small{

    color:#888;

    display:block;

    margin-top:5px;

}

.holiday{

    font-weight:600;

    color:#d4af37 !important;

}

@media(max-width:768px){

.live-schedule{

padding:80px 0;

}

.schedule-table table{

min-width:800px;

}

}
/*=================================
LIVE FEATURES
=================================*/

.live-features{

    padding:120px 0;

    background:#f8f9fc;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.feature-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-bottom:4px solid transparent;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-bottom:4px solid #d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#fff8e5;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.feature-icon i{

    font-size:34px;

    color:#d4af37;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.live-features{

padding:80px 0;

}

.features-grid{

grid-template-columns:1fr;

}

}
/*=================================
LIVE DEMO
=================================*/

.live-demo{

    padding:120px 0;

    background:#ffffff;

}

.live-demo-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.demo-video{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.demo-video img{

    width:100%;

    display:block;

}

.play-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    background:#d4af37;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    transition:.3s;

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.1);

}

.demo-content h2{

    font-size:42px;

    margin:20px 0;

    color:#111;

}

.demo-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.demo-list{

    display:grid;

    gap:18px;

    margin-bottom:35px;

}

.demo-item{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:17px;

}

.demo-item i{

    color:#d4af37;

    font-size:22px;

}

@media(max-width:992px){

.live-demo-wrapper{

grid-template-columns:1fr;

}

.demo-content{

text-align:center;

}

.demo-item{

justify-content:center;

}

}

@media(max-width:768px){

.live-demo{

padding:80px 0;

}

.demo-content h2{

font-size:32px;

}

.play-btn{

width:70px;

height:70px;

font-size:24px;

}

}
/*=================================
LIVE FACULTY
=================================*/

.live-faculty{

    padding:120px 0;

    background:#f8f9fc;

}

.faculty-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.faculty-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.faculty-card:hover{

    transform:translateY(-10px);

}

.faculty-image{

    overflow:hidden;

}

.faculty-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.faculty-card:hover .faculty-image img{

    transform:scale(1.08);

}

.faculty-content{

    padding:30px;

    text-align:center;

}

.faculty-content h3{

    font-size:28px;

    color:#111;

    margin-bottom:8px;

}

.faculty-content span{

    display:block;

    color:#d4af37;

    font-weight:600;

    margin-bottom:15px;

}

.faculty-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.faculty-social{

    display:flex;

    justify-content:center;

    gap:15px;

}

.faculty-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

}

.faculty-social a:hover{

    background:#d4af37;

    color:#111;

}

@media(max-width:992px){

.faculty-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.live-faculty{

padding:80px 0;

}

.faculty-grid{

grid-template-columns:1fr;

}

}
/*=================================
LIVE REVIEWS
=================================*/

.live-reviews{

    padding:120px 0;

    background:#ffffff;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.review-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border-top:4px solid transparent;

}

.review-card:hover{

    transform:translateY(-10px);

    border-top:4px solid #d4af37;

}

.review-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;

}

.review-top img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.review-top h3{

    margin-bottom:5px;

    color:#111;

    font-size:22px;

}

.review-top span{

    color:#777;

    font-size:15px;

}

.stars{

    color:#f5b301;

    font-size:22px;

    margin-bottom:18px;

    letter-spacing:2px;

}

.review-card p{

    color:#666;

    line-height:1.9;

}

@media(max-width:992px){

.review-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.live-reviews{

padding:80px 0;

}

.review-grid{

grid-template-columns:1fr;

}

}
/*=================================
LIVE FAQ
=================================*/

.live-faq{

    padding:120px 0;

    background:#f8f9fc;

}

.live-faq .faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.live-faq .faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #eee;

    transition:.3s;

}

.live-faq .faq-item.active{

    border-color:#d4af37;

}

.live-faq .faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    cursor:pointer;

}

.live-faq .faq-question h3{

    font-size:22px;

    color:#111;

}

.live-faq .faq-question i{

    color:#d4af37;

    transition:.3s;

}

.live-faq .faq-item.active .faq-question i{

    transform:rotate(45deg);

}

.live-faq .faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.live-faq .faq-item.active .faq-answer{

    max-height:220px;

}

.live-faq .faq-answer p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.live-faq{

padding:80px 0;

}

.live-faq .faq-question{

padding:20px;

}

.live-faq .faq-question h3{

font-size:18px;

}

}