:root {
    /* Primary Brand Color */
    --primary-color: #50a637;
    --primary-dark: #408c2c;  /* 20% darker for hover states */
    --primary-light: #e6f2e3; /* Light green for backgrounds */
    
    /* Monochromatic Scale */
    --text-dark: #1A1A1A;    /* Near black for main text */
    --text-gray: #666666;    /* Medium gray for secondary text */
    --text-light: #999999;   /* Light gray for tertiary text */
    
    /* Background Colors */
    --bg-light: #F5F5F5;     /* Light background */
    --white: #FFFFFF;
    --border-color: #E0E0E0;

    /* Add font family to existing variables */
    --font-primary: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Updated Navigation Styles */
.navbar {
    position: fixed;
    width: 100%;
    background: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.home-link {
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

/* Fix for all links across the site */
a {
    text-decoration: none;
    color: inherit;
}

/* CTA Button styling */
.cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--text-white);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

/* Active/Click state */
.cta-button:active {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateY(1px);
}

/* For cases where we need a green button, add a .primary class */
.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

/* Mobile menu button color update */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #ffffff;
}

@media (max-width: 968px) {
    .nav-left {
        gap: 1rem;
    }
    
    .home-link {
        display: none; /* Hide in mobile menu as it will appear in nav-links */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .home-link {
        display: block; /* Show in mobile menu */
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000007a;
    z-index: 2;
}

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

.title-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.pre-title {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h2 {
    font-size: 2.25rem;  /* Slightly smaller than previous h1 */
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.primary-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

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

    .hero-content {
        padding: 1rem;
    }
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 4rem;
}

.footer-content {
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.company-desc {
    color: #a0a0a0;
    margin: 1rem 0;
    line-height: 1.6;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    margin-right: 1rem;
    color: #a0a0a0;
    text-decoration: none;
}

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

.contact-info {
    color: #a0a0a0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
}

.legal-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        padding: 1rem 0;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-text p {
        font-size: 1rem;
    }
}

/* Add these styles to your existing CSS */

.challenges {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header .subheading {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(98, 178, 70, 0.1);
}

.challenge-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.challenge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.challenge-card p {
    color: #666;
    line-height: 1.6;
}

/* Global Warming section styles */
.global-warming {
    padding: 6rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Add these styles for the biochar section */
.biochar-section {
    padding: 6rem 0;
    background-color: white;
}

.biochar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.biochar-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.biochar-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.biochar-image:hover img {
    transform: scale(1.05);
}

.biochar-content {
    padding: 2rem 0;
}

.biochar-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.biochar-content .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.biochar-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-stat {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .biochar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .biochar-image {
        order: 2;
    }

    .biochar-content {
        order: 1;
        text-align: center;
    }

    .biochar-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .biochar-content h2 {
        font-size: 2rem;
    }

    .feature-stat {
        font-size: 2rem;
    }
}

/* Update icon colors */
.challenge-card .icon {
    color: var(--primary-color);
}

/* Update feature statistics color */
.feature-stat {
    color: var(--primary-color);
}

/* Update link hover states */
.nav-links a:hover,
.footer-section a:hover {
    color: var(--primary-color);
}

/* Update any other color references in your CSS */
.contact-icon {
    color: var(--primary-color);
}

/* Update logo sizing */
.navbar .logo img {
    height: 32px; /* Reduced from 40px */
    width: auto;
}

.footer-logo {
    height: 32px; /* Reduced from 40px */
    width: auto;
    margin-bottom: 1.5rem;
}

/* Updated CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
    color: var(--white);
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button .primary-button {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cta-button .primary-button:hover {
    background: transparent;
    color: var(--white);
}

/* Global Warming Numbers Section */
.numbers-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.number-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.number-card .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.number-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.number-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .number-card .number {
        font-size: 2.5rem;
    }

    .number-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .numbers-section {
        padding: 4rem 0;
    }

    .number-card {
        padding: 1.5rem;
    }
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.certifications .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
}

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

.certifications-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .certifications .section-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .certifications {
        padding: 3rem 0;
    }

    .certifications .section-header h2 {
        font-size: 1.75rem;
    }

    .certifications-image {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* How Section */
.how {
    padding: 8rem 0;
    background: #F7FAFC;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.green-subheading {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
}

.green-subheading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

#process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}


.process-card {
    padding: 2.5rem 1.25rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle i {
    color: var(--text-white);
    font-size: 1.25rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.process-card p {
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;

}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .how {
        padding: 6rem 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .section-intro {
        font-size: 1.1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .process-card {
        padding: 2rem;
    }
}

/* Add a fallback for icons in case Font Awesome fails to load */
.icon-circle i {
    font-size: 1.5rem;
    color: #ffffff;
    display: inline-block;
}

/* Add specific fallback classes for each icon */
.icon-circle i.fa-microscope::before {
    content: "🔬";
}

.icon-circle i.fa-lightbulb::before {
    content: "💡";
}

.icon-circle i.fa-truck::before {
    content: "\f0d1";
}

/* Investor Page Styles - Consolidated */
.hero-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-section .hero-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Resource Cards */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    margin-bottom: 2rem;
}

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

.card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Resource List */
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    margin-bottom: 0.75rem;
}

.download-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: var(--primary-dark);
}

.download-link::before {
    display: none;  /* This removes the previous PDF icon */
}

/* Modal Styles - Consolidated */
.modal {
    display: none;
}

.modal.show {
    display: block;
}

.modal-content {
    border-radius: 12px;
}

.modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.modal-title {
    color: var(--primary-color);
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(80, 166, 55, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
}

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

.country-code {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#whatsapp {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Utility Classes */
.navbar-spacing {
    height: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Roadmap Section Styles */
.roadmap-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.roadmap-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin: 40px 0;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 15px;
}

.roadmap-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.roadmap-item:nth-child(odd)::before {
    right: -48px;
}

.roadmap-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.roadmap-item:nth-child(even)::before {
    left: -8px;
}

.roadmap-item .year {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.roadmap-item .content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.roadmap-item .content h3 {
    margin-top: 0;
    color: #333;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 31px;
    }

    .roadmap-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .roadmap-item:nth-child(odd)::before,
    .roadmap-item:nth-child(even)::before {
        left: 22px;
    }

    .roadmap-item .year {
        position: absolute;
        left: 0;
        top: 0;
    }
}

/* Small screen adjustments */
@media (max-width: 380px) {
    .roadmap-item {
        padding-left: 60px;
        padding-right: 15px;
    }
}

/* Investor Page Styles */
.investor-hero {
    background-color: #f8f9fa !important;
    padding: 80px 0 !important;
}

.investor-hero h1 {
    font-size: 2.5rem !important;
    color: #333 !important;
    margin-bottom: 2rem !important;
}

.investor-hero .lead {
    font-size: 1.25rem !important;
    color: #666 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.investor-resources {
    background-color: #fff !important;
    padding: 4rem 0 !important;
}

.download-form-container {
    background: #f8f9fa !important;
    padding: 2rem !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05) !important;
    margin-bottom: 3rem !important;
}

.resource-card {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease !important;
}

.resource-card:hover {
    transform: translateY(-5px) !important;
}

.resource-card h3 {
    color: #333 !important;
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #4CAF50 !important;
}

.resource-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.resource-list li {
    margin-bottom: 0.75rem !important;
}

.resource-link {
    color: #4CAF50 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
}

.resource-link:hover {
    color: #388E3C !important;
}

.resource-link::before {
    content: '📄';
    margin-right: 0.5rem !important;
}

.form-control {
    padding: 0.75rem 1rem !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
}

.form-control:focus {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25) !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .investor-hero {
        padding: 40px 0 !important;
    }

    .investor-hero h1 {
        font-size: 2rem !important;
    }

    .resource-card {
        margin-bottom: 1rem !important;
    }
}

/* Investor page specific styles */
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    margin-bottom: 0.75rem;
}

.download-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: var(--secondary-color);
}

.download-link::before {
    content: '📄';
    margin-right: 0.5rem;
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Modal styles */
.modal-content {
    border: none;
    border-radius: 10px;
}

.modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.modal-title {
    color: var(--primary-color);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Split Hero Section */
.split-hero {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.hero-content {
    padding-right: 2rem;
    position: sticky;
    top: 100px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Resource Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

/* Newsletter Band */
.newsletter-band {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.newsletter-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: white;
}

.newsletter-text p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Light variant for CTA button on dark backgrounds */
.cta-button.light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.cta-button.light:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.resource-list a {
    font-size: 0.875rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-list a i {
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-shrink: 0;  /* Prevents icon from shrinking */
}

.resource-list a .prefix {
    color: var(--text-secondary);
    font-weight: 500;
}

.resource-list a:hover {
    color: var(--primary-color);
}

.resource-list a:hover i,
.resource-list a:hover .prefix {
    color: var(--primary-color);
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info address {
    color: var(--text-light);
    font-style: normal;
    line-height: 1.6;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 6rem 0;
    background-color: var(--bg-light)
}

#process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.spec-item h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.process-diagram img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-content {
        order: 2;
    }

    .process-diagram {
        order: 1;
    }
}
