body {
            font-family: sans-serif;
            margin: 0;
            padding: 0;
        }
        
        .main-header {
            display: flex; /* This is the key to aligning items horizontally */
            justify-content: space-between; /* Pushes the logo to the left and nav to the right */
            align-items: center; /* Vertically centers the items */
            padding: 10px;
            height: 80px;
            font-family: 'Manrope', sans-serif;
            background-color: #949494;
            border-bottom: 1px solid #ccc;
        }

        .logo img {
            height: 80px;
        }

        .nav-menu a {
            text-decoration: none;
            font-weight: 500;
            color: #63f788;
            padding: 10px;
        }

        .nav-menu a:hover {
            color: #ffffff;
        }

header.sticky{
    background: transparent;
    padding: 20px 10%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%) ;
    backdrop-filter: blur(5px);
}

ul{
    list-style: none;
    text-decoration: none;
}
.nav-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
}

main{
    padding: 20px;
}

h2{
    margin-top: 0%;
    font-family: 'IBM Plex Sans', sans-serif;
    word-spacing: 2pt;
}

.education-table {
    width: 100%;
    border-collapse: collapse; /* Merges the cell borders */
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.education-table th,
.education-table td {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.education-table thead {
    background-color: #343a40;
    color: #ffffff;
}

.education-table th {
    font-weight: 600;
}

.education-table tbody tr:nth-child(even) {
    background-color: #e9ecef;
}

.education-table tbody tr:hover {
    background-color: #ced4da;
    transition: background-color 0.2s ease-in-out;
}


.language-list {
            list-style-type: none; /* Removes default bullet points */
            padding-left: 0;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
.language-list li {
    background-color: #63f788;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    color: #535353;
    transition: background-color 0.2s ease;
}

.language-list li:hover {
    background-color: #525151;
    color: #63f788;
    cursor: pointer;
}


.project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .project-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-card-content {
            padding: 20px;
        }
        
        .project-card-content h3 {
            margin-top: 0;
            font-size: 1.25em;
        }
        
        .project-card-content p {
            font-size: 0.9em;
            color: #6c757d;
        }
        
        .project-card-content a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 16px;
            background-color: #63f788;
            color: rgb(97, 97, 97);
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.2s;
        }
        
        .project-card-content a:hover {
            background-color: #0056b3;
        }

        .contact-form {
            max-width: 600px;
            margin: 20px auto;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ced4da;
            border-radius: 5px;
        }

        .contact-form button {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #f8f9fa;
            color: #63f788;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            transition: background-color 0.2s;
        }

        .contact-form button:hover {
            background-color: #0056b3;
        }

        /* CV Download Button */
        .cv-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background-color: #63f788;
            color: rgb(97, 97, 97);
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.2s;
            font-weight: bold;
        }