/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1100px;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #005A9C;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #005A9C;
}

/* Hero Section */
.hero {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop'); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('contractor-collage.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 4rem 0 8rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.cta-button {
    background: #005A9C;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #004170;
}

/* Services Section */
.services {
    padding: 2rem 0 6rem;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-boxes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.service-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #005A9C;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0 8rem;
    background: #005A9C;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

footer p {
    margin: 0;
}
