@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;700&display=swap');

:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #C8E6C9;
    --secondary: #FBC02D;
    --secondary-dark: #F9A825;
    --background: #FFFFFF;
    --bg-light-green: #F1F8E9;
    --bg-gradient: linear-gradient(135deg, #F1F8E9 0%, #FFFFFF 100%);
    --accent: #FFD600;
    --text-dark: #1B1F23;
    --text-muted: #5F6368;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.mobile-only {
    display: none;
}

.nav-btn .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 130px 0 50px;
    background: linear-gradient(135deg, #e5e7e3 0%, #e1edd4 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 2.9rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--secondary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image iframe {
    border-radius: 12px;
    width: 100%;
    min-height: 350px;
}

@keyframes float {

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

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

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

/* Sections General */
section {
    padding: 50px 0;
    background: #f1f8e9;
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.problem-card i {
    font-size: 3.5rem;
    color: #e53935;
    margin-bottom: 25px;
}

/* Solution Section */
.solution {
    background: var(--bg-light-green);
}

.solution-flow {
    display: grid;
    gap: 30px;
}

.solution-flow.flow-3 {
    grid-template-columns: repeat(3, 1fr);
}

.solution-flow.flow-4 {
    grid-template-columns: repeat(4, 1fr);
}

.solution-step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.solution-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.solution-step:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.benefit-card:hover .benefit-icon,
.benefit-card:hover h3,
.benefit-card:hover p {
    color: var(--white);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
}

/* Entrepreneur Section */
.entrepreneur {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0;
}

.entrepreneur h2,
.entrepreneur p {
    color: var(--white);
}

.entrepreneur-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.ent-features {
    margin-top: 30px;
}

.ent-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.ent-item i {
    color: var(--secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--primary-dark);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li i {
    color: #4CAF50;
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light-green);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 400px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.farmer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.farmer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Call to Action */
.cta-banner {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.footer-social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.footer-social-links a i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 50px 0 25px;
    background: #1B1F23;
    color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.8fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-link ul li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.footer-link ul li a {
    color: #ffffff;
    transition: var(--transition);
    font-size: 14px;
}

.footer-link ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Floating Sticky Buttons */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: none;
    /* Only mobile */
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sticky-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
}

.sticky-cta i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.sticky-cta .whatsapp {
    color: #25D366;
}

.sticky-cta .call {
    color: #128C7E;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .container {
        padding: 0 25px;
    }

    /* Global Headings Mobile */
    h1,
    h2,
    .page-hero h1,
    .section-title h2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
        font-weight: 600 !important;
        color: var(--primary-dark) !important;
        letter-spacing: -1px !important;
        line-height: 1.3 !important;
    }

    .cta-banner h1,
    .cta-banner h2,
    .entrepreneur h2 {
        color: var(--white) !important;
    }

    .logo img {
        width: 180px !important;
        height: auto !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        background: var(--primary) !important;
        border-radius: 8px !important;
        z-index: 2000 !important; /* Extremely high priority */
        cursor: pointer !important;
        padding: 0 !important;
        position: absolute !important;
        right: 25px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 26px !important;
        height: 3px !important;
        background: #ffffff !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
    }

    /* Transform into X when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -7px);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        /* Reduced from 80px to match your shorter nav if needed */
        right: -100%;
        background: var(--white);
        width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
        z-index: 999;
        gap: 20px !important;
    }

    .nav-links.active {
        right: 0 !important;
        display: flex !important;
    }

    .mobile-only {
        display: block !important;
    }

    .nav-btn {
        display: none !important;
    }

    .hero-image {
        width: 100% !important;
        padding: 5px !important;
        margin-top: 15px !important;
        order: 2;
    }

    .hero-btns {
        margin-bottom: 0 !important;
    }

    .hero-image iframe {
        min-height: 220px !important;
        height: 220px !important;
        border-radius: 10px !important;
    }

    .hero .container,
    .entrepreneur-content,
    .footer-grid,
    .mission-grid,
    .founder-card {
        grid-template-columns: 1fr;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .solution-flow,
    .solution-flow.flow-3,
    .solution-flow.flow-4,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .solution-step:not(:last-child):after {
        display: none;
    }

    .solution-step {
        display: block;
        text-align: center;
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px !important;
        font-size: 1.8rem;
        /* For numeric icons like 1, 2, 3 */
    }

    .step-icon i {
        font-size: 1.8rem;
    }

    .solution-step h3 {
        margin-bottom: 12px;
        font-size: 1.3rem;
    }

    .solution-step p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .solution-step p {
        margin: 0;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .founder-info {
        padding: 30px 20px;
    }
}

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

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Subpage Hero Header */
.page-hero {
    padding: 120px 0 50px;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--primary-light);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.25rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
}


.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: var(--radius);
    /* box-shadow: var(--shadow-lg); */
}

.goals-list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.goal-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.founder-section {
    background: var(--bg-light-green);
    padding: 50px 0;
    /* margin-top: 80px; */
    border-radius: 60px 60px 0 0;
    background: linear-gradient(135deg, var(--bg-light-green) 0%, #ffffff 100%);
}

.founder-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.founder-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 60px;
    position: relative;
}

.founder-info::after {
    content: '"';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 10rem;
    color: var(--primary-light);
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

.founder-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.founder-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--primary-light);
}

@media (max-width: 991px) {

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

    .founder-info {
        padding: 40px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}