:root {
    /* Default Dark Theme */
    --color-bg: #0f1610;
    --color-primary: #2d5a27;
    --color-secondary: #00bcd4;
    --color-accent: #ffb300;
    --color-text: #ffffff;
    --color-text-muted: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-bg: rgba(15, 22, 16, 0.8);
}

/* Light Theme Variables */
/* We will apply this class to the body */
body.light-mode {
    --color-bg: #f8fbf8;
    --color-primary: #3a7532;
    --color-secondary: #0097a7;
    --color-accent: #ffb300;
    --color-text: #1a2b1d;
    --color-text-muted: #4a5d4d;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.85);
}

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

html {
    font-size: 100%;
    /* Reset to standard base size */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Nav */
/* Premium Navigation Styling */
.premium-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 22, 16, 0.0);
    /* Transparent initially */
}

.premium-nav.scrolled {
    background: rgba(15, 22, 16, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

.premium-nav.scrolled .nav-container {
    padding: 0.6rem 2rem;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.contact-link::after {
    display: none;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: var(--color-secondary);
    transform: rotate(15deg);
}

.lang-switch-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: var(--color-text);
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    font-size: 0.9rem;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text);
}

.lang-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
}

.line {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-links-wrapper {
        display: none;
        /* Hide links on mobile for now */
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Liquid CTA Button */
.cta-highlight {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    margin-top: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
    z-index: 1;
    overflow: hidden;
    animation: glow 8s linear infinite;
    box-shadow: 0 0 20px rgba(3, 169, 244, 0.5);
    transition: 0.5s;
    border: none;
}

.cta-highlight:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 40px rgba(3, 169, 244, 0.8);
}

@keyframes glow {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

.cta-highlight span {
    position: relative;
    z-index: 2;
}

.footer-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Realistic farm field (fallback when slider not visible) */
    background: url('assets/hero-bg.jpg') no-repeat center 15%/cover;
    background-attachment: fixed;
    /* Parallax feel */
}

/* Overlay to ensure text readability on top of image */
/* Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
    /* Fallback for transparency */
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Cover ensures no distortion (compression) */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease-in-out;
}

/* Active Slide */
.slide.active {
    opacity: 1;
    /* Zoom effect removed to keep image static and fully visible as requested */
}

