.elementor-1483 .elementor-element.elementor-element-315c30e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1483 .elementor-element.elementor-element-fae6c1f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d8034ba *//* Custom Hindi Typing Tool Styles */
#custom-typing-tool {
    background: linear-gradient(135deg, #74ebd5 0%, #9face6 100%);
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    margin: 20px 0;
    position: relative;
}

#custom-typing-tool * {
    box-sizing: border-box;
}

#custom-typing-tool .typing-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#custom-typing-tool h1 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.2;
    padding: 0;
    border: none;
}

#custom-typing-tool p.subtitle {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* मोबाइल लेआउट (Default) */
#custom-typing-tool .app-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#custom-typing-tool .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#custom-typing-tool select.time-select {
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #bdc3c7;
    font-size: 15px;
    font-weight: bold;
    color: #2c3e50;
    outline: none;
    cursor: pointer;
    background: #fff;
    width: auto;
}

#custom-typing-tool .timer {
    font-size: 18px;
    font-weight: bold;
    color: #e67e22;
    background: #fdf2e9;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #fad7a1;
    text-align: center;
    min-width: 85px;
}

#custom-typing-tool button.start-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.1s, background 0.3s;
    box-shadow: 0 4px 0 #2980b9;
    margin: 0;
}

#custom-typing-tool button.start-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #2980b9;
}

#custom-typing-tool button.start-btn:disabled {
    background: #95a5a6;
    box-shadow: 0 4px 0 #7f8c8d;
    cursor: not-allowed;
}

#custom-typing-tool .target-box {
    background: #f8f9fa;
    border: 2px dashed #bdc3c7;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

#custom-typing-tool .hindi-letter {
    font-size: 85px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1;
}

#custom-typing-tool .key-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    font-size: 26px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
    border: 1px solid #a0a0a0;
    border-bottom: 5px solid #a0a0a0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-transform: uppercase;
    transition: all 0.1s;
}

#custom-typing-tool .key-hint.pressed {
    transform: translateY(5px);
    border-bottom: 0px solid #a0a0a0;
    box-shadow: 0 0px 0px rgba(0,0,0,0.1);
    background: #d5d5d5;
}

#custom-typing-tool .hint-text {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

#custom-typing-tool .stats {
    display: flex;
    justify-content: space-around;
    background: #f1f2f6;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

#custom-typing-tool .stat-right { color: #27ae60; }
#custom-typing-tool .stat-wrong { color: #c0392b; }

#custom-typing-tool .flash-correct { background: #eafaf1 !important; border-color: #2ecc71 !important; }
#custom-typing-tool .flash-wrong { 
    background: #fdedec !important; 
    border-color: #e74c3c !important; 
    animation: toolShake 0.3s ease-in-out; 
}

@keyframes toolShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* --- DESKTOP LANDSCAPE LAYOUT --- */
@media (min-width: 768px) {
    #custom-typing-tool .typing-container {
        max-width: 850px;
        padding: 40px;
    }
    
    #custom-typing-tool .app-layout {
        flex-direction: row;
        align-items: stretch;
        gap: 30px;
    }

    #custom-typing-tool .typing-area {
        flex: 1.2;
    }

    #custom-typing-tool .control-panel {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    #custom-typing-tool .target-box {
        height: 100%;
        min-height: 250px;
    }

    #custom-typing-tool .hindi-letter {
        font-size: 110px;
    }

    #custom-typing-tool .controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    #custom-typing-tool select.time-select,
    #custom-typing-tool .timer,
    #custom-typing-tool button.start-btn {
        width: 100%;
        text-align: center;
    }

    #custom-typing-tool .stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }
}

/* Modal CSS */
#custom-typing-tool .modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 20px;
}

#custom-typing-tool .modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

#custom-typing-tool .modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

#custom-typing-tool .modal-overlay.active .modal-box {
    transform: scale(1);
}

#custom-typing-tool .modal-box h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

#custom-typing-tool .score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

#custom-typing-tool .score-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

#custom-typing-tool .score-item.accuracy {
    grid-column: span 2;
    background: #eafaf1;
    border: 1px solid #2ecc71;
}

