:root {
    /* Base Colors (Default Dark Theme) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --nav-text: #d1d5db;
    --nav-hover: #ffffff;
    --card-bg: #000000;
    --card-text: #111111;

    /* Mission Palettes (Unchanged) */
    --mission-nature-primary: #1B4332;
    --mission-nature-secondary: #8BA888;
    --mission-cow-primary: #F4E285;
    --mission-cow-secondary: #5D4037;
    --mission-farmer-primary: #4E6E81;
    --mission-farmer-secondary: #FFD700;
    --mission-edu-primary: #002366;
    --mission-edu-secondary: #C0C0C0;
    --mission-social-primary: #E2725B;
    --mission-social-secondary: #FFFDD0;
    --mission-tech-primary: #008080;
    --mission-tech-secondary: #708090;

    /* Global Typography Variables */
    --font-heading: 'Poppins', sans-serif;
    /* Bold, Modern for Titles */
    --font-ui: 'Quicksand', sans-serif;
    /* Friendly, Rounded for Buttons/Nav */
    --font-body: 'Inter', sans-serif;
    /* Clean, Readable for Text */
    --font-serif: 'Playfair Display', serif;
    /* Elegant for Accents */

    --text-accent: #f97316;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --accent: #000000;
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(0, 0, 0, 0.05);
    --nav-text: #374151;
    --nav-hover: #000000;
    --card-bg: #ffffff;
    --card-text: #111111;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-bento {
        grid-template-columns: repeat(3, 1fr);
    }

    .col-span-2 {
        grid-column: span 2;
    }
}

/* Button & Toggle Styles */
.footer-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.25rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
    line-height: 1;
}

.footer-toggle-btn:hover {
    background: var(--glass-bg);
    border-color: var(--text-primary);
}

/* Split Feature Section (About Us) */
.split-feature-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: #EBF5EC;
    /* Light Green from reference */
}

.split-image-container {
    width: 100%;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.split-content-container {
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1a2e1a;
    /* Dark Green Text */
}

.split-content-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    /* Light weight title */
    margin-bottom: 2rem;
    color: #2D4A33;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4A6352;
}

.about-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 74, 51, 0.1);
}

.about-info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 1024px) {
    .split-feature-section {
        flex-direction: row;
        min-height: 100vh;
        /* Changed from fixed height to min-height */
        height: auto;
    }

    .split-image-container {
        width: 50%;
        min-height: 100vh;
        /* Ensure image covers full height */
        height: auto;
        position: absolute;
        /* Fix image to side */
        left: 0;
        top: 0;
        bottom: 0;
    }

    /* Wrapper to offset content */
    .split-feature-section {
        display: block;
        /* Change flex to block for positioning context */
        position: relative;
    }

    .split-content-container {
        width: 50%;
        margin-left: 50%;
        /* Push content to right */
        padding: 6rem;
        min-height: 100vh;
    }

    /* Reverse Layout Modifier */
    .split-feature-section.reverse-layout .split-image-container {
        left: auto;
        right: 0;
    }

    .split-feature-section.reverse-layout .split-content-container {
        margin-left: 0;
        margin-right: 50%;
    }
}


/* Shared Component Styles */

/* 1. Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    /* Increased top padding */
    position: relative;
    z-index: 10;
    width: 100%;
}

/* 2. Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    /* Regular/Medium per Nature ref */
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-decoration: none;
}

.brand-icon {
    color: #4ade80;
    /* Nature Green Default */
}

/* 3. Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    /* Improved visibility */
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-link:hover {
    color: #fff;
}

/* 4. Immersive Hero Screen */
.hero-screen {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--bg-primary);
    /* Fallback */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 4rem;
    overflow: hidden;
    /* Ensure image fits correctly */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





/* Navigation Buttons */
/* Navigation Buttons */


.prev-btn,
.next-btn {
    left: auto;
    right: auto;
    top: auto;
    transform: none;
}

/* Hero Overlay - Dark Gradient */
/* Hero Overlay - Dark Gradient */
.hero-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Darker on left/top for text, fading to transparent on bottom-right */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Light Mode Card Overrides */
[data-theme="light"] .glass-card {
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .glass-card:hover {
    border-color: #d1d5db !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Hero Content Wrapper */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

/* 5. Typography Standards */
.hero-title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.hero-subtitle,
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

/* 6. Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-screen {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        /* Default hide on mobile for now */
    }

    .scroll-indicator {
        display: none;
    }
}

/* Global Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    /* or Poppins if preferred */
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-desc {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1rem;
    color: white;
    border-radius: 4px;
    flex-grow: 1;
    font-family: inherit;
}

