/*
Theme Name: Natex Extracts
Description: A modern WordPress theme for Natex Extracts - botanical extraction company
Version: 1.0
Author: Custom Theme
*/

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

.modern-list.executive-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: #f8fdf9;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(77,156,45,0.08);
    overflow: hidden;
}
.modern-list.executive-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8e4;
    font-size: 1.13rem;
    line-height: 1.7;
    color: #1e3d18;
    background: transparent;
}
.modern-list.executive-list li:last-child {
    border-bottom: none;
}
.list-icon {
    font-size: 2rem;
    color: #4D9C2D;
    flex-shrink: 0;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .modern-list.executive-list li {
        padding: 1.5rem 2rem;
        font-size: 1.13rem;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4D9C2D 0%, #5EB23E 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px; /* Consistent height */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

/* Logo Styles */
.site-logo,
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: white; /* Changed to white */
    transition: color 0.3s ease;
}

.site-logo:hover,
.custom-logo-link:hover {
    color: #f0f0f0; /* Lighter hover color */
}

.custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Main Navigation - Desktop */
.main-navigation {
    display: block; /* Show on desktop */
}

/* Screen-reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.primary-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    color: #f0f0f0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .menu-bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}


/* Body padding to account for fixed header */
body {
    padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .primary-menu {
        gap: 20px;
    }
    
    .primary-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation, show mobile toggle */
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    /* Styles for the opened mobile menu container */
    .main-navigation.active {
        display: block;
        position: fixed;
        top: 70px; /* Position below header */
        left: 0;
        right: 0;
        height: calc(100vh - 70px);
        background: white;
        z-index: 999;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* Mobile menu list layout */
    .primary-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    /* Mobile menu list items */
    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .primary-menu li:last-child {
        border-bottom: none;
    }

    /* Mobile menu link styles - THIS IS THE FIX */
    .primary-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        color: #333 !important; /* Force dark color for links */
        text-decoration: none;
    }

    /* Other mobile adjustments */
    .header-container {
        padding: 12px 15px;
    }
    .custom-logo {
        max-height: 40px;
    }
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .custom-logo {
        max-height: 35px;
    }
    
    body {
        padding-top: 65px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Base responsive styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Fluid container for larger screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

/* Standard container for medium screens */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

/* Adjust padding for tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}

/* Adjust padding for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

.foundation-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Negative margin to counteract padding */
}

.foundation-image,
.foundation-content {
    flex: 1 1 100%;
    padding: 15px;
    box-sizing: border-box;
}

/* Responsive adjustments for foundation grid */
@media (min-width: 768px) {
    .foundation-image,
    .foundation-content {
        flex: 0 0 100%;
    }
    
    .foundation-grid {
        margin: 0 -15px;
    }
}

@media (min-width: 992px) {
    .foundation-image,
    .foundation-content {
        flex: 0 0 50%;
    }
}

/* Ensure images are responsive */
.foundation-image img {
    max-width: 100%;
    height: auto;
    display: block;
}



/* Larger header on scroll */
.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(77, 156, 45, 0.95);
    backdrop-filter: blur(5px);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 60px;
    position: relative;
}

/* Logo Styles */
.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

/* Logo Image */
.site-logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Smaller logo on scroll */
.site-header.scrolled .site-logo img {
    max-height: 32px;
    width: 32px;
    height: 32px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3A7522 0%, #4D9C2D 50%, #5EB23E 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #B5E99F, #4D9C2D);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
.content-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #4D9C2D;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #B5E99F, #4D9C2D);
    margin: 1rem auto;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #5EB23E;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background-color: #f8fdf9;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vision-box, .mission-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #4D9C2D;
}

/* Foundation Section */
.foundation-section {
    background-color: #f8fdf9;
    padding: 4rem 0;
}

.foundation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

/* Foundation Section Image Styles */
.foundation-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.foundation-grid > div:first-child {
    flex: 1;
    position: relative;
}

.foundation-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    border-radius: 8px;
}

/* Desktop Styles (above 768px) */
@media (min-width: 769px) {
    .foundation-grid > div:first-child {
        flex: 0 0 45%;
    }
    
    .foundation-content {
        flex: 0 0 55%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .foundation-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .foundation-grid > div:first-child {
        width: 100%;
        min-height: 300px;
    }

    .foundation-grid img {
        min-height: 300px;
    }

    .foundation-content {
        width: 100%;
        padding: 0 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .foundation-grid > div:first-child {
        min-height: 250px;
    }

    .foundation-grid img {
        min-height: 250px;
    }
}

/* Image Loading State */
.foundation-grid img {
    transition: opacity 0.3s ease;
}

.foundation-grid img:not([src]) {
    opacity: 0;
}

.foundation-grid img[src] {
    opacity: 1;
}

.foundation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.foundation-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.foundation-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .foundation-image {
        min-height: 300px;
    }
    
    .foundation-image__img {
        height: 300px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .foundation-image {
        min-height: 350px;
    }
}

.foundation-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.foundation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.foundation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #4D9C2D, #5EB23E);
    transition: width 0.3s ease;
}

.foundation-card:hover::before {
    width: 8px;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: #4D9C2D;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.foundation-card h3 {
    color: #4D9C2D;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.foundation-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4D9C2D;
    font-weight: bold;
    font-size: 1.1rem;
}

.mission-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Foundation Section */
@media (max-width: 768px) {
    .foundation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .foundation-image {
        order: -1;
    }
    
    .foundation-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .foundation-card h3 {
        font-size: 1.2rem;
    }
}

/* Technology Section */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
}

