/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 23 2026 | 10:01:47 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 



/* HOME HEADER */
.elementor-11 {
	height: 0;
}


.home .site-header {
    position: fixed;
    top: -100px !important; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    transition: top 0.4s ease-in-out; /* Smooth slide down effect */
    z-index: 9999;
    background: #fff; /* Ensure header has a background */
}

/* Class to make the header slide down */
.home .site-header.is-visible {
    top: 0 !important;
}