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

body {
    font-family: 'Courier New', monospace;
    background: #000000;
    color: #dfbd00;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    padding: 60px 60px 40px;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    margin-bottom: 30px;
    margin-top: 40px;
    box-shadow: 0 0 100px rgba(0, 145, 55, 0.2), inset 0 0 20px rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.header-text {
    margin-left: auto;
    position: relative;
    align-self: flex-end;
    text-align: right;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0e27 50%, #000000 100%);
    z-index: 1;
}

.wave-container {
    position: relative;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 35%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 85%, transparent 100%);
    overflow: hidden;
}

.wave-numbers{
    position: absolute;
    margin-top: 75px;
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 12px;
    color: #c8ff009d;
    animation: wave-move 66s linear infinite;
    filter: blur(1.5px);
}

.wave-numbers.wave2 {
    animation: wave-move 100s linear infinite;
    opacity: 0.7;
    filter: blur(1px);
}

.wave-numbers.wave3 {
    animation: wave-move 90s linear infinite;
    opacity: 0.5;
    filter: blur(.5px);
}

.wave-numbers span {
    display: flex;
    justify-content: center;
    animation: flicker 4s infinite;
}

@keyframes wave-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    10% { opacity: 0.3; }
    20% { opacity: 0.8; }
    30% { opacity: 0.2; }
    40% { opacity: 1; }
    50% { opacity: 0.5; }
    60% { opacity: 0.9; }
    70% { opacity: 0.4; }
    80% { opacity: 0.6; }
    90% { opacity: 0.6; }
}

.profile-photo {
    width: 150px;
    height: 150px;
    box-shadow: 0 0 10px rgba(0, 37, 58, 0.6);
    margin: 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    align-self: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #dfbd00;
    text-shadow: 0 0 10px #002205, 0 0 20px #005a0e;
    letter-spacing: 4px;
}

.subtitle {
    font-size: 1.3em;
    color: #dfbd00;
    margin-bottom: 5px;
    text-shadow: 0 0 5px #bb9f00;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px #00ffff;
}

.contact-info a:hover {
    color: #a5ffbb73;
    text-shadow: 0 0 10px #00ff41;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

nav button {
    padding: 8px 0;
    margin: 10px;
    background: none;
    color: #dfbd00;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

nav button:hover {
    transform: translateY(-2px);
    color: #fff;
    border-bottom-color: rgba(223, 189, 0, 0.5);
}

nav button.active {
    color: white;
}

.content-section {
    display: none;
    animation: fadeIn 0.6s ease;
}

.content-section.active {
    display: block;
}

.card {
    background: rgba(0, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid #292929;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.card::before,
.card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #135000;
}

.card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    border-color: #00520b;
}

h2 {
    color: #dfbd00;
    margin-bottom: 15px;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #b48a00;
}

h2::before {
    content: '> ';
    color: #ffffff;
}

h4::after {
    content: '|';
    color: #00ff15;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

h3 {
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 10px;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4em;
    color: #ffffff;
    text-shadow: 
        0 0 2px #ffffff,
        0 0 10px rgba(255, 166, 0, 0.61);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-title {
    font-weight: 600;
    color: #00cc33;
}

.date {
    color: #00ff99;
    font-style: italic;
    font-size: 0.9em;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #99ff99;
}

ul li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #00ff41;
    font-size: 1em;
}

p {
    color: #99ff99;
}

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

.project-card {
    background: rgba(0, 20, 40, 0.8);
    border: 2px solid rgba(0, 20, 40, 0.8);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ff41, #075700, #00ff41);
    animation: slideDown 2s infinite;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #394357;
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-card p {
    color: #99ff99;
    margin-bottom: 15px;
}

.project-card a {
    color: #00d9ff; /* link color */
    text-decoration: none;
  }

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    padding: 5px 12px;
    border: 1px solid #00ff41;
    font-size: 0.85em;
    text-transform: uppercase;
}

.cert-badge {
    display: inline-block;
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    padding: 8px 15px;
    border: 1px solid #00ff41;
    margin: 5px;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
}

.in-progress {
    background: rgba(255, 0, 0, 0.2);
    color: #ff9532;
    border-color: #d46600;
    animation: blink 1.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #00ff41;
    margin-top: 60px;
    border-top: 2px solid #1d661a;
}

@media (max-width: 568px) {
    h1 {
        font-size: 2em;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
        font-size: 2.5em;
        margin: 0 auto 20px auto;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    nav {
        gap: 10px;
    }

    nav button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

