/* General Reset and Font */
:root {
    --primary-color: #1C4412; /* Dark Green */
    --secondary-color: #f0f8ff; /* Light Blue/White */
    --text-color: #333;
    --light-bg: #e6f2ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

/* Header Styling */
header {
    background-color: #1C4412;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#mark {
    display: inline-block;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section (Slide 1 & 2) */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    text-align: left;
    color: white; /* Text over image */
    position: relative;
}

.hero::before { /* Dark overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2%;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 400;
}

.button-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #005030;
}

/* General Content Sections */
.content-section {
    padding: 80px 5%;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.content-section p {
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--light-bg);
}

#solutions-tagline {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
}

.solution-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.solution-card h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

/* Team Section */
.team-section {
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding: 100px 5%;
}

.team-overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.team-section h2 {
    color: white;
}

.team-section p {
    text-align: left;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    background-color: white;
}

.value-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    flex: 1;
    text-align: left;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.commitment-text {
    font-style: italic;
    padding: 20px;
    border-top: 1px solid #ddd;
}

/* Market Section */
.market-section {
    background-color: var(--light-bg);
    display: flex;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1em;
}

.market-img {
   margin: 10px;
   width: 60%;
}

.market-text {
   margin: 0;
   align-content: center;
}

/* News Section (Slide 7) */
.news-section {
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding: 100px 5%;
}

.news-overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
}

.news-section h2 {
    color: white;
}

/* Footer / Contact & Disclaimer (Slides 8 & 9) */
footer {
    /* background-color: var(--primary-color); */
    background-image: linear-gradient(#1C4412, #2B6A1C);
    color: white;
    padding: 50px 5%;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-info h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

.disclaimer {
    text-align: left;
    font-size: 0.85em;
    line-height: 1.5;
}

.disclaimer-title {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    text-decoration: underline;
}

.disclaimer-emphasis {
    font-style: italic;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .solution-grid, .value-cards {
        flex-direction: column;
    }

    .solution-card, .value-card {
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-details, .commitment {
        margin-bottom: 20px;
    }

    .disclaimer {
        text-align: center;
    }

    .market-section {
       flex-direction: column;
    }

    .market-img {
       text-align: center;
       width: 95%;
    }
}