body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #4f5d65;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #4f5d65;
    color: #fff;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #4f5d65;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #6c7a89;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover{
    background-color: #5a6b75;
}

.dropdown:hover .dropdown-content {
    display: inline-block;
}


.dropdown:hover .dropbtn {
    background-color: #3e4a52;
}
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background-color: #37424a;
    color: #fff;
    padding: 50px;
    /*box-sizing: border-box;*/
}

.hero-text{
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 49px;
    line-height: 1.0;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #37424a;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ddd;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.education-section {
    padding: 50px;
    background-color: #2c3e50;
    color: #fff;
}

.education-content {
    display: flex;
    flex-wrap: wrap;
    gap: auto;
    justify-content: space-between;
    align-items: center;
}

.education-left {
    flex: 1;
    min-width: 300px;
}

.education-right {
    flex: 1;
    min-width: 300px;
}

.education-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.education-left p {
    font-size: 16px;
    margin-bottom: 10px;
}

.gpa {
    color: #e74c3c;
}

.education-right img {
    max-width: 100%;
    border-radius: 10px;
}

.work-experience-section {
    padding: 50px;
    background-color: #37424a;
    color: #fff;
}

.work-experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.work-experience-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.work-experience-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #e74c3c;
}

.timeline-entry {
    position: relative;
    margin-bottom: 30px;
}

/*.timeline-dot {
    position: absolute;
    left: 14px;
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
}*/

.timeline-content {
    background: #37424a;
    padding: 20px;
    border-radius: 10px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.company-name {
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 5px;
}

.job-date-location {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.job-description {
    font-size: 16px;
    line-height: 1.5;
}

.skills-section {
    padding: 50px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.skills-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-column {
    flex: 1;
    min-width: 200px;
    margin: 0 20px;
}

.skills-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.skills-column ul {
    list-style: none;
    padding: 0;
}

.skills-column ul li {
    font-size: 16px;
    margin-bottom: 5px;
}


.projects-section {
    padding: 50px;
    background-color: #37424a;
    color: #fff;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-entry {
    background: #2c3e50;
    padding: 20px;
    border-radius: 10px;
}

.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.project-thumbnail {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    /*height: auto;*/
    /*object-fit: cover;*/
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.project-description h3 {
    font-size: 24px;
    margin-top: 10px;
}

.project-description p {
    font-size: 16px;
    line-height: 1.5;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

footer {
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
    color: #e74c3c;
}
