/* =========================================
   BODY
========================================= */

body{

    margin:0;

    font-family:Arial;

    transition:0.3s;

    background:var(--bg-color);

    color:var(--text-color);

}

/* =========================================
   DARK THEME
========================================= */

body.dark{

    background:
    linear-gradient(to bottom right,
    #0f172a,
    #111827,
    #1e293b);

    color:white;

}


/* =========================================
   LIGHT THEME
========================================= */

body.light{

    background:#f5f7ff;

    color:#111827;

}



/* =========================================
   NAVBAR
========================================= */

.navbar{

    height:80px;

    background:var(--card-color);

    border-bottom:1px solid var(--border-color);

    backdrop-filter:blur(100px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-left:70px;

    padding-right:70px;

    box-shadow:0px 0px 10px rgba(0,0,0,0.08);

    position:sticky;
    
    background:rgba(255,255,255,0.95);

    top:0;

    z-index:9999;

   backdrop-filter:blur(15px);

-webkit-backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,0.15);

}

body.light .navbar{

    background:rgba(255,255,255,0.95);

}

body.dark .navbar{

    background:rgba(15,23,42,0.95);

}

/* LOGO */

.logo{

    font-size:32px;

    font-weight:bold;

    color:#2563eb;

}



/* MENU */

.menu{

    display:flex;

    gap:28px;

}



/* =========================================
   MENU LINKS
========================================= */

.menu a{

    text-decoration:none;

    color:var(--text-color);

    font-size:18px;

    font-weight:bold;

    transition:0.3s;

}


/* MENU HOVER */

.menu a:hover{

    color:#2563eb;

}



/* LOGIN BUTTON */

.login-btn{

    background-color:#2563eb;

    color:white;

    text-decoration:none;

    padding:14px 30px;

    border-radius:10px;

    font-size:18px;

    transition:0.3s;

}


/* =========================================
   THEME BUTTON
========================================= */

.theme-btn{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    color:white;

    font-size:22px;

    cursor:pointer;

    margin-right:15px;

    transition:0.3s;

    backdrop-filter:blur(10px);

}


.theme-btn:hover{

    transform:scale(1.08);

    background:rgba(255,255,255,0.15);

}


/* LOGIN BUTTON HOVER */

.login-btn:hover{

    background-color:#1d4ed8;

    transform:scale(1.05);

}



/* =========================================
   HERO SECTION
========================================= */

.hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 80px;

    min-height:520px;

    position:relative;

    overflow:hidden;

}

/* HERO GLOW EFFECT */

.hero::before{

    content:"";

    position:absolute;

    top:-150px;

    left:-150px;

    width:350px;

    height:350px;

    border-radius:50%;

    filter:blur(50px);

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    bottom:-150px;

    right:-150px;

    width:300px;

    height:300px;

    border-radius:50%;

    filter:blur(50px);

    z-index:0;

}

.hero-left,
.hero-right{

    position:relative;

    z-index:1;

}



/* LEFT SIDE */

.hero-left{

    width:50%;

}



/* TAG */

.tag{

    background-color:#eef2ff;

    color:#2563eb;

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    font-size:16px;

    font-weight:bold;

}



/* HEADING */

/* DARK HERO TITLE */

body.dark .hero-left h1{

    font-size:64px;

    color:white;

    line-height:72px;

    margin-top:20px;

    font-weight:700;

}



/* LIGHT HERO TITLE */

body.light .hero-left h1{

    font-size:64px;

    color:#111827;

    line-height:72px;

    margin-top:20px;

    font-weight:700;

}



/* BLUE TEXT */

.blue{

    color:#4f46e5;

}



/* PARAGRAPH */

/* DARK HERO PARAGRAPH */

body.dark .hero-left p{

    color:#cbd5e1;

}



/* LIGHT HERO PARAGRAPH */

body.light .hero-left p{

    color:#4b5563;

}


/* BUTTON AREA */

