:root {
    --primary: #0066FF;
    --primary-hover: #1A7AFF;
    --secondary: #00C2A8;
    --secondary-hover: #24D3BD;
    --accent: #FFC857;
    --bg-base: #0B1020;
    --surface-light: #101628;
    --surface-subtle: #151B2E;
    --border: #2A3350;
    --text-primary: #F5F7FF;
    --text-secondary: #C3C8E6;
    --text-muted: #8A92BE;
    --text-on-primary: #FFFFFF;
    --text-on-accent: #1A1A1A;
    --success: #1CC88A;
    --warning: #F6C23E;
    --error: #E74A3B;
    --info: #17A2B8;
    --signal-orange: #FF6B35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
}


/* ===== HEADER ADDITIONS ONLY ===== */

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 1100;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-primary);
    stroke-width: 2.5;
    fill: none;
}

.icon-close {
    display: none;
}

.menu-toggle.open .icon-hamburger {
    display: none;
}

.menu-toggle.open .icon-close {
    display: block;
}

/* Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--surface-light);
    border-left: 2px solid var(--border);
    padding: 6rem 2rem;
    transition: right 0.35s ease;
    z-index: 1050;
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-sidebar a {
    font-size: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.mobile-sidebar a:hover {
    color: var(--secondary);
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Only */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: var(--surface-light);
    border-bottom: 2px solid var(--border);
    padding: 1.2rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

/* Desktop Nav (Renamed for clarity, logic unchanged) */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.desktop-nav a:hover {
    color: var(--secondary);
}

/* --- Mobile Menu Elements (Hidden by default on Desktop) --- */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    /* Above sidebar */
    align-items: center;
    justify-content: center;
}

.menu-icon {
    width: 32px;
    height: 32px;
    stroke: var(--text-primary);
    /* Uses existing text color */
}

.icon-close {
    display: none;
}

.icon-hamburger {
    display: block;
}

/* Sidebar Logic */
.sidebar {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 0;
    right: -100%;
    /* Off-screen right */
    width: 280px;
    height: 100vh;
    background-color: var(--surface-light);
    border-left: 2px solid var(--border);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    padding-top: 5rem;
    transition: right 0.3s ease-in-out;
}

.sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.sidebar li a:hover {
    background-color: var(--surface-subtle);
    color: var(--secondary);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* --- Mobile Menu Active States --- */
body.menu-open .sidebar {
    right: 0;
}

body.menu-open .overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open .icon-hamburger {
    display: none;
}

body.menu-open .icon-close {
    display: block;
}

/* --------------------------------------------------------- */


/* Hero Section */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-highlight {
    color: var(--accent);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-card-container {
    height: 400px;
    padding: 2px;
    padding-top: 50px;
    overflow: scroll;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 50px;
    margin-top: 10px;
    background-color: var(--surface-subtle);
    /* border-radius: 16px; */
    overflow: hidden;
    /* border: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2); */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Video Section (Right side of Hero) */
.hero-video-section {
    display: flex;
    flex-direction: column;
}

.hero-video-card {
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-video-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.25);
}

.hero-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background-color: var(--surface-subtle);
}

.hero-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-video-info {
    padding: 1.2rem 1.5rem;
    text-align: center;
}

.hero-video-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-video-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.hero-video-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background-color: var(--surface-subtle);
    border-top: 1px solid var(--border);
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.hero-nav-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.hero-video-counter {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Price Card */
.price-card {
    background-color: var(--surface-light);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(255, 200, 87, 0.15);
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 200, 87, 0.25);
}

.early-bird-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-on-accent);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.price-content h3 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discounted-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--accent);
}

.discount-badge {
    background-color: var(--success);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
}

.price-features li {
    font-size: 18px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li:before {
    content: "⚡";
    color: var(--accent);
    font-size: 22px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: var(--text-on-accent);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 200, 87, 0.3);
    text-align: center;
}

.btn-primary:hover {
    background-color: #FFD470;
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--surface-light);
    color: var(--text-primary);
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--surface-subtle);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Content Sections */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
}

.section-title-accent {
    color: var(--secondary);
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

.feature-card p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-card ul li {
    padding: 0.6rem 0;
    font-size: 17px;
    color: var(--text-secondary);
    display: flex;
    align-items: start;
    gap: 10px;
}

.feature-card ul li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

/* Syllabus Section */
.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.syllabus-card {
    background-color: var(--surface-light);
    border-left: 4px solid var(--signal-orange);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.syllabus-card:hover {
    background-color: var(--surface-subtle);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    transform: translateX(8px);
}

.syllabus-card h4 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--signal-orange);
}

