*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;

}


@media only screen and (max-width: 767px) {
  body {
    padding-top: 80px; /* Add some padding to the top of the body */
  }
  
}


.col-lg-4{
    padding-top: 30px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
    

  }
  
  .card {
    
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease; /* Add transition for smooth hover effect */
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 16px;
    color: #666;
    padding-bottom: 10px;
  }
  
  .btn {

    display: inline-block;
    padding: 8px 16px;
    background-color:  #4C8741;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color:  #316d26;
    color: #eeeeee;
  }
  
  .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  }

  .card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.3s ease; /* Add transition for smooth zoom effect */
  }
  
  .card:hover img {
    transform: scale(1.1); /* Zoom the image on hover */
  }
  
  
  
  .products{
    text-align: center;
    padding-top:50px;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
  }

  @media only screen and (max-width: 767px) {
    .products{
  
      font-size: 30px;
  
    }
  
  }

  .about-us {
    background-color: #f3f3f3;
    padding: 50px 0;
    padding-top: 50px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .about-text h1 {
    text-align: left;
    padding-top: 20px;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
  }
  
  @media only screen and (max-width: 767px) {
    .about-text h1 {
      padding-top: 30px;
      font-size: 30px;
    }
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
  }
  
  .about-text .read-more {
    color: #4C8741;
    text-decoration: none;
  }
  
  .about-text .read-more:hover {
    text-decoration: underline;
  }
  
  .h3 {
    font-weight: bold;
  }
  
  .choose-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .choose{
    text-align: center;
    padding-top: 60px;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
  }

  @media only screen and (max-width: 767px) {
    .choose{
    
      font-size: 30px;
     
    }
  }

  .choose-us{
    background-color: #ffffff;
  }


  .footer {
    background-color: #000; /* Assuming bg-dark is black */
    color: #fff;
    padding: 20px 0;
  }
  
  .footer .container {
    max-width: 100%; /* Ensure the container spans the entire width */
    padding-left: 20px; /* Remove left padding */
    padding-right: 20px; /* Remove right padding */
  }
  
  .footer .row {
    margin-left: 0; /* Remove any left margin */
    margin-right: 0; /* Remove any right margin */
  }
  
  .footer img {
    max-width: 20%; /* Ensure the image is responsive */
    height: auto;
  }
  
  .footer .col-md-6 {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
  }
  
  .footer hr {
    border-color: #fff; /* Make sure the horizontal rule is visible */
  }
  
  .footer .list-inline {
    padding: 0;
    margin: 0;
  }
  
  .footer .list-inline-item {
    margin-right: 10px;
  }
  
  .footer .list-inline-item a {
    color: #fff; /* Ensure links are visible on dark background */
    text-decoration: none;
  }
  
  .footer .list-inline-item a:hover {
    color: #ddd; /* Add a hover effect for the links */
  }
  
.navbar {
  position: fixed; /* Add fixed positioning */
  top: 0; /* Stick to the top */
  left: 0; /* Align to the left */
  width: 100%; /* Take up full width */
  padding: 10px 20px;
  background-color: #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* Ensure it appears above other content */
}


.nav-item {
  margin-right: 30px;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .navbar-nav {
    margin: 0 auto;
    justify-content: center;
   
  }

  .navbar-collapse {
    display: flex;
    justify-content: center;
  }

  .navbar-brand {
    margin-right: auto;
  }
}

.navbar-center {
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #323632 !important;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.nav-link:hover {
  color: #4C8741 !important;
}

.nav-link.active {
  font-weight: 600;
  color: #4C8741 !important;
}

.navbar-brand img {
  height: 75px;
  width: 100px;
}

.icons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: auto;
}

.icons .nav-item {
  margin-right: 10px;
}

.icons .nav-link svg {
  width: 24px;
  height: 24px;
  fill: #323632;
  transition: fill 0.3s;
}

.icons .nav-link:hover svg {
  fill:  #4C8741;
}


@media (min-width: 1025px) {

  .navbar-center{
    padding-left: 300px;
  }
  .navbar-nav {
    justify-content: center !important;
  }

  .navbar-brand {
    margin-right: auto;
    margin-left: auto;
  }

  .nav-item {
    margin-right: 30px; /* Adjust as needed */
  }
}




.team {
  text-align: center;
  padding-top: 60px;
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .team {
    font-size: 25px;

  }
}

.green-text {
  color: #4C8741;
}

.message{
  background-color: #4b874137;
}

.About-us{
  padding-bottom: 50px;
}

.sugar-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sugar-text h1 {
  text-align: left;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .sugar-text h1 {
      font-size: 25px;
      padding-top: 50px;
  }
}

.sugar-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}


.turmeric-container{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #4b87411c;

}

