* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #3088e0; /* Bluish background for the header */
    color: white; /* White text color for contrast */
    margin-bottom: 20px;
}

.contact-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.resume {
    display: flex;
    max-width: 90%; /* Scale based on screen size */
    min-width: 800px; /* Ensures that the content doesn't shrink too much */
    margin: auto;
}

.left-column, .right-column {
    padding: 20px;
}

.left-column {
    width: 25%; /* Left-hand section takes up 25% of the screen space */
    background-color: #e0e0e0; /* Slightly gray background for the left column */
    border-right: 1px solid #ddd;
}

.right-column {
    width: 75%; /* Right-hand section takes up the remaining 75% of the screen space */
    padding-left: 40px;
}

/* Heading Styles */
h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
    border-bottom: 2px solid #3088e0;
    padding-bottom: 5px;
}

ul {
    margin-bottom: 20px;
    padding-left: 1.5em;
}

li {
    margin-bottom: 10px;
}

.job {
    margin-bottom: 20px;
}

.job h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #3088e0;
}

.job p {
    margin-bottom: 10px;
}

.profile-pic {
    width: 150px; /* Set the desired width */
    height: 150px; /* Set the desired height */
    overflow: hidden; /* Hide the parts of the image that are outside the circle */
    border-radius: 50%; /* Make the image circular */
    margin: 0 auto; /* Center the image if necessary */
}

.profile-pic img {
    width: 100%; /* Make sure the image covers the container */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Cover the entire area of the container */
}


/* Media Queries for Responsiveness */

/* Tablets and Smaller Screens */
@media (max-width: 1024px) {
    .left-column, .right-column {
        padding: 15px;
    }

    .contact-info h1 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    .job h4 {
        font-size: 18px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .resume {
        flex-direction: column;
        max-width: 100%;
    }

    .left-column, .right-column {
        width: 100%;
        padding: 15px;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid #ddd;
        background-color: #f0f0f0; /* Slightly lighter gray for better contrast on mobile */
    }

    .right-column {
        padding-left: 15px;
    }

    .contact-info h1 {
        font-size: 28px;
    }

    body {
        padding: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .contact-info h1 {
        font-size: 24px;
    }

    .contact-info p, .contact-info a {
        font-size: 14px;
    }

    h3 {
        font-size: 20px;
    }

    .job h4 {
        font-size: 16px;
    }

    ul, p {
        font-size: 14px;
    }
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #3088e0;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 20px;
}

.home-profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #3088e0;
}

.home-container h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

.home-container p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.home-nav {
    display: flex;
    gap: 20px;
}

.nav-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3088e0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #3088e0;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #ffffff;
    color: #3088e0;
}
.contact-info a.download-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 12px 24px;
    background-color: #ffffff; /* White background */
    color: #3088e0; /* Blue text */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.contact-info a.download-btn:hover {
    background-color: #eef5fc; /* Lighter blue-gray on hover */
    color: #256ab5;
    text-decoration: none;
}