/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Navigation */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f1c40f;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #f1c40f;
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
}

.cta-btn:hover {
    background-color: #e0b90f;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #fff;
}

.service-item {
    text-align: center;
    padding: 20px;
    width: 30%;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Portfolio Section */
.portfolio {
    background-color: #f1f1f1;
    padding: 50px 0;
    text-align: center;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.portfolio-item {
    display: inline-block;
    margin: 10px;
    padding: 10px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about {
    padding: 50px;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: auto;
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: auto;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

#contact-form button {
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}
