@import url('https://fonts.googleapis.com/css2?family=Arial:wght@700&family=Verdana&display=swap');

body {
    font-family: 'Verdana', sans-serif;
    font-size: 16px;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 24px;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.skill-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2, #D0021B);
    transition: width 1s ease-in-out;
}

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

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #4A90E2;
    transition: width .3s;
}
