* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --color-primary: purple;
    accent-color: var(--color-primary);
}



/* 99 button */
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #6f25e6;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #7b63a1
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* body */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* slider image */

.slider-section {
    background: #f5f5f7;
    padding: 3rem 0;
    overflow: hidden;
}

.slider {
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
    /* Firefox */
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.slider img {
    width: 260px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slider img:hover {
    transform: scale(1.05);
}

/* become effect */

.highlight {
    display: inline-block;
    background: #7441c7;
    color: #fff;
    padding: 0.20em 0.10em;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Auto-scroll animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.slider:hover .slider-track {
    animation-play-state: paused;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    background: #ffffff;
}

.hero-content {
    max-width: 520px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 420px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.cta-group button {
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Mobile phones */
@media (max-width: 500px) {
    .hero-image img {
        width: 410px;
        height: auto;
        margin-top: 15%;
    }
}

/* Tablets & small laptops */
@media (min-width: 501px) and (max-width: 950px) {
    .hero-image img {
        width: 850px;
        height: auto;
        margin-top: 15%;
    }
}


.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Curriculum */
.curriculum {
    background: var(--bg-light);
}

.curriculum-list {
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.curriculum-header:hover {
    background: var(--bg-light);
}


.module-number {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.curriculum-title h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.curriculum-content.active {
    max-height: 500px;
}

.curriculum-content ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem 5.5rem;
}

.curriculum-content li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.curriculum-content li:last-child {
    border-bottom: none;
}

/*info box */

.info-box {
    background: #f5f5f7;
    /* true dark, not gray */
    border: 1px solid #888888;
    /* visible separation */
    border-radius: 6px;
    padding: 0.6rem 1.0rem;
    text-align: center;
    max-width: 420px;
}

.certificate-section {
    width: 100%;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.certificate-image-wrapper {
    width: 100%;
    max-width: 1100px;
    /* controls side spacing on large screens */
    margin-top: 2.5rem;
    padding: 0 1rem;
    /* safe side space */
}

.certificate-image {
    width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .certificate-section {
        padding: 2.5rem 1rem;
    }

    .certificate-image-wrapper {
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .certificate-image {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .certificate-image-wrapper {
        max-width: 90%;
    }
}

.info-title {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: #1d1d1f;
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

.info-sub {
    display: inline-block;
    background: #7441c7;
    color: #fff;
    padding: 0.80em 1em;
    border-radius: 20px;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Instructor */
.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.instructor-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.instructor-info h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

.instructor-info h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.instructor-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.instructor-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.achievement h4 {
    font-size: 2rem;
    color: var(--primary-color);
}

.achievement p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.credential-item {
    color: var(--text-dark);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rating {
    color: var(--warning-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    opacity: 0.9;
}

.pricing-content {
    padding: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.125rem;
    color: var(--text-light);
}

.price-strike {
    text-align: center;
    margin-bottom: 1rem;
}

.price-strike span {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.discount-badge {
    background: var(--success-color);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: #7441c7;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}


/* Expert button */

.spotlight-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-btn {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    background: #020617;
    /* slate-950 */
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
}

.spotlight-btn:active {
    transform: scale(0.985);
}

.spotlight-text {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
}

.spotlight-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 128px;
    background: #f8fafc;
    /* slate-100 */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: left 0.25s ease;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Scoped styles for video hero section */
.video-hero-section {
    background: linear-gradient(135deg,
            #f9fafb 0%
            /* very light grey */
            ,
            #f3f4f6 20%
            /* soft grey */
            ,
            #eef1f5 40%
            /* cool light grey */
            ,
            #e5e7eb 60%
            /* neutral light grey */
            ,
            #e5e5e5 80%
            /* warm light grey */
            ,
            #f5f5f4 100%
            /* cloud grey */
        );
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.video-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 60px 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.video-hero-arrow {
    width: 60px;
    height: 50px;
    margin-left: 10px;
    color: #1f2937;
    vertical-align: middle;
}

.video-hero-frame {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    padding: 20px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.video-hero-player {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-hero-cta {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8c);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2d5a8c, #3d6fa3);
}

.video-hero-cta:active {
    transform: translateY(0);
}

/* Curriculum Section Styles - Scoped to avoid conflicts */
.curriculum-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fafafa;
}

.curriculum-container {
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.curriculum-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

.curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.curriculum-module {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.curriculum-module:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.curriculum-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.curriculum-module-header:hover {
    background-color: #fafafa;
}

.curriculum-module-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.curriculum-chevron {
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.curriculum-module.active .curriculum-chevron {
    transform: rotate(180deg);
}

.curriculum-module-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.curriculum-module-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    flex-shrink: 0;
}

.curriculum-lesson-count {
    font-size: 14px;
    color: #666;
}

.curriculum-module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.curriculum-module.active .curriculum-module-content {
    max-height: 2000px;
}

.curriculum-lessons {
    padding: 0 28px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.curriculum-lesson {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.curriculum-lesson:last-child {
    border-bottom: none;
}

.curriculum-video-icon {
    color: #4a5568;
    flex-shrink: 0;
}

.curriculum-lesson-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.curriculum-lesson-badge {
    padding: 4px 12px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .curriculum-section {
        padding: 40px 16px;
    }

    .curriculum-title {
        font-size: 32px;
    }

    .curriculum-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .curriculum-module-header {
        padding: 20px;
    }

    .curriculum-module-left {
        gap: 12px;
    }

    .curriculum-module-title {
        font-size: 16px;
    }

    .curriculum-lessons {
        padding: 0 20px 20px 20px;
    }

    .curriculum-lesson {
        gap: 12px;
    }

    .curriculum-lesson-title {
        font-size: 15px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .video-hero-section {
        padding: 60px 15px;
    }

    .video-hero-title {
        font-size: 2rem;
    }

    .video-hero-arrow {
        width: 40px;
        height: 35px;
    }

    .video-hero-frame {
        padding: 12px;
        border-radius: 20px;
    }

    .video-hero-player {
        border-radius: 12px;
    }

    .video-hero-cta {
        font-size: 1rem;
        padding: 14px 36px;
    }
}

@media (max-width: 480px) {
    .video-hero-section {
        padding-top: 0%;
        padding-bottom: 0%;
        min-height: 65vh;
    }

    .hero {
        min-height: 90vh;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .instructor-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .instructor-achievements {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.timeline-section {
    padding: 80px 20px;
    background-color: #ffffff;
    width: 100%;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #7441c7;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #f5f5f7;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px #e0e7ff;
}

.timeline-time {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
}

.timeline-right .timeline-time {
    left: 0;
    right: auto;
    text-align: right;
    padding-right: 40px;
    width: calc(50% - 40px);
}

.timeline-left .timeline-time {
    right: 0;
    left: auto;
    text-align: left;
    padding-left: 40px;
    width: calc(50% - 40px);
}

.timeline-content {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
}

.timeline-right .timeline-content {
    margin-left: calc(50% + 40px);
}

.timeline-left .timeline-content {
    margin-right: calc(50% + 40px);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.timeline-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-title {
        font-size: 1.8rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-time {
        position: static !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0 0 10px 0 !important;
        margin-bottom: 10px;
    }

    .timeline-content {
        max-width: 100%;
        margin: 0 !important;
    }

    .timeline-right .timeline-content,
    .timeline-left .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.marquee-section {
    padding: 60px 20px;
    background: #f5f5f7;
    overflow: hidden;
}

.marquee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.marquee-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}



.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 30s linear infinite;
    width: fit-content;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 180px;
    height: 100px;
}

.marquee-item img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;

    filter: grayscale(50%) drop-shadow(0 0 6px rgba(148, 148, 148, 0.6));
    opacity: 0.9;
    transition: all 0.3s ease;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30%);
    }
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .marquee-content {
        gap: 40px;
        animation-duration: 25s;
    }

    .marquee-item {
        min-width: 150px;
        padding: 15px 20px;
    }
}

.enroll-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 9%;
    background: #7441c7;
    color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease-in-out;
    padding: 14px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.enroll-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Visible state */

.enroll-bar.show {
    transform: translateY(0);
}

@media (min-width: 956px) {
    .enroll-bar {
        transform: translateY(100%);
    }


}



.old-price {
    text-decoration: line-through;
    color: #d8d8d8;
    font-size: 18px;
}

.new-price {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.tagline {
    font-size: 13px;
    color: #ccc;
}

.enroll-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(187, 187, 187, 0.4);
}

.float-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    /* Removed background and added proper sizing for images */
    background: transparent;
    border-radius: 12px;
    padding: 0;
    opacity: 0.85;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Added styling for img tags instead of SVG */
.float-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

/* Adjusted positions for better spacing between icons */
.float-icon-1 {
    top: 5%;
    left: 20%;
    animation: float1 6s ease-in-out infinite;
}

.float-icon-2 {
    top: 20%;
    right: 18%;
    animation: float2 7s ease-in-out infinite;
}

.float-icon-3 {
    bottom: 55%;
    left: 5%;
    animation: float3 5.5s ease-in-out infinite;
}

.float-icon-4 {
    bottom: 10%;
    right: 12%;
    animation: float4 6.5s ease-in-out infinite;
}

.float-icon-5 {
    top: 65%;
    left: 3%;
    animation: float5 7.5s ease-in-out infinite;
}

.float-icon-6 {
    top: 40%;
    right: 3%;
    animation: float6 8s ease-in-out infinite;
}

/* Floating animations */
@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -20px) rotate(5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 15px) rotate(-5deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 15px) rotate(5deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, -20px) rotate(-5deg);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(18px, -15px) rotate(3deg);
    }
}

@keyframes float6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-18px, 20px) rotate(-3deg);
    }
}

/* Make hero-image position relative if not already */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .float-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 500px) {
    .enroll-bar {
        height: auto;
        padding: 12px;
        flex-direction: column;
        gap: 12px;
    }

    .enroll-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .old-price {
        text-decoration: line-through;
        color: #d8d8d8;
        font-size: 12px;
    }

    .new-price {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }

    .tagline {
        font-size: 13px;
        color: #ccc;
    }
}

@media (max-width: 950px) {
    .faq-list {
        margin-bottom: 10%;
    }
}

/* Force consistent theme across all devices */
:root {
    color-scheme: light;
}


/* === FORCE LIGHT THEME - ANDROID FIX === */

html {
    color-scheme: light !important;
    background-color: #ffffff !important;
    filter: none !important;
    -webkit-filter: none !important;
}

body {
    background-color: #ffffff !important;
    color: #111111 !important;
}

body * {
    filter: none !important;
    -webkit-filter: none !important;
}

@media (prefers-color-scheme: dark) {

    html,
    body {
        background: #ffffff !important;
        color: #111111 !important;
    }
}

@media (forced-colors: active) {
    * {
        forced-color-adjust: none !important;
    }
}

img,
video,
svg {
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 12%;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transform: translateX(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float.show {
    transform: translateX(0);
    opacity: 1;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-2px);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}


.whatsapp-float.show {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 15px;
    }

    .whatsapp-con {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15%;
    }
}

.whatsapp-con {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .hero {
        transform: scale(0.9);
        transform-origin: top center;
        width: 111.11%;       /* compensates for scale */
        margin-left: -5.55%;  /* keeps it centered */
    }
}


@media (min-width: 1200px) and (max-width: 1600px) {
    .hero{
        transform: scale(0.9);
        transform-origin: top center;
        width: 111.11%;       /* compensates for scale */
        margin-left: -5.55%;  /* keeps it centered */
    }
}