/* ==========================================================
   AYUSHRUDHRA ZERO-TOUCH BILINGUAL RUNTIME
========================================================== */

html.ar-i18n-pending[data-ar-lang="hi"] body{
  opacity:.01!important;
}

html.ar-i18n-ready body{
  opacity:1;
  transition:opacity .14s ease;
}

html[data-ar-lang="hi"] body{
  font-family:
    Inter,
    "Noto Sans Devanagari",
    "Nirmala UI",
    Mangal,
    Arial,
    sans-serif;
}

.arzt-language-switch{
  position:relative;
  z-index:100000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:40px;
  margin:4px 8px;
  padding:5px;
  border:1px solid rgba(180,83,9,.22);
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:
    0 10px 28px rgba(72,43,12,.12),
    inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  white-space:nowrap;
}

.arzt-language-switch button{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  outline:0;
  min-height:30px;
  padding:7px 11px;
  border-radius:999px;
  background:transparent;
  color:#6b2b11;
  font-family:inherit;
  font-size:12px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.arzt-language-switch button:hover{
  transform:translateY(-1px);
  background:rgba(249,115,22,.10);
}

.arzt-language-switch button.active{
  color:#fff;
  background:linear-gradient(135deg,#9a3412,#ea580c);
  box-shadow:0 8px 18px rgba(154,52,18,.24);
}

.arzt-language-switch .arzt-switch-divider{
  width:1px;
  height:18px;
  background:rgba(107,43,17,.20);
}

.arzt-language-switch.arzt-floating{
  position:fixed;
  top:14px;
  right:14px;
  margin:0;
}

[data-ar-no-translate],
.notranslate,
code,
pre,
kbd,
samp,
script,
style{
  unicode-bidi:isolate;
}

@media(max-width:991.98px){
  .arzt-language-switch{
    width:max-content;
    max-width:calc(100vw - 24px);
    margin:8px 10px;
  }

  .navbar-collapse .arzt-language-switch{
    display:flex;
  }
}

@media(max-width:480px){
  .arzt-language-switch.arzt-floating{
    top:8px;
    right:8px;
  }

  .arzt-language-switch button{
    padding:7px 9px;
    font-size:11.5px;
  }
}

/* ==========================================================
   RESPONSIVE SWITCH PLACEMENT V2.1
   Desktop: navbar right side
   Mobile: email ke niche in .top-bar-text
========================================================== */

.top-bar .top-bar-text > .arzt-language-switch{
  margin:8px auto 2px;
  flex:0 0 auto;
}

@media(max-width:991.98px){
  .top-bar .top-bar-text{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    text-align:center;
  }

  .top-bar .top-bar-text > .arzt-language-switch{
    position:relative;
    inset:auto;
    display:inline-flex;
    width:auto;
    max-width:calc(100vw - 28px);
    margin:8px auto 4px;
    z-index:100;
  }
}

/* Mobile language button ko thoda niche karein */
@media (max-width: 991.98px){

    .top-bar .top-bar-text .arzt-language-switch{
        margin-top: 22px !important;
        margin-bottom: 8px !important;
    }

}