       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
           font-family: "Times New Roman", Times, serif;
       }

       header {
           background: white;
           height: 60px;
           padding: 0 20px;
           padding-left: 10px;
           border-bottom: 1px solid #d1d5db;
           width: 100%;
           display: flex;
           align-items: center;
           justify-content: space-between;
           position: fixed;
           top: 0;
           z-index: 1000;
       }

       .logo-area {
           display: flex;
           align-items: center;
           gap: 8px;
           font-weight: bold;
           font-size: 1.3rem;
           color: #2c3e50;
           min-width: fit-content;
       }

       nav {
           display: flex;
           gap: 20px;
       }

       nav a {
           text-decoration: none;
           color: #555;
           font-size: 18px;
       }

       .search-container {
           flex-grow: 0.4;
           display: flex;
           background: #f0f2f5;
           border-radius: 20px;
           padding: 5px 15px;
       }

       .search-container input {
           border: none;
           background: transparent;
           outline: none;
           padding: 5px;
           width: 100%;
       }

       .search-container i {
           color: #888;
           align-self: center;
       }

       header img {
           width: 30px;
           height: 30px;
           transform: skewX(-12deg);
       }

       .header-actions {
           display: flex;
           align-items: center;
           gap: 20px;
           min-width: fit-content;
       }

       .icon-btn {
           font-size: 1.2rem;
           color: #555;
           cursor: pointer;
           position: relative;
       }

       .auth-btns {
           display: flex;
           gap: 10px;
       }

       .btn {
           padding: 8px 18px;
           border-radius: 5px;
           border: none;
           cursor: pointer;
           font-size: 0.9rem;
           font-weight: 500;
       }

       .btn-signin {
           background: transparent;
           border: 1px solid #3776ab;
           color: #3776ab;
       }

       .btn-login {
           background: #3776ab;
           color: white;
       }

       .btn-dashboard {
           background: #3776ab;
           color: white;
           text-decoration: none;
       }

       /* 🔔 Bell Fix: Fixed se hata kar Relative kiya */
       #bellBtn {
           position: relative;
           font-size: 25px;
           cursor: pointer;
           display: flex;
           align-items: center; 
       }

       #bellBadge {
           position: absolute;
           top: -2px;
           right: -2px;
           background: #ef4444;
           color: white;
           font-size: 10px;
           padding: 2px 5px;
           border-radius: 50%;
           border: 2px solid white;
       }

       .auth-btns {
           display: flex;
           gap: 8px;
       }

       #notificationBox {
           position: absolute;
           top: 55px;
           right: 20px;
           width: 300px;
           background: white;
           border-radius: 12px;
           box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
           display: none;
           flex-direction: column;
           border: 1px solid #eee;
       }

       .box-header {
           padding: 10px;
           border-bottom: 1px solid #ddd;
           display: flex;
           justify-content: space-between;
       }

       #notificationList {
           max-height: 400px;
           overflow-y: auto;
       }

       .notification-item {
           padding: 10px;
           border-bottom: 1px solid #eee;
           cursor: pointer;
       }

       .notification-item:hover {
           background: #f9fafb;
       }

       .empty {
           padding: 20px;
           text-align: center;
           color: gray;
       }

       /* course section */

       .courses {
           height: 30px;
           width: 100%;
           position: fixed;
           background: #f8fafc;
           display: flex;
           overflow-x: auto;
           align-items: center;
           gap: 10px;
           border: 2px solid #d1d5db;
           border-top: none;
           margin-top: 60px;
           scrollbar-width: none;
           z-index: 999;
       }

       .courses a {
           padding: 3px;
           text-decoration: none;
           background: #e5e7eb;
           margin-left: 5px;
           color: black;
           border-radius: 3px;
       }



       /* --- Hero Section Main Layout --- */
.hero-section {
    display: flex;
    justify-content: space-between;
    padding: 100px 20px 40px 20px; /* Thoda side breathing space */
    gap: 40px;
    background-color: #ffffff;
}

