/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #0073b1, #005582);
    color: white;
}

header h1 {
    margin: 10px 0;
    font-size: 28px;
}

header p {
    font-size: 18px;
}

/* Profile Image */
.profile-pic {
    display: block;
    width: 180px;  /* Adjust the size */
    height: 180px; /* Keep it proportional */
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto; /* Centers the image */
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.section {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Resume Button */
.resume-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    background: #0073b1;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.resume-button:hover {
    background: #005582;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .profile-pic {
        width: 140px;
        height: 140px;
    }

    header h1 {
        font-size: 24px;
    }
}
