body {
    background-color: #F5EEDC;
    color: #050315;
    font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
    font-size: 13px;
    padding: 40px 0;
}

.navbar {
    padding: 10px;
    right: 0;
    color: #050315;
    font-size: 16px;
    text-decoration: none;
    text-align: right;
}

.name {
    font-size: 25px;
    text-decoration: none;
    text-align: left;
    color: #050315;
    padding: 10px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F5EEDC;
    z-index: 1000;
    padding: 10px 5vw;
}

.selfie {
    width: 400px;
    height: 400px;
    border-radius: 90%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hello {
    font-size: 100px;
    text-decoration: none;
    text-align: left;
    color: #2f27ce;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.intro {
    font-size: 100px;
    text-decoration: none;
    text-align: left;
    color: #050315;
    padding: 10px;
    font-weight: bold;
}

.me {
    padding: 120px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.me .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.me h1 {
    font-size: 90px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    color: #2f27ce;
}

.me .outline {
    font-size: 70px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px #050315;
    display: block;
    margin-bottom: 30px;
    line-height: 1.1;
}

.me p.highlight {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 500px;
    color: #050315;
    font-weight: 500;
}

.me p.highlight strong {
    color: #2f27ce;
    font-weight: 700;
}

#about, .projects, .contact {
    padding-left: 0;
    padding-right: 0;
    padding-top: 80px;
}

.about .hr {
    color:#2f27ce;
    height: 5px;
}

.introduction {
    font-size: 20px;
    font-weight: 500;
    color: #050315;
}

/* About section styles */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #050315;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skill-badge {
    background-color: rgba(47, 39, 206, 0.1);
    color: #2f27ce;
    border: 1px solid #2f27ce;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.skill-badge i {
    margin-right: 6px;
}

.skill-badge:hover {
    background-color: #2f27ce;
    color: white;
    transform: translateY(-2px);
}

.education-list, .interest-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.education-list li, .interest-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.education-list li:before, .interest-list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #2f27ce;
}

#about h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2f27ce;
    position: relative;
    padding-bottom: 8px;
}

#about h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #2f27ce;
}

/* Projects section styles */
.projects {
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
}

.projects .hr {
    color: #2f27ce;
    height: 5px;
    margin-bottom: 50px;
}

.project-container {
    position: relative;
}

.project-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.project-year {
    flex: 0 0 120px;
    color: #727888;
    font-size: 16px;
    font-weight: 500;
    padding-top: 6px;
}

.project-content {
    flex: 1;
    position: relative;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: #050315;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.project-link {
    color: #2f27ce;
    font-size: 22px;
    margin-left: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.project-link:hover {
    transform: translateY(-3px) translateX(3px);
    background-color: rgba(47, 39, 206, 0.1);
}

.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: #505565;
    margin-bottom: 20px;
    max-width: 90%;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

/* Optional: add a vertical timeline line */
.project-container:before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(47, 39, 206, 0.2);
}

.project-title-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.project-title-link:hover {
    color: #2f27ce;
}

/* Contact section styles */
.contact {
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
    background-color: #F5EEDC;
}

.contact .hr {
    color: #2f27ce;
    height: 5px;
    margin-bottom: 50px;
}

.simple-card {
    background-color: #F5EEDC;
    border-radius: 12px;
    padding: 30px;
    
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #050315;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #505565;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.simple-btn {
    background-color: #2f27ce;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 991.98px) {
    .me {
        padding: 80px 0 0 0;
    }
    .selfie {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .header {
        flex-direction: column;
        padding: 10px 2vw;
    }
    .me h1, .me .outline {
        font-size: 2.5rem;
    }
    .selfie {
        width: 180px;
        height: 180px;
    }
    .me {
        padding: 60px 0 0 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .project-title {
        font-size: 20px;
        flex-wrap: wrap;
    }
    .project-description {
        max-width: 100%;
    }
    .project-year {
        padding-top: 3px;
    }
    .project-container:before {
        left: 30px;
    }
    .header .navbar {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .header .navbar a {
        padding: 5px 8px;
        font-size: 14px;
    }
    .name {
        text-align: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 575.98px) {
    .me {
        padding: 40px 0 0 0;
    }
    .selfie {
        width: 120px;
        height: 120px;
    }
    .header {
        padding: 10px 1vw;
    }
    .me p.highlight {
        font-size: 18px;
        max-width: 100%;
    }
    .introduction {
        font-size: 16px;
    }
    .project-title {
        font-size: 18px;
    }
    .project-link {
        font-size: 18px;
    }
    .simple-card {
        padding: 20px 10px;
    }
}




