* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Baloo Chettan 2", sans-serif;
    line-height: 1.6;
    background: black;
  }

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 5px 0;
  }
  
   .header.transparent {
    background: transparent;
    color: white;
  }

.header.scrolled {
    background: #226b34;
    color: white;
  }
/* Update only the container and nav section */

/* Update only the container and nav section */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }
  
  /* Logo styling */
.logo {
  height: 50px;
  width: auto;
  max-height: 60px;
}
  
  
  .nav {
    display: flex;
    align-items: center;
    flex: 1; /* 👈 This pushes nav items away from the logo */
    justify-content: space-between;
  }
  
  .nav-center,
  .nav-end {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  
  .nav a {
    color: inherit;
    text-decoration: none;
    font-weight: 700; /* 👈 Bold */
    transition: color 0.3s ease;
  }
  
  .btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    background: white;
    color: black;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: inherit;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .container {
      flex-wrap: wrap;
    }
  
    .nav {
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background-color: black;
      display: none;
    }
  
    .nav.open {
      display: flex;
    }
  
    .nav-center,
    .nav-end {
      background-color: black;
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 16px;
    }
  
    .nav-center {
      align-items: flex-start;
    }
  
    .nav-end {
      align-items: flex-start;
      border-top: 1px solid #444;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav a {
      color: white;
    }
    .logo {
    height: 40px;
    max-height: 45px;
  }
  }


.about-hero {

    background-image: url('image/image1.jpg'); /* Replace with your image path */

    background-size: cover;
    background-position: center;
    height: 50vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }
  
  .about-hero .content {
    position: relative;
    z-index: 1;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .about-hero .btn {
    background-color: #ff6600;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .about-hero .btn:hover {
    background-color: #e65500;
  }
  


  .about-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0b1d0d;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .about-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .about-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  
  .mission-section {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #222;
  }
  
  .mission-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .mission-section ul {
    list-style: disc inside;
    margin-bottom: 1.5rem;
  }
  
  .mission-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  



  .why-us-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    color: #222;
  }
  
  .why-us-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .why-us-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .why-us-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .feature p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature .icon {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: 1rem;
    display: block;
  }
  



  .partner-section {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #222;
    text-align: center;
  }
  
  .partner-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .partner-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .benefit {
    background: #f7f9fb;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  .benefit .icon {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: 1rem;
  }
  
  .partner-cta {
    margin-top: 2rem;
  }
  
  .partner-btn {
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .partner-btn:hover {
    background-color: #0056b3;
  }
  

/*services*/


.services-section {
  padding: 70px 30px;
  text-align: center;
  background: white;
}

.services-header .subtitle {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 60px 30px 40px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4CAF50;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

.arrow {
  margin-top: 20px;
  color: #aaa;
  font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}



/* Contract Farming Banner Section */
.contract-farming-banner {
  padding: 4rem 2rem;
  background-color: #28a745;
  color: #fff;
}

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

.contract-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
}

.contract-text {
  max-width: 500px;
}

.contract-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contract-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contract-button {
  background-color: #f8c500;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contract-button:hover {
  background-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contract-container {
    flex-direction: column;
    text-align: center;
  }

  .contract-image img {
    max-width: 100%;
  }

  .contract-text {
    max-width: 100%;
  }
}


/* Contact Us Section */
.contact-us {
  padding: 4rem 2rem;
  background-color: #004aad;
  color: #fff;
}

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

.contact-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.contact-text {
  max-width: 500px;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-button {
  background-color: #25d366;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact-text {
    max-width: 100%;
  }
}


/* Signup Banner Styling */
.signup-banner {
  background: linear-gradient(to right, #004aad, #0073e6);
  padding: 6rem 2rem;
  color: #fff;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.banner-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.banner-description {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.banner-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #ffcc00;
  color: #004aad;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-btn:hover {
  background-color: #ffc107;
  color: #002f6c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

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

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

  .banner-description {
    font-size: 1.2rem;
  }

  .banner-btn {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }

  .banner-image img {
    max-width: 80%;
  }
}


/* Trust Section Styling */
.trust-section {
  padding: 4rem 2rem;
  background-color: white;
  text-align: center;
}

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

.trust-title {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 1rem;
  font-weight: bold;
}

.trust-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 1rem;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  color: #004aad;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-title {
    font-size: 2rem;
  }

  .trust-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }
}


