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

body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: #fff;
}

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

.header.scrolled {
    background: #226b34;
    color: white;
  }
/* 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;
  }
  
  .btnt {
    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: 12px;
      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;
  }
  }



/* Hero */
.hero {
  background-color: #0b1d0d;
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: absolute;
  top: 25%;
  left: 10%;
  right: 10%;
  max-width: 600px;
  z-index: 2;
}

.subheading {
  color: #7eff7e;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.btns {
  text-decoration: none;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.primary {
  background-color: #7eff7e;
  color: #0b1d0d;
}

.secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.primary:hover,
.secondary:hover {
  opacity: 0.8;
}

/* Hero Image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  right: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content {
    left: 5%;
    right: 5%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    background: #0b1d0d;
    width: 100%;
    text-align: center;
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .quote-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 30px;
  }

  .description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .description {
    font-size: 13px;
  }
}







.side-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  padding: 2rem 1rem;
  background: #ffff;
}

.card {
  background-color: #226b34;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  min-height: 250px;
}

.card-content {
  flex: 1;
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}


.actions-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}


.card-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.card-image img {
  height: 100%;
  max-height: 240px;
  width: auto;
  object-fit: contain;
}


@media (max-width: 768px) {
  .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #226b34;
    border-radius: 12px;
    padding: 1.2rem;
    width: 100%;
    max-width: 100%;
    min-height: 240px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  }

  .card-content {
    flex: 1;
  }

  .card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: white;
  }

  .card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: white;
  }

.actions-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

  .card-image {
    flex-shrink: 0;
    margin-left: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .card-image img {
    height: 100%;
    max-height: 200px;
    width: auto;
    object-fit: contain;
  }
}




/* About Section Styling */
.about {
  padding: 4rem 2rem;
  background-color: white;
}

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

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

.about-title {
  font-size: 2.8rem;
  color: #4caf50;
  margin-bottom: 1rem;
  font-weight: bold;
}

.about-description {
  font-size: 1.1rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

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






.mission-section {
  background-color: #ffffff;
  padding: 60px 40px;
  width: 100%;
}

.mission-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  font-weight: bold;
}

.mission-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 900px;
}

.learn-btn {
  background-color: #4CAF50;
  color: #fff;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.learn-btn:hover {
  background-color: #14532d;
}

.mission-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mission-image {
  flex: 1 1 45%;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.mission-list {
  flex: 1 1 45%;
  list-style: disc inside;
  font-size: 1.2rem;
  line-height: 2.5;
  color: #444;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .mission-flex {
    flex-direction: column;
  }

  .mission-image {
    order: 2;
    margin-bottom: 1.5rem;
  }

  .mission-list {
    order: 3;
  }
}








  
  /* SECTION BACKGROUND */
.qan-stats-section {
  background-color: #ffffff; /* clean white background */
  padding: 60px 20px;
}

/* CARD GRID */
.qan-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 29px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD STYLING */
.stat-card {
  background-color: #eafaf1;
  flex: 1 1 calc(25% - 24px); /* 4 cards per row on desktop */
  max-width: calc(25% - 24px);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  color: #1c1c1c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

/* HIGHLIGHTED CARD */
.stat-card.highlight {
  background-color: #4caf50;
  color: #ffffff;
}

/* TEXT STYLING */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* HOVER EFFECT */
.stat-card:hover {
  transform: translateY(-5px);
}

/* ✅ MOBILE: 2 cards per row */
@media (max-width: 768px) {
  .stat-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}


  
  
  


.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: 1.5rem;
  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: 70px 40px 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.5rem;
  font-weight: 600;
  color: #222;
}

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

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

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

  .service-card {
    aspect-ratio: 1 / 1;
    padding: 50px 16px 16px; /* more top padding to make room for icon */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: visible; /* ensure icon not clipped */
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
    top: -30px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .service-card h3 {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
  }

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









.qan-how-it-works {
  background-color: white;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.qan-how-it-works-container {
  background-color: #226b34;
  border-radius: 20px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}


.qan-step {
  color: #ffffff;
  position: relative;
  padding: 0 1rem;
}

/* Add vertical divider line between cards */
.qan-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}


.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: #facc15;
  color: #226b34;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.qan-step h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.qan-step p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.4;
}

/* Responsive - 2 per row on tablets and mobile */
@media (max-width: 992px) {
  .qan-how-it-works-container {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Remove divider on mobile */
  .qan-step::after {
    display: none;
  }
}
}

@media (max-width: 576px) {
  .qan-how-it-works-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}




 .products-section {
    padding: 60px 20px;
    background: #226b34;
    text-align: center;
  }
  
  .products-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
  }
  
  .products-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }
  
  .products-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px;
  }
  
  .products-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .products-logos img {
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .products-logos img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 600px) {
    .products-logos {
      gap: 30px;
    }
  
    .products-logos img {
      max-height: 60px;
    }
  }






/* Projects Banner Section */
.prime-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background : white;
}

.prime-banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: left;
}
.prime-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  font-weight: 800;
}

.prime-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: black;
  max-width: 900px;
}
/* Image Section */
.prime-banner-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Text Content */
.prime-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prime-banner-title {
  font-size: 2.8rem;
  color: #4caf50;
  margin-bottom: 1rem;
  font-weight: 800;
}

.prime-banner-description {
  font-size: 1.1rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.prime-banner-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.prime-banner-button:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .prime-banner-container {
    grid-template-columns: 1fr; /* Stack Image and Text */
    text-align: left;
  }

  .primr-banner-text {
    align-items: center;
  }

  .prime-banner-title {
    font-size: 2rem;
  }

  .prime-banner-description {
    font-size: 1rem;
  }
}