.btn-area{

    display:flex;

    gap:20px;

    margin-top:35px;

}



/* START BUTTON */

.start-btn{

    background-color:#2563eb;

    color:white;

    border:none;

    padding:18px 35px;

    border-radius:12px;

    font-size:20px;

    cursor:pointer;

    transition:0.3s;

}



/* START BUTTON HOVER */

.start-btn:hover{

    transform:scale(1.05);

    background-color:#1d4ed8;

}



/* DEMO BUTTON */

.demo-btn{

    background-color:white;

    border:2px solid #d1d5db;

    padding:18px 35px;

    border-radius:12px;

    font-size:20px;

    cursor:pointer;

    transition:0.3s;

}



/* DEMO BUTTON HOVER */

.demo-btn:hover{

    transform:scale(1.05);

    background-color:#f3f4f6;

}



/* USERS */

.users{

    margin-top:20px;

    display:flex;

    align-items:center;

    gap:20px;

}



/* CIRCLE */

.circle{

    width:45px;

    height:45px;

    background-color:#2563eb;

    border-radius:50%;

}



/* RIGHT SIDE */

.hero-right{

    width:52%;

    padding-top:20px;

}



/* =========================================
   TYPING CARD
========================================= */

.typing-card{

    position:relative;

    background:
    linear-gradient(
    to bottom right,
    #f8fbff,
    #eef2ff
    );

    border-radius:30px;

    padding:30px;

    min-height:400px;

    overflow:hidden;

}



/* CARD HOVER */

.typing-card:hover{

    transform:translateY(-8px);

}



/* TOP STATS */

.top-stats{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

}



/* SMALL STAT */

.stat{

    width:22%;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:15px;

    border-radius:12px;

    text-align:center;

    backdrop-filter:blur(10px);

}


/* =========================================
   TYPING TEXT
========================================= */

.typing-text{

    background:var(--card-color);

    border:1px solid var(--border-color);

    padding:25px;

    border-radius:12px;

    font-size:26px;

    line-height:42px;

    backdrop-filter:blur(10px);

     height:50px;

    overflow:hidden;
    
    overflow-y:auto;

    scroll-behavior:smooth;

    white-space:normal; 


}


/* INPUT */

.typing-input{

    width:100%;

    height:60px;

    margin-top:25px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,0.1);

    background:rgba(255,255,255,0.05);

    color:var(--text-color);

    padding-left:15px;

    font-size:20px;

}


.typing-input::placeholder{

    color:var(--paragraph-color);

}



/* =========================================
   CORRECT & WRONG
========================================= */

.correct{

    color:green;

}

.wrong{

    color:red;

}
.current{

    background-color:yellow;

    color:black;

    border-radius:4px;

}


/* =========================================
   FEATURES SECTION
========================================= */

.features{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding-left:80px;

    padding-right:80px;

    margin-top:50px;

}

/* =========================================
   FEATURE CARD
========================================= */

.feature-card{

    background:var(--card-color);

    border:1px solid var(--border-color);

    width:23%;

    padding:18px;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,0.06);

    transition:0.3s;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:15px;

    position:relative;

    overflow:hidden;

}

/* HOVER */

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(37,99,235,0.15);

}

/* =========================================
   FEATURE ICON
========================================= */

.feature-icon{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

/* ICON COLORS */

.speed-icon{

    background:#e0e7ff;

}

.accuracy-icon{

    background:#dcfce7;

}

.progress-icon{

    background:#ffedd5;

}

.language-icon{

    background:#f3e8ff;

}

/* =========================================
   CONTENT
========================================= */

.feature-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    flex:1;

}

/* TITLE */

.feature-content h2{

    font-size:20px;

    color:var(--text-color);

    margin-bottom:8px;

}

/* SMALL LINE */

.feature-line{

    width:45px;

    height:3px;

    background:#2563eb;

    border-radius:10px;

    margin-bottom:12px;

}

