/* .header-link {
    margin-left: 1px;
    text-decoration: none;
}

.header-link:hover {
    text-decoration: underline;
} */

.header-link {
    text-decoration: none;
    /* remove default underline */
    color: #333;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

/* Animated underline effect on hover */


.header-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    /* start from center */
    transform: translateX(-50%);
    background-color: #ffffff;
    transition: width 0s ease;
}

.header-link:hover::after {
    width: 100%;
}

.blue-button {
    background: linear-gradient(135deg, #2563eb, #10297eff);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    /* padding: 4px; */
    /* font-size: 18px;
    
    /* border: none; */
    /* border-radius: 10px;
    cursor: pointer;
    text-decoration: none; 
    /* display: inline-block; */
    /* transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25); */
}

/* .blue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
    color: white;
}

.blue-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    color: white;
} */