body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: #fff;
    text-align: center;
}

header {
    padding: 80px 20px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    animation: fadeSlide 2s ease-in-out;
}

.animate-title {
    font-size: 42px;
    animation: glow 2s infinite alternate;
}

.subtitle {
    font-size: 20px;
    margin-top: 10px;
}

.about, .services {
    padding: 40px 20px;
}

.service-card {
    background: #222;
    margin: 15px auto;
    padding: 20px;
    width: 80%;
    border-radius: 12px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

/* Keyframe Animations */
@keyframes glow {
    from { text-shadow: 0 0 10px #fff; }
    to { text-shadow: 0 0 20px #00d4ff; }
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fade 2s ease-in;
}

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

footer {
    padding: 15px;
    background: #000;
    font-size: 14px;
}
