.profile_is_rounded img {
    border-radius: 50px;
}

#profile_is_rounded img {
    border-radius: 50px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}
header {
    background-color: #3182bd;
    color: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}
header p {
    font-size: 1.1em;
    font-weight: 300;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
nav a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}
nav a:hover {
    background-color: #555;
    transform: translateY(-2px);
}
.container {
    width: 90%;
    margin: 30px auto;
    max-width: 1100px;
}
.section {
    margin: 30px 20px 30px 20px;
}
.section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #3182bd;
}
.section p {
    font-size: 1.1em;
    color: #666;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
footer a {
    color: #3182bd;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    .container {
        width: 100%;
    }
    .skills {
        justify-content: center;
    }
}

.education-container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    height: 15vh;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.programming-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.publication-container {
    display: flex;
    justify-content: justify;
    align-items: justify;
    height: 20vh;
    flex-direction: row;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Extracted styles from HTML files */

/* Profile picture styling */
.rounded-circle {
    border-radius: 50%;
}

/* Card border styles */
.card.border-start {
    border-left-width: 4px;
}
.card.border-primary {
    border-color: #007bff;
}
.card.border-warning {
    border-color: #ffc107;
}

/* Accordion styles */
.accordion-button.category {
    background-color: #f4f7fa;
    color: #007acc;
    font-weight: bold;
    font-size: 1.15rem;
    border: none;
    outline: none;
    box-shadow: none;
    transition: background 0.2s;
}
.accordion-button.category:not(.collapsed) {
    background-color: #e6f0fa;
    color: #6610f2;
}
.accordion-item {
    margin-bottom: 1.2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.accordion-body {
    background: #f9f9f9;
}
.pub-border {
    margin-bottom: 1.2rem;
}
.pub-border a {
    color: #007acc;
    text-decoration: underline;
    font-size: 0.97em;
}
.pub-border a:hover {
    color: #6610f2;
    text-decoration: none;
}