.navStyle {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navStyle:hover {
    background-color: rgba(203, 210, 211, 0.5);
}

.linkStyle {
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.linkStyle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #444;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.linkStyle:hover::after {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}