/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('hacker.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}
.hero-content h1 {
    font-size: 3rem;
    color: #0f0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px #0f0, 0 0 20px #00f;
}
.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-content .btn {
    padding: 0.8rem 1.5rem;
    color: #000;
    background: #0f0;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.hero-content .btn:hover {
    background: #00f;
    color: #fff;
}
.hero-content .btn.secondary {
    background: #333;
    color: #fff;
}
.hero-content .btn.secondary:hover {
    background: #0f0;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
}
.about h2 {
    color: #0f0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.about p {
    font-size: 1.2rem;
    color: #ddd;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    text-align: center;
    background: #111;
}
.services h2 {
    color: #0f0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.services ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.services li {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #ddd;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    text-align: center;
}
.contact h2 {
    font-size: 2.5rem;
    color: #0f0;
    margin-bottom: 1.5rem;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact input, .contact textarea, .contact button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
}
.contact input, .contact textarea {
    background: #222;
    color: #fff;
}
.contact button {
    background: #0f0;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact button:hover {
    background: #00f;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(to right, #0f0, #00f);
    color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.thank-you h1 {
    font-size: 3rem;
    color: #0f0;
    text-shadow: 0 0 10px #0f0, 0 0 20px #00f;
    margin-bottom: 1rem;
}
.thank-you h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.thank-you p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}
.thank-you .btn {
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    background: #0f0;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.thank-you .btn:hover {
    background: #00f;
    color: #fff;
}
