/* Sticky styling */
#sticky-element {
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* When the element becomes sticky */
#sticky-element.sticky {
    position: fixed;
    background-color: #fff; /* Change background color as needed */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Adds a shadow when sticky */
}
