:root {
    --primary-color: #1b520d; /* RGB(27, 82, 13) */
    --primary-dark: #143a09;
    --primary-light: #2b821a;
    --accent-color: #4CAF50;
    --text-color: #1b520d; /* Text is now green */
    --bg-color: #ffffff; /* Background is now white */
    --light-bg: rgba(27, 82, 13, 0.05);
    --section-bg: #f8f9fa;
    --transition: all 0.3s ease;
    /* Font Families 
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Source Sans Pro', sans-serif;
    */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;
    --font-accent: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 25px 30px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 3px solid var(--primary-color);
}

    .cookie-consent.active {
        transform: translateY(0);
    }

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

    .cookie-text h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--primary-color);
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .cookie-text p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .cookie-text a {
        color: var(--primary-color);
        text-decoration: underline;
        font-weight: 500;
    }

        .cookie-text a:hover {
            color: var(--primary-dark);
        }

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-accent);
    border: none;
    white-space: nowrap;
}

    .cookie-btn.accept {
        background-color: var(--primary-color);
        color: white;
    }

        .cookie-btn.accept:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

    .cookie-btn.settings {
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

        .cookie-btn.settings:hover {
            background-color: var(--light-bg);
        }

    .cookie-btn.decline {
        background-color: #f8f9fa;
        color: #666;
        border: 2px solid #ddd;
    }

        .cookie-btn.decline:hover {
            background-color: #e9ecef;
        }

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

    .cookie-modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(27, 82, 13, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        font-family: var(--font-heading);
        font-weight: 600;
        margin: 0;
    }

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .close-modal:hover {
        background-color: var(--light-bg);
        color: var(--primary-color);
    }

.modal-body {
    padding: 30px;
}

.cookie-option {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(27, 82, 13, 0.1);
}

    .cookie-option:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .option-header h4 {
        font-size: 1.1rem;
        color: var(--primary-dark);
        font-family: var(--font-heading);
        font-weight: 600;
        margin: 0;
    }

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

    .cookie-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

    .cookie-slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: var(--transition);
        border-radius: 50%;
    }

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

    input:checked + .cookie-slider:before {
        transform: translateX(30px);
    }

.option-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(27, 82, 13, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(27, 82, 13, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px; /* Adjust based on your logo's proportions */
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .nav-links > li {
        margin-left: 30px;
        position: relative;
    }

        .nav-links > li > a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
            display: flex;
            align-items: center;
            font-family: var(--font-accent);
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

            .nav-links > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--primary-light);
                transition: var(--transition);
            }

            .nav-links > li > a:hover {
                color: var(--primary-light);
            }

                .nav-links > li > a:hover::after {
                    width: 100%;
                }

.dropdown-icon {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

/* FIXED: Dropdown menu styling to remove bullet points */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid rgba(27, 82, 13, 0.1);
    list-style: none; /* Added this line */
    padding-left: 0; /* Added this line */
    margin: 0; /* Added this line */
}

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        color: var(--text-color);
        padding: 12px 20px;
        display: block;
        text-decoration: none;
        border-bottom: 1px solid rgba(27, 82, 13, 0.05);
        transition: var(--transition);
        font-family: var(--font-accent);
        font-weight: 500;
    }

        .dropdown-menu a:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
            padding-left: 25px;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links > li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: 100vh;
    /*margin-top: 80px;*/
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .slide.active {
        opacity: 1;
    }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.4) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 700px;
    padding: 50px;
    /*background-color: rgba(255, 255, 255, 0.85);*/
    border-radius: 8px;
/*    margin-left: 10%;
*/    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .slide-content h2 {
        /*    font-size: 2rem;
*/ /*-webkit-text-stroke: 1px #4CAF50;*/
        margin-bottom: 20px;
        color: #fff; /* var(--primary-dark);*/
        line-height: 1.2;
        font-family: var(--font-heading);
        font-weight: 700;
        letter-spacing: -0.5px;
    }