/* Vision Banner Section */
.vision-banner {
  padding: 4rem 2rem;
  background-color: #004aad;
  color: #fff;
}

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

.vision-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
}

.vision-text {
  max-width: 500px;
}

.vision-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.vision-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.vision-button {
  background-color: #00bfff;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.vision-button:hover {
  background-color: #007bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-image img {
    max-width: 100%;
  }

  .vision-text {
    max-width: 100%;
  }
}




/* Sticky WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}



/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #004225; /* Deep green */
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.back-to-top:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}



.partner-cta-section {

  background-color: #0a0a0a;

  color: #fff;
  padding: 60px 20px;
}

.partner-cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.partner-cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.partner-cta-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.partner-cta-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.partner-cta-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.partner-btn {
  background-color: #4fa3ff;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.partner-btn:hover {
  background-color: #1f8fff;
}


.partnership-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
}

.partnership-container {
  max-width: 900px; /* Increased for wider layout */
  margin: 0 auto;
  text-align: center;
}

.partnership-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.partnership-container p {
  font-size: 16px;
  margin-bottom: 30px;
}

.partnership-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  text-align: left;
}

.form-column {
  flex: 1 1 45%;
}

.full-width {
  width: 100%;
}

.partnership-form .form-group {
  margin-bottom: 20px;
}

.partnership-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
}

/* Placeholder styling */
.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
  color: #aaa;
}

/* Helper text under fields */
.partnership-form small {
  display: block;
  margin-top: 5px;
  color: #ccc;
  font-size: 13px;
}

/* Submit button */
.submit-btn {
  background-color: #4fa3ff;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #1f8fff;
}

/* Responsive layout */
@media (max-width: 768px) {
  .form-column {
    flex: 1 1 100%;
  }
}

/* 🔧 Styling fix for <select multiple> field */
.partnership-form select[multiple] {
  height: 160px;
  padding: 12px;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
  border: none;
  resize: vertical;
  overflow-y: auto;
  font-size: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.partnership-form select[multiple]:focus {
  outline: none;
  border: 2px solid #4fa3ff;
  box-shadow: 0 0 0 2px rgba(79, 163, 255, 0.3);
}





/* CONTRACT FARMING FORM SECTION - SCOPED */

.contract-form {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contract-form .partnership-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers contents horizontally */
}

.contract-form .partnership-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.contract-form .partnership-container p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.contract-form form {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers form fields inside */
  padding: 0;
}

.contract-form .form-step {
  display: none;
  width: 100%;
  animation: fadeIn 0.5s ease-in-out;
}

.contract-form .form-step.active {
  display: block;
}

.contract-form .form-step h2 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #00ff99;
  text-align: center;
}

.contract-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: left;
  width: 100%;
}

.contract-form input[type="text"],
.contract-form input[type="tel"],
.contract-form input[type="email"],
.contract-form input[type="number"],
.contract-form input[type="file"],
.contract-form select,
.contract-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.contract-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contract-form input[type="checkbox"] {
  margin-right: 8px;
}

