:root {
    --aws-orange: #FF9900;
    --aws-dark-blue: #232F3E;
    --aws-light-blue: #1A476F;
    --aws-teal: #00A1C9;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#title {
    background-color: red;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#about {
    margin-top: 100px;
}
header {
    background-color: var(--aws-dark-blue);
    color: #fff;
    padding: 0.4rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav h1 {
    margin: 0;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: var(--aws-orange);
}
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}
main {
    padding-top: 60px; /* Increased to ensure no overlap */
}
h1, h2 {
    color: var(--aws-light-blue);
}
.profile-section {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    justify-content: space-between;
    margin-bottom: 10px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-right: 10px;
}
.section {
margin-bottom: 10px;
background-color: #fff;
padding: 10px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section h2 {
    border-bottom: 2px solid var(--aws-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#medium-blogs {
    padding: 20px;
}


#medium-blogs h2 {
    text-align: left;
    margin-bottom: 10px;
}
.medium-post {
    margin-bottom: 5px;
    padding: 10px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
}

.medium-post a {
    text-decoration: none;
    color: #5376f2;
}

.medium-post h3 {
    margin: 0 0 10px;
}

.medium-post p {
    margin: 5px;
    margin-left: 20px;
}
.contact-buttons {
    display: flex;
    justify-content: right;
    gap: 20px;
    margin-top: 0px;
    width: 100%;
}
.contact-button {
    padding: 1px 5px;
    border: 1.5px solid var(--aws-dark-blue);
    border-radius: 5px;
    text-decoration: none;
    color: var(--aws-dark-blue);
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--aws-dark-blue);
    color: white;
}

/*Section ul*/
section ul{
    padding-left: 30px;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .contact-button {
        width: 80%;
        text-align: center;
    }
}
.profile-content {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}
.certification-badges {
    display: flex;
    flex-direction: wrap;
    justify-content: center;
    width: 100%;
}
.certification-badge {
    width: 75px;
    height: 75px;
    margin-right: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}
footer {
    background-color: var(--aws-dark-blue);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
footer a {
    color: var(--aws-orange);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--aws-dark-blue);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
    }
    .profile-section {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .profile-content {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .certification-badges {
        flex-direction: row;
        justify-content: center;
    }
    .certification-badge {
        margin: 0 10px;
    }
}

    #github-repos {
        padding: 20px;
    }

    #github-repos h2 {
        text-align: left;
        margin-bottom: 20px;
    }

    .github-repo {
        margin-bottom: 20px;
        padding: 10px;
        /* border: 1px solid #2f0bff; */
        border-radius: 5px;
    }

    .github-repo a {
        text-decoration: none;
        color: #5376f2;
    }

    .github-repo h3 {
        margin: 0 0 2px;
    }