/* --- Global Styles & Variables --- */
:root {
    --green-dark: #38761D; /* Primary Green */
    --green-light: #6AA84F; /* Secondary/Accent Green */
    --text-dark: #333;
    --text-light: #fff;
    --yellow-accent: #FFC43A;
    --grey-light: #F7F7F7;
    --font-heading: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    font-size: 2.2em;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* --- Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--green-dark);
}

.desktop-nav ul {
    list-style: none;
    display: none; /* Hidden on mobile */
}

.desktop-nav li a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 15px;
    font-weight: 500;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--green-dark);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 50px 20px;
}

.hero-section::before { /* Dark overlay for image */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3em;
    margin: 10px 0;
}

.hero-content .subtitle {
    font-weight: 600;
}

.btn-primary {
    background-color: var(--green-dark);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* --- Stats Section --- */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateY(-50%); /* Move up to overlap hero */
    margin-bottom: -50px; /* Counteract the overlap to keep flow */
}

.stat-card {
    flex: 1 1 200px; /* Responsive sizing */
    margin: 5px;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    color: var(--text-light);
    min-height: 120px;
}

.stat-card h3 {
    font-size: 2em;
    margin-bottom: 5px;
}

.light-green {
    background-color: var(--green-light);
}

.dark-green {
    background-color: var(--green-dark);
}

/* --- Comprehensive Offerings --- */
.offerings-section {
    padding: 80px 15px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.offering-card {
    background-color: var(--grey-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-image-wrapper {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-text {
    padding: 20px;
}

.highlight-text {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--green-dark);
}

.right-panel {
    background-color: var(--text-light);
    padding: 0;
}

.right-panel .text-block {
    background-color: var(--yellow-accent);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.offerings-list {
    list-style: none;
    padding: 20px;
}

.offerings-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--green-dark);
    font-weight: 500;
}

.offerings-list i {
    color: var(--green-light);
    margin-right: 10px;
}

/* --- Our Services Section --- */
.services-content {
    padding: 50px 15px;
    background-color: var(--grey-light);
}

.services-list-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.services-list-grid li {
    background-color: var(--text-light);
    padding: 15px;
    border-left: 5px solid var(--green-dark);
    font-weight: 500;
}

.services-list-grid i {
    color: var(--green-dark);
    margin-right: 10px;
}

/* --- Top Enterprises Section --- */
.top-enterprises-section {
    display: flex;
    flex-direction: column;
    padding: 80px 15px;
    gap: 30px;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    text-align: left;
    margin-bottom: 20px;
}

.content-left p {
    margin-bottom: 15px;
}

.content-left .btn-secondary {
    background-color: var(--green-light);
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.image-right {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* --- Products Showcase --- */
.products-showcase {
    padding: 50px 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-card h3 {
    font-size: 1.2em;
    margin: 15px 0 5px;
    color: var(--green-dark);
}

.price {
    font-size: 1.1em;
    color: #b00; /* Red price for contrast */
    font-weight: 600;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    padding: 10px 0;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

/* --- Consultation CTA --- */
.consult-cta-section {
    background-size: cover;
    background-position: center;
    background-color: var(--green-dark); /* Fallback */
    text-align: center;
    padding: 80px 15px;
    color: var(--text-light);
}

.consult-cta-section h2 {
    color: var(--text-light);
}

.btn-cta {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 50px;
    margin-top: 20px;
}

/* --- Why Us Section --- */
.why-us-section {
    padding: 80px 15px;
    text-align: center;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    flex: 1 1 250px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.reason-card i {
    font-size: 3em;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.reason-card p {
    font-weight: 500;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--green-dark);
    color: var(--text-light);
    padding: 40px 0 10px;
}

.main-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1 1 300px;
}

.footer-col h3 {
    color: var(--yellow-accent);
    margin-bottom: 15px;
}

.contact-col i {
    color: var(--yellow-accent);
    margin-right: 8px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5em;
    margin-right: 15px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Desktop Styles (Responsiveness) --- */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    .desktop-nav ul {
        display: flex;
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 4em;
    }
    .stats-section {
        flex-wrap: nowrap;
    }
    .stat-card {
        margin: 0 10px;
    }
    .offerings-grid {
        grid-template-columns: 2fr 1fr;
    }
    .top-enterprises-section {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    /* Mobile Menu Display */
    .desktop-nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px; /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        z-index: 10;
        padding: 10px 0;
        display: none;
    }
    .desktop-nav ul.active {
        display: flex;
    }
    .desktop-nav li a {
        padding: 10px 30px;
        border-bottom: 1px solid #eee;
        display: block;
    }
    
    .stats-section {
        /* Reset vertical stacking for mobile */
        transform: translateY(0);
        margin-bottom: 30px;
    }
}