/* PARAGRAPH */

.feature-content p{

    color:var(--paragraph-color);

    line-height:24px;

    font-size:15px;

}

.speed-icon{
color:#2563eb;
}

.accuracy-icon{
color:#16a34a;
}

.progress-icon{
color:#ea580c;
}

.language-icon{
color:#7c3aed;
}

/* =========================================
   PREMIUM STATS BAR
========================================= */

.stats-bar{

    margin:60px 80px;

    background:linear-gradient(
    135deg,
    #4f46e5 0%,
    #3b5bff 50%,
    #2563eb 100%
    );

    border-radius:30px;

    display:flex;

    justify-content:space-around;

    align-items:center;

    padding:40px 20px;

    color:white;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(37,99,235,0.25);

    border:1px solid rgba(255,255,255,0.12);

}

/* Background Glow */

.stats-bar::before{

    content:"";

    position:absolute;

    top:-80px;

    left:-80px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,0.05);

}

.stats-bar::after{

    content:"";

    position:absolute;

    bottom:-120px;

    right:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,0.04);

}

/* =========================================
   STATS ITEM
========================================= */

.stats-item{

    text-align:center;

    position:relative;

    z-index:2;

    flex:1;

}

/* ICON */

.stats-icon{

    width:56px;

    height:56px;

    margin:0 auto 10px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    backdrop-filter:blur(10px);

}

/* NUMBER */

.stats-item h1{

    font-size:56px;

    font-weight:800;

    line-height:1;

    margin-bottom:12px;

    color:white;

    letter-spacing:-2px;

}

/* LABEL */

.stats-item p{

    font-size:15px;

    color:rgba(255,255,255,0.9);

    font-weight:500;

}

/* DIVIDER */

.stats-divider{

    width:1px;

    height:60px;

    background:rgba(255,255,255,0.25);

    margin-top:15px;

    z-index:2;

}

/* =========================================
   PROGRESS BAR
========================================= */

.progress-container{

    width:100%;

    height:12px;

    background-color:#e5e7eb;

    border-radius:20px;

    margin-bottom:25px;

    overflow:hidden;

}


