body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #08082e;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('your-image-path.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-content {
    text-align: center;
}

.animated-text {
    font-size: 48px;
    animation: fadeInUp 2s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services {
    padding: 50px 20px;
    text-align: center;
}

.service-item {
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #08082e;
}
