/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 26 2025 | 10:53:23 */
/* 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 */ 
/* Default sticky header - solid background before scroll */
[data-sticky-active] {
    background-color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: none;
}

/* When sticky scroll becomes active - transparent with blur */
[data-sticky-active].tb_sticky_scroll_active {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent */
    backdrop-filter: blur(6px);          /* Optional blur effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

