@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

/* Image glow effect */
.about-image {
    position: relative;
    overflow: visible;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    box-shadow: 0 0 30px #077b32;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .radiant-heading {
        font-size: 1.8rem;
    }

    .glow-text {
        font-size: 0.9rem;
    }
}




.project-links i {
    font-size: 1.1rem;
}

/* Ensure navigation is consistent */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
}

/* About page image */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

nav {
    width: 100%;
    height: 10vh;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.logo span {
    color: #077b32;
    text-shadow: 0 0 10px #077b32;
}

.hamburg,
.cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    display: none;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}

.nav-container .links {
    display: flex;
}

.nav-container .links a {
    position: relative;
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}

.nav-container .links a::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #077b32;
    transition: 0.2s linear;
}

.nav-container .links a:hover::before {
    width: 100%;
}

.nav-container .links a:hover {
    color: #077b32;
}

.dropdown {
    z-index: 100;
    position: absolute;
    top: 0;
    transform: translateY(-500px);
    width: 100%;
    height: auto;
    backdrop-filter: blur(4px) brightness(40%);
    box-shadow: 0 0 20px black;
    transition: 0.2s linear;
}

.dropdown .links a {
    display: flex;
    color: white;
    text-decoration: none;
    justify-content: center;
    padding: 15px 0;
    align-items: center;
    transition: 0.2s linear;
}

.dropdown .links a:hover {
    background-color: #077b32;
}

section {
    width: 100%;
    min-height: 90vh;
    padding: 20px;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.main-container .image {
    width: 500px;
    height: 80vh;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 50px #077b32;
}

.main-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-container .image:hover {
    animation: animate 1.5s ease-in-out infinite;
}

@keyframes animate {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.05;
    }

    100% {
        scale: 1;
    }
}

.main-container .content {
    color: white;
    width: 40%;
    min-height: 100px;
}

.content h1 {
    font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
}

.content h1 span {
    color: #077b32;
    text-shadow: 0 0 10px #077b32;
}

.content .typewriter {
    font-size: clamp(1rem, 1rem + 5vw, 2.5rem);
    font-weight: 600;
}

.content .typewriter-text {
    color: #077b32;
    text-shadow: 0 0 10px #077b32;
}

.content p {
    font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
    margin: 10px 0;
}

.social-links {
    display: flex;
    margin: 20px 0;
}

.social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #077b32;
    border-radius: 50%;
    color: #077b32;
    margin: 5px 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
    cursor: pointer;
}

.social-links i:hover {
    scale: 1.3;
    color: black;
    background-color: #077b32;
    filter: drop-shadow(0 0 10px #077b32);
}

.btn-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    width: 150px;
    height: 6vh;
    background-color: #077b32;
    color: white;
    border: none;
    outline: none;
    font-size: 120%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;
    cursor: pointer;
}

.btn:hover {
    scale: 1.1;
    color: #077b32;
    border: 2px solid #077b32;
    background-color: transparent;
    font-weight: 700;
    box-shadow: 0 0 40px #077b32;
}

.resume-btn {
    background-color: transparent;
    border: 2px solid #077b32;
}

.resume-btn:hover {
    background-color: #077b32;
    color: white;
}

/* Page Styles */
.page {
    padding: 50px 10%;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-title span {
    color: #077b32;
    text-shadow: 0 0 10px #077b32;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #077b32;
}

/* About Page Styles */
.about-container {
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.about-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px #077b32;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.education-section,
.certifications-section {
    margin-bottom: 40px;
}

.education-section h3,
.certifications-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #077b32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-item {
    margin-bottom: 25px;
}

.education-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.education-item p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.coursework {
    font-style: italic;
    color: #ccc;
}

.certifications-section ul {
    list-style-type: none;
}

.certifications-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.certifications-section li::before {
    content: "•";
    color: #077b32;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Skills Page Styles */
.skills-container {
    width: 100%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.skill-category {
    background-color: rgba(7, 123, 50, 0.1);
    border: 1px solid #077b32;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(7, 123, 50, 0.3);
}

.skill-category h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #077b32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-item {
    background-color: rgba(7, 123, 50, 0.2);
    color: #077b32;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Experience Page Styles */
.experience-container {
    width: 100%;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #077b32;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #077b32;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: rgba(7, 123, 50, 0.1);
    border: 1px solid #077b32;
    border-radius: 10px;
}

.timeline-date {
    color: #077b32;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 15px;
    color: #077b32;
}

/* Timeline link enhancements */
.timeline-content ul {
    list-style-type: none;
    padding-left: 5px;
}

.timeline-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.timeline-content li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #077b32;
}

.sub-list {
    margin-top: 8px;
    padding-left: 20px;
}

.sub-list li::before {
    content: "•";
}

.tech-highlight {
    color: #0acf5a;
    font-weight: 500;
    text-shadow: 0 0 3px rgba(7, 123, 50, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-link {
        display: inline-block;
        margin: 3px 0;
        width: 100%;
    }

    .company-link {
        display: block;
        margin-top: 5px;
    }
}

/* Projects Grid Styling */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    background-color: rgba(7, 123, 50, 0.1);
    border: 1px solid #077b32;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(7, 123, 50, 0.3);
}

.project-card h3 {
    color: #077b32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-skills span {
    background-color: rgba(7, 123, 50, 0.2);
    color: #077b32;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-card ul {
    padding-left: 20px;
}

.project-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.project-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.project-links a {
    color: #077b32;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.project-links a:hover {
    color: white;
    text-shadow: 0 0 5px #077b32;
}

.project-links i {
    font-size: 0.9rem;
}

.projects-title {
    margin-top: 80px;
}







.project-card h3 {
    color: #077b32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-skills span {
    background-color: rgba(7, 123, 50, 0.2);
    color: #077b32;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-card ul {
    padding-left: 20px;
}

.project-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #077b32;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #077b32;
    width: 50px;
    height: 50px;
    border: 2px solid #077b32;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #077b32;
}

.contact-form {
    flex: 1;
    background-color: rgba(7, 123, 50, 0.1);
    border: 1px solid #077b32;
    border-radius: 10px;
    padding: 30px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #077b32;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #077b32;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(7, 123, 50, 0.5);
}

/* Responsive Styles */
@media (max-width: 884px) {
    nav .logo {
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    .main-container {
        display: flex;
        flex-direction: column;
    }

    .nav-container .links {
        display: none;
    }

    .hamburg,
    .cancel {
        display: block;
    }

    .main-container .content {
        width: 80%;
        margin-top: 50px;
    }

    .social-links i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .main-container .image {
        z-index: -1;
        width: 50%;
        height: 60%;
    }

    /* About Page Responsive */
    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Timeline Responsive */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    /* Contact Page Responsive */
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .main-container .image {
        width: 80%;
        height: 50%;
        margin-bottom: 0px;
    }

    .main-container .content {
        width: 90%;
    }

    .btn-container {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }
}