
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

a {
    color: #ffffff;
    text-decoration: none;
}

header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 300px;
    text-align: center;
    color: white;
    padding-top: 100px;
    animation: fadeIn 1.5s ease-out forwards;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
}

section {
    padding: 40px 20px;
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
    visibility: hidden;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service, .project {
    background-color: #333;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    animation: fadeIn 1s ease-out forwards;
}

.service h3, .project p {
    margin: 0;
}

.project img {
    max-width: 100%;
    border-radius: 5px;
}

footer {
    background-color: #1a1a1a;
    padding: 10px;
    text-align: center;
}

button, .social-button {
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

button:hover, .social-button:hover {
    background-color: #ff6600;
}

/* Scroll animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fancy hover effect for navigation */
header nav ul li a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Fancy scroll effect */
.hero, .service, .project {
    transition: transform 0.3s ease-in-out;
}

.hero:hover, .service:hover, .project:hover {
    transform: scale(1.05);
}