.hero-content {
    width: 550px;
}

/* --- Left Side: Text Content --- */
.badge {
    background: #eef2ff;
    color: #2e78b8;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px; /* Image ke hisaab se normal rakha hai */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 42px; /* Thoda crisp look */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a40;
}

.hero-content p {
    font-size: 18px;
    color: #52525b; /* Thoda dark grey taaki clear dikhe */
    line-height: 1.6;
    text-align: left; /* Justify se web par gap aa jate hain, left clean lagta hai */
    margin-bottom: 35px;
}

/* --- Left Side: Stats Box --- */
.stats-box {
    background: #e0f7fa;
    padding: 25px 35px;
    border-radius: 12px;
    display: inline-flex;
    gap: 40px;
}

.stat-item h4 {
    font-size: 24px;
    color: #006064;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: #00838f;
    margin-bottom: 0;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase; /* Chote text mein caps acha lagta hai */
}

/* --- Right Side: Dashboard Card --- */
.dashboard-card {
    width: calc(100% - 600px);
    background: white;
    padding: 30px;
    border-radius: 9px;
    border: 1px solid #f0f0f5; 
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h2 {
    font-size: 20px;
    color: #1a1a40;
    font-weight: 700;
}

.chapter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: 0.2s ease-in-out;
}

.chapter-item:hover {
    border-color: #2e78b8;
    background: #f8fbff;
}

.chapter-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 38px;
    height: 38px;
    background: #2e78b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
}

.chapter-title h4 {
    font-size: 15px;
    color: #1a1a40;
    margin: 0;
    font-weight: 600;
}

.chapter-title p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* --- Action Buttons --- */
.btn-practice {
    background: #00f2c3; 
    color: #004d40;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-locked {
    background: #f3f4f6;
    color: #9ca3af;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

 




       .features-section {
        width: 100%; 
        padding-left: 10px;
        padding-right: 10px;
           background-color:  rgb(217 217 217 / 5%);           font-family: 'Arial', sans-serif;  
           text-align: center;
       }

       .section-title {
           font-size: 2rem;
           color: #1a202c;
           margin-bottom: 40px;
           font-weight: 800;
       }
.fea-hea {
    width: 100%;
    height: 60px;  
    background: #fdfdfe; /* Light premium background */
    border-top: 1px solid #f0f0f5;
    border-bottom: 1px solid #f0f0f5;
    display: flex;
    justify-content: space-between; /* Content ko dono corners pe spread karne ke liye */
    align-items: center;
    padding: 15px 5%; /* Side mein space ke liye */
    padding-left: 5px;
    margin-bottom: 30px;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.01); /* Halka depth effect */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-badge {
    background: #00f2c3; /* Green accent */
    color: #004d40;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a40;
    margin: 0;
}

.header-right p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}
 
       .features-grid {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
           gap: 20px; 
       }

       .feature-card {
           background: #ffffff;
           padding: 30px;
           border-radius: 15px; 
           text-align: left; 
           border: 2px solid #f0f4f8;
       } 
       .feature-card h3 {
           color: #1a202c;
           margin-bottom: 15px;
           font-size: 1.4rem;
       }

       .feature-card p {
           color: #4a5568;
           line-height: 1.6;
           margin-bottom: 25px;
           font-size: 0.95rem;
       }

       .btn-link {
           color: #00f5d4;
           /* Matching the Teal/Cyan from your image */
           text-decoration: none;
           font-weight: bold;
           font-size: 1rem;
       }

       .btn-link:hover {
           text-decoration: underline;
       }




      /* --- Dash Dashboard Container Setup --- */
.dash-dashboard-container {
    display: flex;
    min-height: 90vh;
    background: #f8fafc;
    font-family: 'Segoe UI', sans-serif;
}

