/* General styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* Subtle animated background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 255, 157, 0.05),
        rgba(0, 255, 157, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: moveBackground 30s linear infinite;
    z-index: -1;
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}

/* Header and branding */
header {
    background: #000000;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00ff9d;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    width: 90px;
    height: auto;
}

.brand-text h1 {
    margin: 0;
}

.brand-text p {
    color: #cccccc;
}

/* Navigation styling with glow hover */
nav a {
    margin: 15px;
    color: #00ff9d;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00ff9d;
}

/* Section styling */
section {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

/* Service card styling */
.service-card {
    background-color: #1a1a1a;
    border: 1px solid #00ff9d;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}