body {
    background-color: #0c1121;
    color: #d0d3fc;
    font-size: 17.5px;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.65;
}

a {
    color: #b6b936;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #8f2361;
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

p {
    font-size: 18px;
}

h2 {
    color: #17a589;
    filter: brightness(110%);
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    border-radius: 8px;
    max-height: 50px;
}

nav {
    text-align: right;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 22px;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 12px;
    margin-right: 12px;
}

nav ul li:last-child {
    margin-right: 30px;
}

nav ul li a {
    color: #17a589;
    filter: brightness(120%);
    font-size: 18px;
}

.introheading {
	font-size: 40px;
	color: #8f2361;
	font-weight: bold;
	filter: brightness(125%);
}

.introparagraph {
	font-size: 20px;
}

/* About Section */

#about {
    padding: 20px;
}

#about .content {
    max-width: 800px;
    margin: 0 auto;
}

#about .about-content {
    display: flex;
    align-items: center;
    border-radius: 10px;
}

#about .photo {
    flex: 0 0 auto;
    margin-right: 40px;
}

#about .photo img {
    border-radius: 50%;
    display: block;
    max-width: 100%;
    height: 170px;
    width: 160px;
}

#about .text {
    flex: 1;
    text-align: center;
    line-height: 1.7;
}


/* Credentials Section */

#credentials {
    padding: 20px;
}

#credentials .skills {
    display: flex;
    justify-content: space-between;
}

#credentials .technical-skills {
    width: 45%;
}

#credentials .soft-skills {
    width: 45%;
}
#credentials .technical-skills ul li,
#credentials .soft-skills ul li {
    margin-bottom: 10px;
}

#certifications .certifications ul li {
	margin-bottom: 20px;
}

#services .services h3,
#credentials .technical-skills h3,
#credentials .soft-skills h3 {
    color: #8f2361;
}

#certifications .certifications ul li .long-margin {
    margin-left: 340px;
    color: #b6b936;
}

#certifications .certifications ul li .short-margin {
    margin-left: 100px;
    color: #b6b936;
}
#certifications .certifications ul li .margin {
    margin-left: 15px;
    color: #b6b936;
}

/* Services/Expertise Section */
.services {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.services .service {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}

.services .service h3 {
    color: #8f2361;
    margin-bottom: 10px;
}

.services .service p {
    margin: 0;
    line-height: 1.6;
}
.services .service h3 {
    color: #b6b936;
    margin-bottom: 10px;
}

.services .service p {
    margin: 0;
    line-height: 1.6;
}

/* Projects Section */
#portfolio {
    text-align: center;
}

#portfolio .content {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    text-align: left;
}

#portfolio .work {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#portfolio .project {
    width: 45%;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.project-image {
    max-width: 100%;
    height: 280px;
    display: block;
    border-radius: 8px 8px 0 0;
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
}
.project h3 {
    color: #8f2361;
    font-weight: bold;
    filter: brightness(150%);
    /*border: 1px solid #d0d3fc;*/
    padding: 8px;
    display: inline-block;
    border-radius: 5px;
}
.project .highlight {
    color: #8f2361;
    font-weight: bold;
    filter: brightness(130%);
}

/*Contact section */

.contact-links {
    display: flex;
    justify-content: space-around;
}

.left-links, .right-links {
    width: 45%;
}

.left-links {
    text-align: left;
}

.right-links {
    text-align: right;
}

.left-links p,
.right-links p {
    margin: 8px 0;
}

@media (max-width: 768px) {
    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .left-links, .right-links {
        width: 100%;
        text-align: center;
    }

    .right-links {
        text-align: center;
        margin-top: 10px;
    }
}

/* footer */

footer .content p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

