.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    pointer-events: auto; /* Ensure it can be clicked */
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    
    
    
.hover-text {
            color: #000; /* Original text color */
            text-decoration: none; /* No underline initially */
            transition: color 0.3s; /* Smooth transition for color change */
           
        }

.hover-text:hover {
            color: #90C649; /* Color on hover */
            text-decoration: underline; /* Underline on hover */
            pointer-events: auto; /* Ensure it can be clicked */
 
        }
    
    .hover-text {
            color: #000; /* Original text color */
            text-decoration: none; /* No underline initially */
            transition: color 0.3s; /* Smooth transition for color change */
            pointer-events: auto; /* Ensure it can be clicked */
            
        }

.hover-text:hover {
            color: #90C649; /* Color on hover */
            text-decoration: underline; /* Underline on hover */
        }
    
