/* Basic Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; margin-bottom: 20px; }
h3 { font-size: 1.5em; margin-bottom: 10px; }

/* Header and Navigation */
header {
    background: #004d40; /* Dark Teal */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header .tagline {
    font-size: 1.2em;
    margin-bottom: 15px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #92b0ac; /* Lighter shade for hover */
}

/* Hero Section */
.hero {
    /* Change 'banner.jpg' to your image file name */
    background: url('Banner.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This semi-transparent overlay makes the text easier to read */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #e65100; /* Orange */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #bf360c; /* Darker orange */
}

/* Section Styles */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(odd) {
    background-color: #fcfcfc;
}

/* Services Section */
.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1 1 200px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item li {
    padding: 5px 0;
}

/* Contact Form */
.contact-section form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-section label {
    margin-top: 10px;
    font-weight: 700;
}

.contact-section input, .contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-section .btn {
    margin-top: 20px;
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* --- Our Work Page Specific Styles --- */

.work-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.work-section .intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.job-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
}

.job-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.job-details {
    padding: 20px;
    text-align: left;
}

.job-details h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #004d40;
}

.job-details .location {
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

/* --- Social Media Links Styles --- */
.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e65100; /* Orange color from your button style */
}

/* --- Blog --- */

        aside {
            flex: 1; /* Sidebar takes up less space */
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            height: fit-content; /* Stops sidebar from stretching full height */
        }
        .post-preview {
            background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        .post-preview h2 a {
            color: #007bff;
            text-decoration: none;
        }
        .post-meta {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 10px;
        }

        .blogcontainer {
            max-width: 900px;
            margin: 20px auto;
            padding: 0 20px;
            display: flex; /* Flexbox for main content and sidebar */
            gap: 30px;
        }
        main {
            flex: 3; /* Main content takes up more space */