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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(47, 79, 47, 0.9);
    z-index: 1000;
    padding: 1rem 0;
    animation: slideDown 1s ease-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px #228B22;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: #654321;
    text-shadow: 0 0 10px #654321;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2F4F2F 0%, #228B22 50%, #5D4037 100%);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.3;
    animation: parallax 20s infinite linear;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #228B22;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #333;
}

.cta-button {
    background: #654321;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.cta-button a {
    color: #fff;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #654321;
}

.services {
    padding: 5rem 2rem;
    background: #2F4F2F;
    color: #fff;
}

.services h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #228B22;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(93, 64, 55, 0.8);
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1s ease-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.about {
    padding: 5rem 2rem;
    background: #228B22;
    color: #fff;
    text-align: center;
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #2F4F2F;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact {
    padding: 5rem 2rem;
    background: #5D4037;
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #654321;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact-form button {
    background: #2F4F2F;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #228B22;
}

footer {
    padding: 2rem;
    background: #2F4F2F;
    color: #fff;
    text-align: center;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes parallax {
    from { transform: translateX(0); }
    to { transform: translateX(-100px); }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}
