/* Styling the webpage in general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* Home Section */
.home-section {
    text-align: center;
    padding: 50px 0;
    background: white;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.intro h1 {
    font-size: 2em;
    margin: 10px 0;
}

/* styling Resume Section */
.resume-section {
    background: #eaeaea;
    padding: 50px 0;
}

/* styling my Resume Section */
.resume-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resume-section h3 {
    margin-bottom: 10px;
    color: #333;
}

.resume-section p{
    margin-bottom: 10px;
}

.resume-section ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.resume-section ul li {
    margin-bottom: 5px;
}

/* styling my Skills List */
.skills-list {
    display: flex;
    flex-wrap: wrap;
}

.skills-list li {
    background: #007BFF;
    color: white;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    font-size: 0.9rem;
}
.resume-content h3 {
    margin-top: 20px;
}

/* styling the footer section */
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px 0;
    margin-top: 20px;
}

/* Making the website run on different devices*/
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}