/* --- Dash Sidebar Styling --- */
.dash-sidebar {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.dash-user-profile {
    text-align: center;
    margin-bottom: 40px;
}

.dash-avatar {
    width: 70px;
    height: 70px;
    background: #00f5d4; /* Theme Teal Color */
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.5rem;
}

.dash-nav-links {
    display: flex;
    flex-direction: column;
}

.dash-nav-links a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #4a5568;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.dash-nav-links a:hover, 
.dash-nav-links a.dash-active {
    background: #e6fffa;
    color: #00a896;
}

.dash-icon { 
    margin-right: 12px; 
}

/* --- Dash Main Content Area --- */
.dash-main-content { 
    flex: 1; 
    padding: 40px; 
    background: #f8fafc;
}

/* --- 🔒 Dash Login Banner Style --- */
.dash-login-alert-banner {
    background: #e6fffa; /* Light Teal */
    border: 1px solid #00f5d4;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dash-auth-buttons {
    display: flex;
    gap: 10px;
}

.dash-auth-buttons button {
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: 0.2s;
}

.dash-btn-login { 
    background: transparent; 
    color: #00a896; 
    border: 1px solid #00a896 !important; 
}

.dash-btn-signup { 
    background: #1a202c; 
    color: #fff; 
}

.dash-btn-signup:hover {
    background: #2d3748;
}

/* --- Dash Stats Grid & Cards --- */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: 0.3s;
}

.dash-stat-card.dash-locked { 
    opacity: 0.7; 
    filter: blur(0.5px); 
    background: #fafbfc;
}

/* --- Dash Content Boxes --- */
.dash-content-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.dash-bottom-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* --- Dash Utility & Lists --- */
.dash-lock-text { 
    color: #64748b; 
    font-size: 0.9rem; 
    margin-top: 10px; 
}

.dash-list-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 12px 0; 
    border-bottom: 1px solid #f8fafc; 
}

