body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #C0C0C0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00FFFF;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, #000, #222);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
}

.hero .logo {
    width: 200px;
    margin-bottom: 20px;
}

.hero .cta-buttons .btn {
    background: #00FFFF;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero .cta-buttons .btn:hover {
    background: #FFF;
    color: #00FFFF;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #111;
}

.about .about-image {
    width: 80%;
    max-width: 400px;
    margin-top: 20px;
    border: 2px solid #00FFFF;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background: #222;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #111;
    color: #C0C0C0;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    border: 2px solid #00FFFF;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #000;
    color: #FFF;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
    filter: brightness(1) invert(0);
    transition: filter 0.3s ease;
}

.social-icons img:hover {
    filter: brightness(1);
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: #111;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 2px solid #00FFFF;
    border-radius: 5px;
    background: #222;
    color: #FFF;
}

.contact button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #00FFFF;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #FFF;
    color: #00FFFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .cta-buttons .btn {
        padding: 8px 16px;
    }

    .card {
        width: 200px;
    }

    .service-cards {
        gap: 10px;
    }

    .about .about-image {
        width: 100%;
    }

    .contact form {
        max-width: 300px;
    }
}