/*css-latest update*/ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: auto;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #D32F2F;
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #2E7D32;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #212121;
    cursor: pointer;
}

.nav-menu {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #212121;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #2E7D32;
}

/* Hero Slider */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    width: 90%;
    padding: 15px;
}

.slide-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 3rem);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.5rem);
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slide-btn {
    display: inline-block;
    background: #D32F2F;
    color: white;
    padding: clamp(8px, 2vw, 12px) clamp(20px, 3vw, 30px);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slide-btn:hover {
    background: #2E7D32;
    transform: scale(1.05);
}

/* Why Learn Section */
.why-learn {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.why-learn h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 30px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    width: 300px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2em;
    color: #2E7D32;
    margin-bottom: 15px;
}

.feature h3 {
    color: #D32F2F;
    margin-bottom: 10px;
}

.feature p {
    color: #212121;
}

/* How It Works */
.how-it-works {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.how-it-works h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    width: 300px;
    padding: 20px;
    transition: transform 0.3s;
}

.step:hover {
    transform: scale(1.05);
}

.step i {
    font-size: 2em;
    color: #2E7D32;
    margin-bottom: 15px;
}

.step h3 {
    color: #2E7D32;
    margin-bottom: 10px;
}

/* Courses Slider */
.courses {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.courses h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.course-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.course-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.course-slide {
    min-width: 100%;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.course-slide.active {
    opacity: 1;
}

.course-slide h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.course-slide p {
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    background: #D32F2F;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.learn-more:hover {
    background: #2E7D32;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D32F2F;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.slider-arrow:hover {
    background: #2E7D32;
}

/* Our Mission (Enhanced, Inspired by MS Africa Academy) */
.our-mission {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2E7D32 0%, #D32F2F 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.our-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.our-mission h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.our-mission p {
    color: #212121;
    line-height: 1.8;
    font-size: 1.2em;
}

/* Why Choose Us (Enhanced) */
.why-choose-us {
    padding: 80px 20px;
    text-align: center;
    background: #F5F5F5;
}

.why-choose-us h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.why-choose-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-text {
    text-align: left;
    max-width: 600px;
}

.why-text p {
    margin-bottom: 20px;
    color: #212121;
    line-height: 1.6;
    font-size: 1.1em;
}

.why-text strong {
    color: #2E7D32;
    font-weight: bold;
}

/* Resources */
.resources {
    padding: 60px 20px;
    text-align: center;
    background: #E8F5E9;
}

.resources h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 20px;
}

.resources p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #212121;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    background: #F5F5F5;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content {
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.testimonial-content img,
.testimonial-content video {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #212121;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-content span {
    color: #2E7D32;
    font-weight: bold;
}

/* Courses Intro (courses.html) */
.courses-intro {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E9 100%);
}

.courses-intro h1 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.courses-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #212121;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Courses Page (courses.html) */
.courses-page {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.courses-page h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.course-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.course {
    background: #FFFFFF;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.course:hover {
    transform: translateY(-10px);
}

.course img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.course p {
    margin-bottom: 20px;
    color: #212121;
}



/* Course Hero (course-details.html) */
.course-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: url('images/beginners-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
}

.course-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#standard.course-hero {
    background: url('images/standard-bg.jpg') no-repeat center center/cover;
}

#pro.course-hero {
    background: url('images/pro-bg.jpg') no-repeat center center/cover;
}

.course-hero h1,
.course-hero .price,
.course-hero .hook {
    position: relative;
    z-index: 2;
}

.course-hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.course-hero .price {
    font-size: 2em;
    color: #2E7D32;
    margin-bottom: 20px;
}

.course-hero .hook {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    color: #FFFFFF;
}

/* Course Overview (course-details.html) */
.course-overview {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.course-overview h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 20px;
}

.course-overview p {
    max-width: 800px;
    margin: 0 auto;
    color: #212121;
    line-height: 1.6;
}

/* Course Details (course-details.html) */
.course-details {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.course-details h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 20px;
}

.course-details .intro {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #212121;
    font-size: 1.1em;
}

.course-details .steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.course-details .step {
    width: 350px;
    padding: 25px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s;
}

.course-details .step:hover {
    transform: translateY(-5px);
}

.course-details .step h3 {
    color: #2E7D32;
    margin-bottom: 15px;
}

.course-details .step ul {
    list-style: none;
    color: #212121;
}

.course-details .step li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.course-details .step li:before {
    content: "✓";
    color: #2E7D32;
    position: absolute;
    left: 0;
}