.dash-placeholder-line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    width: 100%;
    margin: 15px 0;
}









    .python-roadmap-section {
        width: 100%;
        background-color: #ffffff;
        padding: 100px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .roadmap-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .roadmap-header {
        text-align: center;
        margin-bottom: 30px; 
    }

    .roadmap-tag {
        color: #00d1b2;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .roadmap-header h2 {
        font-size: 36px;
        color: #1a202c;
        margin: 15px 0;
        font-weight: 800;
    }

    .roadmap-header p {
        color: #718096;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Flow Layout */
    .roadmap-flow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
    }

    .roadmap-box {
        display: flex;
        align-items: center;
    }

    .roadmap-card {
        background: #ffffff;
        border: 1px solid #edf2f7;
        padding: 35px 25px;
        border-radius: 20px;
        text-align: center;
        width: 250px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    .roadmap-card:hover {
        transform: translateY(-8px);
        border-color: #00d1b2;
        box-shadow: 0 20px 25px -5px rgba(0, 209, 178, 0.1);
    }

    .roadmap-card.highlight {
        background: #f0fffb;
        border: 1px dashed #00d1b2;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        background: #f7fafc;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

    .roadmap-card h3 {
        font-size: 18px;
        color: #2d3748;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .roadmap-card p {
        font-size: 14px;
        color: #718096;
        line-height: 1.5;
    }

    /* Arrow Styling */
    .roadmap-arrow {
        width: 50px;
        display: flex;
        justify-content: center;
        opacity: 0.3;
    }

    .roadmap-arrow svg {
        width: 30px;
        fill: #4a5568;
    }

    .roadmap-footer {
        text-align: center;
        margin-top: 60px;
    }

    .start-course-btn {
        background-color: #1a202c;
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .start-course-btn:hover {
        background-color: #00d1b2;
        transform: scale(1.05);
    }
 



    
    .coming-soon-light {
        width: 100%;
        background-color: #fcfdfe; /* बहुत हल्का और साफ़ बैकग्राउंड */
        padding: 90px 0;
        font-family: 'Segoe UI', sans-serif;
    }

    .cs-wrapper {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .cs-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .cs-badge {
        color: #00d1b2;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .cs-header h2 {
        font-size: 34px;
        color: #1a202c;
        margin: 15px 0;
        font-weight: 800;
    }

    .cs-line {
        width: 50px;
        height: 4px;
        background: #00d1b2;
        margin: 0 auto 20px;
        border-radius: 10px;
    }

    .cs-header p {
        color: #718096;
        font-size: 17px;
    }

    .cs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .cs-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid #edf2f7;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .cs-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 209, 178, 0.1);
        border-color: #00d1b2;
    }

    .cs-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 50px;
        background: #f7fafc;
        color: #718096;
        border: 1px solid #e2e8f0;
    }

    .cs-tag.highlight {
        background: rgba(0, 209, 178, 0.1);
        color: #00d1b2;
        border-color: rgba(0, 209, 178, 0.2);
    }

    .cs-icon-circle {
        width: 60px;
        height: 60px;
        background: #f0fffb;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        margin-bottom: 25px;
    }

    .cs-card h3 {
        font-size: 19px;
        color: #2d3748;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .cs-card p {
        font-size: 14.5px;
        color: #718096;
        line-height: 1.6;
        margin: 0;
    }

    .cs-footer {
        margin-top: 50px;
        text-align: center;
    }

    .suggestion-pill {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: #ffffff;
        padding: 12px 25px;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .suggestion-pill span { color: #718096; font-size: 14px; }

    .suggestion-pill button {
        background: none;
        border: none;
        color: #00d1b2;
        font-weight: 700;
        cursor: pointer;
        font-size: 14px;
        padding: 0;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .cs-wrapper { padding: 0 20px; }
        .cs-grid { grid-template-columns: 1fr; }
    }




    
    :root {
    --accent: #00f5d4;
    --bg-light: #f8fafc;
    --dark: #1a202c;
    --text-muted: #64748b;
}

.pro-projects-section {
    padding: 40px 0;
}

.project-intro { margin-bottom: 30px; text-align: left; }
.glow-text { font-size: 24px; font-weight: 800; color: var(--dark); }

/* Glassmorphism Card */
.project-glass-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

/* Sidebar Styling */
.project-meta {
    background: #fcfdfe;
    padding: 30px;
    border-right: 1px solid #f1f5f9;
}

.meta-item { margin-bottom: 25px; }

.goal-card {
    display: flex; gap: 15px; align-items: center;
    background: #fff; padding: 15px; border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.meta-icon { font-size: 24px; }
.meta-item h4 { font-size: 13px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }

/* File Tree */
.tree { list-style: none; padding-left: 5px; font-family: 'Fira Code', monospace; font-size: 14px; }
.tree ul { list-style: none; padding-left: 20px; border-left: 1px solid #e2e8f0; margin-top: 5px; }
.active-file { color: var(--accent); font-weight: 600; }
.f-icon { margin-right: 8px; opacity: 0.7; }

/* Editor Styling */
.project-workspace { background: #fff; display: flex; flex-direction: column; }

.editor-top-bar {
    padding: 15px 25px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    display: flex; justify-content: space-between; align-items: center;
}

.tab { 
    padding: 8px 20px; background: var(--bg-light); border-radius: 10px;
    font-size: 14px; font-weight: 600; border: 1px solid #e2e8f0;
}

.btn-primary { 
    background: var(--dark); color: #fff; border: none; 
    padding: 10px 22px; border-radius: 12px; cursor: pointer; font-weight: 600;
}

.btn-secondary { 
    background: transparent; color: var(--text-muted); border: none;
    margin-right: 15px; cursor: pointer; font-size: 14px;
}

.code-area { 
    flex: 1; padding: 30px; background: #fafbfc; 
    font-family: 'Consolas', monospace; line-height: 1.6;
}

/* Code Highlighting Colors */
.keyword { color: #d53f8c; }
.func { color: #3182ce; }
.string { color: #38a169; }
.comment { color: #a0aec0; font-style: italic; }

.project-stats-footer {
    padding: 20px 30px; border-top: 1px solid #f1f5f9;
    display: flex; gap: 30px; font-size: 13px; color: var(--text-muted);
}









    .game-learning-section {
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f0fffb 100%);
        padding: 100px 0;
        font-family: 'Segoe UI', Tahoma, sans-serif;
        overflow: hidden;
    }

    .gl-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .gl-wrapper {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    /* Left Side Visuals */
    .gl-visual {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .game-mockup {
        width: 250px;
        height: 400px;
        position: relative;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 40px 0;
        gap: 50px;
    }

    .path-line {
        position: absolute;
        width: 2px;
        height: 70%;
        border-left: 2px dashed #cbd5e1;
        z-index: 1;
    }

    .level-node {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        z-index: 2;
        color: #94a3b8;
    }

    .level-node.completed {
        border-color: #00d1b2;
        color: #00d1b2;
    }

    .level-node.active {
        background: #ff4d4d;
        border-color: #ff4d4d;
        color: white;
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(255, 77, 77, 0.4);
    }

    .you-tag { font-size: 10px; }

    .stats-mini-card {
        position: absolute;
        bottom: 20px;
        right: -20px;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        width: 180px;
    }

    .stat-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .val.green { color: #00d1b2; font-weight: bold; }

    /* Right Side Content */
    .gl-content { flex: 1; }

    .gl-badge {
        color: #00d1b2;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .gl-content h2 {
        font-size: 38px;
        color: #1e293b;
        margin: 15px 0;
        font-weight: 800;
    }

    .gl-content p {
        font-size: 17px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .gl-features {
        list-style: none;
        padding: 0;
        margin-bottom: 35px;
    }

    .gl-features li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #334155;
        font-weight: 500;
    }

    .gl-features li span { color: #00d1b2; font-weight: bold; }

    .gl-login-btn {
        background: #1e293b;
        color: white;
        padding: 16px 35px;
        border: none;
        border-radius: 12px;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .gl-login-btn:hover {
        background: #00d1b2;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 209, 178, 0.2);
    }

    .sub-text { font-size: 13px !important; margin-top: 10px; color: #94a3b8 !important; }
 








    
    :root {
        --primary-teal: #00d1b2;
        --dark-bg: #1a202c;
        --text-gray: #4a5568;
        --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .python-journey-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 40px 20px;
        background-color: #ffffff;
        border-radius: 12px;
        margin: 20px auto;
        max-width: 1000px;
    }

    .journey-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .journey-header h2 {
        font-size: 28px;
        color: var(--dark-bg);
        margin-bottom: 10px;
    }

    .journey-header p {
        color: var(--text-gray);
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 30px;
        border: 1px solid #edf2f7;
        border-radius: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        background: #fff;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow);
    }

    .step-card.highlight {
        border: 2px solid var(--primary-teal);
    }

    .step-number {
        font-size: 40px;
        font-weight: 800;
        color: rgba(0, 209, 178, 0.1);
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .step-card h3 {
        color: var(--dark-bg);
        margin-bottom: 15px;
        font-size: 20px;
    }

    .step-card p {
        color: var(--text-gray);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .step-link {
        color: var(--primary-teal);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }

    .journey-footer {
        text-align: center;
    }

    .cta-button {
        background-color: var(--dark-bg);
        color: white;
        padding: 12px 35px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cta-button:hover {
        background-color: #2d3748;
    }






    
    .support-community-section {
        width: 100%;
        background-color: #f8fafc;
        padding: 90px 0;
        font-family: 'Segoe UI', Tahoma, sans-serif;
    }

    .support-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .support-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .support-badge {
        color: #00d1b2;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .support-header h2 {
        font-size: 36px;
        color: #1a202c;
        margin: 15px 0;
        font-weight: 800;
    }

    .support-header p {
        color: #64748b;
        font-size: 18px;
    }

    .support-grid {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }

    .support-box {
        flex: 1;
        background: white;
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border: 1px solid #edf2f7;
    }

    .box-header h3 {
        font-size: 22px;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .box-header p {
        color: #94a3b8;
        font-size: 14px;
        margin-bottom: 30px;
    }

    /* Ranker List Items */
    .ranker-list { display: flex; flex-direction: column; gap: 15px; }

    .ranker-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: #fcfdfe;
        border: 1px solid #f1f5f9;
        border-radius: 15px;
        transition: 0.3s;
    }

    .ranker-item:hover {
        transform: translateX(10px);
        border-color: #00d1b2;
    }

    .ranker-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #475569;
        border: 3px solid transparent;
    }

    .gold-border { border-color: #fbbf24; }
    .silver-border { border-color: #cbd5e1; }
    .bronze-border { border-color: #d97706; }

    .ranker-info { flex: 1; }
    .ranker-info h4 { margin: 0; font-size: 15px; color: #1e293b; }
    .ranker-info span { font-size: 12px; color: #94a3b8; }

    .chat-btn {
        background: white;
        border: 1px solid #00d1b2;
        color: #00d1b2;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .chat-btn:hover { background: #00d1b2; color: white; }

    /* Expert Box Styling */
    .experts {
        background: linear-gradient(145deg, #ffffff, #f0fffb);
        border: 2px solid #00d1b2;
        text-align: center;
    }

    .expert-visual {
        margin-bottom: 25px;
        position: relative;
    }

    .expert-badge {
        background: #22c55e;
        color: white;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 15px;
    }

    .expert-icons { font-size: 40px; }

    .expert-content p { color: #64748b; font-size: 15px; margin: 20px 0; }

    .support-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .support-link {
        text-decoration: none;
        color: #475569;
        font-size: 14px;
        font-weight: 600;
    }

    .ticket-btn {
        width: 100%;
        background: #1a202c;
        color: white;
        padding: 16px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .ticket-btn:hover { background: #00d1b2; transform: translateY(-3px); }
 




    
    .syllabus-cta-section {
        width: 100%;
        background-color: #f8fafc; /* हल्का ग्रे बैकग्राउंड */
        padding: 80px 0;
        font-family: 'Segoe UI', sans-serif;
        border-top: 1px solid #edf2f7;
        border-bottom: 1px solid #edf2f7;
    }

    .syllabus-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .syllabus-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        background: white;
        padding: 50px;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    }

    /* Left Side */
    .syllabus-text-area {
        flex: 1.5;
    }

    .step-badge {
        color: #00d1b2;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 1.5px;
        display: block;
        margin-bottom: 15px;
    }

    .syllabus-text-area h2 {
        font-size: 34px;
        color: #1e293b;
        margin-bottom: 20px;
        font-weight: 800;
        line-height: 1.2;
    }

    .highlight-teal {
        color: #00d1b2;
    }

    .syllabus-text-area p {
        color: #64748b;
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .syllabus-features {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .feat {
        font-size: 14px;
        color: #334155;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .feat span {
        color: #00d1b2;
        font-weight: bold;
    }

    /* Right Side */
    .syllabus-action-area {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .syllabus-book-icon {
        width: 100px;
        height: 120px;
        background: #1e293b;
        border-radius: 8px 15px 15px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
        transform: rotate(5deg);
        transition: 0.3s;
    }

    .syllabus-content:hover .syllabus-book-icon {
        transform: rotate(0deg) scale(1.1);
    }

    .book-cover {
        width: 100%;
        text-align: center;
        border-left: 4px solid rgba(255,255,255,0.1);
        height: 80%;
    }

    .py-logo {
        color: #00d1b2;
        font-weight: 900;
        font-size: 24px;
        font-family: monospace;
    }

    .view-syllabus-btn {
        background: #1e293b;
        color: white;
        padding: 18px 35px;
        border: none;
        border-radius: 15px;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2);
    }

    .view-syllabus-btn:hover {
        background: #00d1b2;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 209, 178, 0.3);
    }


    








    
    .testimonials-full-width {
        width: 100%;
        background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
        padding: 100px 0;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    .testimonial-wrapper {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .section-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .badge-teal {
        background: rgba(0, 209, 178, 0.1);
        color: #00d1b2;
        padding: 6px 15px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-intro h2 {
        font-size: 36px;
        color: #1e293b;
        margin-top: 15px;
        font-weight: 800;
    }

    .divider {
        width: 50px;
        height: 4px;
        background: #00d1b2;
        margin: 15px auto;
        border-radius: 10px;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .student-card {
        background: #ffffff;
        padding: 40px;
        border-radius: 24px;
        border: 1px solid #e2e8f0;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    }

    .student-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px -10px rgba(0, 209, 178, 0.15);
        border-color: #00d1b2;
    }

    .student-card.featured {
        background: #ffffff;
        border: 2px solid #00d1b2;
    }

    .quote-icon {
        font-size: 60px;
        color: rgba(0, 209, 178, 0.1);
        position: absolute;
        top: 10px;
        left: 25px;
        font-family: serif;
    }

    .feedback {
        color: #475569;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        font-style: italic;
    }

    .student-profile {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
    }

    .details h4 {
        margin: 0;
        color: #1e293b;
        font-size: 16px;
    }

    .details span {
        font-size: 13px;
        color: #94a3b8;
    }

    .testimonial-footer {
        text-align: center;
        margin-top: 60px;
    }

    .testimonial-footer p {
        color: #64748b;
        margin-bottom: 20px;
    }

    .join-btn {
        background-color: #1e293b; /* आपके 'Sign Up' बटन जैसा डार्क कलर */
        color: white;
        padding: 14px 35px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .join-btn:hover {
        background-color: #00d1b2;
        transform: scale(1.05);
    }


    





    /* --- Main Section Container --- */
.grow-section {
    padding: 60px 40px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    font-family: 'Segoe UI', sans-serif;
}

/* --- Header Styling --- */
.grow-header {
    text-align: center;
    margin-bottom: 40px;
}

.grow-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c; /* Dashboard headings color */
    margin: 0;
}

.grow-sub-title {
    font-size: 16px;
    color: #64748b; /* Soft grey text */
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Card Row & Layout --- */
.grow-row {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
 
.grow-margin-top {
    margin-top: 20px;
}

.grow-flex-1 { flex: 1; }
.grow-flex-2 { flex: 2; }
 
/* Har card ki width fix karein */
.grow-card {
    flex: 1; /* Ye teeno cards ko barabar jagah dega */
    min-width: 0; /* Important: flex-item ko shrink hone deta hai */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s ease;
}


.grow-card:hover {
    border-color: #00f5d4; /* Teal hover effect */
    transform: translateY(-3px);
}

.grow-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.grow-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* --- Progress Bar (Matches Dashboard) --- */
.grow-level-text {
    font-weight: 600;
    color: #00a896 !important;
    margin-bottom: 10px !important;
}

.grow-progress-bg {
    background: #e6fffa; /* Light teal background */
    height: 10px;
    border-radius: 50px;
    margin-top: 15px;
    overflow: hidden;
}

.grow-progress-bar {
    width: 75%;
    height: 100%;
    background: #00f5d4; /* Main teal color from image */
    border-radius: 50px;
}

/* --- Final CTA Button --- */
.grow-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

.grow-btn-continue {
    padding: 14px 30px;
    background: #1a202c; /* Black button like "Sign Up Free" */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.grow-btn-continue:hover {
    background: #2d3748;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