.slide p {
    font-size: 1.25rem;
    /*-webkit-text-stroke: 1px #4CAF50;*/
    margin-bottom: 30px;
    color: #fff;
    font-family: var(--primary-dark);
    line-height: 1.7;
    font-weight: 400;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.2rem;
}

    .slider-btn:hover {
        background-color: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

    .slider-dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .btn:hover {
        background-color: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(27, 82, 13, 0.2);
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

    .btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Sections */
section {
    padding: 0px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 20px;
    color: var(--primary-dark);
}

    .section-title h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        color: var(--primary-color);
        font-family: var(--font-heading);
        font-weight: 700;
        letter-spacing: -0.5px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

    .section-title p {
        max-width: 700px;
        margin: 30px auto 0;
        color: #555;
        font-size: 1.2rem;
        font-family: var(--font-body);
        line-height: 1.7;
        font-weight: 400;
    }

/* Philosophy Section */
.philosophy {
    background-color: var(--section-bg);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-intro {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.6;
}

.philosophy-content p {
/*    font-size: 1.15rem;
*/    margin-bottom: 20px;
    color: #444;
    font-family: var(--font-body);
    line-height: 1.25;
    font-weight: 400;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

    .principle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(27, 82, 13, 0.1);
    }

    .principle-card h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.4rem;
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .principle-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        font-family: var(--font-body);
    }

/* What We Do Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    /*    background-color: white; */
    /*border-radius: 8px;*/
    padding: 35px;
    text-align: center;
    /*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
*/ transition: var(--transition);
    /*    border: 1px solid rgba(27, 82, 13, 0.1);
*/
}

.location-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(27, 82, 13, 0.1);
}

    .solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(27, 82, 13, 0.1);
    }

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.solution-card p {
    color: #555;
    line-height: 1.7;
    font-family: var(--font-body);
}

    .solution-card p.address {
        font-size: 0.9em;
    }

.location-card .url {
    font-size: 0.9em;
    word-wrap: break-word; /* legacy support */
    overflow-wrap: break-word; /* modern browsers */
    word-break: break-all; /* forces break if needed */
    white-space: normal; /* ensures wrapping is allowed */
}

/* Sectors Section */
.sectors {
    background-color: var(--section-bg);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .sector-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(27, 82, 13, 0.1);
    }

.sector-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.sector-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Why Us Section */
.benefits-list {
    max-width: 800px;
    margin: 10px auto 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 0px;
}

    .benefit-item:not(:last-child) {
        border-bottom: 1px solid rgba(27, 82, 13, 0.1);
        margin-bottom: 10px;
    }

/*.benefit-item:last-child {
    border-bottom: none;
}*/


.benefit-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 25px;
    margin-top: 5px;
    min-width: 40px;
}

.benefit-item h3 {
/*    font-size: 1.3rem;
*/    margin-bottom: 10px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
    font-family: var(--font-body);
    margin-bottom: 20px;
}

/* Values Section */
.values {
    background-color: var(--section-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(27, 82, 13, 0.1);
    }

    .value-card h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.3rem;
        font-family: var(--font-heading);
        font-weight: 600;
        display: flex;
        align-items: center;
        line-height: 1.4;
    }

.value-icon {
    margin-right: 12px;
    color: var(--primary-light);
    font-size: 1.4rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-family: var(--font-body);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #444;
    font-family: var(--font-body);
    line-height: 1.8;
    font-weight: 400;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(27, 82, 13, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        color: var(--primary-dark);
        font-weight: 600;
        font-family: var(--font-accent);
        font-size: 1rem;
    }

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
    color: #333;
    background-color: white;
    font-family: var(--font-body);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(27, 82, 13, 0.1);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-accent);
}

