/* Home Page Styles */
header {
    background: rgba(0, 123, 255, 0.85);
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.profile-img-container {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.profile-img:hover {
    transform: scale(1.1);
}

.intro-text {
    text-align: left;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

header p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 300;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e0e0e0;
}
