.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--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;background-color:#1D1F27;overscroll-behavior:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.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-6 e-page-transition{background-color:#FFBC7D;}.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 *//* Fill box effect */
.my-btn .elementor-button {
    position: relative; /* Required for ::before positioning */
    overflow: hidden;   /* Ensures the fill stays inside the button */
    z-index: 0;         /* So text stays above the fill */
}

/* Fill animation layer */
.my-btn .elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #be4b1c; /* <-- Change fill color here */
    transform: scaleX(0);
    transform-origin: right; /* <-- Fill-out direction */
    transition: transform 0.4s ease; /* <-- Fill speed */
    z-index: 0;
}

/* Hover state (fill expands in) */
.my-btn .elementor-button:hover::before {
    transform: scaleX(1);
    transform-origin: left; /* <-- Fill-in direction */
}

/* Button text */
.my-btn .elementor-button-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.my-btn:hover .elementor-button-text {
    color: white;
}

/* Icon size + color */
.my-btn .elementor-button-icon {
    position: relative;
    z-index: 1;
    transform: scale(0.9); /* <-- Icon size */
    padding-left: 5px;
    transition: color 0.4s ease, transform 0.3s ease;
}

/* Hover icon */
.my-btn:hover .elementor-button-icon {
    color: white !important; /* <-- Icon hover color */
    transform: scale(1) !important;
}/* End custom CSS */