.bg-color-green
{
    background-color: #2b793f !important;
}
.bg-color-gradient
{
    background:linear-gradient(45deg,#075a1c,#2b793f,#075a1c)
}
.bg-gray
{
  background-color: #869188 !important;
}
.animated-img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    animation: treeMove2 3s linear 0s infinite ;
  
}

/* Animation for rotating effect */
/* @keyframes treeMove2 {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
} */


.about-header {
    background-image: url('../images/backgrounds/mix3.jpg');
    background-size: cover;
    background-position: center;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
    color: white;
}

.breadcrumb {
    display: inline-flex;  /* To keep breadcrumb centered */
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a, .breadcrumb-item {
    color: white !important;
}

/* Optional for cleaner look */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: white;
}

.about-us-container {
    text-align: center;
    padding-top: 180px;
}
.breadcrumb a {
    color: white;  /* Set breadcrumb links to white */
    text-decoration: none;
    font-size: 25px; /* Optional: remove underline from links */
}
.header-wrapper {
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    padding: 20px;
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Optional for rounded corners */
    text-align: center;
    color: white;
    z-index: 2;
}

.border-green{
    border: 2px solid #28a745 !important; /* Bootstrap's success green */
   
}
.content-card:hover h5, 
.content-card:hover p {
    color: white;
}
.card-ethylene
{
    background-image: url('../images/backgrounds/technologies-used.jpg');
    background-size: cover;
    height: 100%;
    width: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
    
}
/* .card-ethylene h4 {
    color: white !important;
}
.card-ethylene ol li
{
    color: white !important;
} */

/* .hover-zoom {
    transition: transform 0.3s ease;
}
  
.hover-zoom:hover {
    transform: scale(1.2);
} */


.card-howWorks{
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--alefox-white, #fff);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
   
  }
  .card-howWorks::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--alefox-base, #202221);
    z-index: -1;
    border-radius: 10px;
    transform: scale(1, 0);
    perspective: 400px;
    visibility: hidden;
    transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
    transform-origin: bottom center;
  }
  .card-howWorks:hover::after {
    transform: scale(1, 1);
    visibility: visible;
    transform-origin: top center;
   
  }

  .card-howWorks:hover .card-body {
    color: white; /* Change text color to yellow on hover */
   
  }

/* 
#gray-scale img{
	width:150px;
	height: 150px;
	border-radius: 10px;
	transition: all 0.5s;
	filter: grayscale(100%);
}
#gray-scale:hover img{
	transform:scale(1.1,1.1);
	filter: grayscale(0%);
} */

.outlined-green {
  border: 5px solid darkgreen; /* Add a solid dark green border */
  border-radius: 10px; /* Optional for rounded corners */
  transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
  padding: 10px; /* Optional for spacing inside the border */
}

.outlined-green:hover {
  box-shadow: 0 0 15px darkgreen; /* Add a glowing effect on hover */
  transform: scale(1.05); /* Slight zoom-in effect on hover */
}

