@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

/* gallary css */

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover > .img-overlay {
  opacity: 1;
  background-color: #00000069;
  pointer-events: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 300ms ease-in;
}

.img-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease-in;
}

.img-overlay i {
  color: #2f7aeb;
  font-size: 42px;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  position: relative;
  width: 95%;
  max-width: 600px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Carousel styles */
.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-height: 400px;
  position: relative;
}

.carousel img {
  width: 100%;
  height: auto;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-images > img {
  min-width: 100%;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* section css */

.section-header {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, white, #607da6, white);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
.services-section {
  padding: 20px 0;
  background-color: #87abdf;
  color: black;
}

.service-item {
  display: flex;
  margin: 20px 0;
  gap: 10px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
  padding: 0 10px !important;
  background-color: white;
  color: black;
  padding: 8px;
  border-radius: 4px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-content p {
  font-size: large;
}

.main-logo {
  width: 30%;
}

.service-content ul {
  font-size: large;
}

.text-justify {
  text-align: justify;
}

@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}

.flex {
  display: flex;
}

.gap-4 {
  gap: 4rem;
}

.content-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.my-4 {
  margin: 4px 0px;
}


/* General dropdown styles */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}


.nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 200px;
  display: flex !important;
  padding: 10px 0;
  scale: 0.95 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform-origin: top;
  transition: all 100ms ease-in;

}

.cd-top{
  border-radius: 50%;
  padding: 1px;
}

.nav-item:hover .dropdown-menu {
  scale: 1 !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list li {
  margin: 0;
  padding: 0;
}

.dropdown-list li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-list li a:hover {
  background-color: #eaeaea;
  color: #000;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .nav-item {
      width: 100%;
  }

  .nav-link {
      padding: 12px 20px;
  }

  .dropdown-menu {
      width: 100%;
      position: relative;
      box-shadow: none;
  }

  .dropdown-list li a {
      padding: 12px 20px;
  }
}

/* Mobile-friendly styles */
@media (max-width: 480px) {
  .dropdown-menu {
      width: 100%;
  }

  .dropdown-list li a {
      padding: 14px 25px;
  }
}


.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 40px;
  background-color: white;
  border-radius: 10px;
}

/* Blog card styling */
.blog-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover effect for blog cards */
.blog-card:hover {
  transform: translateY(-10px);
}

/* Blog image styling */
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

/* Blog content styling */
.blog-content {
  padding: 15px;
}

/* Blog title */
.blog-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

/* Blog description */
.blog-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* Blog button */
.blog-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: rgb(87, 87, 214);
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.blog-button:hover {
  background-color: rgb(118, 118, 228);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-image {
      height: 150px;
  }

  .blog-title {
      font-size: 1.25rem;
  }

  .blog-description {
      font-size: 0.9rem;
  }
}



/* Container for the FAQ section */
.faq-container {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  color: black;
}

