.elementor-kit-8{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#F2F0E6;--e-global-color-text:#222222;--e-global-color-accent:#0F68B9;--e-global-color-01c7125:#EEF4F9;--e-global-color-dc70c0d:#0B5AA3;--e-global-color-a887699:#969696;--e-global-color-1a32e3f:#DBDADA;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-size:46px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-text-transform:none;--e-global-typography-primary-font-style:normal;--e-global-typography-primary-text-decoration:none;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-size:34px;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-text-transform:none;--e-global-typography-secondary-font-style:normal;--e-global-typography-secondary-text-decoration:none;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:500;--e-global-typography-text-text-transform:none;--e-global-typography-text-font-style:normal;--e-global-typography-text-text-decoration:none;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:15px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-text-transform:none;--e-global-typography-accent-font-style:normal;--e-global-typography-accent-text-decoration:none;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 a{color:var( --e-global-color-text );}.elementor-kit-8 a:hover{color:var( --e-global-color-accent );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
    --content-max-width: 1260px; /* 👉 replace with your real content width */
}

/* Base style for all devices: fixed, hidden by default */
.back-to-top {
    position: fixed;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Desktop: closer to the bottom (no bottom bar) */
@media (min-width: 1025px) {
    .back-to-top {
        bottom: 1.5rem;
        right: calc((100vw - var(--content-max-width)) / 2 + 1rem);
    }
}

/* Tablet + mobile: a bit higher to sit above the bottom bar */
@media (max-width: 1024px) {
    .back-to-top {
        bottom: 8rem;
        right: 1rem;
        
    }
}

/* Visible state */
.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Smooth scroll for all anchors */
html {
    scroll-behavior: smooth;
}




/*index mobile template css*/


/* =================================
   FULL PAGE OVERLAY – HIGHER CONTRAST
   ============================== */
.cridx-overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;

  /* darker neutral veil for stronger separation */
  background: rgba(230, 235, 240, 0.95);

  /* stronger blur to kill background readability */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* =========================================
   CONTENT BLOCK
   ========================================= */
.cridx-panel{
  width: min(94vw, 560px);

  display: flex;
  flex-direction: column;
  align-items: center;

  background: transparent;
  padding: 0;

  transform: translateX(40px); /* slightly stronger entrance */
  transition: transform .25s ease;
}

/* Tablet */
@media (min-width: 768px){
  .cridx-panel{
    width: min(72vw, 640px);
  }
}

/* =========================================
   SLOT (INJECTED LIST)
   ========================================= */
.cridx-slot{
  width: 100%;
}

/* VERY STRONG ELEVATION (KEY CHANGE) */
.cridx-slot > *{
  background: #EEF4F9;
  border-radius: 14px;

  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);

  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* =========================================
   CLOSE BUTTON
   ========================================= */
.cridx-panel .cridx-close{
  width: 100% !important;
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (min-width: 768px){
  .cridx-panel .cridx-close{
    margin-top: 44px;
  }
}

/* =========================================
   OPEN STATE
   ========================================= */
.cridx-overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cridx-overlay.is-open .cridx-panel{
  transform: translateX(0);
}

/* =========================================
   SCROLL LOCK
   ========================================= */
body.cridx-lock{
  overflow: hidden;
}








/*hide on scroll header*/
.hide-on-scroll-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: transform .25s ease;
  will-change: transform;
}

.hide-on-scroll-header.is-hidden{
  transform: translateY(-110%);
}/* End custom CSS */