.syllabus-card ul {
    list-style: none;
}

.syllabus-card ul li {
    padding: 0.5rem 0;
    font-size: 16px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.8rem;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--surface-subtle);
}

.faq-icon {
    font-size: 24px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.8rem;
    color: var(--text-secondary);
    font-size: 18px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 1.8rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Testimonials Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
    /* Add fade effect on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 2.5rem;
    /* Initial offset matching gap */
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.25rem));
        /* Move by half width + half gap */
    }
}

.testimonial-card {
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    width: 400px;
    /* Fixed width for marquee */
    white-space: normal;
    /* Ensure text wraps */
}

.testimonial-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 12px 28px rgba(0, 194, 168, 0.15);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 48px;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-content {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.author-info h4 {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background-color: var(--surface-light);
    border-radius: 16px;
    padding: 4rem;
    max-width: 800px;
    margin: 3rem auto;
    border: 2px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background-color: var(--surface-subtle);
    color: var(--text-primary);
    font-size: 17px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--surface-light);
    border-top: 2px solid var(--border);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--surface-subtle);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
    margin: 10px;
}

.social-link:hover svg {
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 16px;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.quick-links a:hover {
    color: var(--secondary);
}

/* Demo Videos Section - Single Slide Carousel */
#demo-videos {
    padding: 4rem 2rem;
}

.demo-videos-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-videos-grid {
    flex: 1;
    position: relative;
}

.demo-video-slide {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.demo-video-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Navigation Arrows */
.carousel-nav {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 102, 255, 0.3);
}

.carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.demo-video-card {
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.demo-video-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.25);
}

.demo-video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background-color: var(--surface-subtle);
    overflow: hidden;
}

.demo-video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.demo-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.demo-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-hover);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.5);
}

.demo-video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

.demo-video-info {
    padding: 1.5rem 1.8rem 1.8rem;
}

.demo-video-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-video-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.demo-video-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.demo-video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    pointer-events: none;
}

/* Video Section Load More Button */
.demo-videos-load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-choose-grid,
    .syllabus-grid,
    .testimonials-grid,
    .demo-videos-grid {
        grid-template-columns: 1fr;
    }

    /* Tablet Header Fix */
    .desktop-nav ul {
        gap: 1rem;
    }

    .desktop-nav a {
        font-size: 14px;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    /* Center price card */
    .price-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center hero content */
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing {
        justify-content: center;
        flex-wrap: wrap;
    }

    .early-bird-badge {
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Reduce Header Text Size */
    .logo-text {
        font-size: 22px;
    }

    /* Hide Desktop Nav */
    .desktop-nav {
        display: none;
    }

    /* Show Toggle */
    .menu-toggle {
        display: flex;
    }

    /* Show Sidebar structure (it is positioned off-screen by default) */
    .sidebar {
        display: flex;
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .contact-section {
        padding: 2.5rem 1.5rem;
    }

    /* Hide main price card on mobile (replaced by sticky bar) */
    .price-card {
        display: none;
    }

    /* Single column layout on mobile */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .original-price {
        font-size: 20px;
    }

    .discounted-price {
        font-size: 24px;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 16px;
    }

    body {
        font-size: 16px;
        padding-bottom: 80px;
        /* Space for sticky bar */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Center all section content */
    .feature-card,
    .syllabus-card,
    .testimonial-card,
    .demo-video-card,
    .faq-item {
        text-align: center;
    }

    .feature-card ul li,
    .syllabus-card ul li {
        justify-content: center;
    }

    .testimonial-author {
        justify-content: center;
    }

    .demo-video-info {
        text-align: center;
    }

    .demo-video-category {
        margin-left: auto;
        margin-right: auto;
    }

    /* Demo videos carousel on mobile */
    .demo-videos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .demo-video-card {
        min-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}

/* Sticky Price Bar for Mobile */
.sticky-price-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-subtle) 100%);
    border-top: 2px solid var(--accent);
    padding: 0.8rem 1.2rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.sticky-price-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.sticky-original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.sticky-discounted-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent);
}

.sticky-discount-badge {
    background-color: var(--success);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.sticky-cta-btn {
    background: var(--accent);
    color: var(--text-on-accent);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 200, 87, 0.3);
}

.sticky-cta-btn:hover {
    background: #FFD470;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sticky-price-bar {
        display: block;
    }
}

/* Demo Videos Carousel Navigation */
.demo-videos-wrapper {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.carousel-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

@media (max-width: 1200px) {
    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
}

/* Carousel Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}