.footer-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-btn:hover {
    background: #e5e5e5;
}

.scroll-top-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    /* Small pill shape */
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.scroll-top-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Global Footer Styles (For Mission Pages - Namespaced) */
.mission-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Poppins', sans-serif;
}

.mission-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .mission-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .mission-footer-grid {
        grid-template-columns: 1fr;
    }
}

.mission-footer-col h3 {
    font-family: 'Playfair Display', serif;
    /* or Poppins if preferred */
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mission-footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.mission-footer-desc {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.mission-footer-links {
    list-style: none;
    padding: 0;
}

.mission-footer-links li {
    margin-bottom: 0.2rem;
}

.mission-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.mission-footer-links a:hover {
    color: #ffffff;
}

.mission-footer-contact-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mission-footer-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1rem;
    color: white;
    border-radius: 4px;
    flex-grow: 1;
    font-family: inherit;
}

.mission-footer-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.mission-footer-btn:hover {
    background: #e5e5e5;
}

.mission-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.mission-footer-copyright {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Impact Section (Tabbed Layout) */
.impact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    /* User requested light bg explicitly to avoid dark mode issues */
    color: #111827;
    /* Force dark text */
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Visuals */
.impact-visuals {
    position: relative;
    height: 550px;
    /* Increased height for better proportions */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Blob (Primary) */
.impact-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--mission-color, #2D4A33);
    opacity: 0.12;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blob-float 15s infinite alternate ease-in-out;
    transform-origin: center center;
}

/* Secondary Blob (Pseudo-element for depth) */
.impact-visuals::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background-color: var(--mission-color, #2D4A33);
    opacity: 0.08;
    /* lighter for mixing */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    left: -10%;
    top: 5%;
    animation: blob-float-reverse 20s infinite alternate ease-in-out;
}

@keyframes blob-float {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-20px, 20px) rotate(5deg);
    }
}

@keyframes blob-float-reverse {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(20px, -20px) rotate(-10deg);
    }
}

