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

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

/* Geometric Sans-Serif for Titles */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-content h1,
.about-text h2,
.leadership-text h2,
.product-info h3,
.article-title,
.mv-card h3,
.value-card h3,
.timeline-card h3 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header .container {
    padding: 0;
}

.header-content {
    padding: 15px 15px;
}

/* Colors */
:root {
    --primary-color: #4d8c40;
    --secondary-color: #f8f8f8;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-text: #fff;
    --border-color: #ddd;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(77, 140, 64, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #3d7033;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 140, 64, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Section styling */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4d8c40;
    text-align: center;
    position: relative;
     
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #e67e22);
    border-radius: 2px;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

@media (max-width: 768px) {
    .header {
        position: relative;
    }
}

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

.logo img {
    max-height: 60px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.main-nav .nav-list li {
    margin: 0 15px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social a:hover {
    background-color: #3d7033;
    transform: translateY(-2px);
}

.main-nav .nav-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 10px 15px;
    position: relative;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 15px;
    right: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
    color: var(--primary-color);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li a.active::after {
    width: calc(100% - 30px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    border-radius: 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInDown 1s ease-out 0.3s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out 0.6s both;
}

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

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

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

.about-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 10px;
}

.about-green-section {
    background-color: var(--primary-color);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
    margin: 0 200px;
}

.about-green-section .about-text {
    color: #f0f0f0;
}

.about-green-section .about-text p {
    color: #e8e8e8;
}

.about-green-section .about-text h2 {
    color: #fff;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

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

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-green-section .about-text .btn {
    background-color: white;
    color: var(--primary-color);
}

.about-green-section .about-text .btn:hover {
    background-color: rgba(255,255,255,0.9);
}

.about-image {
    background-image: url('images/farmer.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    height: 500px;
    position: relative;
    width: 100%;
}


/* Scoped certification styles (v2) */
.certifications-v2 .section-title {
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}

/* Grid */
.cert-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  align-items: start;
}

/* Card */
.cert-card-v2 {
  display: flex;
  flex-direction: column;   /* 👈 image upar, text niche */
  align-items: center;      /* center align for nice look */
  text-align: center;       /* center text */
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  gap: 0.6rem;              /* thoda gap image aur text me */
}

/* Hover */
.cert-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

 
/* Logo wrapper */
.cert-logo-wrap {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;           /* prevent stretching */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;    /* extra gap image & content */
}

/* Image sizing - object-fit keeps aspect ratio */
.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text content */
.cert-content h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color:#4d8c40 ;
}
.cert-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

/* Specific tweaks per cert (optional) */
.cert-card-v2.cert-iso .cert-logo-wrap { background: #fff; }
.cert-card-v2.cert-apeda .cert-logo-wrap { background: #fff; }
.cert-card-v2.cert-haccp .cert-logo-wrap { background: #fff; }
.cert-card-v2.cert-fssai .cert-logo-wrap { background: #fff; }

/* Responsive smaller logos on tiny screens */
@media (max-width: 420px) {
  .cert-logo-wrap { width: 56px; height: 56px; flex-basis: 56px; }
}

 /* Scoped certification styles (v2)  END*/

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

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-info p {
    margin-bottom: 20px;
    color: #666;
}

.product-info .btn {
    width: 100%;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9f9;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 90%;
    text-align: center;
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    filter: blur(3px);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    z-index: 3;
}

.testimonial.prev {
    opacity: 0.6;
    transform: translateX(-150px) scale(0.9);
    filter: blur(2px);
    z-index: 2;
}

.testimonial.next {
    opacity: 0.6;
    transform: translateX(150px) scale(0.9);
    filter: blur(2px);
    z-index: 2;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    color: #333;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
}

.testimonial-author .author-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-author .author-title {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero_bg2.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Chatbot Icon */
.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: bounce 2s infinite;
}

.chatbot-drawer {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 20px;
    width: 250px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.chatbot-drawer.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.drawer-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.drawer-item:last-child { border-bottom: none; }
.drawer-item:hover { color: var(--primary-color); }
.drawer-item i { margin-right: 12px; width: 20px; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .chatbot-icon { display: flex; }
}or: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Export Categories */
.export-categories {
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-list {
    list-style: none;
    margin-top: 20px;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

/* Export Process */
.export-process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Market Reach */
.market-reach {
    background: #f8f9fa;
}

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

.market-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.market-stats .stat {
    text-align: center;
}

.market-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.market-regions {
    margin-top: 30px;
}

.market-regions h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.regions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Certifications */
.certifications {
    background: white;
    padding: 40px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.cert-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cert-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero .hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: white;
}

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

.story-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.story-stats .label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Mission Vision */
.mission-vision {
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Features Highlight */
.features-highlight {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.team-info .role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.team-info .bio {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA About */
.cta-about {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-about p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

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

.cta-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .story-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-about h2 {
        font-size: 2.2rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .header-social {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .main-nav .nav-list li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav .nav-list li a {
        display: block;
        padding: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .market-content {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-text h2,
    .cta-about h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-content,
    .products-grid,
    .testimonials-slider,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 10px;
}

.about-green-section {
    background-color: var(--primary-color);
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
    margin: 0 200px;
    padding: 60px;
    height: 700px;
}

.about-green-section .about-text {
    color: #f0f0f0;
}

.about-green-section .about-text p {
    color: #e8e8e8;
}

.about-green-section .about-text h2 {
    color: #fff;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

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

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-green-section .about-text .btn {
    background-color: white;
    color: var(--primary-color);
}

.about-green-section .about-text .btn:hover {
    background-color: rgba(255,255,255,0.9);
}

.about-image {
    background-image: url('images/farmer.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    min-height: 700px;
    position: relative;
}

@media (max-width: 768px) {
    .about-green-section {
        margin: 0 20px;
        background-image: url('images/farmer.png');
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .about-green-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(77, 140, 64, 0.6);
        z-index: 1;
        border-radius: 30px 30px 0 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 2;
    }
    
    .about-image {
        display: none;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
}
/* Leadership Section */
.leadership-section {
    background-color: #f9f9f9;
}

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

.leadership-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.leadership-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.leadership-text .btn {
    margin-top: 10px;
}

.leadership-green-section {
    background-color: var(--primary-color);
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
    margin: 0 200px;
    padding: 60px;
    height: 800px;
}

.leadership-green-section .leadership-text {
    color: #f0f0f0;
}

.leadership-green-section .leadership-text p {
    color: #e8e8e8;
}

.leadership-green-section .leadership-text h2 {
    color: #FFD700;
}

.leadership-green-section .leadership-text .btn {
    background-color: white;
    color: var(--primary-color);
}

.leadership-green-section .leadership-text .btn:hover {
    background-color: rgba(255,255,255,0.9);
}

.leadership-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.leadership-highlights .highlight-item {
    text-align: center;
}

.leadership-highlights .highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.leadership-highlights .highlight-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-image {
    background-image: url('images/ygss.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    height: 800px;
    position: relative;
}

@media (max-width: 768px) {
    .leadership-green-section {
        margin: 0 20px;
        background-image: url('images/ygss.png');
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .leadership-green-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(77, 140, 64, 0.6);
        z-index: 1;
        border-radius: 0 0 30px 30px;
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 2;
    }
    
    .leadership-image {
        display: none;
    }
    
    .leadership-highlights {
        flex-direction: column;
        gap: 20px;
    }
}
.leadership-text h2 {
    font-size: 8rem;
    color: #4a90e2;
    margin-bottom: -40px;
    line-height: 1;
    font-family: serif;
}
.quote-icon i {
    font-size: 6rem !important;
    color:#fff!important;
}
/* Leadership Mobile Section */
.leadership-section-mobile {
    display: none;
    background-color: #f9f9f9;
}

.leadership-green-section-mobile {
    background-color: var(--primary-color);
    background-image: url('images/myg.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    padding: 15px 10px;
}

.leadership-green-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 140, 64, 0.6);
    z-index: 1;
    border-radius: 0 0 30px 30px;
}

.leadership-content-mobile {
    position: relative;
    z-index: 2;
}

.leadership-text-mobile {
    color: white;
    text-align: justify;
}

.leadership-text-mobile h4 {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.leadership-text-mobile .leader-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .leadership-section {
        display: none;
    }
    
    .leadership-section-mobile {
        display: block;
    }
}
.leadership-text-mobile .leader-info {
    text-align: left;
}
/* About Mobile Section */
.about-section-mobile {
    display: none;
    background-color: #f9f9f9;
}

.about-green-section-mobile {
    background-color: var(--primary-color);
    background-image: url('images/farmer.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
   
}

.about-green-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 140, 64, 0.6);
    z-index: 1;
    border-radius: 30px 30px 0 0;
}

.about-content-mobile {
    position: relative;
    z-index: 2;
}

.about-text-mobile {
    color: white;
    text-align: justify;
}

.about-text-mobile h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 7px;
    text-align: left;
}

.about-text-mobile p {
    color: #e8e8e8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.about-text-mobile .btn {
    background-color: white;
    color: var(--primary-color);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-section {
        display: none;
    }
    
    .about-section-mobile {
        display: block;
    }
}
/

@keyframes slideInLeft {
    from { 
        clip-path: inset(0 100% 0 0);
    }
    to { 
        clip-path: inset(0 0 0 0);
    }
}
/* Product Variants Styles */
.variant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}