/* General styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Project detail styles */
.project-detail {
    padding: 2em 0;
    background-color: #000000;
}

.project-detail h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #d60ab4;
    text-align: center;
}

.project-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin-bottom: 2em;
}

.project-images img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.project-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
    line-height: 1.5em;
    color: #ccc;
    text-align: justify;
}

.project-description p {
    margin-bottom: 1em;
}

/* Navbar styles */
.navbar {
    background-color: #000000;
    color: white;
    padding: 0.5em 0;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #d60ab4;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 75px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2em;
    padding: 0;
    margin: 0;
}

.navbar nav a {
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    transition: color 0.3s;
    position: relative;
}

.navbar nav a:hover, .navbar nav a.active {
    color: #d60ab4;
}

.navbar nav a.active::after, .navbar nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background-color: #d60ab4;
}

/* Hero section styles */
.hero {
    background-color: #000000;
    color: white;
    padding: 5em 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2em;
    text-align: left;
}

.hero-img {
    border: 5px solid #d60ab4;
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    font-weight: bold;
}

.hero-text h2 {
    font-size: 2.5em;
    margin: 0.5em 0;
    color: #d60ab4;
}

.hero-text h2 .highlight {
    color: #d60ab4;
}

.hero-text h2 span {
    color: white;
}

.hero-text p {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.hero-buttons {
    display: flex;
    justify-content: start;
    gap: 1em;
    margin-top: 2em;
}

.hero-buttons .btn {
    background-color: #d60ab4;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-buttons .btn:hover {
    background-color: #d60ab4;
}

/* Additional section styles */
.projects, .about, .certificates {
    color: white;
}

.projects h2, .about h2, .certificates h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    color: #d60ab4;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.project {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

.project-img {
    background-color: #d60ab4;
    width: 100%;
    height: 150px;
    margin-bottom: 1em;
}

.project h3 {
    font-size: 1.5em;
    color: #d60ab4;
}

.project p {
    color: #ccc;
}

.project .btn {
    background-color: #d60ab4;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.project .btn:hover {
    background-color: #d60ab4;
}

section {
    padding: 2em 0;
    background-color: #000000;
}

.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.certificate {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    text-align: left;
}

.certificate-img {
    background-color: #d60ab4;
    width: 150px;
    height: 100px;
    margin-right: 1em;
}

.certificate-content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.certificate h3 {
    font-size: 1.5em;
    color: #d60ab4;
    margin: 0;
}

.certificate p {
    color: #ccc;
    margin: 0;
}

.certificate .btn {
    background-color: #d60ab4;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    align-self: start;
}

.certificate .btn:hover {
    background-color: #d60ab4;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.about-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #d60ab4;
}

.about-text h3 {
    font-size: 2em;
    margin: 0;
    color: #d60ab4;
}

.about-text p {
    font-size: 1.2em;
    margin: 1em 0;
    color: #ccc;
}

/* Contact section styles */
.contact {
    text-align: center;
    padding: 2em 0;
    background-color: #000000;
}

.contact h2 {
    font-size: 2.5em;
    color: #d60ab4;
    margin-bottom: 1em;
}

.contact .platforms {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}

.platform {
    background-color: #333;
    border-radius: 10px;
    padding: 1em;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    gap: 1em;
    transition: transform 0.3s;
}

.platform a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1em;
}

.platform img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.platform p {
    margin: 0;
}

.platform:hover {
    transform: scale(1.05);
}

footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 1em 0;
}
        