#custom-typing-tool .score-label { font-size: 14px; color: #7f8c8d; margin-bottom: 5px; }
#custom-typing-tool .score-value { font-size: 24px; font-weight: bold; }
#custom-typing-tool .val-right { color: #27ae60; }
#custom-typing-tool .val-wrong { color: #c0392b; }
#custom-typing-tool .val-acc { color: #2ecc71; font-size: 28px; }

#custom-typing-tool .close-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 0 #27ae60;
}

#custom-typing-tool .close-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #27ae60;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a1cd5a9 *//* Fast, Stylish & Responsive CSS */
:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-dark: #0f172a;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    /* Updated Font stack for better readability */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px;}

/* Article Container */
.seo-article {
    background: var(--white);
    margin: 40px auto;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.article-header { border-bottom: 2px solid var(--bg-light); padding-bottom: 25px; margin-bottom: 35px; }
h1 { font-size: 2.2rem; color: var(--text-dark); line-height: 1.35; margin-bottom: 15px; font-weight: 800;}
h2 { font-size: 1.7rem; color: var(--primary); margin: 45px 0 25px; position: relative; padding-left: 18px; font-weight: 700;}
h2::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 5px; background: var(--primary); border-radius: 4px;}
h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 12px; font-weight: 600;}

/* --- NEW PARAGRAPH STYLE --- */
p { 
    font-size: 1.15rem; /* Larger, more readable text */
    line-height: 1.85; 
    color: #475569; /* Softer text color */
    margin-bottom: 24px; 
    letter-spacing: 0.2px;
}
p strong { color: var(--text-dark); font-weight: 700; }

/* Badges */
.post-meta { display: flex; gap: 10px; margin-top: 15px;}
.badge { background: #e0e7ff; color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 0.95rem; font-weight: 600; }

/* Notice Box */
.notice-box {
    background: #fffbeb; border-left: 5px solid #f59e0b;
    padding: 22px 25px; border-radius: 8px; margin: 35px 0; 
}
.notice-box p { margin-bottom: 0; font-size: 1.1rem; color: #92400e; }

/* Grids & Cards */
.grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin: 30px 0; }
.card { background: #f8fafc; padding: 30px; border-radius: 14px; border: 1px solid var(--border); transition: all 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: #fff;}
.card ul { margin-left: 20px; color: #475569; }
.card li { margin-bottom: 15px; font-size: 1.1rem; line-height: 1.6;}

/* Styled List */
.styled-list { margin-left: 25px; color: #475569; margin-bottom: 30px;}
.styled-list li { margin-bottom: 15px; padding-left: 8px; font-size: 1.15rem; line-height: 1.7;}
code { background: #f1f5f9; color: #db2777; padding: 5px 10px; border-radius: 6px; font-family: 'Courier New', monospace; font-weight: bold; font-size: 1.1rem;}

/* Word Tags */
.word-box { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 25px; margin-bottom: 35px;}
.word-tag { 
    background: #f0fdf4; color: #166534; padding: 12px 24px; 
    border-radius: 8px; font-size: 1.25rem; font-weight: bold;
    border: 1px solid #bbf7d0; transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.word-tag:hover { background: #dcfce7; transform: scale(1.05); cursor: pointer; border-color: #86efac;}

/* --- NEW FAQ ACCORDION STYLE (Click to Unhide) --- */
.faq-accordion { display: flex; flex-direction: column; gap: 15px; margin-top: 30px;}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: #cbd5e1; }

.faq-item summary {
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none; /* Removes default arrow in most browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background 0.2s;
}

/* Custom Plus/Minus Icon for Accordion */
.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 400;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary { background: var(--white); border-bottom: 1px solid var(--border); color: var(--primary);}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }

.faq-item summary::-webkit-details-marker { display: none; /* Removes default arrow in Safari/Chrome */ }

.faq-item p {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    background: var(--white);
    color: #475569;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .seo-article { padding: 30px 20px; margin: 20px auto; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    p { font-size: 1.05rem; }
    .grid-layout { grid-template-columns: 1fr; }
    .faq-item summary { font-size: 1.05rem; padding: 15px 20px; }
    .faq-item p { padding: 15px 20px; }
}/* End custom CSS */