/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    xbackground-color: #333;
    background-color: #000000;
    color: white;
    padding: 0px 10%;
}

.logo-container {
    flex: 1;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Navigation Styling */
nav ul {
    list-style-type: none;
    display: flex;
}

    nav ul li {
        margin-right: 20px;
    }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: bold;
        }

            nav ul li a:hover {
                color: #999999; /* Hover effect */
            }

section {
    padding: 50px 20px;
}

    section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2em;
    }

.container {
    width: 80%;
    margin: 0 auto;
}

.service {
    margin-bottom: 20px;
}

    .service h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

.portfolio-items {
    display: flex;
    justify-content: space-between;
}

.portfolio-item {
    width: 30%;
    text-align: center;
}

    .portfolio-item img {
        width: 100%;
        height: auto;
    }

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact form button {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

    footer p {
        margin: 0;
    }