/* Screenshots (course-details.html) */
.screenshots {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.screenshots h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Call to Action (course-details.html) */
.cta {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 30px;
}

.payment-options {
    max-width: 800px;
    margin: 0 auto 40px;
}

.payment-options h3 {
    color: #2E7D32;
    margin-bottom: 20px;
}

.crypto-payments {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.crypto-option {
    text-align: center;
    width: 300px;
}

.crypto-option h4 {
    color: #212121;
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.crypto-address {
    font-size: 0.9em;
    word-break: break-all;
    color: #212121;
    margin-bottom: 10px;
}

.copy-btn {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #2E7D32;
}

.bank-transfer {
    text-align: center;
}

.bank-transfer h4 {
    color: #212121;
    margin-bottom: 15px;
}

.bank-transfer p {
    color: #212121;
    margin-bottom: 10px;
}

.whatsapp-message {
    font-style: italic;
    color: #555;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #1EBE54;
}

.whatsapp-btn i {
    margin-right: 10px;
}

.enroll-btn {
    display: inline-block;
    background: #D32F2F;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s;
}

.enroll-btn:hover {
    background: #2E7D32;
}

/* Blog Intro (blog.html) */
.blog-intro {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E9 100%);
}

.blog-intro h1 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.blog-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #212121;
    font-size: 1.1em;
}

/* Blog Content (blog.html) */
.blog-content {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.blog-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E7D32;
    margin-bottom: 20px;
}

.blog-content p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #212121;
}

/* About Intro (about.html) */
.about-intro {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
    border-bottom: 1px solid #E0E0E0;
}

.about-intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #D32F2F;
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 1.2em;
    color: #212121;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content (about.html) *
.about-content {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.mission-section {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background: linear-gradient(135deg, #2E7D32 0%, #D32F2F 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: white;
}

.mission-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.mission-section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E7D32;
    margin-bottom: 20px;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #212121;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #F5F5F5;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #D32F2F;
    margin-bottom: 20px;
}

.team-bio h3 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.team-role {
    color: #2E7D32;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-bio p {
    color: #212121;
    line-height: 1.6;
}

/* Contact Intro (contact.html) */
.contact-intro {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
    border-bottom: 1px solid #E0E0E0;
}

.contact-intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #D32F2F;
    margin-bottom: 15px;
}

.contact-intro p {
    font-size: 1.2em;
    color: #212121;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Content (contact.html) */
.contact-content {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.contact-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E7D32;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.contact-option {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2em;
    color: #D32F2F;
    margin-bottom: 15px;
}

.contact-option h3 {
    color: #212121;
    margin-bottom: 10px;
}

.contact-option p {
    color: #555;
    margin-bottom: 10px;
}

.contact-option a {
    color: #2E7D32;
    text-decoration: none;
}

.contact-option a:hover {
    text-decoration: underline;
}

.contact-note {
    color: #212121;
}

/* Footer */
footer {
    background: #212121;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.footer-about,
.footer-links,
.footer-contact {
    width: 300px;
    margin-bottom: 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
}

.footer-links a:hover {
    color: #2E7D32;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #2E7D32;
}

.footer-contact i {
    margin-right: 10px;
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.socials a {
    color: white;
    font-size: 1.5em;
}

.socials a:hover {
    color: #2E7D32;
}

.footer-disclaimer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    max-width: 800px;
    margin: 0 auto 10px;
}

.footer-disclaimer p {
    font-size: 0.9em;
    color: #E0E0E0;
}

.footer-disclaimer strong {
    color: #D32F2F;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9em;
}

/* WhatsApp Chat Popup */
.whatsapp-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-chat-btn {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
}

.whatsapp-chat-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    padding: 15px;
}

.whatsapp-chat-popup.active {
    display: block;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E8F5E9;
    padding-bottom: 10px;
}

.chat-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2E7D32;
    font-size: 1.2em;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #D32F2F;
    font-size: 1.2em;
    cursor: pointer;
}

.chat-form textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    margin-bottom: 10px;
}