.progress-bar{

    width:0%;

    height:100%;

    background:linear-gradient(to right,#4f46e5,#2563eb);

    transition:0.2s;

}

.stats-item{

    text-align:center;

}



.stats-item h1{

    font-size:56px;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:10px;

    text-shadow:0 4px 15px rgba(255,255,255,0.15);

}

.stats-item p{

    font-size:15px;

    opacity:0.9;

    font-weight:500;

    letter-spacing:0.5px;

}

/* =========================================
   PRACTICE SECTION
========================================= */

.practice-title{

    text-align:center;

    margin-top:60px;

}



.practice-title h1{

    font-size:50px;

}



/* PRACTICE CARDS */

.practice-cards{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:5px 80px;

}

/* =========================================
   DARK PRACTICE TITLE
========================================= */

body.dark .practice-box h2{

    color:white;

    margin-top:20px;

    font-size:24px;

}



/* =========================================
   LIGHT PRACTICE TITLE
========================================= */

body.light .practice-box h2{

    color:#111827;

    margin-top:20px;

    font-size:24px;

}



/* =========================================
   DARK PRACTICE PARAGRAPH
========================================= */

body.dark .practice-box p{

    color:#cbd5e1;

    line-height:22px;

    margin-top:15px;

    font-size:15px;

}



/* =========================================
   LIGHT PRACTICE PARAGRAPH
========================================= */

body.light .practice-box p{

    color:#6b7280;

    line-height:22px;

    margin-top:15px;

    font-size:15px;

}

/* PRACTICE BOX */

/* =========================================
   DARK PRACTICE BOX
========================================= */

body.dark .practice-box{

    width:23%;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:22px;

    border-radius:15px;

   text-align:left;

    backdrop-filter:blur(10px);

    box-shadow:0px 0px 15px rgba(0,0,0,0.2);

    transition:0.3s;

    cursor:pointer;

    position:relative;

}



/* =========================================
   LIGHT PRACTICE BOX
========================================= */

body.light .practice-box{

    width:23%;

    background:white;

    border:1px solid #e5e7eb;

    padding:22px;

    border-radius:15px;

    text-align:left;

    box-shadow:0px 0px 10px rgba(0,0,0,0.05);

    transition:0.3s;

    cursor:pointer;

    position:relative;

}



/* PRACTICE HOVER */

.practice-box:hover{

    transform:translateY(-10px);

    box-shadow:0px 15px 25px rgba(0,0,0,0.08);

}



/* =========================================
   CTA SECTION
========================================= */

.cta{

    margin:80px;

    background:white;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:35px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

}

/* LEFT */

.cta-left{

    display:flex;

    align-items:center;

    gap:25px;

}

/* ROCKET ICON */

.cta-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(135deg,#eff6ff,#dbeafe);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

    flex-shrink:0;

}

/* CONTENT */

.cta-content h1{

    font-size:42px;

    color:#0f172a;

    margin-bottom:10px;

}

.cta-content p{

    color:#64748b;

    font-size:18px;

    margin-bottom:20px;

}

/* FEATURES */

.cta-features{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.cta-features span{

    color:#334155;

    font-size:16px;

    font-weight:600;

}

/* RIGHT */

.cta-right{

    text-align:center;

}

/* BUTTON */

.cta-btn{

    background:linear-gradient(135deg,#4f46e5,#2563eb);

    color:white;

    border:none;

    padding:18px 40px;

    border-radius:14px;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;

    box-shadow:0 10px 25px rgba(37,99,235,0.25);

}

.cta-btn:hover{

    transform:translateY(-3px);

}

/* SMALL TEXT */

.cta-right small{

    display:block;

    margin-top:15px;

    color:#64748b;

    font-size:15px;

}



/* =========================================
   PREMIUM FOOTER
========================================= */

.footer{

    background:linear-gradient(
    135deg,
    #081224,
    #0f172a,
    #081224);

    color:white;

    display:flex;

    justify-content:space-between;

    gap:50px;

    padding:70px 80px;

    border-top:3px solid #2563eb;

}

/* LOGO AREA */

.footer-logo{

    width:30%;

}

.footer-logo h1{

    font-size:48px;

    color:#2563eb;

    margin-bottom:20px;

}

.footer-logo p{

    color:#cbd5e1;

    line-height:32px;

}

.footer-trust{

    margin-top:20px;

    font-weight:600;

}

/* LINKS */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-links h2{

    color:white;

    margin-bottom:15px;

    position:relative;

}

.footer-links h2::after{

    content:"";

    display:block;

    width:40px;

    height:3px;

    background:#2563eb;

    margin-top:8px;

    border-radius:5px;

}

.footer-links a{

    text-decoration:none;

    color:#cbd5e1;

    transition:0.3s;

}

.footer-links a:hover{

    color:white;

    transform:translateX(5px);

}

/* SOCIAL */

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.1);

    transition:0.3s;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:#2563eb;

}

/* NEWSLETTER */

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    padding:15px;

    border:none;

    outline:none;

    width:220px;

    border-radius:10px 0 0 10px;

}

.newsletter button{

    border:none;

    background:#2563eb;

    color:white;

    padding:0 20px;

    border-radius:0 10px 10px 0;

    cursor:pointer;

}

/* COPYRIGHT */

.footer-bottom{

    background:#081224;

    color:#94a3b8;

    text-align:center;

    padding:25px;

    border-top:1px solid rgba(255,255,255,0.08);

}

/* =========================================
   SHOWCASE CARD
========================================= */

.typing-card{

    position:relative;

    background:

    linear-gradient(
    to bottom right,
    #f8fbff,
    #eef2ff
    );

    border-radius:30px;

    padding:40px;

    min-height:420px;

    overflow:hidden;

}



/* =========================================
   LIVE BADGE
========================================= */

.live-badge{

    display:inline-block;

    background:#e0ecff;

    color:#2563eb;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;

}



/* =========================================
   SHOWCASE TITLE
========================================= */

.showcase-title{

    font-size:42px;

    line-height:50px;

    color:#0f172a;

    margin:0;

    width:60%;

}



/* =========================================
   SHOWCASE TEXT
========================================= */

.showcase-text{

    margin-top:20px;

    color:#475569;

    font-size:20px;

    line-height:34px;

}



/* =========================================
   MINI CARD
========================================= */

.mini-card{

    position:absolute;

    right:25px;

    width:140px;

    background:white;

    border-radius:18px;

    padding:8px 12px;

    box-shadow:
    0px 8px 20px rgba(0,0,0,0.08);

}



/* =========================================
   CARD TEXT
========================================= */

.mini-card span{

    color:#64748b;

    font-size:14px;

    font-weight:600;

}


.mini-card h3{

    margin-top:10px;

    font-size:32px;

    color:#0f172a;

}



/* =========================================
   CARD POSITIONS
========================================= */

.speed-card{
    top:40px;
}

.accuracy-card{
    top:160px;
}

.progress-card{
    top:280px;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.bottom-note{

    position:absolute;

    bottom:20px;

    left:50%;

    transform:translateX(-50%);

    background:#dbeafe;

    color:#1e293b;

    padding:16px 28px;

    border-radius:18px;

    font-size:16px;

    font-weight:600;

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        height:auto;

        padding:20px;

        gap:20px;

    }

    .menu{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

    }

    .hero{

        flex-direction:column;

        padding:20px;

    }

    .hero-left{

    width:100%;

}

.hero-right{

    width:100%;

    margin-top:40px;

}

.hero-left h1{

    font-size:42px;

    line-height:48px;

}

.hero-left p{

    font-size:20px;

    line-height:32px;

}

    .btn-area{

        flex-direction:column;

    }

    .start-btn,
    .demo-btn{

        width:100%;

    }

    .features{

        flex-direction:column;

        padding:30px;

    }

    .feature-card{

        width:100%;

    }

    .stats-bar{

        flex-direction:column;

        gap:25px;

    }

    .practice-cards{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    padding:20px;

}

body.dark .practice-box,
body.light .practice-box{

 width:auto;

}

    .cta{

        flex-direction:column;

        gap:25px;

        text-align:center;

    }

    .footer{

        flex-direction:column;

        gap:30px;

    }

}

/* =========================================
   LOGIN MODAL
========================================= */

.login-modal{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100vh;

    background:rgba(15,23,42,0.72);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:center;

    align-items:center;

    visibility:hidden;

    opacity:0;

    transition:0.3s;

    z-index:999999;

}



/* =========================================
   LOGIN BOX
========================================= */

.login-box{

    width:420px;

    background:white;

    border-radius:28px;

    padding:45px;

    position:relative;

    box-shadow:

    0px 20px 45px rgba(0,0,0,0.18);

    transform:scale(0.85);

}



/* =========================================
   CLOSE BUTTON
========================================= */

.close-login{

    position:absolute;

    top:18px;

    right:22px;

    width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:12px;

    background:#f1f5f9;

    cursor:pointer;

    font-size:20px;

}



/* =========================================
   TITLE
========================================= */

.login-box h1{

    margin-top:0;

    font-size:42px;

    color:#111827;

}



/* =========================================
   TEXT
========================================= */

.login-box p{

    color:#6b7280;

    line-height:1.7;

    margin-bottom:30px;

}



/* =========================================
   INPUTS
========================================= */

.login-box input{

    width:100%;

    height:58px;

    border:none;

    background:#f8fafc;

    border-radius:14px;

    padding:0 18px;

    font-size:16px;

    margin-bottom:18px;

    box-sizing:border-box;

}



/* =========================================
   LOGIN BUTTON
========================================= */

.login-box button{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:#2563eb;

    color:white;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;

}



.login-box button:hover{

    background:#4f46e5;

}



/* =========================================
   GOOGLE LOGIN
========================================= */

.google-login{

    margin-top:18px;

    height:58px;

    border-radius:14px;

    border:1px solid #e5e7eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:600;

    cursor:pointer;

  color:inherit;

}

/* DARK THEME FIX */

body.dark .google-login{

    color:#111827;

}

.footer-links a{

    display:block;

    color:#d1d5db;

    text-decoration:none;

    margin:12px 0;

}

.footer-links a:hover{

    color:white;

}

/* =========================================
   LEARN SECTION
========================================= */

.learn-section{

    width:90%;
    max-width:1200px;

    margin:60px auto;

    background:white;

    border-radius:24px;

    padding:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}

.learn-left{

    flex:1;

}

.learn-badge{

    background:#eef2ff;

    color:#4f46e5;

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

    font-weight:600;

}

.learn-left h2{

    margin-top:20px;

    font-size:42px;

}

.learn-left h3{

    color:#4f46e5;

    margin-top:10px;

    font-size:28px;

}

.learn-left p{

    margin-top:20px;

    color:#64748b;

    line-height:1.8;

}

.learn-btn{

    margin-top:25px;

    background:#4f46e5;

    color:white;

    border:none;

    padding:14px 28px;

    border-radius:12px;

    font-size:16px;

    cursor:pointer;

}

.learn-section{

background:#ffffff;

border-radius:28px;

padding:50px;

display:grid;

grid-template-columns:
1fr 1fr;

gap:50px;

align-items:center;

box-shadow:
0 10px 30px rgba(0,0,0,.05);

}

.journey-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;

}

