.elementor-kit-12543{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-0f672a9:#FF0000;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12543 e-page-transition{background-color:#FFBC7D;}.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);}@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 *//*** Sticky Header Variables ***/
header.sticky-header {
    --header-height: 110px;           /* normal header height */
    --shrink-header-to: 0.6;          /* shrink factor (66px) */
    --transition: 0.45s cubic-bezier(.4,0,.2,1);
    background-color: rgba(244, 245, 248, 1);
    transition: background-color var(--transition),
                backdrop-filter var(--transition),
                box-shadow var(--transition);
}

/* Sticky effects */
header.sticky-header.elementor-sticky--effects {
    background-color: rgba(244, 245, 248, 0.8);
    box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, 0.07);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

/* Header container height */
header.sticky-header > .elementor-container {
    min-height: var(--header-height);
    transition: min-height var(--transition);
}

header.sticky-header.elementor-sticky--effects > .elementor-container {
    min-height: calc(var(--header-height) * var(--shrink-header-to));
}

/* Logo container */
header.sticky-header .logo {
    position: relative;
    top: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;              /* vertical centering */
    justify-content: center;      /* or center */
    transition: height var(--transition), transform var(--transition), top var(--transition);
    z-index: 1000;
}

/* Shrink logo container on sticky */
header.sticky-header.elementor-sticky--effects .logo {
    height: calc(var(--header-height) * var(--shrink-header-to));
}

/* Elementor widget container inside logo */
header.sticky-header .logo .elementor-widget-container, a {
    height: 100%;                     /* match .logo height */
    transition: height var(--transition);
}

/* Logo image */
header.sticky-header .logo img {
  height: auto;
  max-height: 100%;          /* respect parent height */
  width: auto;
  max-width: 100%;           /* stop from overflowing */
  object-fit: contain;
  display: block;
  transition: max-height var(--transition), transform var(--transition);
  padding-top: 0;
}

/* Optional: scale effect on sticky */
header.sticky-header.elementor-sticky--effects .logo img {
  transform: scale(0.5);
}

/* Mobile adjustments */
@media only screen and (max-width: 767px) {
    header.sticky-header {
        --header-height: 70px;        /* mobile header height */
    }

    header.sticky-header .logo img {
        max-height: 100%;
        width: auto;
    }

/* --- Fix for Safari on iPhone/iPad/macOS --- */
@supports (-webkit-touch-callout: none) {
  header.sticky-header .logo img {
    height: 100% !important;           /* let height drive size */
    width: auto !important;            /* proportional width */
    object-fit: contain !important;    /* keep aspect ratio */
  }

  /* Prevent parent from forcing full width */
  header.sticky-header .logo,
  header.sticky-header .logo .elementor-widget-container,
  header.sticky-header .logo a {
    width: auto !important;
    max-width: none !important;
  }
}/* End custom CSS */