.elementor-kit-6{--e-global-color-primary:#ED3237;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#3CBAF7;--e-global-color-1a62403:#EAEAEA;--e-global-color-eae16c4:#242424;--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-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{font-size:60px;}.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 *//* Floating Animation Box CSS */
@keyframes float-hero-long {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-40px) translateX(3px); /* Larger vertical movement with slight horizontal drift */
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Hero banner container - make it relative for absolute positioning */
.hero-banner {
    position: relative;
}

/* Floating box styles */
.hero-float {
    position: absolute;
    top: 30%; /* Adjust to position vertically as needed */
    left: 10%; /* Adjust to position horizontally as needed */
    z-index: 10;
    animation: float-hero-long 8s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.hero-float h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2em;
}

.hero-float p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}/* End custom CSS */