/* ================================================
   LANGUAGE SWITCHER - BILINGUAL (English / Hindi)
   ================================================ */

/* ── Hide Google Translate bar & artifacts ── */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#google_translate_element,
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
}
body {
    top: 0 !important;
}
.goog-tooltip { display: none !important; }
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* ── Custom EN/हि Toggle ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 3px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.lang-btn.active {
    background: var(--secondary-color, #c9a227);
    color: #fff;
    box-shadow: 0 2px 8px rgba(201,162,39,0.5);
}

/* ── Hindi font when active ── */
body.lang-hi,
body.lang-hi p,
body.lang-hi li,
body.lang-hi a,
body.lang-hi span,
body.lang-hi button,
body.lang-hi label,
body.lang-hi h1,
body.lang-hi h2,
body.lang-hi h3,
body.lang-hi h4,
body.lang-hi h5,
body.lang-hi h6 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}

