.mt-130 {
  margin-top: 140px;
}

.mt-100 {
  margin-top: 100px;
}

/* .copyrights{
     text-align: left;
    margin-left: 120px;
} */

.font-new-cls {
  font-size: 30px !important;
}

.loder-width {
  width: 107%;
  height: 107px;
}

.img-rel {
  position: relative;
  bottom: 100%;
}

.copyrights {
  display: flex;
  align-items: center;
  margin-left: 120px;
  margin-right: 120px;
  justify-content: center;
}

.padding-20 {
  padding: 20px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
}

.float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

.my-float {
  margin-top: 16px;
}

.alignment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft-white {
  color: white;
}

/* Vision/mission */

.mission-vision-section {
  background-color: #eafbf5;
  /* Light blue */
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

/* Center container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Wrapper with two-column layout */
.mv-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Each card */
.mv-item {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  width: 45%;
  height: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.text-red {
  color: red;
}

/* Hover effect */
.mv-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.mv-icon {
  font-size: 50px;
  color: #1E7D39;
  animation: floatIcon 3s ease-in-out infinite;
  flex-shrink: 0;
}

.text-justify {
  text-align: justify;
  line-height: 30px;
}

.ft-off-white {
  color: #5bcd7c;
}

.abt-bg {
  background-color: #0B2416;
}

.quality-assurance {
  background-color: #eafbf5;
}

/* products section */

.products-section {
  text-align: center;
  padding: 60px 5%;
  max-width: 1400px;
  margin: auto;
}

.products-section h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
  color: #1E7D39;
}

.products-section h2 span {
  color: #1E7D39;
  /* green accent */
}

.intro-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  /* increased spacing */
}

.product-item {
  position: relative;
  width: 430px;
  height: 330px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay p {
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-item:hover .overlay {
  opacity: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  justify-items: center;
}

.product-item {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 300px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover */

.product-item {
  position: relative;
  overflow: hidden;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease, transform 0.5s ease;
}

.product-item .hover-img {
  opacity: 0;
  transform: scale(1.05);
}

.product-item:hover .hover-img {
  opacity: 1;
  transform: scale(1);
}

.product-item:hover .main-img {
  opacity: 0;
}

/* products section end */


.text-center {
  text-align: left;
}


.btn-pri-secondary {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.topic-text {
  text-align: center !important;
}


.product-name {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}


.product-name {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.95rem;
}

.product-item {
  position: relative;
}

.h-35 {
  height: 30px;
}


/* Floating icon animation */
@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Text content */
.mv-content h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.mv-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive design */
@media (max-width: 900px) {
  .mv-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .mv-item {
    width: 100%;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .btn-nav {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}

.current-icon {
  color: #1E7D39;
}

.text-black {
  color: #2C3D35;
}


.product-head {
  color: #9c9c9c;
}

@media screen and (max-width:1366px) {
  .address-cls {
    font-size: 14px !important;
  }


}


@media screen and (max-width:768px) {
  .justify-cls {
    justify-content: center;
  }

  .alignment {
    align-items: start;
  }

  .copyrights {
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
  }

  .padding-cls {
    padding-top: 30px !important;
    text-align: center;
  }

  .items-baseline {
    align-items: baseline !important;

  }

}

.ft-color {
  filter: brightness(100) !important;
}

.strengths-cls {
  color: #1E7D39;
}

.export-btn {
  color: #1E7D39;
}