/* Footer */
footer {
    background-color: rgba(27, 82, 13, 0.05);
    padding: 70px 0 40px;
    border-top: 1px solid rgba(27, 82, 13, 0.1);
    margin: 50px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-light);
    }

.footer-column p {
    margin-bottom: 20px;
    color: #555;
    font-family: var(--font-body);
    line-height: 1.7;
}

.affiliations {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.affiliation {
    background-color: #0d203e;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(27, 82, 13, 0.2);
    font-family: var(--font-accent);
    width: 100px;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(27, 82, 13, 0.1);
        border-radius: 50%;
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
        font-size: 1.1rem;
    }

        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #555;
        text-decoration: none;
        transition: var(--transition);
        font-family: var(--font-body);
        font-weight: 500;
    }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 8px;
        }

    .footer-links i {
        width: 20px;
        margin-right: 10px;
        color: var(--primary-light);
    }

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(27, 82, 13, 0.1);
    color: #777;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide h2 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .slide h2 {
        font-size: 2.3rem;
    }

    .slide p {
        font-size: 1.1rem;
    }

    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
        padding: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .logo-image {
        height: 45px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(27, 82, 13, 0.1);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }

        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-links > li {
            margin: 0;
            width: 100%;
            border-bottom: 1px solid rgba(27, 82, 13, 0.1);
        }

            .nav-links > li:last-child {
                border-bottom: none;
            }

            .nav-links > li > a {
                padding: 15px 0;
                width: 100%;
                font-size: 1.1rem;
            }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        width: 100%;
        background-color: rgba(27, 82, 13, 0.03);
        border-radius: 0;
        margin-top: 0;
        padding-left: 0; /* Ensure no padding on mobile too */
    }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-menu a {
            padding: 12px 30px;
            border-bottom: 1px solid rgba(27, 82, 13, 0.05);
        }

            .dropdown-menu a:hover {
                padding-left: 35px;
            }

    .slide h2 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slide-content {
        padding: 30px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .slider-controls {
        bottom: 20px;
    }

    .slider-dots {
        bottom: 20px;
        right: 20px;
    }

    .btn {
        padding: 14px 28px;
        display: block;
        width: fit-content;
        margin-bottom: 10px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 25px;
    }

    .logo-image {
        height: 40px;
    }

    section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .cookie-consent {
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .modal-content {
        max-height: 80vh;
    }
}

@media (max-width: 576px) {
    .slide h2 {
        font-size: 1.5rem;
    }

    .slide p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .philosophy-intro {
        font-size: 1.3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .principles-grid,
    .solutions-grid,
    .sectors-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .logo-image {
        height: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cookie-consent {
        padding: 15px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
    }
}


/* Video Slide Styles */
.video-slide {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.video-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-video-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-video-control:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        display: none;
    }

/* Adjust slider dots for 6 slides */
.slider-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 63%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .video-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-video-control {
        margin-top: 10px;
    }

    .hero-video {
        height: 100%;
        width: auto;
    }
}

/* List styling inside philosophy section - special treatment */
.philosophy-content ul,
.philosophy-content ol {
    /*background-color: rgba(27, 82, 13, 0.02);*/ /* Very light green background */
    padding: 0px 20px 20px 20px;
    /*    border-left: 3px solid var(--primary-light);
*/ border-radius: 4px;
    margin: 0px 0 0px 40px;
}

.philosophy-content li {
    margin-bottom: 1px;
    padding-left: 5px;
}


.benefit-item ul,
.benefit-item ol {
    /*background-color: rgba(27, 82, 13, 0.02);*/ /* Very light green background */
    padding: 0px 20px 20px 20px;
    /*    border-left: 3px solid var(--primary-light);
*/ border-radius: 4px;
    margin: 0px 0 0px 40px;
}

.benefit-item li {
    margin-bottom: 1px;
    padding-left: 5px;
}


/* ===== People Listing with Collapsible Bios ===== */
/**,
*::before,
*::after {
    box-sizing: border-box;
}*/




/*.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}*/

/*@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
*/


.page-section--people-listing {
    margin-top: 20px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d";
}

.people-listing * {
    margin: auto;
    box-sizing: border-box;
}


.people-listing .section-title {
    text-align: center;
    /*    margin: 2.5em 0 0 0;*/
    /*margin: auto auto auto auto;*/
}

.people-listing .block-people-listing-post {
    margin-bottom: 2.5em;
    transition: background 0.3s ease-out, padding 0.3s ease-out;
    padding: 0.625em;
}

    .people-listing .block-people-listing-post .image {
        position: relative;
        background: no-repeat transparent 50% 50%;
        background-size: cover;
    }

        .people-listing .block-people-listing-post .image:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 100%;
        }

        .people-listing .block-people-listing-post .image > .content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .people-listing .block-people-listing-post .text {
        text-align: center;
        opacity: 1;
        transition: color 0.3s ease-out;
    }

        .people-listing .block-people-listing-post .text p {
            opacity: 1;
            transition: opacity 0.3s ease-out;
            font-size: 0.75em;
        }

        .people-listing .block-people-listing-post .text .content {
            font-size: 1em;
        }

            .people-listing .block-people-listing-post .text .content h3 {
                /*    font-size: 1.375em;*/
                margin-bottom: 0;
                /*margin-right:50px;*/
                /*            font-family: 'Montserrat', sans-serif;
                font-style: normal;
                font-weight: 400;
    */
            }

            .people-listing .block-people-listing-post .text .content p {
                margin-top: 0.625em;
            }

    .people-listing .block-people-listing-post .view-bio {
        text-decoration: none;
    }

        .people-listing .block-people-listing-post .view-bio:hover {
            text-decoration: none;
        }

    .people-listing .block-people-listing-post .bio {
        display: none;
    }

.people-listing-post a:link {
    color: var(--text-color);
}

.people-listing-post a:visited {
    color: var(--text-color);
}

.people-listing-post a:hover {
    color: var(--text-color);
}

.people-listing-post a:active {
    color: var(--text-color);
}

@media (max-width: 62em) {
    .people-listing .block-people-listing-post {
        transition: all 0.3s ease-out;
        box-shadow: 0 0 0 transparent;
        padding: 0;
        background: transparent;
    }
}

.people-listing .block-people-listing-post.open {
    /*background: #052244;*/
    background: white;
    /*color: #fff;*/
    padding: 0.625em;
}

    .people-listing .block-people-listing-post.open .text {
        /* color: #fff;*/
    }

        .people-listing .block-people-listing-post.open .text p {
            /*color: #fff;*/
        }

@media (max-width: 62em) {
    .people-listing .block-people-listing-post.open .bio {
        display: block !important;
    }

        .people-listing .block-people-listing-post.open .bio .info {
            display: none;
        }
}

.close-btn {
    /*color: #fff !important;*/
    color: var(--text-color);
}

.people-bio {
    position: relative;
    margin-bottom: 1.25em;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: -2.625em;
    /*color: #fff;*/
    border-radius: 2px;
}

    .people-bio .bio-content {
        padding: 1.25em;
        /*background: #052244;*/
        background: var(--bg-color);
    }

        .people-bio .bio-content .info {
            text-align: center;
        }

        .people-bio .bio-content .bio-text {
            /*max-width: 500px;*/
            margin: 0 auto;
            padding: 20px;
        }

    .people-bio.active {
        max-height: 1000px;
    }

    .people-bio .close-btn {
        position: absolute;
        top: 0.625em;
        right: 1.875em;
        /*color: #fff !important;*/
        color: var(--text-color);
    }

@media (max-width: 62em) {
    .people-bio {
        display: none !important;
    }
}



.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps aspect ratio */
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* or desired height */
    overflow: hidden;
    background: #000; /* prevents white flash */
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1; /* behind video */
}