/* Ken Burns Zoom Effect */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Gradient Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 22, 16, 0.6) 0%, rgba(15, 22, 16, 0.3) 50%, rgba(15, 22, 16, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Water Spray Particles */
.spray-particle {
    position: absolute;
    width: 4px;
    height: 10px;
    background: rgba(0, 188, 212, 0.8);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin-top: 20vh;
    /* Push text down to reveal drone in the sky */
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-title .highlight {
    /* Vibrant Green to Harvest Gold Gradient */
    background: linear-gradient(90deg, #4ade80, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pulse {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    transition: 0.4s ease;
    z-index: -1;
}

.cta-pulse:hover::before {
    width: 100%;
}


.cta-pulse:hover {
    color: #0f1610;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.6);
    transform: translateY(-3px);
}

.cta-pulse.primary-btn {
    margin-left: 1rem;
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.cta-pulse.primary-btn:hover {
    background: #388e3c;
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.6);
    color: white;
}

.drone-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Quick Action Buttons */
/* Floating Quick Action Buttons */
.floating-quick-links {
    position: fixed;
    right: 30px;
    bottom: 50px;
    display: flex;
    flex-direction: column-reverse;
    /* Stack upwards from bottom */
    gap: 1.5rem;
    z-index: 1000;
}

.quick-link-btn {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-box {
    width: 60px;
    /* Increased Size */
    height: 60px;
    background: rgba(15, 22, 16, 0.4);
    /* Darker semi-transparent bg */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.icon-box svg {
    width: 30px;
    /* Increased Icon Size */
    height: 30px;
    color: #fff;
    transition: 0.3s;
}

.quick-link-btn:hover .icon-box {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.4);
}

.quick-link-btn:hover .icon-box svg {
    color: #000;
}

/* Specific styling for WhatsApp to look like the 'Real' App Icon */
.quick-link-btn[href*="wa.me"] .icon-box {
    background: #25D366;
    /* Official WhatsApp Green */
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.quick-link-btn[href*="wa.me"] .icon-box svg {
    color: #fff;
    fill: #fff;
}

.quick-link-btn[href*="wa.me"]:hover .icon-box {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px) scale(1.1);
}

/* Story Section */
.story-section {
    position: relative;
    background: #111;
    padding: 0;
    /* Extra height for scrolling */
}

.story-container {
    display: flex;
    flex-wrap: wrap;
    /* Fallback */
}

.story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 50%;
    background: #0d120e;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.story-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s ease-out;
    transform: scale(1.1);
}

.story-bg.active {
    opacity: 1;
    transform: scale(1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 18, 14, 0.2), rgba(13, 18, 14, 0.9));
    z-index: 1;
}

.story-text-blocks {
    width: 50%;
    padding: 10vh 5%;
}

.story-block {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.2;
    transition: opacity 0.5s;
    border-left: 2px solid #333;
    padding-left: 2rem;
    margin-bottom: 10vh;
}

.story-block.active {
    opacity: 1;
    border-left-color: var(--color-secondary);
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.story-block p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Visualization in Sticky Area */
.drone-companion {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--color-secondary);
    z-index: 10;
}

.plant-container {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 200px;
    opacity: 0.5;
}

/* How It Works */
.steps-section,
.impact-section {
    padding: 6rem 5%;
    text-align: center;
}



.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #fff;
    letter-spacing: -1px;
}

/* Grouped Section Header Components */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-header .section-title {
    margin-bottom: 1.5rem;
    /* Tighter spacing when followed by description */
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.4rem;
    background: rgba(0, 188, 212, 0.08);
    /* Transparent secondary color */
    color: var(--color-secondary);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* The Cycle of Intelligence (Steps) Section */
.steps-section {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at top center, #1a221b 0%, #0f1610 80%);
    overflow: hidden;
}

/* Background Elements for Tech Feel */
.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.step-card.realistic {
    padding: 0;
    width: 100%;
    /* controlled by grid */
    background: rgba(20, 30, 24, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Needed for number to pop out */
    text-align: left;
    position: relative;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-card.realistic:hover {
    transform: translateY(-15px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.15);
    background: rgba(20, 30, 24, 0.8);
}

.step-card.realistic::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 188, 212, 0.3), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step-card.realistic:hover::after {
    opacity: 1;
}

.step-img-wrapper {
    width: 100%;
    height: 240px;
    /* Taller for better visual */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Overlay gradient on image for text integration if needed, currently clean */
.step-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(20, 30, 24, 1), transparent);
    pointer-events: none;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: contrast(1.1) saturate(1.1);
}

.step-card.realistic:hover .step-img {
    transform: scale(1.15);
    filter: contrast(1.2) saturate(1.3);
}

.step-content {
    padding: 2rem 1.5rem 2rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Stylish Step Number */
.step-number {
    position: absolute;
    top: -30px;
    right: 20px;
    background: var(--color-bg);
    /* Match section bg */
    color: var(--color-secondary);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border: 2px solid var(--color-secondary);
    transform: rotate(45deg);
    /* Diamond shape */
    transition: all 0.4s ease;
}

.step-number span {
    transform: rotate(-45deg);
    /* Counter-rotate text */
}

.step-card.realistic:hover .step-number {
    background: var(--color-secondary);
    color: #0f1610;
    transform: rotate(0deg) scale(1.1);
    /* Rotate back to square */
    border-color: #fff;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.step-card.realistic:hover .step-number span {
    transform: rotate(0deg);
}

.step-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
}

.step-card.realistic:hover .step-content h3 {
    color: var(--color-secondary);
}

.step-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.section-subtitle {
    margin-top: -3rem;
    margin-bottom: 4rem;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}



/* Visionaries & Partners (Team) */
.team-section {
    padding: 4rem 5%;
    text-align: center;
    background: radial-gradient(circle at center, #1a221b 0%, #0f1610 100%);
    position: relative;
    overflow: hidden;
}

.team-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.03) 0%, transparent 60%);
    animation: pulseGlow 15s infinite alternate;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 250px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 222, 128, 0) 0%, rgba(74, 222, 128, 0.05) 100%);
    opacity: 0;
    transition: 0.5s;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(74, 222, 128, 0.2);
}

