/* Futuristic TRON-style theme */
body {
    background-color: #000;
    color: #0ff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid #0ff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0ff;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(0, 0, 0, 0.9));
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #0ff;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid #0ff;
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #0ff;
    color: #000;
}

.content {
    padding: 50px 10%;
    background: #111;
    border-bottom: 2px solid #0ff;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background: #222;
    padding: 20px;
    margin: 20px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px #0ff;
    width: 30%;
    min-width: 250px;
    border-radius: 10px;
}

footer {
    padding: 20px;
    background: #000;
    border-top: 2px solid #0ff;
}
