.elementor-kit-9{--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;}.elementor-kit-9 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){--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);}@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 *//* 1. The Stage remains the same */
.euroswift-hero-stage {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* 2. Optimized Slide Logic */
.euroswift-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden; /* Ensures the text is not 'clickable' or visible when inactive */
    transition: none; /* We handle the smooth transition inside the keyframe now */
    animation: euroswiftPreciseLoop 20s infinite;
}

/* 3. The 'Hard-Cut' Keyframe */
/* 4 Slides over 20s = 5s per slide. 
   We want: 1s Fade In, 3s Static, 1s Fade Out */
@keyframes euroswiftPreciseLoop {
    0% { opacity: 0; visibility: hidden; }
    2% { opacity: 1; visibility: visible; }   /* Quick 0.4s Fade In */
    23% { opacity: 1; visibility: visible; }  /* Stay fully visible until the 4.6s mark */
    25% { opacity: 0; visibility: hidden; }   /* Hard Fade Out by the 5s mark */
    100% { opacity: 0; visibility: hidden; }  /* Stay dead for the rest of the 20s cycle */
}

/* 4. The Timing Stays the Same */
.slide-1 { animation-delay: 0s; z-index: 4; }
.slide-2 { animation-delay: 5s; z-index: 3; }
.slide-3 { animation-delay: 10s; z-index: 2; }
.slide-4 { animation-delay: 15s; z-index: 1; }/* End custom CSS */