.team-card:hover::before {
    opacity: 1;
}

.team-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(40%) contrast(1.1);
}

.team-card:hover .team-img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.2);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.team-info .role {
    color: var(--color-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(74, 222, 128, 0.1);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}


.bar {
    width: 30%;
    background: var(--color-secondary);
    opacity: 0.7;
}

/* Impact */
.impact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.impact-card {
    background: linear-gradient(145deg, #1a332a, #0f1610);
    padding: 3rem;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid #2d5a27;
}

.impact-card h3 {
    font-size: 3.5rem;
    color: var(--color-primary);
    display: inline-block;
}

.impact-card span {
    font-size: 2rem;
    color: var(--color-primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to top, #0f1610, #1a332a);
    padding: 6rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background: var(--color-secondary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    transition: 0.3s;
    color: #0f1610;
}

.cta-large:hover {
    transform: scale(1.05);
    background: #fff;
    color: #00bcd4;
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.5);
}

.drone-landing {
    margin-top: 4rem;
    position: relative;
    height: 60px;
    opacity: 0.8;
}

.landing-drone {
    width: 100px;
    height: 50px;
    /* Animation handled by GSAP */
}

/* Site Footer */
.site-footer {
    background: linear-gradient(to bottom, #050805, #000);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 5% 2rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    opacity: 0.5;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.brand-desc {
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-widget {
    flex: 1;
    min-width: 180px;
}

.footer-widget h4 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav,
.footer-info {
    list-style: none;
}

.footer-nav li,
.footer-info li {
    margin-bottom: 0.8rem;
}

.footer-nav a:hover,
.footer-info a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.newsletter-widget {
    flex: 1.5;
    min-width: 280px;
}

.newsletter-widget p {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.3rem;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: var(--color-secondary);
    background: rgba(0, 188, 212, 0.05);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem;
    color: #fff;
    outline: none;
}

.input-group button {
    background: var(--color-primary);
    border: none;
    color: #fff;
    padding: 0 1.2rem;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
}

.input-group button:hover {
    background: #3a7532;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    /* Adjusted primarily for mobile flow if moved */
}

/* Adjust social links position for the brand column */
.footer-brand .social-links {
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--color-text-muted);
}

.social-icon:hover {
    background: var(--color-secondary);
    color: #000;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-widget,
    .newsletter-widget {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.blink-light {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

/* SVG Setup for Animation */
.stem {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f1610;
}

::-webkit-scrollbar-thumb {
    background: #2d5a27;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00bcd4;
}

/* Responsive */
@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
    }

    .story-sticky {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .story-text-blocks {
        width: 100%;
        padding: 2rem 5%;
    }

    .hero-title {
        font-size: 2.5rem;
    }


}

/* Vision & Mission Section */
.vision-section {
    padding: 8rem 5%;
    position: relative;
    /* Dark overlay + realistic agriculture background */
    background: linear-gradient(180deg, rgba(5, 8, 5, 0.9) 0%, rgba(15, 22, 16, 0.85) 50%, rgba(26, 51, 42, 0.9) 100%),
        url('assets/vision-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

/* Background decoration */
.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.vision-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-lead {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mission-wrapper h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(45, 90, 39, 0.4);
}

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

.mission-item {
    background: rgba(15, 22, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-secondary);
    transition: 0.3s;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.mission-item:hover::after {
    width: 100%;
}

.mission-item h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mission-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.mission-item.full-width {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(45deg, rgba(45, 90, 39, 0.1), rgba(0, 188, 212, 0.05));
    border: 1px solid var(--color-primary);
}

@media (max-width: 768px) {
    .vision-card {
        padding: 2rem;
    }

    .vision-card h3 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-gallery {
        flex-direction: column;
        align-items: center;
    }

    .vision-image-wrapper {
        width: 100%;
        height: 250px;
    }
}

/* Vision Gallery Styles */
.vision-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.vision-image-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.2);
    border-color: var(--color-secondary);
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Schemes Section */
.schemes-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #111, #0d120e);
}

.schemes-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.scheme-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    transition: 0.3s;
}

.scheme-card.reverse {
    flex-direction: row-reverse;
}

.scheme-card:hover {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.scheme-img-wrapper {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scheme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scheme-card:hover .scheme-img {
    transform: scale(1.05);
}

.scheme-content {
    flex: 1;
    text-align: left;
}

.scheme-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.scheme-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {

    .scheme-card,
    .scheme-card.reverse {
        flex-direction: column;
        text-align: center;
    }

    .scheme-content {
        text-align: center;
    }

    .scheme-img-wrapper {
        width: 100%;
        height: 250px;
    }

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Text Only Team Card Styling */
.team-card.text-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.team-card.text-only .team-info {
    text-align: center;
    width: 100%;
}



/* ============================


/* ============================
   Booking Page Styles
   ============================ */
.booking-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 50px;
    background: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1200') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 22, 16, 0.9) 0%, rgba(15, 22, 16, 0.8) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.booking-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-container .section-title {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(0, 188, 212, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 5px;
    display: none;
}

.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-primary), #3a7532);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3a7532, var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Message Container */
.booking-success {
    display: none;
    /* Hidden by default */
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s ease-in;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.success-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.secondary-btn {
    width: 100%;
    padding: 1rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--color-text);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}





/* Field Operations / Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    text-align: center;
    background: radial-gradient(circle at center, #131c15 0%, #0f1610 100%);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background: #000;
    /* Fallback */
}

.gallery-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.15);
    z-index: 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: contrast(1.05) saturate(1.1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
    filter: contrast(1.15) saturate(1.3);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    align-items: flex-start;
    /* Left aligned */
    opacity: 1;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.4s ease, color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 10px;
    /* Space for underline effect if needed */
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(-5px);
    color: var(--color-secondary);
}

/* Add a decorative line under the title on hover */
.gallery-overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.4s ease;
}

.gallery-card:hover .gallery-overlay h3::after {
    width: 60px;
}


/* About Manakrishi Section */
.about-section {
    padding: 6rem 5%;
    position: relative;
    background: linear-gradient(to bottom, #0f1610, #1a221b);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about-content {
    flex: 1;
    color: var(--color-text-muted);
}

.about-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

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

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.highlight-icon {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 22, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-secondary);
    color: #fff;
    font-weight: 600;
}

/* Responsive for About Section */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }


}

/* Crops Served Section */
.crops-section {
    padding: 6rem 5%;
    text-align: center;
    background: #0f1610;
}

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

.crop-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
    border-color: var(--color-secondary);
}

.crop-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.crop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.05) saturate(1.1);
}