.tech-feature h3 {
    color: #4D9C2D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Product Section */
.product-section {
    background: linear-gradient(135deg, #4D9C2D 0%, #5EB23E 100%);
    color: white;
}

.product-section .section-title {
    color: white;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.spec-label {
    font-weight: bold;
    color: #B5E99F;
    margin-bottom: 0.5rem;
}

/* Market Section */
.market-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #4D9C2D;
}

.highlight-card h3 {
    color: #4D9C2D;
    margin-bottom: 1rem;
}

/* Applications Section */
.applications-section {
    background-color: #f8fdf9;
}

.application-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.application-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.application-card h3 {
    color: #4D9C2D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Compliance Section */
.compliance-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #4D9C2D;
}

.compliance-item h3 {
    color: #4D9C2D;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #3A7522 0%, #4D9C2D 100%);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    color: #B5E99F;
    margin-bottom: 1rem;
}

.final-tagline {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
}

.footer-contact a {
    color: #fff !important;
    text-decoration: none;
}
.site-footer {
    background: #3A7522;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #B5E99F;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-contact h4,
.footer-locations h4 {
    color: #B5E99F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-locations .location {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-locations .location:last-child {
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Animation Classes */
.tech-feature,
.highlight-card,
.application-card,
.compliance-item,
.spec-item,
.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tech-feature.animate-in,
.highlight-card.animate-in,
.application-card.animate-in,
.compliance-item.animate-in,
.spec-item.animate-in,
.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.tech-feature:nth-child(1) { transition-delay: 0.1s; }
.tech-feature:nth-child(2) { transition-delay: 0.2s; }
.tech-feature:nth-child(3) { transition-delay: 0.3s; }

.highlight-card:nth-child(1) { transition-delay: 0.1s; }
.highlight-card:nth-child(2) { transition-delay: 0.2s; }
.highlight-card:nth-child(3) { transition-delay: 0.3s; }

.application-card:nth-child(1) { transition-delay: 0.1s; }
.application-card:nth-child(2) { transition-delay: 0.2s; }
.application-card:nth-child(3) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .content-section {
        padding: 3rem 1.5rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-features,
    .product-specs,
    .market-highlights,
    .application-cards,
    .compliance-items,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .tech-feature,
    .highlight-card,
    .application-card,
    .compliance-item {
        padding: 1.5rem;
    }
    
    .spec-item,
    .contact-item {
        padding: 1.2rem;
    }
    
    .vision-box,
    .mission-box {
        padding: 1.5rem;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .cta-button {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero-section {
        background: none;
        color: #333;
        padding: 2rem 0;
    }
    
    .product-section,
    .contact-section {
        background: none;
        color: #333;
    }
    
    .section-title {
        color: #333;
    }
    
    .spec-item,
    .contact-item {
        background: #f5f5f5;
        color: #333;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-section,
    .product-section,
    .contact-section {
        background: #000;
        color: #fff;
    }
    
    .tech-feature,
    .highlight-card,
    .application-card,
    .compliance-item {
        border: 2px solid #333;
    }
    
    .cta-button {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .tech-feature,
    .highlight-card,
    .application-card,
    .compliance-item,
    .spec-item,
    .contact-item {
        opacity: 1;
        transform: none;
    }
}

/* Desktop Enhancements */
@media (min-width: 769px) {
    .hero-content {
        text-align: left;
        padding: 20px;
    }
}
.executive-summary-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Adjust column ratio as needed */
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .executive-summary-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 2rem;
    }
}

.executive-summary-left-column {
    /* Styles for the left column content */
}

.executive-summary-right-column {
    /* Styles for the right column content */
}

.market-opportunity-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(77,156,45,0.08);
    padding: 2rem;
    height: 100%; /* Ensure card takes full height */
    display: flex;
    flex-direction: column;
}

.market-opportunity-card h3 {
    color: #1e3d18;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.market-opportunity-card p {
    font-size: 1.13rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow paragraph to take available space */
}

.market-opportunity-card h4 {
    color: #1e3d18;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-specs-list {
    list-style: none;
    padding: 0;
}

.product-specs-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-specs-list li:last-child {
    margin-bottom: 0;
}

.product-specs-list .checkmark-icon {
    width: 20px;
    height: 20px;
    min-width: 20px; /* Prevent shrinking */
    fill: #4d9c2d; /* Green color for checkmark */
    margin-right: 0.5rem;
}

/* Existing grid layout */
.executive-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .executive-summary-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .executive-summary-left-column,
    .executive-summary-right-column {
        width: 100%;
    }

    .market-opportunity-card {
        margin-top: 2rem;
    }

    /* Adjust spacing for better mobile readability */
    .modern-list.executive-list li {
        margin-bottom: 1.5rem;
    }

    .product-specs-list li {
        margin-bottom: 1rem;
    }
}