.contract-form button {
  background-color: #00cc66;
  color: #fff;
  padding: 14px 24px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.contract-form button:hover {
  background-color: #00b359;
}

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

@media screen and (max-width: 768px) {
  .contract-form .partnership-container h2 {
    font-size: 24px;
  }

  .contract-form input,
  .contract-form select,
  .contract-form textarea,
  .contract-form button {
    max-width: 100%;
  }
}







/*qanai secction*/
.heroq-section {
  background-image: url('image/image4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
}

.heroq-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark cover */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.heroq-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.heroq-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.heroq-btn {
  background-color: #66bb6a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.heroq-btn:hover {
  background-color: #2e7d32;
}





.about {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-title {
  font-size: 2.5rem;
  color: #66ffcc;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.about-description {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

.about-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background-color: #004aad;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #002f6c;
  transform: translateY(-2px);
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

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

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

  .about-image img {
    max-width: 90%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }
}






.qan-process {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.process-container {
  max-width: 1200px;
  width: 100%;
}

.process-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #66ffcc;
}

.process-description {
  font-size: 1.2rem;
  color: #e0f7fa;
  margin-bottom: 30px;
  padding: 0 10px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.steps {
  flex: 1 1 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steps-title {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #ffffff;
}

.steps-text {
  font-size: 1rem;
  color: #e0f7fa;
  max-width: 200px;
}

.circle {
  width: 50px;
  height: 50px;
  border: 2px solid #66ffcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #66bb6a;
}

/* Mobile-specific: restrict height for small screens */
@media (max-width: 768px) {
  .qan-process {
    height: auto;
    padding: 30px 15px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}






.qanai-sources {
  min-height: 70vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.sources-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.sources-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #66ffcc;
}

.sources-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #cde7f0;
  padding: 0 10px;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.source-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ffd5;
}

.item-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.item-description {
  font-size: 0.95rem;
  color: #d0e8f2;
}

@media screen and (max-width: 480px) {
  .sources-title {
    font-size: 1.8rem;
  }

  .sources-subtitle {
    font-size: 1rem;
  }
}





.qanai-importance {
  min-height: 70vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.importance-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.importance-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #66ffcc;
}

.importance-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #cde7f0;
  padding: 0 10px;
}

.importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}

.importance-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ffd5;
}

.item-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.item-description {
  font-size: 0.95rem;
  color: #d0e8f2;
}
@media screen and (max-width: 480px) {
  .importance-title {
    font-size: 1.8rem;
  }
  .importance-subtitle {
    font-size: 1rem;
  }
}


.qanai-eastafrica {
  background: linear-gradient(135deg, #172a45, #23395d);
  color: #ffffff;
  min-height: 70vh;
  display: flex;
  flex-direction: column; /* Stack text above image */
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.ea-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column; /* Column layout */
  justify-content: center;
  align-items: center;
}

.ea-left {
  text-align: center;
  margin-bottom: 20px;
}

.ea-right {
  text-align: center;
}

.ea-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #66ffcc;
}

.ea-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #d0f0ff;
}

.ea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.ea-country {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ea-country:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ffd5;
}

.country-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.country-description {
  font-size: 0.95rem;
  color: #d0e8f2;
}

.ea-globe {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .ea-title {
    font-size: 2rem;
  }

  .ea-subtitle {
    font-size: 1rem;
  }

  .ea-right {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .ea-title {
    font-size: 1.8rem;
  }

  .ea-subtitle {
    font-size: 0.9rem;
  }

  .ea-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* Section background */
.chat-section {
  width: 100%;
  min-height: 70vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Title text outside the chat window */
.chat-title {
  color: #ffffffcc;
  font-size: 35px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

/* Chat window (glass tech style) */
.chat-window {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 960px;
  height: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}

/* Chat messages inside */
#chat-box {
  display: flex;
  flex-direction: column;
}

/* Message bubbles */
.message {
  max-width: 75%;
  padding: 12px 18px;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.5s ease-in;
  word-break: break-word;
  backdrop-filter: blur(8px);
  color: white;
}

.user-message {
  background: #00d2ff;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.bot-message {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
.chat-window::-webkit-scrollbar {
  width: 6px;
}
.chat-window::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.demo-footer {
  margin-top: 30px;
  text-align: center;
  color: #a0dfff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 600px;
}

.demo-footer h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #00d2ff;
}

.demo-footer p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .chat-window {
    height: 70vh;
  }
}


/*qanmarket*/
.herom-section {
  background-image: url('image/adv1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
}

.herom-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark cover */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.herom-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.herom-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.herom-btn {
  background-color: #66bb6a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.herom-btn:hover {
  background-color: #2e7d32;
}



.qanmarket-intro {
  display: flex;
  height: 60vh;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
              url('image/adv1.jpg') center/cover no-repeat;
  padding: 20px;
}

.qanmarket-image {
  flex: 1;
}

.qanmarket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 border-radius: 8px;
}

.qanmarket-text {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qanmarket-text h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.qanmarket-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .qanmarket-intro {
    flex-direction: column;
    height: auto;
  }

  .qanmarket-image,
  .qanmarket-text {
    width: 100%;
  }

  .qanmarket-text h2 {
    font-size: 1.5rem;
  }
}


.qanmarket-clients {
  padding: 40px 20px;
  background: white;
}

.qanmarket-clients h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 30px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.client-item i {
  color: #2e7d32;
  margin-bottom: 15px;
}

.client-item h3 {
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.client-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  padding: 0 10px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .client-item h3 {
    font-size: 1rem;
  }

  .client-item p {
    font-size: 0.9rem;
  }
}




.qan-farmers-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60vh;
  padding: 40px 20px;
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
              url('image/adv1.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

.farmers-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}

.farmers-content h2 {
  font-size: 2.5rem; /* Adjusted for better readability */
  color: #2e7d32;
  margin-bottom: 20px;
}

.farmers-content p {
  font-size: 1.125rem; /* Slightly larger text for readability */
  color: #333;
  line-height: 1.6;
}

.farmers-image {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.farmers-image img {
  max-width: 80%; /* Limits the image size */
  height: auto;
  border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .qan-farmers-section {
    flex-direction: column;
    height: auto; /* Ensures height adjusts on smaller screens */
  }

  .farmers-content, .farmers-image {
    padding: 10px;
    text-align: center; /* Align text to center for mobile */
  }

  .farmers-content h2 {
    font-size: 1.8rem; /* Adjusted for smaller screens */
  }

  .farmers-content p {
    font-size: 1rem; /* Adjusted for smaller screens */
  }

  .farmers-image img {
    max-width: 90%; /* Slightly larger max-width on smaller screens */
    border-radius: 8px;
  }
}








.qan-process-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.qan-process-section h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.step {
  padding: 20px;
}

.step i {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .step i {
    font-size: 2rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}





.why-qanmarket-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #ffffff;
}

.why-left {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.why-left h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.why-left p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.why-right {
  flex: 2;
  min-width: 300px;
  padding: 20px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  border-left: 4px solid #4caf50;
  padding-left: 15px;
  transition: transform 0.3s ease;
}

.why-point:hover {
  transform: translateX(5px);
}

.why-point .number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4caf50;
  margin-right: 15px;
  flex-shrink: 0;
}

.why-point .content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.why-point .content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-qanmarket-section {
    flex-direction: column;
  }

  .why-left h2 {
    font-size: 2rem;
  }

  .why-point {
    margin-bottom: 20px;
  }

  .why-point .number {
    font-size: 1.4rem;
  }

  .why-point .content h3 {
    font-size: 1.1rem;
  }

  .why-point .content p {
    font-size: 0.9rem;
  }
}




.features-benefits-section {
  padding: 60px 20px;
  background-color: #f9fdf9;
  text-align: center;
}

.features-benefits-section h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.features-benefits-section .intro-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.feature-item h3 {
  color: #4caf50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .features-benefits-section h2 {
    font-size: 2rem;
  }
}


.how-order-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.how-order-section h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.how-order-section .intro-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.order-step i {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 15px;
}

.order-step h3 {
  color: #4caf50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.order-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .order-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .order-steps {
    grid-template-columns: 1fr;
  }

  .how-order-section h2 {
    font-size: 2rem;
  }
}




.download-app-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  height: 60vh;
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
              url('image/adv1.jpg') center/cover no-repeat;
}