.crop-card:hover .crop-img {
    transform: scale(1.1);
    filter: contrast(1.15) saturate(1.3);
}

.crop-info {
    padding: 1.5rem;
    text-align: left;
}

.crop-info h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.crop-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Service Floating Action Button (FAB) */
.service-fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.service-fab {
    background: linear-gradient(135deg, var(--color-accent), #ff9800);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Pulse Animation */
.service-fab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.fab-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.fab-icon {
    width: 24px;
    height: 24px;
    color: #000;
}

.fab-text {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.6);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: rgba(20, 30, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #fff, var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Grid */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.modal-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: default;
}

.modal-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.modal-item:hover .modal-icon {
    transform: scale(1.2);
}

.modal-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.modal-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-fab-container {
        bottom: 20px;
        left: 20px;
    }

    .service-fab {
        padding: 10px 20px;
    }

    .fab-text {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}

/* Feedback Section */
.feedback-section {
    padding: 6rem 5%;
    text-align: center;
    background: #0f1610;
    /* Match dark theme */
    position: relative;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feedback-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feedback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feedback-card:hover .feedback-img {
    transform: scale(1.1);
}

.feedback-content {
    text-align: center;
    width: 100%;
}

.feedback-quote-icon {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

.feedback-text {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.farmer-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    width: 100%;
}

.farmer-name {
    color: var(--color-accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.location {
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}