.hover-underline-color-navbar {
    text-decoration: none; 
    position: relative; 
    /* color: #0e4358;  */
        color: #dd2925; 

}

.hover-underline-color-navbar::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    /* border-bottom: 3px solid #0e4358;  */
    border-bottom: 3px solid #dd2925; 

    transition: width 0.3s ease; 
}

.hover-underline-color-navbar:hover::after {
    width: 100%; 
}