/* Section and general styling */
.qan-section {
  padding: 60px 40px;
  background: #ffffff;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Section title */
.qan-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #4CAF50;
  font-weight: 700;
  text-align: left;
  max-width: 1080px;
  margin-left: 0;
  margin-right: auto;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* Grid layout */
.qan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Card styling */
.qan-card {
  width: 100%;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto; /* Allow flexible height */
  min-height: 480px; /* Optional: Ensures uniform height look */
}

.qan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.qan-image {
  height: 170px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* Content */
.qan-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.qan-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #4CAF50;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.qan-content p {
  flex-grow: 1;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Button */
.qan-button {
  align-self: flex-start;
  padding: 12px 20px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.qan-button:hover {
  background-color: #005f46;
}

/* Mobile styles */
@media (max-width: 768px) {
  .qan-section {
    padding: 40px 20px;
  }

  .qan-section h2 {
    font-size: 1.8rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }

  .qan-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    padding: 0 10px;
  }

  .qan-card {
    width: 100%;
    height: auto;
    min-height: 500px;
    margin: 0 auto;
  }

  .qan-image {
    height: 220px;
  }

  .qan-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .qan-content h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    text-align: center;
  }

  .qan-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    -webkit-line-clamp: 6;
  }

  .qan-button {
    font-size: 1rem;
    padding: 14px 24px;
  }
}




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

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

.trust-title {
  font-size: 2.5rem;
  color: #4CAF50;
  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: #4CAF50;
  margin-bottom: 1rem;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  color: #4CAF50;
  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;
  }
}



.qanai-hero {
  height: auto;
  background-color: #007f5f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.qanai-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  flex: 1 1 500px;
}

.qanai-container h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
  word-break: break-word;
}

.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 4s steps(35, end);
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.qanai-container p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f2f2f2;
}

.qanai-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-filled {
  background-color: #ffffff;
  color: #007f5f;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-filled:hover {
  background-color: #e0f8ee;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.image-wrapper {
  flex: 1 1 400px;
  max-width: 600px;
  margin: 30px auto 0;
  padding: 0 10px;
  animation: fadeInRight 1s ease-out forwards;
}

.image-wrapper img.animated-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .qanai-container h1 {
    font-size: 2rem;
  }

  .qanai-container p {
    font-size: 1rem;
  }

  .btn-filled,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .image-wrapper {
    animation: fadeInUp 1s ease-out forwards;
  }

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

  .image-wrapper img.animated-image {
    max-height: 300px;
  }
}



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

.vision-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse; /* Image left, text right */
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.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: 20px;
  transition: background-color 0.3s ease;
}

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

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


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

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

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

  .vision-heading {
    font-size: 2rem;
  }

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







.qan-farmer-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.qan-farmer-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #134e4a;
  margin-bottom: 60px;
}

.qan-farmer-section-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.qan-farmer-section-card {
  background-color: #134e4a;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: 14px;
  max-width: 860px;
  width: 100%;
  height: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  text-align: left;
}

.qan-farmer-section-card:hover {
  transform: translateY(-8px);
}

.qan-farmer-section-card i {
  font-size: 64px;
  color: #ffffff;
}

.qan-farmer-section-card h3 {
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.qan-farmer-section-card p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .qan-farmer-section-title {
    font-size: 2.2rem;
  }

  .qan-farmer-section-card {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 30px 24px;
  }

  .qan-farmer-section-card i {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .qan-farmer-section-card h3 {
    font-size: 1.6rem;
  }

  .qan-farmer-section-card p {
    font-size: 1.1rem;
  }
  
}




/* Projects Banner Section */
.projects-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background :  linear-gradient(to right, #004aad, #0073e6);
}

.projects-banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

/* Image Section */
.projects-banner-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Text Content */
.projects-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.projects-banner-description {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.projects-banner-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ff9800;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.projects-banner-button:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-banner-container {
    grid-template-columns: 1fr; /* Stack Image and Text */
    text-align: center;
  }

  .projects-banner-text {
    align-items: center;
  }

  .projects-banner-title {
    font-size: 2rem;
  }

  .projects-banner-description {
    font-size: 1rem;
  }
}






/* 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: 20px;
  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%;
  }
}


.dual-banner {
  background: white;
  padding: 4rem 2rem;
}

.dual-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

.banner-half {
  flex: 1 1 48%;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-content h2 {
  font-size: 1.8rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.action-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.action-button:hover {
  background-color: #003080;
}

.image-content img {
  width: 100%;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .dual-container {
    flex-direction: column;
  }

  .banner-half {
    flex: 1 1 100%;
  }
}









  .action-section {
    padding: 3rem 1rem;
    background: #fff;
    text-align: center;
  }

  .action-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0dba6c;
  }

  .action-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .join-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    background: #0dba6c;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .join-btn:hover {
    background: #0056b3;
  }

  /* Desktop Grid */
  .desktop-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-in-out;
  }

  .desktop-view img {
    width: calc(33.33% - 1rem);
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .desktop-view img:hover {
    transform: scale(1.03);
  }

  /* Mobile Carousel */
  .mobile-view {
    display: none;
    position: relative;
    margin-top: 2rem;
    max-width: 400px;
    margin-inline: auto;
  }

  .carousel-images {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .carousel-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .carousel-images img.active {
    opacity: 1;
  }

  .carousel-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .carousel-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .carousel-dots .dot.active {
    background: #007bff;
  }

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

  @media (max-width: 768px) {
    .desktop-view {
      display: none;
    }

    .mobile-view {
      display: block;
    }
  }





.partners-section {
  background-color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.partners-heading {
  font-size: 2.5rem;
  color: #226b34;
  margin-bottom: 0.5rem;
}

.partners-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo img {
  max-height: 110px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}


/* 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);
}







/* 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;
  }
}