/* Image Styles */
.impact-img-main {
    width: 55%;
    /* Reduced slightly to emphasize verticality */
    border-radius: 5px 60px 5px 60px;
    /* Sharper contrast on corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    aspect-ratio: 9/16;
    /* True Portrait Mode as requested */
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.impact-img-overlay {
    position: absolute;
    width: 48%;
    /* Slightly wider relative to container */
    bottom: 40px;
    /* Moved up a bit */
    right: 15px;
    border-radius: 60px 5px 60px 5px;
    /* Opposing shape */
    border: 8px solid #ffffff;
    z-index: 3;
    aspect-ratio: 4/3;
    /* Distinct Landscape Mode as requested */
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

/* Hover Effects */
.impact-visuals:hover .impact-img-main {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.impact-visuals:hover .impact-img-overlay {
    transform: translateY(10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Right Content */
.impact-content {
    opacity: 1;
    /* Remove initial opacity 0 to prevent FOUT if JS fails */
    animation: none;
    z-index: 2;
}

.impact-title {
    font-size: 3.5rem;
    /* Larger title */
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    /* Switched to Poppins as requested */
    font-weight: 600;
}

.highlight-text {
    color: var(--mission-color, #2D4A33);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--mission-color, #2D4A33);
    opacity: 0.15;
    z-index: -1;
    border-radius: 4px;
}

/* Tabs */
.impact-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 0;
    overflow-x: auto;
    /* Hide scrollbar for clean UI */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.impact-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.impact-tab {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    border-radius: 0;
    /* Removing pill shape for underlining style */
    margin-bottom: -2px;
    /* Pull down to overlap border */
}

.impact-tab:hover {
    color: var(--mission-color, #2D4A33);
}

.impact-tab.active {
    color: var(--mission-color, #2D4A33);
    background-color: transparent;
    box-shadow: none;
    border-bottom-color: var(--mission-color, #2D4A33);
}

.impact-tab-content {
    display: none;
    animation: fade-in 0.5s ease;
}

.impact-tab-content.active {
    display: block;
}

.impact-list {
    list-style: none;
    margin-top: 1.5rem;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #374151;
    /* Darker text */
    font-weight: 500;
}

.impact-list li i {
    color: var(--mission-color, #2D4A33);
    min-width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.05);
    /* Subtle circle bg for icon */
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   How You Can Help Section
   ========================================= */
.help-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.help-title {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #111827;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .help-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.help-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 2px dashed #ffe5ec;
    /* Default light dashed border (Pink-ish base) */
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Card Specific Colors - Darkened for better visibility */
.help-card:nth-child(1) {
    border-color: #ffe5ec;
    --card-color: #ec4899;
    /* Darker Pink */
    --bg-tint: #fff0f5;
}

.help-card:nth-child(2) {
    border-color: #ffe0b2;
    --card-color: #f97316;
    /* Darker Orange */
    --bg-tint: #fff7ed;
}

.help-card:nth-child(3) {
    border-color: #e1f5fe;
    --card-color: #0ea5e9;
    /* Darker Blue */
    --bg-tint: #f0f9ff;
}

.help-card:nth-child(4) {
    border-color: #ffebee;
    --card-color: #ef4444;
    /* Darker Red */
    --bg-tint: #fef2f2;
}

.help-icon-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-tint);
    /* Tint background default */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.help-icon-box svg {
    width: 60px;
    /* Increased size */
    height: 60px;
    /* Increased size */
    color: var(--card-color);
    /* Icon color default */
    stroke-width: 2px;
    transition: all 0.4s ease;
}

.help-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Hover Effects */
.help-card:hover {
    border-style: solid;
    /* Solid border on hover looks cleaner */
    border-color: var(--card-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-card:hover .help-icon-box {
    background-color: var(--card-color);
    transform: scale(1.1);
    /* Slight pop */
}

.help-card:hover .help-icon-box svg {
    color: #ffffff;
    stroke: #ffffff;
}

.help-card:hover .help-icon-box {
    background-color: var(--card-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* --- Redesigned "How You Can Help" Section --- */
.help-section-redesign {
    background-color: var(--help-bg, #f0fdf4);
    /* Default to Mint */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Theme Modifiers */
.theme-nature {
    --help-bg: #f0fdf4;
    /* Mint 50 */
    --shape-left-color: #bef264;
    /* Lime */
    --shape-right-grad: radial-gradient(circle, #2dd4bf 0%, transparent 70%);
    /* Teal */
    --play-btn-color: #bef264;
    --play-icon-color: #1a2e05;
}

.theme-gaushala {
    --help-bg: #fff7ed;
    /* Orange 50 */
    --shape-left-color: #fbbf24;
    /* Amber */
    --shape-right-grad: radial-gradient(circle, #f97316 0%, transparent 70%);
    /* Orange */
    --play-btn-color: #fbbf24;
    --play-icon-color: #451a03;
}

.theme-farmers {
    --help-bg: #fefce8;
    /* Yellow 50 */
    --shape-left-color: #84cc16;
    /* Lime Green */
    --shape-right-grad: radial-gradient(circle, #eab308 0%, transparent 70%);
    /* Yellow */
    --play-btn-color: #84cc16;
    --play-icon-color: #14532d;
}

.theme-education {
    --help-bg: #f0f9ff;
    /* Sky 50 */
    --shape-left-color: #38bdf8;
    /* Sky */
    --shape-right-grad: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    /* Blue */
    --play-btn-color: #38bdf8;
    --play-icon-color: #0c4a6e;
}

.theme-social {
    --help-bg: #fdf2f8;
    /* Pink 50 */
    --shape-left-color: #f472b6;
    /* Pink */
    --shape-right-grad: radial-gradient(circle, #db2777 0%, transparent 70%);
    /* Pink */
    --play-btn-color: #f472b6;
    --play-icon-color: #831843;
}

.theme-tech {
    --help-bg: #f8fafc;
    /* Slate 50 */
    --shape-left-color: #a78bfa;
    /* Violet */
    --shape-right-grad: radial-gradient(circle, #6366f1 0%, transparent 70%);
    /* Indigo */
    --play-btn-color: #a78bfa;
    --play-icon-color: #2e1065;
}

.help-header-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .help-header-layout {
        flex-direction: row;
        justify-content: center;
        gap: 6rem;
    }
}

/* Visuals (Left/Top) */
.help-visual {
    position: relative;
}

.circle-image-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 8px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--play-btn-color, #bef264);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid var(--play-icon-color, #1a2e05);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

/* Text Content (Right/Bottom) */
.help-text-content {
    max-width: 600px;
    text-align: center;
}

@media (min-width: 992px) {
    .help-text-content {
        text-align: left;
    }
}

.help-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 1.5rem;
}

.help-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Decorative Shapes */
.shape-circle-left {
    position: absolute;
    top: 50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--shape-left-color, #bef264);
    border-radius: 50%;
    z-index: 1;
}

.shape-blob-right {
    position: absolute;
    top: 50px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--shape-right-grad, radial-gradient(circle, #2dd4bf 0%, transparent 70%));
    opacity: 0.6;
    z-index: 1;
    filter: blur(40px);
}

.help-card:hover .help-icon-box i {
    color: #ffffff;
}

/* Glassmorphism Utility (Migrated from glass.css) */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}