/* General Styling */
body {
    font-family: 'Courier New', monospace; /* Classic hacker-style font */
    margin: 0;
    padding: 0;
    background: #001a00; /* Deep black-green background */
    color: #00FF41; /* Fluorescent Green text */
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(135deg, #002B00, #000000); /* Dark Emerald fading into black */
    color: #00FF41; /* Fluorescent Green */
    padding: 50px;
    text-shadow: 2px 2px 10px rgba(0, 255, 65, 0.8); /* Green neon glow */
    font-size: 1.5em;
    font-family: 'Courier New', monospace;
}

/* Navigation Bar */
nav {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #00FF41; /* Neon Green */
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    background: #003300;
    color: #00FF41;
    box-shadow: 0 0 10px #00FF41; /* Green glow */
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    background: rgba(0, 26, 0, 0.9); /* Slightly transparent deep green for contrast */
    border-radius: 10px;
}

/* Titles */
h2 {
    font-size: 28px;
    font-weight: bold;
    color: #00FF41; /* Neon Green */
    text-transform: uppercase;
    text-shadow: 0 0 15px #00FF41; /* Glow effect */
}

/* Resume Button */
.button {
    display: inline-block;
    background: black;
    color: #00FF41;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.button:hover {
    background: #00FF41;
    color: black;
    box-shadow: 0 0 15px #00FF41;
}

/* Document Grid */
.doc-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.doc-card {
    background: rgba(0, 26, 0, 0.9);
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease-in-out;
}

.doc-card h3 {
    color: #00FF41;
}

.doc-card:hover {
    background: rgba(0, 255, 65, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 15px #00FF41;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #002B00, #000000);
    color: #00FF41;
    padding: 20px;
    font-size: 14px;
    margin-top: 30px;
    text-shadow: 0 0 10px #00FF41;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .doc-grid {
        flex-direction: column;
        align-items: center;
    }
}


.email-link, .phone-link, .whatsapp-link {
    color: #00ff00; /* Matrix Green */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.email-link:hover, .phone-link:hover, .whatsapp-link:hover {
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
}

