/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and General Layout */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5; /* Light gray background */
    color: black; /* Black text */
}

/* Header Styling */
header {
    background-color: #fff; /* White background for header */
    padding: 20px 0;
    text-align: center; /* Center-aligns header content */
    border-bottom: 1px solid #ddd; /* Light gray border under the header */
}

header h1 {
    font-size: 2rem; /* Adjust the font size for better readability */
    font-weight: 400; /* Lighter font weight for better appearance */
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase; /* Makes the header text uppercase */
}

/* Navigation Styling */
nav#nav-menu {
    display: flex; /* Horizontal layout for the navigation menu */
    justify-content: center; /* Centers the menu items */
    list-style: none; /* Removes bullets */
    margin-top: 10px;
}

nav#nav-menu ul {
    display: flex;
    gap: 20px; /* Adds space between menu items */
}

nav#nav-menu li {
    font-size: 1rem; /* Slightly smaller text for navigation links */
}

nav#nav-menu a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav#nav-menu a:hover {
    background-color: #ddd; /* Adds a hover effect to links */
}

/* Section Styles */
section {
    padding: 50px 20px;
    margin: 20px 0;
}

/* Header and Navigation Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px 0; /* Reduced padding for mobile */
    }

    header h1 {
        font-size: 1.8rem; /* Adjust header size for smaller screens */
    }

    nav#nav-menu {
        flex-direction: column; /* Stack navigation items vertically */
        gap: 10px; /* Space between items */
        padding: 10px 0;
    }

    nav#nav-menu ul {
        display: flex;
        flex-direction: column; /* Stack list items vertically */
        gap: 10px;
    }

    nav#nav-menu a {
        font-size: 1.1rem; /* Slightly bigger font for readability */
    }
}


























/* Hero Section */
.hero {
    background-color: #bdbdbd; /* Slightly darker gray */
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: black;
}

.cta-button {
    display: inline-block;
    background-color: #ff5722; /* orange button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #e64a19; /* darker orange */
}

/* About Section */
.about {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: black;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    color: black;
}

.service-item {
    margin: 20px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 24px;
    color: #333;
}

.service-item p {
    font-size: 18px;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

.testimonials blockquote {
    font-style: italic;
    font-size: 18px;
    margin: 20px 0;
}

.testimonials cite {
    display: block;
    font-weight: bold;
    color: #333;
}

/* Portfolio Section */
.portfolio {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.portfolio h2 {
    font-size: 32px;
    color: black;
}

.portfolio-item {
    display: block; /* Change from inline-block to block for larger images */
    margin: 20px auto; /* Center the item */
    width: 80%; /* Adjust to make the images larger */
    text-align: center;
}

.portfolio-item img {
    width: 100%; /* Ensure image scales to container width */
    height: auto;
    border-radius: 5px;
}

.portfolio-item a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.portfolio-item a:hover {
    color: #ff5722;
}




















/* Contact Form Section */
.contact-form {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

.contact-form h2 {
    font-size: 32px;
    color: black;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color: #ff5722;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e64a19;
}

/* Footer Section */
footer {
    background-color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: black;
}