.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex; /* Flexbox layout */
    justify-content: center; /* Horizontal centering */
    align-items: center;
  }
  
  .icon {
    position: absolute;
    width: 200px;
    height:200px;
    transition: opacity 0.3s ease-in-out;
  }
  
  .original-image {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .icon-container:hover .icon {
    opacity: 0;
  }
  
  .icon-container:hover .original-image {
    opacity: 1;
  }

  .first .image .content{
    position: absolute;
    bottom: -18%;
    color: white;
    background-color: rgba(1,1,1,0.3);
    transition: all 10s;
    display: none;
    border-radius: 10px;
    /* text-indent: 30px; */
    padding: 10px;
    color: white;
}
.first .image:hover .content{
    bottom: 14%;
    display: block;
}
.crop-details-icon
{
    background-color: black;
    color: white;
    border-radius: 50%; /* Makes the background rounded */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    font-size: 24px; /* Adjust font size as needed */
}
.accordion-button {
    background-color: #28a745 !important; /* Green background */
    color: white !important; /* White text */
    font-weight: bold !important; /* Bold text */
    border: none !important; /* Remove default border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* Add subtle shadow */
    transition: background-color 0.3s ease, transform 0.2s ease !important;
  }
  
  .accordion-button:hover, 
  .accordion-button:not(.collapsed) {
    background-color: #218838 !important; /* Darker green on hover or active */
    transform: scale(1.02) !important; /* Slight scale effect */
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(72, 180, 97, 0.5) !important; /* Add focus ring */
  }
  
  .accordion-item {
    border: 1px solid #28a745 !important; /* Add green border to accordion items */
    border-radius: 5px !important; /* Round corners */
    margin-bottom: 10px !important; /* Add spacing between items */
  }
  
  .accordion-header {
    border-radius: 5px !important; /* Round corners of header */
    overflow: hidden !important; /* Prevent content spill */
  }
  

  
.gif-container-1 {
  position: relative;
  display: flex;
  justify-content: flex-end; /* Aligns GIF to the right */
  margin-top: 0px; /* Reduce space above the GIF */
}

.gif-bottom-right-1 {
  width: 100px; /* Smaller width */
  height: 100px; /* Smaller height */
  pointer-events: none; /* Ensure GIF is not clickable */
}


@media (max-width: 768px) { /* For tablets and smaller screens */
  .gif-bottom-right-1 {
    width: 80px; /* Adjust size for smaller screens */
    height: 80px;
  }
}

@media (max-width: 480px) { /* For mobile screens */
  .gif-bottom-right-1 {
    width: 60px; /* Smaller size for mobiles */
    height: 60px;
  }
}


.service-two__item-about-us-1 {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: var(--alefox-white, #fff);
  border-radius: 10px;
  
  overflow: hidden; /* Ensures content doesn't overflow */
}

.service-two__item-about-us-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--alefox-base, #202221);
  z-index: -1;
  border-radius: 10px;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.service-two__item-about-us-1:hover::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.service-two__item__content-about-us-1 {
  position: relative;
  padding: 0 20px 20px; /* Reduced padding */
  margin-top: 5px; /* Reduced margin */
}

.about-three__image__two-1 {
position: absolute !important;
right: 20px !important;
top: 20px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 100px !important; /* Adjust width as needed */
height: 100px !important; /* Adjust height as needed */
background-color: var(--alefox-white, #fff) !important;
border-radius: 50% !important;
padding: 11px !important;
animation: treeMove2 4s linear 0s infinite !important;
z-index: 10 !important; /* Ensure it's above the main image */
}

@media (max-width: 767px) {
.about-three__image__two-1 {
  display: none !important;
}
}



.custom-form {
  width: 70%; /* Fixed width for the form */
  margin: 0 auto; /* Center the form horizontally */
  box-sizing: border-box; /* Ensure padding/borders do not affect width */
  transition: none; /* Prevent hover effects from altering width */
  border-radius: 15px;
}

.custom-form-control {
  height: 50px; /* Maintain consistent height for inputs */
  font-size: 16px; /* Improve readability */
  padding: 10px 15px; /* Balanced padding */
  border-radius: 5px; /* Rounded corners for a sleek look */
  border: 1px solid #ccc; /* Subtle border for clarity */
  width: 100%; /* Inputs should fill the form width */
  box-sizing: border-box; /* Prevent padding/borders from affecting width */
}

.custom-form-control:focus {
  border-color: #04653A; /* Highlight border on focus */
  outline: none; /* Remove default focus outline */
  box-shadow: 0 0 5px rgba(4, 101, 58, 0.5); /* Subtle focus glow */
}

textarea.custom-form-control {
  resize: none; /* Disable manual resizing */
}

.custom-form .btn {
  background-color: #04653A; /* Match theme color */
  color: #fff; /* White text for contrast */
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-form .btn:hover {
  background-color: #029e5b; /* Slightly lighter green on hover */
  color: #fff;
}
/* Default styling for larger screens (e.g., laptop) */

/* Responsive styling for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
  .custom-form {
      width: 100%; /* Full width for mobile */
      margin: 0; /* Remove horizontal centering */
      padding: 0 10px; /* Add padding for a better appearance */
  }
}
@media (max-width: 768px) {
  .about-three__image img{
    width: 100% !important;
    height: 400px !important;
  }
}

@media (max-width: 768px) {
  .image-technology-1 img{
   
    height: 300px !important;
  }
}

/* Animation Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Default State Before Scroll */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When in Viewport, Add Animation */
.fade-in-left.show {
  animation: fadeInLeft 1s ease-out forwards;
}





.cta-five__content__list li img {
  font-size: 34px;
  color: var(--alefox-base, #2b793f);
  display: inline-block;
  transition: all 600ms ease;
}

.cta-five__content__list li:hover img {
  transform: rotateY(180deg);
}
.apple-bore-header {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}

.apple-bore-header {
  background-image: url('../images/crop-type-header-images/jujube.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}




.crop-type-details-images {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.crop-type-details-images::after {
  position: absolute;
  left: -20px;
  bottom: -20px;
  content: "";
  width: 278px;
  height: 278px;
  background-color: var(--alefox-base, #2b793f);
  z-index: -1;
}
.crop-type-details-images img {
  max-width: 550px;
  height: 500px;
  height: auto;
}
@media (max-width: 768px) {
  .crop-type-details-images img{
    width: 350px !important;
    height: 400px !important;
  }
}

.avocado-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.avocado-header {
  background-image: url('../images/crop-type-header-images/avocado.png');
  background-size: cover;
  object-fit: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.banana-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.banana-header {
  background-image: url('../images/crop-type-header-images/banana.png');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.cauliflower-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.cauliflower-header {
  background-image: url('../images/crop-type-header-images/cauliflower.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.chillies-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.chillies-header {
  background-image: url('../images/crop-type-header-images/Chillies.jpeg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.coriander-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.coriander-header {
  background-image: url('../images/crop-type-header-images/coriander-header.png');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.drumstick-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.drumstick-header {
  background-image: url('../images/crop-type-header-images/drumstick.jpg');
  background-size: cover;
  object-fit: fill;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.ginger-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.ginger-header {
  background-image: url('../images/crop-type-header-images/Ginger.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.haldi-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.haldi-header {
  background-image: url('../images/crop-type-header-images/turmeric.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.mangoes-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.mangoes-header {
  background-image: url('../images/crop-type-header-images/mango1.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.mint-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.mint-header {
  background-image: url('../images/crop-type-header-images/mint.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.pomegranate-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.pomegranate-header {
  background-image: url('../images/crop-type-header-images/pome1.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}
.spinach-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.spinach-header {
  background-image: url('../images/crop-type-header-images/spinach.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}


.strawberry-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.strawberry-header {
  background-image: url('../images/crop-type-header-images/strawberry.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}





/* Fresh Keeper Bio */


.fresh-keeper-bio-header  {
  position: relative; /* Ensure the header is the containing block */
  overflow: hidden;   /* Prevent overflow outside the header */
}
.fresh-keeper-bio-header{
  background-image: url('../images/fresh-keeper-bio-images/header.png');
  background-size: cover;
  background-position: center;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack elements vertically */
  text-align: center;
  color: white;
}

@media (max-width: 767px) {
  .img1-main-image {
      content: url('../images/fresh-keeper-bio-images/img1-small-size.png') !important;
      height: 300px !important;
      width: 100%;
  }
}

.outline-box {
  border: 2px solid #2b793f; /* Black border */
  padding: 20px; /* Optional padding inside the outline */
  border-radius: 10px; /* Optional rounded corners for the outline */
}


.bio-card-container {
  max-width: 600px;
  margin: auto;
  position: relative;
}
.bio-custom-card {
  background: linear-gradient(to right, #0d520d, #2a852a);
  color: white;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.arrow {
  position: absolute;
  right: 15px;
  bottom: -40px;
  width: 60px;
  height: 60px;
  z-index: 1;
  background: url('../images/fresh-keeper-bio-images/arrow.png');
  background-size: cover;
  /* clip-path: polygon(50% 100%, 0 0, 100% 0); */
}

.feature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 50px;
  position: relative;
  height: 100px;
}
.feature-text {
  background-color: #2d6b26;
  color: white;
  font-weight: bold;
  padding: 15px;
  width: 300px !important;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feature-description {
  background-color: #e2e7dc;
  padding: 15px;
  flex-grow: 1;
  height: 100px;
  display: flex;
  /* width: 700px; */
  align-items: center;
}
@media (max-width: 767px) {
  .feature{
    
    height: 100% !important;
    width: 100% !important;
   
  }
  .feature-description {
   
    height: 100%;
   
  }

}
/* .image-bio-keeper {
  max-height: 900px;
  width: 100%;
  object-fit: cover;
} */
@media (max-width: 767px) {
  .image-bio-kepper{
    
    height: 350px !important;
   
  }

}
/* Preloader Styling */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff; /* White background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Preloader Image Animation */
#preloader img {
  width: 400px; /* Adjust as needed */
  height: auto;
  animation: zoomIn 5s ease-in-out infinite alternate; /* Increased time */
}

/* Keyframes for Zoom-in Effect */
@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* Hide main content initially */
.content {
  display: none;
}