.turmeric-text h1 {
  text-align:lefet;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}


@media only screen and (max-width: 767px) {
  .turmeric-text h1 {
    font-size: 25px;
    padding-top: 50px;
  }
}

.turmeric-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
  
}

.turmeric-text .read-more {
  color: #4C8741;
  text-decoration: underline;
}


.kcoconut-container{
  padding-top: 50px;
  padding-bottom: 50px;


}

.kcoconut-text h1 {
  text-align:lefet;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .kcoconut-text h1 {
    font-size: 25px;
    padding-top: 50px;
  }
}


.kcoconut-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}


.cinnamon-container{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #4b87411c;

}

.cinnamon-text h1 {
  text-align:lefet;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .cinnamon-text h1 {
    font-size: 25px;
    padding-top: 50px;
  }
}

.cinnamon-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}


.cardamom-container{
  padding-top: 50px;
  padding-bottom: 50px;


}

.cardamom-text h1 {
  text-align:left;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .cardamom-text h1 {
    font-size: 25px;
    padding-top: 50px;
  }
}


.cardamom-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}


.blackpepper-container{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #4b87411c;

}

.blackpepper-text h1 {
  text-align:lefet;
  padding-top: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .blackpepper-text h1 {
    font-size: 25px;
    padding-top: 50px;
  }
}


.blackpepper-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
  
}

.turmeric-container{
  padding-top: 50px;
  padding-bottom: 50px;


}

.main-about{
  padding-top: 50px;
  padding-bottom: 50px;
}

.main-about h3 {
  text-align: left;
  padding-top: 20px;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000000;

}

  
.main-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
  padding-bottom: 0px;
}

.about-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
  padding-bottom: 0px;

  padding-bottom: 50px;
}

.about-image{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    border-radius: 8px;
}

    /* Header */
    header {
      position: relative;
      text-align: center;
      margin-bottom: 20px;
    }
    header img {
      width: 100%;
      height: auto;
    }
    .overlay {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;

    }
    @media only screen and (max-width: 767px) {
 
      .overlay h1 {
        margin-top: 50px;
        font-size: 20px !important;
        font-weight: bold;
      }
      .overlay p {
        font-size:10px !important;
      }

    }
  

    .overlay h1 {

      margin-bottom: 10px;
      font-size: 50px;
      font-weight: bold;
    }
    .overlay p {
      font-size:30px;
    }


    @media only screen and (max-width: 767px) {
 
      .operation h1 {
        margin-top: 50px;
        font-size: 20px !important;
        font-weight: bold;
      }

    }
  

    .operation h1 {

      margin-bottom: 50px;
      font-size: 30px;
      font-weight: bold;
      text-align: center;
    }
    
    
     /* Cards */
     .cards {
      padding-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .custom-card {
      margin-left: 20px;
      margin-right: 20px;
      padding-top: 50px;
      flex-basis: calc(20% - 20px);
      border: 1px solid #e6e6e6;
      border-radius: 5px;
      overflow: hidden;
      text-align: center; /* Center align text */
    }
    .custom-card .icon {
      
      font-size: 48px;
      margin-top: 20px;
      color: #4C8741;
    }
    .custom-card .card-content {
      padding: 20px;
    }
    .custom-card .card-content h3 {
      font-size: 1.2em;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .custom-card .card-content p {
      font-size: 1em;
    }
    
    /* Media Queries */
    @media (max-width: 768px) {
      .custom-card {
        flex-basis: calc(50% - 20px);
      }
    }
    @media (max-width: 576px) {
      .custom-card {
        flex-basis: 100%;
      }
    }



    .map{

        text-align: center;
        padding-top: 20px;
        font-size: 40px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 50px;

    }

    @media only screen and (max-width: 767px) {
      .map{

        text-align: center;
        padding-top: 20px;
        font-size: 30px;

    }
    }

    .background1{

      background-color: #316d26;
    }

    
.map {
  width: 100%;
  position: relative;
  padding-top: 1rem; /* Space for the heading */
}

.map iframe {
  width: 100%;
  height: 70vh; /* Adjust the height as needed */
  border: 0;
}

.map h1 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
  font-size: 40px;
  font-weight: bold;
  color: #000000;
}

.fixed-cards {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */

}

.custom-card-libya, .custom-card-egypt, .custom-card-uae, .custom-card-turkey, .custom-card-new-location {
  width: 18%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}


.card-content h1 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.card-content p {
  margin: 0;
  font-size: 14px;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .custom-card-libya, .custom-card-egypt, .custom-card-uae, .custom-card-turkey, .custom-card-new-location {
    width: 100%; /* Stack the cards on top of each other */
    margin-bottom: 10px;
  }
}