.chat-send-btn {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.chat-send-btn:hover {
    background: #2E7D32;
}

.whatsapp-chat-popup p {
    color: #555;
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #D32F2F;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
    display: none;
}

#back-to-top:hover {
    background: #2E7D32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixed-header {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .tagline {
        position: static;
        transform: none;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        background: #FFFFFF;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        height: 60vh;
    }

    .feature,
    .step,
    .course,
    .course-details .step,
    .contact-option {
        width: 100%;
        max-width: 350px;
    }

    .course-slider,
    .testimonial-slider {
        max-width: 100%;
        padding: 0 40px;
    }

    .courses-intro,
    .blog-intro,
    .course-hero,
    .about-intro,
    .contact-intro {
        padding: 100px 15px 40px;
    }

    .courses-intro h1,
    .blog-intro h1,
    .course-hero h1,
    .about-intro h1,
    .contact-intro h1 {
        font-size: 2em;
    }

    .screenshot-container img {
        max-width: 300px;
    }

    .crypto-payments {
        flex-direction: column;
        align-items: center;
    }

    .crypto-option {
        width: 100%;
        max-width: 300px;
    }

    .our-mission {
        padding: 60px 15px;
    }

    .mission-content {
        padding: 30px;
    }

    .why-choose-content {
        flex-direction: column;
        align-items: center;
    }

    .why-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2em;
    }

    .hero {
        height: 50vh;
    }

    .slide-text h1 {
        font-size: 1.2em;
    }

    .slide-text p {
        font-size: 0.9em;
    }

    .slide-btn {
        padding: 8px 20px;
    }

    .courses-intro h1,
    .blog-intro h1,
    .course-hero h1,
    .about-intro h1,
    .contact-intro h1 {
        font-size: 1.5em;
    }

    .our-mission h2,
    .why-choose-us h2 {
        font-size: 2em;
    }

    .mission-content {
        padding: 20px;
    }
}

/*tryyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy might wor*
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #2E7D32;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .fixed-header {
        padding: 10px 20px;
        flex-direction: column; /* Stack vertically on mobile *
        align-items: flex-start;
    }

    .tagline {
        position: static; /* Remove absolute positioning *
        transform: none;
        margin: 5px 0;
        text-align: center;
        width: 100%;
        font-size: 0.9em; /* Slightly smaller for fit *
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        background: #FFFFFF;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .courses-intro {
        padding: 90px 15px 40px; /* Adjusted to clear header *
    }
}

@media (max-width: 480px) {
    .courses-intro {
        padding: 80px 10px 30px;
    }

    .tagline {
        font-size: 0.8em;
    }
}

/* ZSS Indicator */
.zss-indicator {
    padding: 80px 20px;
    background: #FFFFFF;
    text-align: center;
}

.indicator-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.indicator-text {
    max-width: 500px;
    text-align: left;
}

.indicator-text h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.indicator-text p {
    color: #212121;
    line-height: 1.6;
    margin-bottom: 20px;
}

.indicator-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Trading Stats */
.trading-stats {
    padding: 60px 20px;
    text-align: center;
    background: #E8F5E9;
}

.trading-stats h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    width: 200px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat i {
    font-size: 2em;
    color: #2E7D32;
    margin-bottom: 15px;
}

.stat h3 {
    color: #D32F2F;
    font-size: 2em;
    margin-bottom: 10px;
}

.stat p {
    color: #212121;
}

/* CTA Home */
.cta-home {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #D32F2F 0%, #2E7D32 100%);
    color: white;
}

.cta-home h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-home p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .indicator-content {
        flex-direction: column;
        text-align: center;
    }

    .indicator-text {
        text-align: center;
    }

    .stat {
        width: 100%;
        max-width: 250px;
    }
}

/*abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbooooooooooooouuuuuuuuuuuuuuuuuuutttttttttttt*/
/*aboooooouuuuuuuttttttt us*/
.about-content {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.mission-section {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background: linear-gradient(135deg, #2E7D32 0%, #D32F2F 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: white;
    overflow: hidden;
}

.mission-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    z-index: 0;
}

.mission-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mission-section p {
    font-size: 1.2em;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.mission-section strong {
    color: #E8F5E9;
    font-weight: bold;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E7D32;
    margin-bottom: 20px;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #212121;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-image {
    text-align: center;
    margin-bottom: 20px;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #D32F2F;
}

.team-bio {
    text-align: left;
}

.team-bio h3 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.team-role {
    color: #2E7D32;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-bio p {
    color: #212121;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bio-details {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.bio-details h4 {
    color: #2E7D32;
    margin: 20px 0 10px;
    font-size: 1.2em;
}

.bio-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.bio-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #212121;
}

.bio-details ul li:before {
    content: "✓";
    color: #D32F2F;
    position: absolute;
    left: 0;
}

.bio-details em {
    font-style: italic;
    color: #555;
}

/* Scrollbar Styling */
.bio-details::-webkit-scrollbar {
    width: 8px;
}

.bio-details::-webkit-scrollbar-track {
    background: #E0E0E0;
    border-radius: 4px;
}

.bio-details::-webkit-scrollbar-thumb {
    background: #D32F2F;
    border-radius: 4px;
}

.bio-details::-webkit-scrollbar-thumb:hover {
    background: #2E7D32;
}


/* Affiliate Banner */
.affiliate-banner {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E9 100%);
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.affiliate-banner h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 15px;
    font-size: 2em;
}

