body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('images.jpeg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #333;
}

header {
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav {
    background: rgba(68, 68, 68, 0.8);
    color: #fff;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li input {
    padding: 0.3rem;
    border: none;
    border-radius: 3px;
}

nav ul li button {
    padding: 0.3rem 0.6rem;
    border: none;
    border-radius: 3px;
    background-color: #555;
    color: #fff;
    cursor: pointer;
}

nav ul li button:hover {
    background-color: #666;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    background: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

section h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

footer {
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

.highlight {
    background-color: skyblue;
}

/* Download button style */
.download-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background-color: skyblue;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #87ceeb;
}

/* Profile section styles */
.profile-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-picture {
    margin-right: 1rem;
    flex-shrink: 0;
}

.profile-picture img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-picture img:hover {
    transform: scale(1.1);
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-details .name {
    font-weight: bold;
    font-size: 1.2rem;
}

.profile-details .job-title {
    margin: 0.5rem 0;
}

.hire-me {
    background-color: skyblue;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hire-me:hover {
    background-color: #87ceeb;
}

/* Social icons styles */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}
