:root {
    --bg-color: #0d1117;
    --text-color: #ffffff;
    --accent-color: #16c79a;
    --hover-color: #13b489;
    --secondary-bg: #161b22;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: blur(10px);
    text-align: center;
    z-index: 1000;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 90px rgba(22, 199, 154, 1), 0 0 90px rgba(22, 199, 154, 0.8), 0 0 90px rgba(22, 199, 154, 0.6);
}

nav {
    display: flex;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 5px;
    padding: 5px 10px;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    font-size: 22px;
    border-radius: 5px;
}

nav a:hover, nav a.active {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(22, 199, 154, 1), 0 0 40px rgba(22, 199, 154, 0.8), 0 0 60px rgba(22, 199, 154, 0.6);
    transform: translateY(-10px) scale(1.05);
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease, background-color 0.3s ease;
}

.content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding-top: 142px;
}

.text-content {
    flex: 1;
    max-width: 600px;
    padding-right: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
    background: linear-gradient(to top left, #ffffff, #13b489);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.job-title {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 90px rgba(22, 199, 154, 1), 0 0 90px rgba(22, 199, 154, 0.8), 0 0 90px rgba(22, 199, 154, 0.6);
}

.description {
    margin-bottom: 30px;
    font-size: 18px;
    color: #a8b2d1;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

.glow img {
    filter: drop-shadow(0 0 5px rgba(22, 199, 154, 1)) 
            drop-shadow(0 0 10px rgba(22, 199, 154, 0.8)) 
            drop-shadow(0 0 15px rgba(22, 199, 154, 0.6));
    transition: filter 0.3s ease;
}

.hire-button {
    background: linear-gradient(400deg, #0055ff, #13b489);
    color: var(--bg-color);
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 960px rgba(22, 199, 154, 0.6), 0 0 1920px rgba(22, 199, 154, 0.4), 0 0 2880px rgba(22, 199, 154, 0.2);
    display: block;
    text-align: center;
    width: 150px;
}

.hire-button:hover {
    background: linear-gradient(0deg, #0055ff, #13b489);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 20px rgba(22, 199, 154, 1);
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #16c79a, #13b489);
    box-shadow: 0 0 99px rgba(22, 199, 154, 0.6), 0 0 999px rgba(22, 199, 154, 0.4), 0 0 99px rgba(22, 199, 154, 0.2);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 150px;
    }

    .profile-image {
        margin: 0 auto 40px auto;
    }

    .hire-button {
        margin: 0 auto;
    }

    h1 {
        font-size: 36px;
    }

    .job-title {
        font-size: 20px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    nav {
        flex-direction: row;
        justify-content: center;
    }

    nav a {
        margin-left: 5px;
        margin-right: 5px;
        font-size: 12px;
    }

    .content {
        padding-top: 185px;
    }

    h2 {
        font-size: 28px;
        margin-top: 120px;
        text-shadow: 0 0 90px rgba(22, 199, 154, 1), 0 0 90px rgba(22, 199, 154, 0.8), 0 0 90px rgba(22, 199, 154, 0.6);
    }
}

footer {
    font-weight: bold;
    background: linear-gradient(to top left, #ffffff, #13b489);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 11px;
    text-align: center;
    padding: 20px;
    color: var(--text-color);
    position: relative;
    bottom: 0;
    width: 100%;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--hover-color);
}

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

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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