.journey-item{

text-align:center;

}

.journey-icon{

width:70px;
height:70px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

margin:auto;

font-size:24px;
font-weight:700;

}

.green{
background:#dcfce7;
color:#16a34a;
}

.blue{
background:#dbeafe;
color:#2563eb;
}

.yellow{
background:#fef3c7;
color:#d97706;
}

.pink{
background:#fce7f3;
color:#db2777;
}

.purple{
background:#ede9fe;
color:#7c3aed;
}

.mint{
background:#dcfce7;
color:#16a34a;
}

/* MOBILE */

@media(max-width:768px){

.learn-section{

    grid-template-columns:1fr;

    text-align:center;

    padding:25px;

    gap:25px;

}

.learn-left h2{

    font-size:32px;

}

.learn-left h3{

    font-size:22px;

}

.journey-grid{

    grid-template-columns:1fr 1fr;

}
   
}

#userInfo{
color:inherit;
font-weight:600;
margin-left:15px;
}


.card-arrow{

    position:absolute;

    top:22px;

    right:22px;

    font-size:28px;

    color:#2563eb;

    font-weight:bold;

}

.english-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#eef4ff;

    color:#2563eb;

    font-size:42px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.card-cta{

    margin-top:20px;

    color:#2563eb;

    font-weight:600;

}

.card-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.marathi-icon{

    background:#e8f8ec;

    color:#22c55e;

}

.hindi-icon{

    background:#fff4df;

    color:#f59e0b;

}

.exam-icon{

    background:#f3e8ff;

    color:#7c3aed;

}

.user-menu{

    position:relative;

}

.dropdown-menu{

    display:none;

    position:absolute;

    top:60px;

    right:0;

    min-width:180px;

    background:white;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    overflow:hidden;

    z-index:99999;

}

.dropdown-menu a{

    display:block;

    padding:14px 18px;

    text-decoration:none;

    color:#222;

    font-weight:500;
   
   cursor:pointer;

}

.dropdown-menu a:hover{

    background:#f5f7ff;

}

.dropdown-menu.show{

    display:block;

}
