* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #041836;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the profile picture rounded */
    border: 3px solid #fff;
}

h1 {
    margin: 10px 0;
}

.title {
    font-weight: 500;
    color: #63b0ef;
    font-size: 1.5em;
}

.bio {
    margin: 10px 0;
    font-size: 1.1em;
}

.highlight {
    font-weight: 700;
}

.skills, .projects, .education, .work-experience, .hobbies, .contact {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.skills ul {
    list-style-type: none;
}

.skill {
    display: inline-block;
    background: #e7f1ff;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project {
    margin-bottom: 20px;
}

.links {
    display: flex;
    justify-content: space-between; /* Makes the links appear side by side */
}

.links a {
    background: #005CE6;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.links a:hover {
    background: #003bb5; /* Darker blue on hover */
}

.experience {
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #041836;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .links {
        flex-direction: column; /* Stack links on small screens */
    }

    .links a {
        margin: 5px 0; /* Add spacing between stacked links */
    }

    .profile-pic {
        width: 120px; /* Smaller profile picture on mobile */
        height: 120px;
    }
}
