.course-hero { 
    background: linear-gradient(135deg, rgba(15,15,26,0.92), rgba(106,191,75,0.15)), 
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600') center/cover; 
    min-height: 400px; 
    display: flex; 
    align-items: center; 
    color: #fff; 
    padding: 70px 0; 
    text-align: center; 
}
.course-hero .container { 
    max-width: 800px; 
}
.course-hero .hero-badge { 
    display: inline-block; 
    background: #6abf4b; 
    padding: 6px 16px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(106,191,75,0.4);
    animation: fadeInUp 0.5s ease forwards;
}
.course-hero h1 { 
    font-size: 42px; 
    font-weight: 400; 
    line-height: 1.2; 
    margin-bottom: 18px;
    animation: fadeInUp 0.5s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.course-hero h1 span { 
    color: #6abf4b; 
}
.course-hero .hero-sub { 
    font-size: 17px; 
    color: #d0d6e4; 
    line-height: 1.7; 
    font-family: 'Open Sans', sans-serif; 
    margin-bottom: 28px;
    animation: fadeInUp 0.5s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.course-hero .hero-stats { 
    display: flex; 
    justify-content: center; 
    gap: 50px;
    animation: fadeInUp 0.5s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.course-hero .hero-stats .stat { 
    text-align: center; 
}
.course-hero .hero-stats .stat strong { 
    font-size: 28px; 
    font-weight: 700; 
    color: #6abf4b; 
    display: block;
    transition: transform 0.3s ease;
}
.course-hero .hero-stats .stat:hover strong {
    transform: scale(1.1);
}
.course-hero .hero-stats .stat span { 
    font-size: 12px; 
    color: #a0a8b8; 
    font-family: 'Open Sans', sans-serif; 
}
.courses-grid-new { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 28px; 
}
.course-card-new { 
    background: #fff; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.08); 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; 
}
.course-card-new:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 60px rgba(0,0,0,0.15); 
}
.course-card-new .course-badge { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    background: #6abf4b; 
    color: #fff; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    z-index: 5;
    box-shadow: 0 4px 12px rgba(106,191,75,0.3);
}
.course-card-new img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover;
    transition: transform 0.5s ease;
}
.course-card-new:hover img {
    transform: scale(1.05);
}
.course-content { 
    padding: 24px; 
}
.course-card-new h3 { 
    font-size: 19px; 
    margin-bottom: 10px; 
    color: #111;
    transition: color 0.3s ease;
}
.course-card-new:hover h3 {
    color: #6abf4b;
}
.course-card-new p { 
    color: #666; 
    font-size: 14px; 
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.65; 
    margin-bottom: 16px; 
}
.course-card-new .course-price { 
    font-size: 24px; 
    font-weight: 700; 
    color: #6abf4b; 
    margin-bottom: 16px; 
    display: block; 
}
.course-meta { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 20px; 
    font-family: 'Open Sans', sans-serif; 
    font-size: 13px; 
    color: #888; 
}
.course-meta span { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.course-meta i { 
    color: #6abf4b; 
}
.course-price-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-top: 20px; 
    border-top: 1px solid #eee; 
}
.course-price-row .price { 
    font-size: 28px; 
    font-weight: 700; 
    color: #6abf4b; 
}
.course-price-row .original { 
    text-decoration: line-through; 
    color: #999; 
    font-size: 16px; 
    margin-left: 10px; 
}
.course-card { 
    background: #fff; 
    overflow: hidden; 
    border: 1px solid #eee; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 14px; 
    box-shadow: 0 10px 28px rgba(0,0,0,0.06); 
}
.course-card:hover { 
    box-shadow: 0 20px 55px rgba(0,0,0,0.14); 
    transform: translateY(-8px);
    border-color: rgba(106,191,75,0.3);
}
.course-card img { 
    height: 220px; 
    object-fit: cover; 
    width: 100%;
    transition: transform 0.5s ease;
}
.course-card:hover img {
    transform: scale(1.05);
}
.course-card-content { 
    padding: 30px; 
}
.course-card h3 { 
    margin-bottom: 12px; 
    color: #111; 
}
.course-card p { 
    color: #555; 
    font-size: 15px; 
    margin-bottom: 18px; 
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.7; 
}
.course-price { 
    font-size: 26px; 
    color: #6abf4b; 
    font-weight: 700; 
}
.testimonials { 
    padding: 60px 0; 
    background: #0f0f1a; 
}
.testimonials h2 { 
    font-size: 28px; 
    text-align: center; 
    color: #fff; 
    margin-bottom: 40px; 
    font-weight: 400; 
}
.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}
.testimonial-card { 
    background: rgba(255,255,255,0.05); 
    padding: 28px; 
    border-radius: 14px; 
    color: #fff; 
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(106,191,75,0.3);
}
.testimonial-card::before { 
    content: '"'; 
    position: absolute; 
    top: 15px; 
    left: 20px; 
    font-size: 60px; 
    color: #6abf4b; 
    opacity: 0.3; 
    font-family: Georgia, serif; 
    line-height: 1; 
}
.testimonial-card p { 
    font-size: 14px; 
    line-height: 1.75; 
    color: #d0d6e4; 
    margin-bottom: 20px; 
    padding-top: 25px; 
    font-style: italic; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.testimonial-author img { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid #6abf4b;
    transition: all 0.3s ease;
}
.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
}
.testimonial-author h5 { 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 2px; 
}
.testimonial-author span { 
    font-size: 12px; 
    color: #6abf4b; 
    font-family: 'Open Sans', sans-serif; 
}
.faq-section { 
    padding: 60px 0; 
}
.faq-section h2 { 
    font-size: 28px; 
    text-align: center; 
    margin-bottom: 35px; 
    font-weight: 400; 
    color: #111; 
}
.faq-grid { 
    max-width: 750px; 
    margin: 0 auto; 
}
.faq-item { 
    background: #fff; 
    margin-bottom: 12px; 
    border-radius: 12px; 
    box-shadow: 0 6px 24px rgba(0,0,0,0.05); 
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.faq-question { 
    padding: 20px 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-size: 15px; 
    font-weight: 500; 
    color: #111; 
    transition: all 0.3s ease;
}
.faq-question span { 
    flex: 1; 
}
.faq-question:hover { 
    color: #6abf4b;
    background: #f8fdf6;
}
.faq-question i { 
    color: #6abf4b; 
    transition: transform 0.3s ease; 
    font-size: 12px; 
}
.faq-item:hover .faq-question i {
    transform: rotate(180deg);
}
.faq-answer { 
    padding: 0 24px 20px; 
    color: #666; 
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.7; 
    font-size: 14px; 
}
.course-card-new {
    animation: fadeIn 0.5s ease forwards;
}
.course-card-new:nth-child(1) { animation-delay: 0.1s; }
.course-card-new:nth-child(2) { animation-delay: 0.15s; }
.course-card-new:nth-child(3) { animation-delay: 0.2s; }
/* Region Cards Enhancement */

.region-overlay h3 i { 
    color: #6abf4b; 
    margin-right: 12px;
    background: rgba(106,191,75,0.2);
    padding: 8px;
    border-radius: 8px;
}
.region-overlay span { 
    color: #6abf4b; 
    font-weight: 700; 
    font-size: 15px;
    letter-spacing: 0.5px;
}
