.mobile-slide-panel {
  position: fixed;
  top: 0;
  left: -100%; /* 👈 changed from right to left */
  height: 100vh;
  background: #fff;
  opacity: 0;
  transition: left 0.5s ease, opacity 0.5s ease; /* 👈 updated transition */
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* 👈 flipped box-shadow direction */
  overflow: scroll;
  cursor: pointer;
}

.mobile-slide-panel.active {
  left: 0; /* 👈 now slides in from the left */
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  margin: 0px;
  padding: 0px;
}

header .header-sticky {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
header.scrolled .header-sticky {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(-100%);
  opacity: 0;
}
header.sticky .header-sticky {
  position: fixed;
  top: 0;
  background: #fff; /* Optional */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0%);
  opacity: 1;
}

header.hidden .header-sticky {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


.my-sticky-header {
  position: relative;
  transition: all 0.8s ease, opacity 0.8s ease;
  z-index: 9999;
  opacity: 1;
}

.my-sticky-header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #23456B !important; /* Match your header color */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInSticky 0.8s ease forwards;
}
.my-sticky-header.sticky-active nav .hfe-nav-menu li a{
color:#fff !important;
}

.my-sticky-header.sticky-active nav .hfe-nav-menu li a:hover{
color: #8CC1F1 !important;
}
.my-sticky-header.sticky-active nav .hfe-nav-menu li.current-menu-item a{
color: #8CC1F1 !important;
}

@keyframes fadeInSticky {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}