/* Global Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Container Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00bcd4;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

h2 {
    font-weight: 400;
    color: #aaa;
    margin-bottom: 20px;
}

/* Download Button */
.download-btn {
    background-color: #00bcd4;
    color: #121212;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #0097a7;
}

/* Resume Section */
.resume h3 {
    color: #00bcd4;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-top: 30px;
}

.resume h4 {
    color: #ccc;
    margin-bottom: 5px;
}

ul {
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
    font-size: 0.9em;
}
