* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Arial', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #39FF14;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s, font-weight 0.3s;
    text-decoration: none;
}

.active-link {
    color: #39FF14;
    font-weight: bold;
}


#home:target~header nav ul li .link-home {
    color: #39FF14;
    font-weight: bold;
}


#about:target~header nav ul li .link-about {
    color: #39FF14;
    font-weight: bold;
}


#education:target~header nav ul li .link-edu {
    color: #39FF14;
    font-weight: bold;
}


#exp:target~header nav ul li .link-exp {
    color: #39FF14;
    font-weight: bold;
}

#pro:target~header nav ul li .link-pro {
    color: #39FF14;
    font-weight: bold;
}

#skills:target~header nav ul li .link-skills {
    color: #39FF14;
    font-weight: bold;
}


#contact:target~header nav ul li .link-contact {
    color: #39FF14;
    font-weight: bold;
}

nav ul li a:hover {
    color: #39FF14;
}

section {
    padding: 100px 50px 50px 50px;
    color: white;
}

.home-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 50px;
    background-color: #000;
    min-height: 100vh;
    color: white;
}

.home-text {
    max-width: 50%;
}

.home-text .role {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 10px;
}

.home-text h1 {
    font-size: 55px;
    margin: 10px 0;
}

.home-text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}

.home-image img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 235, 133, 0.7);
}

.home-social {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #39FF14;
    border-radius: 50%;
    color: #39FF14;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #39FF14;
    color: #000;
    transform: scale(1.1);
}

.about-section {
    display: flex;
    justify-content: center;
    padding: 100px 50px;
    background-color: #000;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.2);
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 235, 133, 0.5);
}

.about-info {
    color: #ccc;
    max-width: 550px;
}

.about-info h1 {
    color: #39FF14;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-info p {
    font-size: 18px;
    line-height: 1.6;
}


@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-info {
        max-width: 100%;
    }

    .about-image img {
        width: 80%;
        margin-bottom: 20px;
    }
}


.education-section {
    background-color: #000;
    padding: 100px 50px;
    color: white;
    text-align: center;
}

.education-section .section-title {
    font-size: 42px;
    color: #39FF14;
    margin-bottom: 50px;
    font-weight: bold;
}

.edu-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.edu-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.2);
    width: 100%;
    max-width: 900px;
    gap: 20px;
    transition: transform 0.3s;
}

.edu-card:hover {
    transform: translateY(-5px);
}

.edu-info {
    text-align: left;
    color: #ccc;
}

.edu-info h2 {
    color: #39FF14;
    font-size: 22px;
    margin-bottom: 10px;
}

.edu-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.edu-logo img {
    width: 100px;
    height: auto;
    background-color: white;
}

.work-section {
    background-color: #000;
    padding: 100px 50px;
    color: white;
    text-align: center;
}

.work-section .section-title {
    font-size: 42px;
    color: #39FF14;
    margin-bottom: 50px;
    font-weight: bold;
}

.work-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.work-card {
    display: flex;

    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.2);
    width: 100%;
    max-width: 900px;
    gap: 20px;
    transition: transform 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-info {
    text-align: left;
    color: #ccc;
}

.work-info h2 {
    color: #39FF14;
    font-size: 22px;
    margin-bottom: 10px;
}

.work-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.projects-section {
    background-color: #000;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

.projects-section .section-title {
    font-size: 42px;
    color: #39FF14;
    margin-bottom: 50px;
    font-weight: bold;
}

.pro-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.pro-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.2);
    width: 100%;
    max-width: 900px;
    gap: 20px;
    transition: transform 0.3s;
}

.pro-card:hover {
    transform: translateY(-5px);
}

.pro-info {
    text-align: left;
    color: #ccc;
}

.pro-info h2 {
    color: #39FF14;
    font-size: 22px;
    margin-bottom: 10px;
}

.pro-info p {
    font-size: 16px;
    line-height: 1.6;
}


@media (max-width: 900px) {
    .pro-card {
        flex-direction: column;
        text-align: center;
    }

    .pro-info {
        max-width: 100%;
    }
}


.skills-section {
    background-color: #000;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

.skills-section .section-title {
    font-size: 42px;
    color: #39FF14;
    margin-bottom: 50px;
    font-weight: bold;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.skills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.skill-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.skill-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.5);
}

.contact-section {
    background-color: #000;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

.contact-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    box-shadow: 0 0 20px rgba(55, 255, 20, 0.2);
}

/* LEFT SIDE */
.contact-left {
    width: 40%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-left h3 {
    font-size: 22px;
    color: #39FF14;
    margin-bottom: 5px;
}

.contact-left p {
    color: #ccc;
    font-size: 18px;
}

.icons i {
    font-size: 28px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.icons i:hover {
    color: #39FF14;
    transform: scale(1.15);
}


.contact-form {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px #39FF14;
}

.contact-form button {
    background-color: #39FF14;
    color: #000;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background-color: #2ecc71;
    transform: scale(1.05);
}


@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-left,
    .contact-form {
        width: 100%;
        text-align: center;
    }

    .contact-left {
        text-align: center;
    }
}

.contact-left-title {
    font-size: 40px;
    font-weight: bold;
    color: #39FF14;
    margin-bottom: 25px;
}

.info-item a {
    color: #ccc;

    transition: 0.3s;
}

.info-item a:hover {
    color: #39FF14;
}

.main-footer {
    background-color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    color: #ccc;
    margin-top: 50px;
}

.footer-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 14px;
    color: #888;
}