.affiliate-banner p {
    color: #212121;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.affiliate-banner a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.affiliate-banner img {
    width: 100%;
    max-width: 970px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.affiliate-banner a:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .affiliate-banner {
        padding: 40px 15px;
    }

    .affiliate-banner h2 {
        font-size: 1.8em;
    }

    .affiliate-banner p {
        font-size: 1em;
    }

    .affiliate-banner img {
        max-width: 100%;
    }
}

/* Courses Grid Section (Inspired by Screenshot) */
.courses-grid-section {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.courses-grid-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card, .featured-section {
    background-color: #fff;
    border: 2px solid #D32F2F;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.course-icon {
    font-size: 2.5em;
    color: #2E7D32;
    margin-bottom: 15px;
}

.course-card h3, .featured-section h3 {
    color: #2E7D32;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-card p, .featured-section p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.course-card .learn-more {
    display: inline-block;
    background: #D32F2F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.course-card .learn-more:hover {
    background: #2E7D32;
}

.featured-section {
    grid-column: span 2;
    text-align: left;
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
}

.featured-section .buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sign-up-btn, .view-courses-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.sign-up-btn {
    background-color: #2E7D32;
    color: #fff;
}

.sign-up-btn:hover {
    background-color: #D32F2F;
    transform: scale(1.05);
}

.view-courses-btn {
    background-color: #fff;
    color: #2E7D32;
    border: 2px solid #2E7D32;
}

.view-courses-btn:hover {
    background-color: #2E7D32;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .featured-section {
        grid-column: span 1;
        text-align: center;
    }

    .featured-section .buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Price Widget Section */
.price-widget {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.price-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 15px;
    font-size: 2em;
}

.price-widget p {
    color: #212121;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.widget-container {
    display: inline-block;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border: 2px solid #2E7D32;
}

.widget-container iframe {
    display: block;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .widget-container {
        padding: 10px;
    }

    .widget-container iframe {
        width: 100%;
        height: 400px;
    }
}

/*courseeeeeeeeeeeeeeeeeeeeeee------asssssssssssset*
.course-assets {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.course-assets h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 20px;
}

.course-assets p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #212121;
    line-height: 1.6;
}

.course-assets ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}

.course-assets li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #212121;
}

.course-assets li:before {
    content: "✓";
    color: #2E7D32;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .course-assets {
        padding: 40px 15px;
    }

    .course-assets h2 {
        font-size: 2em;
    }
}**********************************************************/


/* Modified .course-assets (replaces existing) */
.course-assets {
    padding: 60px 20px;
    text-align: center;
    background: #F5F5F5;
}

.course-assets h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 20px;
}

.course-assets p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #212121;
    line-height: 1.6;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.asset-card {
    background: #fff;
    border: 2px solid #2E7D32;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.asset-card i {
    font-size: 2em;
    color: #D32F2F;
    margin-bottom: 10px;
}

.asset-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #212121;
    margin-bottom: 10px;
}

.asset-card p {
    color: #757575;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .course-assets {
        padding: 40px 15px;
    }

    .course-assets h2 {
        font-size: 2em;
    }

    .assets-grid {
        grid-template-columns: 1fr;
    }
}

/* New Styles for Logo Link, Discount, and Naira Notification */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.original-price {
    text-decoration: line-through;
    color: #757575;
    margin-right: 10px;
    font-size: 0.9em;
}

.discount-price {
    color: #D32F2F;
    font-weight: bold;
}

.discount-badge {
    background: #2E7D32;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-left: 10px;
}

