.elementor-kit-7{--e-global-color-primary:#0072BC;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#212529;--e-global-color-accent:#0F2B6C;--e-global-color-756063e:#000000;--e-global-color-ec4ab97:#90D5FF;--e-global-color-83335fd:#FFFFFF00;--e-global-color-a233629:#204391;--e-global-color-2e50340:#F5F6F9;--e-global-typography-primary-font-family:"Lato";--e-global-typography-primary-font-size:35px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-line-height:45px;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-font-weight:300;--e-global-typography-secondary-line-height:45px;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Lato";--e-global-typography-accent-font-size:0.875rem;--e-global-typography-accent-font-weight:400;--e-global-typography-c6b4493-font-family:"Arial";--e-global-typography-c6b4493-font-size:14.7px;--e-global-typography-c6b4493-font-weight:400;--e-global-typography-f25c8e1-font-family:"Lato";--e-global-typography-f25c8e1-font-size:17px;--e-global-typography-f25c8e1-font-weight:700;--e-global-typography-f5a57cf-font-family:"Lato";--e-global-typography-f5a57cf-font-size:40px;--e-global-typography-f5a57cf-font-weight:700;--e-global-typography-71ab972-font-family:"Lato";--e-global-typography-71ab972-font-size:12px;--e-global-typography-71ab972-font-weight:600;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}@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 *//* 🌈 Custom scrollbar with visible light grey track */
::-webkit-scrollbar {
  width: 8px;
}

/* Background (track) */
::-webkit-scrollbar-track {
  background-color: #d9d9d9 !important; /* light grey */
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1); /* subtle depth to make it visible */
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
  background-color: #1d3f91; /* deep blue */
  border-radius: 10px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #2a57c5;
}

/* 🦊 Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: #1d3f91 #d9d9d9;
}


/* ---------------------------------------------------
   Elementor Form Radio & Checkbox Fix - Universal Version
   --------------------------------------------------- */

/* General style - keep radio & checkbox circular / square */
.elementor-form input[type=radio],
.elementor-form input[type=checkbox] {
    -webkit-appearance: none; /* Remove default browser style */
    -moz-appearance: none;
    appearance: none;
    width: 25px;               /* Outer size */
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    border: 2px solid var(--form--border-color, #000); /* Border color */
    border-radius: 50%;        /* Circle for radio; can adjust for checkbox */
    background-color: var(--global--color-white, #fff);
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

/* Checked state - inner circle for radio, inner square for checkbox */
.elementor-form input[type=radio]:checked::before,
.elementor-form input[type=checkbox]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center inner indicator */
}

/* Inner indicator for radio */
.elementor-form input[type=radio]:checked::before {
    width: 12px;              /* Inner circle size */
    height: 12px;
    background-color: var(--form--border-color, #000);
    border-radius: 50%;
}

/* Inner indicator for checkbox */
.elementor-form input[type=checkbox]:checked::before {
    width: 12px;              /* Inner square size */
    height: 12px;
    background-color: var(--form--border-color, #000);
    border-radius: 2px;       /* Small square */
}

/* Fix parent container to prevent distortion */
.elementor-form .elementor-field-option {
    display: flex;            /* Align radio/checkbox and label horizontally */
    align-items: center;      /* Vertical center alignment */
    height: auto;             /* Prevent parent height from stretching input */
    pointer-events: auto;
}

/* --------- Tablet optimization --------- */
@media (max-width: 1024px) {
    .elementor-form input[type=radio],
    .elementor-form input[type=checkbox] {
        width: 22px;
        height: 22px;
    }
    .elementor-form input[type=radio]:checked::before,
    .elementor-form input[type=checkbox]:checked::before {
        width: 10px;
        height: 10px;
    }
}

/* --------- Mobile optimization --------- */
@media (max-width: 768px) {
    .elementor-form input[type=radio],
    .elementor-form input[type=checkbox] {
        width: 18px;           /* Slightly smaller on mobile */
        height: 18px;
    }
    .elementor-form input[type=radio]:checked::before,
    .elementor-form input[type=checkbox]:checked::before {
        width: 8px;
        height: 8px;
    }
    .elementor-form .elementor-field-option {
        display: flex;
        align-items: center;   /* Ensure vertical alignment on mobile */
    }
}/* End custom CSS */