/* Header section */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3768af;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* FAQ list styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual FAQ item */
.faq-item {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* FAQ question button */
.faq-question {
  width: 100%;
  padding: 15px 20px;
  background-color: #3768af;
  color: white;
  border: none;
  text-align: left;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #2e5b91;
}

.faq-question i {
  margin-right: 10px;
}

/* FAQ answer content */
.faq-answer {
  padding: 20px;
  background-color: #87abdf;
  display: none;
  font-size: 1rem;
  color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-title {
      font-size: 2rem;
  }

  .faq-question {
      font-size: 1rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }
}


.sustainable-blog-page {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.sustainable-container {
  max-width: 1200px;
  margin: auto;
}

.sustainable-blog-title {
  text-align: center;
  font-size: 2.5rem;
  color: #3768af;
  margin-bottom: 20px;
}

.sustainable-blog-intro p {
  text-align: center;
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 50px;
}

.sustainable-blog-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 50px;
}

.sustainable-blog-section.reverse {
  flex-direction: row-reverse;
}

.sustainable-image-container {
  flex: 1;
  padding: 20px;
}

.sustainable-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.sustainable-text-container {
  flex: 1;
  padding: 20px;
}

.sustainable-text-container h2 {
  color: #3768af;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.sustainable-text-container p {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 768px) {
  .sustainable-blog-section {
      flex-direction: column;
  }

  .sustainable-blog-section.reverse {
      flex-direction: column;
  }

  .sustainable-image-container,
  .sustainable-text-container {
      padding: 0;
  }
}


.bio-agro-blog-container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bio-agro-blog-post {
  flex: 2;
  padding: 20px;
}

.bio-agro-blog-header {
  text-align: center;
}

.bio-agro-blog-header h1 {
  color: #3768af;
}

.bio-agro-post-meta {
  font-size: 0.9em;
  color: #777;
}

.bio-agro-blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.bio-agro-blog-content h2 {
  color: #3768af;
}

.bio-agro-blog-footer {
  text-align: center;
  margin-top: 20px;
}

.bio-agro-share-link {
  margin: 0 10px;
  color: #3768af;
  text-decoration: none;
}

.bio-agro-sidebar {
  flex: 1;
  padding: 20px;
  margin-left: 20px;
  background: #e9ecef;
  border-radius: 8px;
}

.bio-agro-sidebar h2 {
  color: #3768af;
}

.bio-agro-related-posts {
  list-style: none;
  padding: 0;
}

.bio-agro-related-posts li {
  margin: 10px 0;
}

.bio-agro-related-posts a {
  text-decoration: none;
  color: #3768af;
}



.organic_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.organic_header {
  text-align: center;
}

.organic_header h1 {
  color: #3768af;
}

.organic_subtitle {
  font-size: 1.2em;
  color: #87abdf;
}

.organic_image {
  width: 100%;
  height: 70vh;
  border-radius: 8px;
  margin: 20px 0;
}

.organic_content {
  margin: 20px 0;
}

.organic_section_title {
  color: #3768af;
  margin-top: 40px;
}

.organic_benefits_list {
  list-style: none;
  padding: 0;
}

.organic_benefits_list li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.organic_icon {
  margin-right: 10px;
  color: #3768af;
}

.organic_innovation_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.organic_innovation_item {
  flex: 1 1 calc(33% - 20px);
  background: #e9ecef;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.organic_innovation_image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}



.agrotech_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.agrotech_header {
  text-align: center;
}

.agrotech_header h1 {
  color: #3768af; /* Green color */
}

.agrotech_subtitle {
  font-size: 1.2em;
  color: #3768af; /* Lighter green */
}

.agrotech_image {
  width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  margin: 20px 0;
}

.agrotech_content {
  margin: 20px 0;
}

.agrotech_section_title {
  color: #3768af;
  margin-top: 40px;
}

.agrotech_solutions_list {
  list-style: none;
  padding: 0;
}

.agrotech_solutions_list li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.agrotech_icon {
  margin-right: 10px;
  color: #3768af;
}

.agrotech_innovation_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.agrotech_innovation_item {
  flex: 1 1 calc(33% - 20px);
  background: #e9ecef;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.agrotech_innovation_image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}



.consulting_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.consulting_header {
  text-align: center;
  margin-bottom: 30px;
}

.consulting_header h1 {
  color: #2c3e50;
  font-size: 2.5em;
}

.consulting_subtitle {
  color: #3768af;
  font-size: 1.2em;
}

.consulting_image {
  width: 100%;
  height: 40vh;
  border-radius: 8px;
  margin-bottom: 20px;
}

.consulting_content {
  margin: 20px 0;
  font-size: 1.1em;
  line-height: 1.6;
}

.consulting_section_title {
  color: #2c3e50;
  margin-top: 40px;
  font-size: 1.8em;
  text-align: center;
}

.consulting_services_grid,
.consulting_expertise_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.consulting_service_item,
.consulting_expertise_item {
  flex: 1 1 calc(33% - 20px);
  background-color: #e9ecef;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.consulting_icon {
  font-size: 2em;
  color: #3768af;
  margin-bottom: 10px;
}

.consulting_service_title {
  font-size: 1.3em;
  color: #2c3e50;
}

.consulting_expertise_image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.consulting_expertise_title {
  font-size: 1.3em;
  color: #2c3e50;
}

.consulting_contact {
  text-align: center;
  margin-top: 40px;
}

.consulting_contact_content {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.consulting_contact_button {
  background-color: #3768af;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
}

.consulting_contact_button:hover {
  background-color: #1b5bbb;
 color: white;
}

/* Logistics Hero Section */
.logistic_hero {
  background-color: #3768af;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.logistic_hero_title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.logistic_hero_text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Logistics Services Section */
.logistic_services {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.logistic_section_title {
  text-align: center;
  font-size: 2em;
  color: #3768af;
  margin-bottom: 40px;
}

.logistic_service_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logistic_service_item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.logistic_service_item:hover {
  transform: translateY(-5px);
}

.logistic_service_icon {
  font-size: 3em;
  color: #87abdf;
  margin-bottom: 15px;
}

.logistic_service_title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #3768af;
}

.logistic_service_description {
  font-size: 1em;
  color: #333;
}

/* Logistics Partners Section */
.logistic_partners {
  padding: 60px 0;
}

.logistic_partners_grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logistic_partner_item {
  text-align: center;
  width: 200px;
}

.logistic_partner_image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.logistic_partner_name {
  font-size: 1.2em;
  color: #3768af;
}


/* Logistics Partners Section */
.logistic_partners {
  padding: 60px 0;
}

.logistic_partners_grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logistic_partner_item {
  text-align: center;
  width: 200px;
}

.logistic_partner_icon {
  font-size: 3em;
  color: #3768af;
  margin-bottom: 10px;
}

.logistic_partner_name {
  font-size: 1.2em;
  color: #3768af;
}


/* Sustainability Overview */
.sust_service_overview {
  text-align: center;
  padding: 50px 20px;
}

.sust_service_title {
  font-size: 2.5rem;
  color: #3768af;
}

.sust_service_intro {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Sustainability Section */
.sust_service_section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.sust_service_section.reverse {
  flex-direction: row-reverse;
}

.sust_service_subtitle {
  font-size: 2rem;
  color: #3768af;
  text-align: center;
  margin-bottom: 30px;
}

.sust_service_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
}


.sust_service_content.reverse{
  flex-direction: row-reverse;
}
.sust_service_text {
  max-width: 500px;
  flex: 1;
}

.sust_service_text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.sust_service_list {
  list-style: none;
  padding: 0;
}

.sust_service_list li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: #3768af;
}

.sust_service_icon {
  margin-right: 10px;
  color: #87abdf;
  font-size: 1.5rem;
}

.sust_service_image {
  flex: 1;
  max-width: 400px;
}

.sust_service_image img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sust_service_section {
      flex-direction: column;
  }

  .sust_service_content{
    flex-direction: column;
  }

  .sust_service_content.reverse{
    flex-direction: column;
  }
  
  .sust_service_section.reverse {
      flex-direction: column;
  }
}
