/* Services Section */
.services-section {
  background: #f5f3ea;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.section-header p {
  color: #555;
  font-size: 1.1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(14,165,233,0.12);
  transform: translateY(-4px) scale(1.03);
}
.service-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: #666;
  font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(90deg, #e0f7fa 0%, #f8fafc 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 16px rgba(56,189,248,0.12);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  color: #666;
  font-size: 1rem;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(90deg, #a0522d 0%, #f59e42 100%);
  color: #fff;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.impact-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
}
.impact-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffe066;
  margin-bottom: 8px;
}
.impact-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.impact-desc {
  color: #fff;
  font-size: 1rem;
}

/* About Section */
.about-section {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.about-vision h3, .about-mission h3 {
  color: #0ea5e9;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.about-team h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 18px;
}
.team-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.team-role {
  color: #0ea5e9;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* Testimonials Section */
.testimonials-section {
  background: #f5f3ea;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 20px;
  text-align: left;
}
.testimonial-rating {
  color: #ffe066;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.testimonial-author {
  font-weight: 600;
  margin-top: 12px;
}
.testimonial-company {
  color: #0ea5e9;
  font-size: 0.95rem;
}
.partners-section {
  text-align: center;
}
.partners-section h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}
.partner-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 16px;
  font-size: 0.98rem;
  color: #555;
  font-weight: 500;
}

/* News Section */
.news-section {
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.news-card {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 28px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(14,165,233,0.12);
  transform: translateY(-4px) scale(1.03);
}
.news-category {
  display: inline-block;
  background: #0ea5e9;
  color: #fff;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.news-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 12px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #0ea5e9;
}
.read-more {
  text-decoration: underline;
  cursor: pointer;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
  color: #fff;
  text-align: center;
}
.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 24px 0 0 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}
.newsletter-form button {
  background: #fff;
  color: #0ea5e9;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.newsletter-form button:hover {
  background: #0ea5e9;
  color: #fff;
}
.newsletter-privacy {
  font-size: 0.95rem;
  color: #e0e7ef;
  margin-top: 10px;
}
.newsletter-success {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 20px;
  margin-top: 24px;
}
.newsletter-check {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* Sustainability Section */
.sustainability-section {
  background: linear-gradient(90deg, #e0f7fa 0%, #f8fafc 100%);
}
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sustainability-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 32px 20px;
  text-align: center;
}
.sustainability-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.sustainability-metrics {
  background: #0ea5e922;
  color: #0ea5e9;
  border-radius: 8px;
  padding: 8px;
  margin-top: 12px;
  font-weight: 600;
}
.sustainability-impact {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sustainability-impact h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.sustainability-impact ul {
  list-style: disc inside;
  margin-bottom: 18px;
  color: #555;
}
.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.sustainability-stats div {
  text-align: center;
  font-size: 1.1rem;
  color: #0ea5e9;
  font-weight: 600;
}
.sustainability-stats span {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 4px;
}

/* Contact Section */
.contact-section {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.contact-details {
  margin-top: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-section h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e0e7ef;
  font-size: 1rem;
}
.contact-form button {
  background: #0ea5e9;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #fff;
  color: #0ea5e9;
}
.contact-success {
  background: #0ea5e922;
  border-radius: 12px;
  padding: 32px 20px;
  margin-top: 24px;
  text-align: center;
}
.contact-check {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #0ea5e9;
}

/* Footer Section */
.footer-section {
  background: #a0522d;
  color: #f5f3ea;
  padding: 48px 0 0 0;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}
.social-link {
  width: 36px;
  height: 36px;
  background: #f5f3ea22;
  color: #0ea5e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: #0ea5e9;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-links h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #f5f3ea;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffe066;
}
.footer-bottom {
  border-top: 1px solid #f5f3ea44;
  margin-top: 32px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.98rem;
  color: #f5f3ea99;
}
.footer-policies {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}
.footer-policies a {
  color: #f5f3ea99;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-policies a:hover {
  color: #ffe066;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
  line-height: 1.6;
}

section {
  padding: 60px 0;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.brand-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
}
.brand-subtitle {
  font-size: 0.8rem;
  color: #0ea5e9;
}
.navbar-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.navbar-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-links li a:hover {
  color: #0ea5e9;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
}
.text-gradient {
  background: linear-gradient(90deg, #0ea5e9, #f59e42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e0e7ef;
}
.btn-hero {
  background: #fff;
  color: #0ea5e9;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-hero:hover {
  background: #0ea5e9;
  color: #fff;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mouse-dot {
  width: 4px;
  height: 10px;
  background: #fff;
  border-radius: 4px;
  margin-top: 6px;
  animation: mouse-dot-pulse 1.2s infinite;
}
@keyframes mouse-dot-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}








--------------------------------------------------------------------------------

        
        .sustainability-metrics {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sustainability-metrics:hover {
            background-color: rgba(13, 110, 253, 0.2) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .crop-card {
            transition: transform 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .crop-card:hover {
            transform: translateY(-5px);
        }
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        .modal-header {
            background: linear-gradient(to right, #4caf50, #8bc34a);
            color: white;
        }
        .nav-pills .nav-link.active {
            background-color: #4caf50;
        }
        .nav-pills .nav-link {
            color: #2e7d32;
        }
        .benefit-icon {
            font-size: 2rem;
            color: #4caf50;
            margin-bottom: 15px;
        }
        .crop-image {
            height: 180px;
            object-fit: cover;
        }
        .modal-body {
            max-height: 70vh;
            overflow-y: auto;
        }
        