/* Sticky Header */
#page-top {
    position: fixed;
    top: 20px;
    width: 100%;
/*     background-color: #fff; */
    box-shadow: 0 -8px 27px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: top 0.8s ease, opacity 0.7s ease;
}

#page-top.hidden {
    top: -120px;
    /* Adjust the value as per your header height */
    opacity: 0;
}