.app-content {
  flex: 1 1 50%;
  padding: 20px;
}

.app-content h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.app-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: background 0.3s;
}

.google-play {
  background-color: #34a853;
}

.google-play:hover {
  background-color: #2e8b4f;
}

.app-store {
  background-color: #333;
}

.app-store:hover {
  background-color: #111;
}

/* Icon Styling */
.app-icon {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon i {
  font-size: 120px;
  color: #2e7d32;
  padding: 20px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .download-app-section {
    flex-direction: column-reverse;
    height: auto;
    text-align: center;
  }

  .app-content h2 {
    font-size: 2rem;
  }

  .app-content p {
    font-size: 1rem;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-icon i {
    font-size: 90px;
    margin-bottom: 20px;
  }
}

/*contract farming*/
.heroc-section {
  background-image: url('image/image16.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
}

.heroc-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark cover */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.heroc-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.heroc-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.heroc-btn {
  background-color: #66bb6a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.heroc-btn:hover {
  background-color: #2e7d32;
}

/* Contract Farming Section Styling */
.contract-farming-intro {
  background-color: #f9f3e2; /* Cream color */
  padding: 5% 15%; /* 5% top and bottom padding, 15% left and right padding */
  min-height: 30vh; /* Ensures the section takes up 70% of the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; /* Centers the container horizontally */
}

.container h2 {
  font-size: 2.5em; /* Title size */
  font-weight: 600;
  color: #2f6f2f; /* Dark green for the title */
  margin-bottom: 20px;
  text-align: left; /* Align the title to the left */
}

.container p {
  font-size: 1.1em; /* Paragraph size */
  color: #4a4a4a; /* Dark gray text */
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left; /* Align paragraphs to the left */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contract-farming-intro {
    padding: 5% 10%; /* Less padding on smaller screens */
  }

  .container h2 {
    font-size: 2em; /* Smaller title on mobile */
  }

  .container p {
    font-size: 1em; /* Smaller paragraph font on mobile */
  }
}



.how-program-works {
  background-color: #f9f3e2; /* Cream background */
  padding: 5% 10%;
}

.how-program-works h2 {
  color: #2f6f2f;
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: left;
}

/* Grid layout — 5 per row on desktop, 2 per row on mobile */
.step-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}


.step {
  text-align: left;
}

.step-icon {
  font-size: 2.5em;
  color: #2f6f2f;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.2em;
  color: #2f6f2f;
  margin-bottom: 10px;
}

.step p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.95em;
}

.program-text {
  margin-top: 50px;
}

.program-text p {
  font-size: 1.1em;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .step-container {
    grid-template-columns: repeat(2, 1fr);
  }
}



.why-model-matters {
  background-color: #f9f3e2; /* Cream background */
  padding: 5% 10%;
}

.why-model-matters h2 {
  color: #2f6f2f;
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: left;
}

/* Grid layout — 4 per row on desktop, 2 per row on mobile */
.model-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.model {
  text-align: left;
}

.model-icon {
  font-size: 2.5em;
  color: #2f6f2f;
  margin-bottom: 10px;
}

.model h3 {
  font-size: 1.2em;
  color: #2f6f2f;
  margin-bottom: 10px;
}

.model p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Responsive */
@media (max-width: 1024px) {
  .model-container {
    grid-template-columns: repeat(2, 1fr);
  }
}



.our-commitment {
  background-color: #f9f3e2; /* Cream background */
  padding: 7% 10%;
}

.our-commitment h2 {
  color: #2f6f2f;
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: left;
}

.our-commitment p {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 1em;
  margin-bottom: 20px;
  text-align: left;
}



/* Footer Section */
.footer-section {
  background-color: #224222;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: left;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link:hover {
  text-decoration: underline;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  list-style-type: none;
  padding: 0;
}

.footer-contact li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
}

.email-input {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 200px;
}

.subscribe-button {
  background-color: #004aad;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: #00317a;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
