/* Google Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
            --primary-bg: #0f172a; /* Super Dark Blue */
            --secondary-bg: #1e293b; /* Sidebar/Card Blue */
            --accent-color: #38bdf8; /* Neon Sky Blue */
            --text-main: #f8fafc;
            --text-dim: #94a3b8;
            --correct: #22c55e;
            --wrong: #ef4444;
            --border-color: #334155;
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background: var(--primary-bg);
            color: var(--text-main);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Utility Classes */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3 { font-weight: 800; }
        p { color: var(--text-dim); line-height: 1.7; }

        /* -------------------------------------------
           SECTION 1: Modern Sticky Navbar
        ------------------------------------------- */
        .navbar {
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { height: 55px; padding: 0px; }

        .nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
        .nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.95rem; font-weight: 500; transition: 0.3s; }
        .nav-links a:hover { color: var(--accent-color); }

        .btn-navbar { display: flex; gap: 10px; }
        .btn { padding: 10px 22px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s; cursor: pointer; border: none; }
        
        .btn-outline { border: 2px solid var(--accent-color); color: var(--accent-color); background: transparent; }
        .btn-outline:hover { background: rgba(56, 189, 248, 0.05); }

        .btn-filled { background: var(--accent-color); color: #000; box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3); }
        .btn-filled:hover { background: #fff; box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5); }

        /* -------------------------------------------
           SECTION 2: Futuristic Hero Section
        ------------------------------------------- */
       /* Hero Section Styling */
.hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
}

.main-title {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(34,197,94,0.15);
      border: 2px solid rgba(34,197,94,0.35);
      border-radius: 100px; padding: 6px 16px;
      margin-bottom: 14px;
      animation: fadeInUp 0.6s ease both;
    }
    .hero-badge-dot {
      width: 12px; height: 12px; border-radius: 50%;
      background: #22c55e; animation: pulse 1s infinite;
    }
    .hero-badge span { font-size: 16px; font-weight: 600; color: #22c55e; }
    
/* एनीमेशन वाले टेक्स्ट का रंग (Gradient) */
.typing-text {
    background: linear-gradient(to right, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ब्लिंकिंग कर्सर (Blinking Cursor) */
.custom-cursor {
    color: #38bdf8;
    font-weight: 300;
    animation: blink 0.8s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
    line-height: 1.7;
}
 .btn-hero-box { display: flex; justify-content: center; gap: 20px; }
        .btn-main { padding: 18px 40px; font-size: 1.1rem; border-radius: 12px; }

        /* Floating Animation */
        @keyframes float { 
            0% { transform: translateY(0px); } 
            50% { transform: translateY(-15px); } 
            100% { transform: translateY(0px); } 
        }

/* मोबाइल के लिए सुधार */
@media (max-width: 768px) {
    .main-title { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; gap: 15px; }
}

        /* -------------------------------------------
           SECTION 3: Key Features (3 Card Grid)
        ------------------------------------------- */
        .features { padding: 80px 0; background: var(--secondary-bg); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .feature-title-box { text-align: center; margin-bottom: 50px; }
        .feature-title-box small { color: var(--accent-color); text-transform: uppercase; letter-spacing: 3px; font-weight: bold; }
        .feature-title-box h2 { font-size: 2.5rem; margin: 10px 0; }

        .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { background: var(--primary-bg); padding: 40px; border-radius: 24px; border: 1px solid var(--border-color); transition: 0.3s; position: relative; }
        .feature-card:hover { transform: translateY(-10px); border-color: var(--accent-color); box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1); }
        
        .feature-icon-box { width: 70px; height: 70px; background: rgba(56, 189, 248, 0.1); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; border: 1px solid rgba(56, 189, 248, 0.2); }
        .feature-icon-box i { font-size: 2rem; color: var(--accent-color); }

        .feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        
         /* Speed Boost Section Styling */
.speed-boost {
    background-color: #0f172a;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
}

.container-boost {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.boost-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-boost {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.boost-header h2 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
    font-weight: 800;
}

.boost-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Grid Layout */
.boost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.boost-card {
    background: #1e293b;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #334155;
    transition: 0.3s;
}

.boost-card:hover {
    transform: translateY(-5px);
    border-color: #475569;
}

.boost-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Icon Colors */
.b-blue { background: rgba(56, 189, 248, 0.2); color: #38bdf8; }
.b-green { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.b-purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.b-orange { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.b-red { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.b-cyan { background: rgba(34, 211, 238, 0.2); color: #22d3ee; }

.boost-card small {
    color: var(--dim, #94a3b8);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.boost-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.boost-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Card Special Style */
.cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-boost-cta {
    background: linear-gradient(to right, #38bdf8, #22c55e);
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-boost-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Bottom Stats */
.boost-stats-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-stat h2 {
    font-size: 3rem;
    color: #38bdf8;
    margin: 0;
}

.footer-stat p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .boost-grid { grid-template-columns: 1fr; }
    .boost-stats-footer { flex-direction: column; gap: 40px; }
}
/* Why Touch Typing Section Styling */
.typing-importance {
    background-color: #1e293b; /* गहरा बैकग्राउंड */
    padding: 100px 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.container-typing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.typing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styling */
.badge-career {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.typing-content h2 {
    font-size: 3.5rem;
    margin: 25px 0;
    font-weight: 800;
    line-height: 1.1;
}

.typing-content .description {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-blue { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.icon-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.icon-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.benefit-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefit-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.95rem;
}

/* Right Side Cards Grid */
.job-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.job-card {
    background: #0f172a; /* कार्ड डार्क थीम */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #334155;
    transition: 0.3s;
}

.job-card:hover {
    border-color: #475569;
    transform: translateY(-5px);
}

.job-emoji {
    font-size: 2rem;
    margin-bottom: 20px;
}

.job-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.job-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.wpm-req {
    font-weight: 700;
    font-size: 0.95rem;
}

/* WPM Required Colors */
.req-blue { color: #38bdf8; }
.req-green { color: #86efac; }
.req-purple { color: #c084fc; }
.req-yellow { color: #fbbf24; }

/* Responsive */
@media (max-width: 992px) {
    .typing-grid { grid-template-columns: 1fr; }
    .typing-content h2 { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .job-cards-grid { grid-template-columns: 1fr; }
}
/* Home Row Technique Styling */
.home-row-technique {
    background-color: #0f172a;
    padding: 100px 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.container-hr {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hr-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-tech {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hr-header h2 {
    font-size: 3rem;
    margin: 20px 0 10px;
    font-weight: 800;
}

.hr-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Visual Keyboard Box */
.hr-visual-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}

.kb-instruction {
    color: #94a3b8;
    margin-bottom: 25px;
}

.kb-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

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

.label-l { color: #38bdf8; font-weight: 700; }
.label-r { color: #4ade80; font-weight: 700; }

.key-cap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #334155;
}

.l-key { border-color: #0c4a6e; color: #38bdf8; }
.r-key { border-color: #064e3b; color: #4ade80; }
.active-l { background: rgba(56, 189, 248, 0.1); border-color: #38bdf8; }
.active-r { background: rgba(74, 222, 128, 0.1); border-color: #4ade80; }

.kb-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 40px;
}

/* Mini Keyboard Layout */
.mini-keyboard {
    max-width: 500px;
    margin: 0 auto;
}

.kb-row-mini {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.k-item {
    width: 35px;
    height: 35px;
    background: #1e293b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #475569;
}

.k-item.l-key { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.k-item.r-key { background: rgba(74, 222, 128, 0.15); color: #4ade80; }

.space-bar-mini {
    width: 250px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

/* Info Cards Grid */
.hr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hr-card {
    padding: 25px;
    border-radius: 16px;
    background: #1e293b;
    border: 1px solid #334155;
}

.hr-card h4 {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.icon-small {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
}

.card-blue h4 { color: #38bdf8; }
.card-blue .icon-small { background: #38bdf8; }
.card-green h4 { color: #4ade80; }
.card-green .icon-small { background: #4ade80; }
.card-purple h4 { color: #a855f7; }
.card-yellow h4 { color: #fbbf24; }

.finger-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.8;
}

.hr-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hr-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hr-cards-grid { grid-template-columns: 1fr; }
    .kb-highlights { flex-direction: column; gap: 15px; }
}
/* How It Works Section Styling */
.how-it-works {
    background-color: #0f172a; /* डार्क बैकग्राउंड */
    padding: 100px 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.container-hiw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.badge-how {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hiw-content h2 {
    font-size: 3.5rem;
    margin: 25px 0;
    font-weight: 800;
    line-height: 1.1;
}

.accent-blue { color: #38bdf8; }

.hiw-sub {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.step-card {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-num {
    min-width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.num-blue { background: #0ea5e9; color: #fff; box-shadow: 0 0 20px rgba(14, 165, 233, 0.3); }
.num-green { background: #84cc16; color: #fff; box-shadow: 0 0 20px rgba(132, 204, 22, 0.3); }
.num-cyan { background: #2dd4bf; color: #fff; box-shadow: 0 0 20px rgba(45, 212, 191, 0.3); }

.step-text h4 { margin: 0 0 8px 0; font-size: 1.3rem; font-weight: 700; }
.step-text p { color: #94a3b8; margin: 0; font-size: 1rem; line-height: 1.5; }

/* Right Visual Window */
.preview-window {
    background: #1e293b;
    border-radius: 24px;
    border: 1px solid #334155;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.window-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.window-dots { display: flex; gap: 8px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.window-stats { font-size: 0.85rem; color: #94a3b8; }
.blue-text { color: #38bdf8; }
.green-text { color: #4ade80; }

.preview-text-box {
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.preview-text-box p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
}

.cursor-box {
    background: rgba(56, 189, 248, 0.2);
    border-bottom: 2px solid #38bdf8;
    color: #38bdf8;
    padding: 0 2px;
}

.preview-keyboard-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kb-row-m { display: flex; gap: 6px; }
.k-m {
    width: 32px;
    height: 32px;
    background: #334155;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #94a3b8;
}

.blue-bg { background: #0ea5e9; color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .hiw-grid { grid-template-columns: 1fr; gap: 50px; }
    .hiw-content h2 { font-size: 2.8rem; }
}
/* FAQ Section Styling */
.faq-section {
    background-color: #020338;
    padding: 100px 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.container-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-faq {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.faq-header h2 {
    font-size: 3rem;
    margin: 20px 0 10px;
    font-weight: 800;
}

.faq-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question i {
    font-size: 0.9rem;
    color: #475569;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(15, 23, 42, 0.3);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active {
    border-color: #38bdf8;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* जवाब की लंबाई के अनुसार बढ़ा सकते हैं */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #38bdf8;
}

.faq-question:hover {
    color: #38bdf8;
}

     /* ________________________________
        WPM Methodology Styling 
      __________________________________*/
.wpm-methodology {
    background-color: #1e293b;
    padding: 100px 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.container-method {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Formula Card Design */
.formula-display-card {
    background: #0f172a;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #334155;
}

.formula-header {
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-formula-box {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(34, 197, 94, 0.1));
    padding: 30px;
    border-radius: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.wpm-label { color: #38bdf8; }
.green-text { color: #4ade80; }

/* Example Items */
.ex-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ex-info { display: flex; align-items: center; gap: 15px; }
.ex-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.blue-bg { background: rgba(56, 189, 248, 0.2); }
.yellow-bg { background: rgba(234, 179, 8, 0.2); }
.purple-bg { background: rgba(168, 85, 247, 0.2); }

.ex-result { font-weight: 800; font-size: 1.2rem; }
.blue-text { color: #38bdf8; }
.yellow-text { color: #fbbf24; }
.purple-text { color: #c084fc; }

/* Right Side Content */
.badge-method { background: #a855f7; color: #fbbf24; padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; }
.method-content h2 { font-size: 2.7rem; margin: 20px 0; font-weight: 800; }
.method-sub { color: #94a3b8; font-size: 0.9rem; margin-bottom: 20px; }

.m-step { display: flex; gap: 20px; margin-bottom: 20px; }
.m-num { min-width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.n-blue { background: #0ea5e9; }
.n-green { background: #22c55e; }
.n-purple { background: #a855f7; }

.m-step h4 { margin: 0 0 5px 0; font-size: 1.2rem; }
.m-step p { color: #94a3b8; margin: 0; font-size: 0.95rem; }

.pro-tip-box {
    background: rgba(234, 179, 8, 0.05);
    border: 2px solid rgba(234, 179, 8, 0.2);
    padding: 2px;
    border-radius: 15px;
    margin-top: 20px;
    color: #d1d5db;
    font-size: 0.7rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .method-grid { grid-template-columns: 1fr; }
    .method-content h2 { font-size: 2.5rem; }
}
        /* -------------------------------------------
           SECTION 4: Real-time Stats Counter
        ------------------------------------------- */
        .stats { padding: 80px 0; text-align: center; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .stat-item h2 { font-size: 3.5rem; color: var(--accent-color); margin-bottom: 10px; }
        .stat-item p { text-transform: uppercase; letter-spacing: 2px; font-weight: bold; font-size: 0.85rem; }

        /* -------------------------------------------
           SECTION 5: Our Courses (Typing + IT)
        ------------------------------------------- */
        .courses { padding: 80px 0; background: var(--secondary-bg); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; }
        
        .course-card-home {
            background: var(--primary-bg); border-radius: 24px; border: 1px solid var(--border-color); overflow: hidden; 
            transition: 0.3s; position: relative;
        }
        .course-card-home:hover { border-color: var(--correct); }
        
        .course-img-placeholder { height: 180px; background: rgba(56, 189, 248, 0.05); display: flex; align-items: center; justify-content: center; }
        .course-img-placeholder i { font-size: 4rem; color: var(--accent-color); opacity: 0.5; }

        .course-body { padding: 30px; }
        .course-tag { background: rgba(34, 197, 94, 0.1); color: var(--correct); padding: 5px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: bold; }
        
        .course-card-home h3 { font-size: 1.6rem; margin: 15px 0 10px; }
        .course-card-home p { font-size: 0.95rem; }
        
        .course-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; border-top: 1px solid var(--border-color); padding-top: 20px; }
        .course-price { font-size: 1.4rem; font-weight: bold; color: #fff; }
        .btn-join { background: var(--correct); color: #000; text-decoration: none; padding: 10px 25px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
        .btn-join:hover { background: #fff; }

        /* -------------------------------------------
           SECTION 6: Call to Action (CTA)
        ------------------------------------------- */
        .cta { padding: 100px 0; text-align: center; }
        .cta-box { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); padding: 80px; border-radius: 32px; border: 2px solid var(--accent-color); box-shadow: 0 15px 50px rgba(56, 189, 248, 0.15); }
        .cta-box h2 { font-size: 3rem; margin-top: 0; line-height: 1.1; }
        .cta-box p { font-size: 1.2rem; max-width: 600px; margin: 20px auto 40px; }

        /* -------------------------------------------
           SECTION 7: Unique & Attractive Footer
        ------------------------------------------- */
        .footer { padding: 80px 0 30px; background: #080b12; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
        
        .footer-logo span { font-size: 1.5rem; font-weight: 800; color: #fff; }
        .footer-brand { margin-top: 15px; }
        .footer-brand p { font-size: 0.9rem; }
        
        .footer-section h4 { text-transform: uppercase; color: #fff; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 25px; }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
        
        .social-box { display: flex; gap: 15px; margin-top: 20px; }
        .social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-dim); text-decoration: none; transition: 0.3s; }
        .social-icon:hover { background: var(--accent-color); color: #000; transform: scale(1.1); }
        
        .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; color: var(--text-dim); font-size: 0.9rem; }
        .contact-item i { margin-top: 4px; color: var(--accent-color); }

        .copyright { text-align: center; border-top: 1px solid var(--border-color); padding-top: 30px; font-size: 0.85rem; color: #475569; }
   /* ===== FLOATING WA ===== */
    #float-wa {
      position: fixed; bottom: 26px; right: 26px; z-index: 998;
      width: 60px; height: 60px; border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(34,197,94,0.5);
      text-decoration: none;
      animation: waBounce 3s ease-in-out infinite;
      transition: transform 0.2s;
    }
    #float-wa:hover { transform: scale(1.12); }
    #float-wa i { color: #fff; font-size: 28px; }
    .wa-tooltip {
      position: absolute; right: 70px; bottom: 10px;
      background: #0f172a; color: #fff;
      padding: 7px 14px; border-radius: 8px;
      font-size: 12px; font-weight: 600; white-space: nowrap;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s;
    }
    #float-wa:hover .wa-tooltip { opacity: 1; }
        /* -------------------------------------------
           Responsive Queries (Mobile Fix)
        ------------------------------------------- */
        @media (max-width: 968px) {
            .navbar { padding: 10px 0; }
            .nav-links, .btn-navbar { display: none; }
            
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.1rem; }
            
            .feature-grid, .stats-grid, .course-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .cta-box { padding: 40px; }
            .cta-box h2 { font-size: 2rem; }
        }
        @media (max-width: 600px) {
            .feature-grid, .stats-grid, .course-grid, .footer-grid { grid-template-columns: 1fr; gap: 20px; }
            .hero h1 { font-size: 2.2rem; }
        }
        
       /* Sidebar Styles */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* छुपा हुआ */
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff; /* सफ़ेद बैकग्राउंड जैसा WebMaker SEO में है */
    z-index: 9999; /* सबसे ऊपर */
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.nav-menu.active {
    right: 0;
}
/* डेस्कटॉप पर Hamburger Icon को छुपाएं */
.menu-toggle {
    display: none; /* यह डिफॉल्ट रूप से छुपा रहेगा */
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* मोबाइल और टैबलेट स्क्रीन के लिए (Media Query) */
@media (max-width: 968px) {
    .menu-content {
        display: none; /* डेस्कटॉप वाले सीधे लिंक्स को मोबाइल पर छुपाएं */
    }

    .menu-toggle {
        display: block; /* सिर्फ छोटी स्क्रीन पर 3-बार दिखेगा */
    }
    
    /* बाकी का मोबाइल मेनू लॉजिक यहाँ रहेगा */
}
/* Background Overlay (काली लेयर) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(4px);
}

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

/* Mobile Header inside Menu */
.nav-header-mobile {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.nav-header-mobile .logo span { color: #0f172a; font-weight: 800; }

.close-menu {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    cursor: pointer;
}

/* Mobile Links Styling */
.nav-links-mobile {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.nav-links-mobile a {
    color: #334155 !important;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f8fafc;
}

.nav-links-mobile a i {
    width: 20px;
    color: #38bdf8;
}

.btn-signup-mobile {
    background: #38bdf8;
    color: #fff !important;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    justify-content: center;
}

/* डेस्कटॉप पर 'Login' अलग से दिखे या न दिखे */
.mobile-only {
    display: none;
}