.naira-note {
    color: #D32F2F;
    font-weight: bold;
    margin: 10px 0;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.naira-note i {
    margin-right: 8px;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .original-price {
        font-size: 0.8em;
    }

    .discount-price {
        font-size: 1.1em;
    }

    .discount-badge {
        font-size: 0.7em;
        padding: 4px 8px;
    }

    .naira-note {
        font-size: 0.9em;
        text-align: center;
        flex-direction: column;
    }

    .naira-note i {
        margin-bottom: 5px;
    }
}

/***clickableeeeeeeeeeeeeeeeeeeeeeeeeeeeee---image*/
.screenshot-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.screenshot-link:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


/*freeeeee courseeeeeeeeeee*/
.free-courses-intro {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F5E9 100%);
}

.free-courses-intro h1 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.free-courses-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #212121;
    font-size: 1.1em;
    line-height: 1.6;
}

.free-courses-content {
    padding: 60px 20px;
    text-align: center;
    background: #FFFFFF;
}

.free-courses-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.video-card {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card h3 {
    color: #2E7D32;
    margin-bottom: 15px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.video-card p {
    color: #212121;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .free-courses-intro {
        padding: 100px 15px 40px;
    }

    .free-courses-intro h1 {
        font-size: 2em;
    }

    .free-courses-content {
        padding: 40px 15px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

/*lightttttttttttttttboxxxxxxxxxxxx*/
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #D32F2F;
}

.screenshot {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .lightbox-close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 85vh;
    }
}


/* Course Card Enhancements */
.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.course {
    position: relative; /* For positioning ribbon and price */
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.course img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745; /* Green for current price */
    margin: 10px 0;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.popular-ribbon {
    position: absolute;
    top: 10px;
    left: -40px;
    background: #ffd700; /* Gold */
    color: black;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(-45deg);
    z-index: 1;
}

.learn-more {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.learn-more:hover {
    background: #218838;
}

/**removing sooon***
.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4500; /* Orange *
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
}*/

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}
.blog-item {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.blog-item h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 10px;
}
.blog-item .meta {
    color: #757575;
    font-style: italic;
    margin-bottom: 10px;
}
.blog-item p {
    color: #212121;
    margin-bottom: 15px;
}
.blog-item .learn-more {
    background: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.blog-item .learn-more:hover {
    background: #D32F2F;
}

/***okkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk*
.blog-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: left;
}
.blog-post h1 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 15px;
}
.blog-post .meta {
    color: #757575;
    font-style: italic;
    margin-bottom: 20px;
}
.blog-post img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}
.blog-post p, .blog-post ol {
    line-height: 1.6;
    color: #212121;
    margin-bottom: 15px;
}
.blog-post .enroll-btn {
    background: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.blog-post .enroll-btn:hover {
    background: #D32F2F;
}*/

.blog-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: left;
    background: #fff; /* Matches your site’s clean look */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.blog-post h1 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F; /* Matches your brand red */
    font-size: 2.5em;
    margin-bottom: 15px;
}
.blog-post .meta {
    color: #757575;
    font-style: italic;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}
.blog-post p, .blog-post ol {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #212121;
    margin-bottom: 15px;
}
.blog-post ol li {
    margin-bottom: 10px;
}
.blog-post a {
    color: #2E7D32; /* Matches your green */
    text-decoration: none;
}
.blog-post a:hover {
    text-decoration: underline;
}
.blog-post .enroll-btn {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    transition: background 0.3s;
}
.blog-post .enroll-btn:hover {
    background: #D32F2F; /* Hover matches red */
}

/*****88 testing ooooooo****/
.course-price {
    color: #8B6F47; /* Fade brown for discount price (e.g., $100) */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0;
}
.course-price .original-price {
    color: #b58a4f; /* Lighter fade brown */
    font-size: 0.8em; /* Slightly smaller */
    text-decoration: line-through; /* Strikethrough for original price */
    margin-right: 10px; /* Space between original and discount price */
}


/********might clash*****
.courses-page {
    padding: 40px 20px;
    text-align: center;
    background: #F5F5F5;
}
.courses-page h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.course {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.course img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #2E7D32;
}
.course-content {
    padding: 20px;
}
.course-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #212121;
    font-size: 1.8em;
    margin-bottom: 10px;
}
.course-content p {
    font-family: 'Roboto', sans-serif;
    color: #757575;
    line-height: 1.6;
    margin-bottom: 15px;
}
.learn-more {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.learn-more:hover {
    background: #D32F2F;
}
.popular-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D32F2F;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9em;
    border-radius: 5px;
}*/

.thank-you-hero {
    background: linear-gradient(135deg, #D32F2F 0%, #2E7D32 100%); /* Gradient with brand colors */
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    position: relative;
}
.thank-you-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    backdrop-filter: blur(5px); /* Glass effect */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.thank-you-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
}
.thank-you-message {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    background: #2E7D32; /* Green */
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #D32F2F; /* Red on hover */
}
.cta-button i {
    margin-right: 8px;
}
.explore-more {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin: 15px 0;
    color: #fff;
}
.explore-more a {
    color: #8B6F47; /* Fade brown */
    text-decoration: underline;
}
.privacy-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    color: #fff;
    margin-top: 15px;
}
.privacy-note a {
    color: #1976D2; /* Blue */
    text-decoration: underline;
}
.privacy-note i {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .thank-you-hero {
        min-height: 80vh;
        padding: 20px;
    }
    .thank-you-content h1 {
        font-size: 2em;
    }
    .thank-you-message {
        font-size: 1em;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

/**privacy*/
.privacy-policy {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: #F5F5F5; /* Light gray background */
}
.privacy-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #D32F2F; /* Red */
    margin-bottom: 20px;
}
.privacy-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #212121; /* Dark gray */
    margin: 20px 0 10px;
}
.privacy-content p, .privacy-content ul {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #757575; /* Gray */
    line-height: 1.6;
    margin-bottom: 15px;
}
.privacy-content ul {
    list-style: disc;
    padding-left: 20px;
}
.privacy-content a {
    color: #1976D2; /* Blue */
    text-decoration: underline;
}
.privacy-content .intro {
    font-size: 1.1em;
    color: #212121;
}
@media (max-width: 768px) {
    .privacy-content h1 {
        font-size: 2em;
    }
    .privacy-content h2 {
        font-size: 1.5em;
    }
    .privacy-policy {
        padding: 20px;
    }
}

/*welcome page*/
.welcome-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D32F2F 0%, #2E7D32 100%);
    color: #fff;
    overflow: hidden;
}
.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 20px;
    z-index: 2;
}
.animated-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    animation: fadeIn 2s ease-in-out;
}
.hero-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    margin: 15px 0;
}
.whatsapp-cta {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s;
    margin: 10px;
}
.whatsapp-cta:hover {
    background: #D32F2F;
}
.whatsapp-cta i {
    margin-right: 8px;
}
.secondary-cta {
    display: inline-block;
    background: #1976D2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
}
.secondary-cta:hover {
    background: #8B6F47;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}
.testimonials {
    padding: 40px 20px;
    background: #F5F5F5;
    text-align: center;
}
.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #D32F2F;
    margin-bottom: 20px;
}
.testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.testimonial {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #757575;
    line-height: 1.6;
}
.testimonial.active {
    display: block;
    animation: slideIn 1s ease-in-out;
}
.testimonial span {
    display: block;
    font-weight: bold;
    color: #212121;
    margin-top: 10px;
}
.stats {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}
.stats h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #D32F2F;
    margin-bottom: 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.stat {
    font-family: 'Roboto', sans-serif;
}
.stat-number {
    display: block;
    font-size: 2.5em;
    color: #2E7D32;
    margin-bottom: 10px;
}
.stat p {
    font-size: 1em;
    color: #757575;
}
.explore {
    padding: 40px 20px;
    text-align: center;
    background: #F5F5F5;
}
.explore h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #D32F2F;
    margin-bottom: 20px;
}
.explore p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #757575;
    margin-bottom: 20px;
}
.explore-btn {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.explore-btn:hover {
    background: #D32F2F;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 768px) {
    .welcome-hero {
        min-height: 60vh;
    }
    .animated-text {
        font-size: 2em;
    }
    .hero-subtext {
        font-size: 1em;
    }
    .whatsapp-cta, .secondary-cta {
        padding: 10px 20px;
        font-size: 1em;
    }
    .testimonials, .stats, .explore {
        padding: 20px;
    }
}

/* Firebase Blog Enhancements */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.blog-item {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.blog-item h2 {
    font-family: 'Montserrat', sans-serif;
    color: #D32F2F;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.blog-item .meta {
    color: #757575;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.blog-item p {
    color: #212121;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-item .learn-more {
    background: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.blog-item .learn-more:hover {
    background: #D32F2F;
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    background: #2E7D32;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-bottom: 10px;
    font-weight: bold;
}

.blog-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: #F5F5F5;
    color: #212121;
    border: 2px solid #2E7D32;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #2E7D32;
    color: white;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: #757575;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}