/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1D4828;
    --accent-yellow: #EBC934;
    --light-gray: #F4F4F4;
    --dark-text: #333333;
    --white: #FFFFFF;
}

body {
    font-family: Arial, sans-serif; /* Professional Typography */
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

/* Global Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    transition: background-color 0.3s ease-in-out;
}

.padded-section {
    padding: 100px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.logo-img {
    /* STYLES FOR ROUND, CLEAR LOGO */
    height: 50px;
    width: 50px;
    border-radius: 50%; 
    object-fit: cover;
    display: block;
    border: 3px solid var(--accent-yellow); /* Highlight border */
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--dark-text);
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--accent-yellow);
}

/* --- Buttons (CTA) --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--dark-text);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}


/* --- 1.1. Hero Section --- */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Uses uploaded image for background */
    background-image: url('site_inProgress.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtext {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-group a {
    margin: 0 10px;
}


/* --- 1.2. Key Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
}


/* --- 2. About Us Section --- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-content p {
    margin-bottom: 20px;
}

.mv-cards {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.mv-cards .card {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-left: 4px solid var(--accent-yellow);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mv-cards .card h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mv-cards .card h4 i {
    margin-right: 10px;
}

.values-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.values-list li {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}


/* --- 3. Services Full Section --- */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-green);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-yellow);
}

.service-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.service-content h3 {
    color: var(--dark-text);
    margin-bottom: 10px;
}


/* --- 4. Projects Section --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image-placeholder {
    height: 200px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image-placeholder img {
    transform: scale(1.05); /* Slight hover zoom effect */
}

.project-card h3 {
    color: var(--primary-green);
    padding: 15px 15px 5px;
}

.project-card .description {
    padding: 0 15px 10px;
    font-size: 0.95rem;
}

.project-card .location,
.project-card .year {
    padding: 0 15px 5px;
    font-size: 0.85rem;
    color: #666;
}

.project-card .location i,
.project-card .year i {
    color: var(--accent-yellow);
    margin-right: 5px;
}

/* --- Team Section --- */
.team-card {
    max-width: 400px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-image-placeholder {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.team-card .role {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}


/* --- 5. Contact Section --- */
.bg-primary-dark {
    background-color: var(--primary-green);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-layout h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form-side textarea {
    resize: vertical;
}

.contact-form-side .btn-secondary {
    /* Adjust button style for dark background */
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    border-color: var(--accent-yellow);
}

.contact-form-side .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

.contact-info-side p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info-side i {
    color: var(--accent-yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

.map-placeholder {
    height: 250px;
    background-color: #333;
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden; /* Ensures iframe respects border-radius */
}


/* --- 6. Footer --- */
.main-footer {
    background-color: var(--dark-text);
    color: #ccc;
    padding: 30px 0;
    font-size: 0.9rem;
    text-align: center;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 15px 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-yellow);
}

.footer-note {
    font-style: italic;
    color: #999;
    margin-top: 10px;
}


/* --- Media Queries (Mobile-First Responsiveness) --- */
@media (max-width: 992px) {
    .headline {
        font-size: 2.8rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }

    .main-nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li a {
        margin: 5px 10px;
    }

    .hero-section {
        background-attachment: scroll; /* Disable fixed background on mobile */
    }

    .headline {
        font-size: 2.2rem;
    }

    .subtext {
        font-size: 1.1rem;
    }

    .hero-section {
        height: 500px;
    }

    .mv-cards {
        flex-direction: column;
    }

    .values-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        width: 90%;
        margin-bottom: 10px;
    }
}