/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 01 2025 | 12:12:19 */
/* 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 */ 


/* .sticky-header-fix {
  position: relative;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  z-index: 9999;
}


.sticky-header-fix.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
 */


/* Default transparent with white text */
.sticky-header-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #0000 !important; /* white text */
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1 !important;
}

.sticky-header-fix a {
  color: inherit;
  transition: color 1.3s ease;
}

/* After hero section */
.sticky-header-fix.after-hero {
  background: #000000 !important;
  color: #000  !important; /* black text */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


