/* Resume Page Styling */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, black, rgb(20, 2, 159));
    color: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.resume-logo {
    display: flex;
    align-items: center;
}

.resume-profile-pic {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 20px;
}

.resume-name h1 {
    margin: 0;
    font-size: 24px;
}

.resume-name p {
    margin: 5px 0 0;
    font-size: 18px;
    color: #faf9f9;
}

/* Section Styling */
section {
    margin-top: 30px;
    padding: 0 20px;
}

h2 {
    font-size: 22px;
    color: #faf9f9;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.profile-summary p, .skills ul, .experience p {
    font-size: 16px;
    color: #faf9f9;
}

.skills ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Experience Section */
.experience .job {
    margin-bottom: 20px;
}

.experience h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #faf9f9;
}

/* Footer Styling */
footer {
    margin-top: auto;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(20, 2, 159, 0.14), rgb(20, 2, 159)); /* Slightly darker background for the footer */
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 40px; /* Set the width of the social icons */
    height: 40px; /* Set the height of the social icons */
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the icons fit within the given width/height */
}

/* Navigation Styling (Place this at the end) */
nav {
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}
