:root {
  --white-color: #fff;
  --black-color: #000;
  --brown-color: #2c2316;
  --green-main-color: #90c52d;
  --gradient-color: linear-gradient(to right, #16a34a, #15803d, #65a30d);
  --text-color: #4e4e4e;
  --light-brown-color: #423525;
  --padding: 80px;
  --light-green-color: #54a843;
  --dark-green-color: #43853e;
  --yellow-main-color: #dce25a;
}

body {
  overflow-x: hidden;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}



.container-main {
  max-width: 1280px;
  margin: 0 auto;
}

body {
 font-family: "Mona Sans", sans-serif;
}
img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}



/* top bar */

.top-bar-main {
  background: var(--brown-color);
  color: var(--white-color);
  font-size: 14px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.top-bar-content p {
  margin: 0;
  font-weight: 500;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-info a {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.top-bar-info i {
  font-size: 14px;
}


.mob-header{
  display: none;
}

.main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--white-color);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  animation: headerSlideDown 0.4s ease forwards;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header-left img {
  max-width: 70px;
}

.header-left a {
  font-size: 24px;
  color: var(--green-main-color);
  font-weight: 700;
}

.header-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.header-links ul li {
  color: var(--brown-color);
  transition: color 0.2s ease;
  font-size: 16px;
  font-weight: 600;
}

.header-links ul li a {
  color: var(--brown-color);
}

.header-links ul li a:hover,
.header-links ul li.active a {
  color: var(--green-main-color);
}

.contact-btn a {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.contact-btn a:hover::after {
  transform: scaleX(1);
}

.contact-btn a::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.contact-btn a:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}

.home-banner-main,
.home-banner-slider {
  position: relative;
}

.home-banner-bg {
  height: 85vh;
  position: relative;
}
.home-banner-bg img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-banner-bg::before {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  width: 100%;
  height: 100%;
  opacity: 0.2;
  top: 0;
  left: 0;
}

.home-banner-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-banner-info .container-main {
  height: 100%;
}



.home-banner-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
/*   align-items: center; */
  max-width: 900px;
/*   margin: 0 auto; */
}
.home-banner-content-heading h1 {
  font-size: 65px;
  color: var(--white-color);
  line-height: 130%;
  font-weight: 600;
/*   text-align: center; */
  overflow: hidden;
}


.home-banner-content-desc p {
  font-size: 20px;
  color: var(--white-color);
  line-height: 120%;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
  max-width: 800px;
}

.home-banner-content-btns {
  padding-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
/*   justify-content: center; */
}

.explore-btn a {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.explore-btn a:hover::after {
  transform: scaleX(1);
}

.explore-btn a::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.explore-btn a:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}

.learn-more-btn a {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--white-color);
  z-index: 1;
  transition: 0.3s;
}

.learn-more-btn a:hover::after {
  transform: scaleX(1);
}

.learn-more-btn a::after {
  position: absolute;
  content: "";
  background: var(--dark-green-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--light-green-color);
  transition: 0.4s;
  z-index: -1;
}

.learn-more-btn a:hover {
  color: var(--white-color);
  transform: translatey(-3px);
  border-color: var(--green-main-color);
  background: var(--green-main-color);
}

.home-btn-flex {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.home-btn-flex button {
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  border: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-btn-flex button:hover {
  background: var(--green-main-color) !important;
}

.home-btn-flex img {
  width: 16px !important;
  height: 16px !important;
  filter: invert(1);
}

.home-banner-content-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 80px;
}

.home-banner-content-block-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 15px;
  height: 100%;
}

.home-banner-content-img {
  display: flex;
  margin: 0 auto;
  height: 54px;
  width: 54px;
}

.home-banner-content-img img {
  filter: invert(1);
}

.home-banner-content-block-desc p {
  font-size: 20px;
  color: var(--white-color);
  line-height: 120%;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
}

.marquee-section {
  /* background: var(--green-main-color); */
  background: linear-gradient(135deg, #edf7b2 0%, #a8cf45 55%, #93cd61 100%);
  padding: 14px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 30px;
  animation: scroll 18s linear infinite;
}

.marquee-content span {
  font-size: 20px;
  font-style: italic;
  color: var(--brown-color);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}

/* separator dot */
.marquee-content span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brown-color);
  border-radius: 50%;
  margin-left: 30px;
  vertical-align: middle;
}

.marquee-content span:last-child::after {
  content: "";
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sub-heading p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--black-color);
}

.sub-heading p::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/mini-plant.svg) no-repeat center;
  background-size: contain;
}

/* home-about-us-main

.home-about-us-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.home-about-us-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-about-us-left,
.home-about-us-right {
  width: 50%;
}

.home-about-us-right {
  padding-left: 50px;
}


.home-about-us-left-img {
  height: 650px;
}

.home-about-us-left-img img {
  border-radius: 12px;
} 





.home-about-us-right-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
}

.home-about-us-right-heading h2 span {
  color: var(--green-main-color);
}

.home-about-us-right-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
}

.home-about-us-right-btn a {
  border-radius: 15px;
  padding: 15px 23px 14px 30px;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-main-color);
  color: var(--white-color);
  overflow: hidden;
  z-index: 1;
  margin-top: 30px;
}

.home-about-us-right-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--yellow-main-color);
  z-index: -1;
  transition: width 0.4s ease;
}

.home-about-us-right-btn a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/top-right-arrow.png) no-repeat center center;
  background-size: contain;
  margin-left: 10px;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.home-about-us-right-btn a:hover::before {
  width: 100%;
}

.home-about-us-right-btn a:hover::after {
  filter: none;
}

.home-about-us-right-btn a:hover {
  color: var(--black-color);
}

.home-about-us-right-points ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
}

.home-about-us-right-points ul li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: var(--text-color);
  line-height: 120%;
  font-weight: 600;
}

.home-about-us-right-points ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url('../images/mini-plant.svg') no-repeat center;
  background-size: contain;
}*/

.home-about-us-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.home-about-us-heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-about-us-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  max-width: 600px;
}

.home-about-us-right {
  max-width: 500px;
}

.about-users {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.user-text {
  border-left: 1px solid #ddd;
  padding-left: 20px;
}

.user-images {
  display: flex;
  align-items: center;
  position: relative;
  /* background: linear-gradient(to right, #16a34a, #15803d, #65a30d); */
  background: linear-gradient(135deg, #4cc96b, #5aae4a, #9acb3c);
  padding: 10px 15px;
  border-radius: 200px;
}

.user-images img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -18px;
  border: 2px solid var(--white-color);
}

.user-images img:first-child {
  margin-left: 0;
}

.user-count {
  width: 48px;
  height: 48px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-left: -16px;
}

.user-text h3 {
  margin: 0;
  font-size: 30px;
  color: var(--black-color);
  font-weight: 700;
  position: relative;
  display: inline-flex !important;
  align-items: center;
}

.user-text h3::before {
  position: absolute;
  content: "+";
  font-size: 30px;
  line-height: 42px;
  color: var(--black-color);
  font-weight: 600;
  right: -20px;
}

.user-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-color);
}

/* DESC */
.home-about-us-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 150%;
  font-weight: 500;
}

.home-about-us-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  align-items: stretch;
  padding-top: 40px;
}

.home-about-us-img img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.home-about-us-block {
  /* background: linear-gradient(to right, #16a34a, #15803d, #65a30d); */
  background: linear-gradient(135deg, #4cc96b, #5aae4a, #9acb3c);

  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-us-block-small-heading h3 {
  font-size: 28px;
  color: var(--white-color);
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 12px;
}

.home-about-us-block-desc p {
  font-size: 22px;
  color: var(--white-color);
  line-height: 150%;
  font-weight: 500;
}
.our-products-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background-color: #f5f5f5;
}

.our-products-heading-main .sub-heading,
.our-products-heading-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-products-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}

.our-products-heading h2 span {
  color: var(--green-main-color);
}

.our-products-heading-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
}

.our-products-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-top: 60px;
}

.our-products-block-inner {
  background-color: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.our-products-block-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.our-products-block-content {
  padding: 20px;
}

.our-products-block-heading h3 {
  font-size: 22px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 600;
}

.our-products-block-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 120%;
  font-weight: 500;
  padding-top: 20px;
}

.our-products-block-img img {
  transition: transform 0.4s ease;
	height:100% !important;
}

.our-products-block-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
}

.our-products-block:hover .our-products-block-inner {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.our-products-block:hover .our-products-block-img img {
  transform: scale(1.1);
}

.our-products-block:hover .our-products-block-img::after {
  background: rgba(0, 0, 0, 0.3);
}

/* join-together-main */

.join-together-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.join-together {
  padding: 80px;
  border-radius: 16px;
  background: linear-gradient(to right, #16a34a, #15803d, #65a30d);
  /* background-color: var(--light-brown-color); */
}

.join-together-content {
  max-width: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

.join-together-content-heading h2 {
  font-size: 55px;
  color: var(--white-color);
  line-height: 120%;
  font-weight: 700;
  text-align: center;
}

.join-together-content-desc p {
  font-size: 20px;
  color: var(--white-color);
  line-height: 140%;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
}

.join-together-content-btn a {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--white-color);
  z-index: 1;
  transition: 0.3s;
  margin-top: 40px;
}

.join-together-content-btn a:hover::after {
  transform: scaleX(1);
}

.join-together-content-btn a::after {
  position: absolute;
  content: "";
  background: var(--yellow-main-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.join-together-content-btn a:hover {
  color: #1a5632;
  transform: translatey(-3px);
  border-color: var(--yellow-main-color);
}

/* our-blog-main */

.our-blog-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.our-blog-heading-main .sub-heading,
.our-blog-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-blog-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}

.our-blog-heading h2 span {
  color: var(--green-main-color);
}

.our-blog-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
}

.our-products-block-inner-info .date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.our-products-block-inner-info .date i {
  color: var(--green-main-color);
  font-size: 14px;
}

.our-blog-main .our-products-block-inner {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.our-blog-main .our-products-block:hover .our-products-block-inner {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.our-products-block-btn a {
  color: var(--green-main-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}

.our-products-block-btn a i {
  color: var(--green-main-color);
  font-size: 14px;
  transition: 0.3s ease;
}

.our-products-block-btn a:hover i {
  transform: translateX(4px);
}

.our-blog-main .our-products-block-heading h3 {
  padding-top: 20px;
}

/* why-choose-brigid-main */

.why-choose-brigid-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background: linear-gradient(to right, #16a34a, #15803d, #65a30d);
  /* background: var(--light-brown-color); */
}

.why-choose-brigid-heading h2 {
  font-size: 55px;
  color: var(--white-color);
  line-height: 120%;
  font-weight: 700;
  text-align: center;
}

.why-choose-brigid-desc p {
  font-size: 18px;
  color: var(--white-color);
  line-height: 140%;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
  max-width: 620px;
  display: flex;
  margin: 0 auto;
}

.why-choose-brigid-main .home-banner-content-block-inner {
  box-shadow: unset;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-choose-brigid-main .home-banner-content-block-inner:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

.why-choose-brigid-main .home-banner-content-img {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  box-shadow: unset;
}

.why-choose-brigid-main .home-banner-content-img img {
  height: 42px;
  width: 42px;
}

.why-choose-brigid-main .home-banner-content-block-desc-info p {
  font-size: 16px;
  color: var(--white-color);
  line-height: 140%;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
}

.why-choose-brigid-main .home-banner-content-block-desc p {
  font-size: 22px;
  font-weight: 600;
}

.sustainable-farming-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background-color: #f5f5f5;
}

.sustainable-farming-heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sustainable-farming-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  max-width: 600px;
}

.sustainable-farming-heading h2 span {
  color: var(--green-main-color);
}

.sustainable-farming-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 550px;
}

.sustainable-farming-flex {
  padding-top: 60px;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
}

.stat-card {
  position: relative;
  border: 1px solid #cfd5c0;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background-color: var(--white-color);
}

.stat-card img {
  position: absolute;
  bottom: 0;
  right: -20px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

.stat-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.stat-text h3 {
  font-size: 62px;
  margin: 0;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
  display: inline-flex !important;
  align-items: center;
}

.stat-text h3::before {
  position: absolute;
  content: "+";
  font-size: 42px;
  line-height: 32px;
  color: var(--black-color);
  font-weight: 700;
  right: -25px;
}
/* .stat-card:first-child .stat-text h3::before {
  content: "+";
}

.stat-card:nth-child(2) .stat-text h3::before {
  content: "+";
  right: -25px;
}

.stat-card:last-child .stat-text h3::before {
  content: "+";
  right: -30px;
} */

.stat-card:nth-child(2) img {
  max-width: 100%;
  right: 0px;
  bottom: 25px;
}
.stat-card:last-child img {
  right: -50px;
}
.stat-card:first-child img {
  right: -25px;
  height: 100%;
  object-fit: cover;
}

.stat-text p {
  margin: 5px 0 0;
  font-size: 24px;
  color: var(--brown-color);
  font-weight: 600;
  max-width: 200px;
}

.stat-card.large {
  margin-top: 100px;
}

.cta-wrapper {
  margin-bottom: -65px;
}

.cta-btn {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.cta-btn:hover::after {
  transform: scaleX(1);
}

.cta-btn::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.cta-btn:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}

/* footer */
.footer-cover {
  position: relative;
}

/* .footer-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 56, 56, 0.76);
  z-index: 1;
} */

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 0px;
  height: auto;
  width: 100%;
  background-color: #f8f6f1;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 20px;
}
.footer-desc p {
  max-width: 300px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown-color);
  font-weight: 500;
}

.footer-info-call-add ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.footer-info-call-add ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.6;
  /* color: var(--white-color); */
  color: var(--brown-color);
  font-weight: 500;
}

.footer-info-call-add ul li a {
  color: var(--brown-color);
  text-decoration: none;
}

.footer-info-call-add ul li a:hover {
  color: var(--brown-color);
}

.footer-info-call-add ul li:first-of-type {
  font-size: 16px;
  align-items: flex-start;
}

.footer-info-call-add ul li span {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  /* background: linear-gradient(to right, #16a34a, #15803d, #65a30d); */
  background: var(--brown-color);
}

.footer-info-call-add ul li span i {
  color: var(--white-color);
  font-size: 16px;
}

.footer-block h6 {
  font-size: 20px;
  color: var(--brown-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-block.links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-block.links ul li {
  position: relative;
  padding-left: 18px;
}

.footer-block.links ul li a {
  color: var(--brown-color);
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 500;
}
/* .footer-block.links ul li a:hover{
  color: var(--green-main-color);
} */

.footer-block.links ul li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brown-color);
  font-size: 12px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff40;
  border-radius: 12px;
  padding: 5px;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  padding: 10px 12px;
}

.newsletter-form input::placeholder {
  color: #dddada;
}

.newsletter-form button {
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(to right, #16a34a, #15803d, #65a30d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.newsletter-form button:hover {
  filter: brightness(1.15);
}

.newsletter-text {
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 300px;
  padding-top: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  padding-top: 20px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--brown-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-color);
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--brown-color);
  color: var(--white-color);
}

.footer-copyright-main {
  padding: 25px 0;
  border-top: 1px solid #a0a0a0;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright-text p {
  font-size: 16px;
  line-height: 26px;
  color: var(--brown-color);
  font-weight: 500;
}

.globe-section-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  /* background-color: #f5f5f5; */
  background-color: #f8f6f1;
}

.globe-section-actual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  overflow: hidden;
}

#globe {
  width: 100%;
/*   max-width: 750px; */
/*   aspect-ratio: 1 / 1; */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globe canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s ease;
  width: max-content;
}

.country-item img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.country-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
}

.country-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--green-main-color);
}

.globe-section-flags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -50px;
}

/* faqs section */

.faqs-section-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.faqs-section-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 40px;
}

.faqs-section-left,
.faqs-section-right {
  width: 50%;
}

.faqs-section-left {
  padding-right: 40px;
}

.faqs-section-right-img {
  aspect-ratio: 500/440;
}

.faqs-section-right-img img {
  border-radius: 12px;
}

.faq-real .accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-real .accordion-item {
  border: 1px solid var(--green-main-color);
  border-radius: 50px;
  padding: 24px 28px;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-real .accordion-item:has(.accordion-button:not(.collapsed)) {
  background: var(--yellow-main-color);
  border-color: var(--yellow-main-color);
}

.faq-real .collapse {
  visibility: unset;
}

.faq-real .accordion-button {
  display: flex;
  align-items: center;
  gap: 16px;
  background: none !important;
  box-shadow: none !important;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-main-color);
  width: 100%;
  transition: 0.3s;
}

.faq-real .accordion-button:not(.collapsed) {
  color: var(--black-color) !important;
}

.faq-number {
  font-size: 22px;
  font-weight: 700;
  opacity: 0.5;
  min-width: 40px;
}

.faq-title {
  flex: 1;
}

.faq-real .accordion-body {
  padding-top: 14px;
  font-size: 16px;
}

.faq-real .accordion-body,
.faq-real .accordion-body p {
  color: var(--text-color) !important;
  margin: 0;
  font-weight: 600;
}

.faq-real .accordion-button::after {
  background-color: var(--green-main-color);
  border-radius: 50%;
  height: 34px;
  width: 34px;
  background-position: center;
  background-size: 14px;
  content: "";
  transition: 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-real .accordion-button:not(.collapsed)::after {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%231c3b2f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.accordion-button::after {
  margin-left: auto;
}

.faq-real .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* testimonials-section-main */

.testimonials-section-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background-color: #e1e9e2;
}

.testimonials-section-actual {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 60px;
}

.testi-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.testi-image {
  height: 100%;
}

.testi-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testi-card {
  background: var(--white-color);
  padding: 24px;
  border-radius: 18px;
  transition: all 0.35s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  background: var(--yellow-main-color);
}

.testi-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #ffc107;
  font-size: 15px;
  display: flex;
  gap: 4px;
}

.testi-card p {
  font-size: 18px;
  line-height: 1.7;
  margin: 14px 0 22px;
  color: var(--black-color);
  flex: 1;
  font-weight: 600;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.user h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.user span {
  font-size: 13px;
  color: #777;
}

.testi-card.active span {
  color: #ddd;
}

.testi-card:hover .stars {
  color: var(--black-color);
}

/* contact-us-section-main */

.contact-us-section-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  overflow-x: hidden;
}

.contact-us-section-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  padding-top: 80px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left-box {
  /* background: #f3f3f3; */
  background-color: #f8f6f1;

  padding: 30px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.contact-left-box p {
  font-size: 20px;
  line-height: 150%;
  color: var(--black-color);
  margin-bottom: 15px;
  font-style: italic;
  font-weight: 600;
}

.contact-left-img {
  height: 100%;
}

.contact-left-img img {
  border-radius: 20px;
}

.contact-right {
  /* background: #0d3b2e; */
  background: linear-gradient(to right, #16a34a, #15803d, #65a30d);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
}

.contact-right h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
}
.career-popup-inner .contact-right h2{
	font-size:32px;
	font-weight:700;	
}
.career-form-new{
	padding-top:30px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  font-weight: 500;
}

.form-row textarea {
  width: 100%;
  font-weight: 500;
  height: 140px;
  margin-top: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-row select {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  padding-top: 20px;
}

input.wpcf7-form-control.wpcf7-submit {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--white-color);
  z-index: 1;
  transition: 0.3s;
}

input.wpcf7-form-control.wpcf7-submit:hover::after {
  transform: scaleX(1);
}

input.wpcf7-form-control.wpcf7-submit::after {
  position: absolute;
  content: "";
  background: var(--yellow-main-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

input.wpcf7-form-control.wpcf7-submit:hover {
  color: #1a5632;
  transform: translatey(-3px);
  border-color: var(--yellow-main-color);
	background-color:var(--yellow-main-color);
}

.process-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  /* background: var(--white); */
}

.process-heading {
  text-align: center;
  margin-bottom: 70px;
}
.process-heading .sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-heading-main h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}
.process-heading-main h2 span {
  color: var(--green-main-color);
}

.process-content-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.process-steps-info {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

/* connecting line */
.process-steps-info::before {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: #e5e0d8;
}

.process-step-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-info-num p {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f8f6f1;
  border: 1px solid #e5e0d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
  color: var(--brown-color);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition:
    background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step-info-text:hover .process-step-info-num p {
  background: var(--green-main-color);
  border-color: var(--green-main-color);
  color: var(--white-color);
}

.process-step-info-icon {
  font-size: 28px;
  color: var(--green-main-color);
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step-info-text:hover .process-step-info-icon {
  transform: scale(1.15);
}

.process-step-info-dec h4 {
  font-size: 22px;
  color: var(--brown-color);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-step-info-dec p {
  font-size: 17px;
  color: var(--text-color);
  line-height: 1.5;
  font-weight: 400;
}

.brands-main {
  padding-top: var(--padding);
  padding-bottom: 50px;
}

.brands-heading-main .sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}
.brands-heading h2 span {
  color: var(--green-main-color);
}

.brand-block {
  height: 200px;
}
.brands-slider .owl-stage {
  display: flex;
  align-items: center;
}

.brand-block {
  height: 180px;
  padding: 15px;
}

.brand-block a {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.brand-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.4s ease;
  mix-blend-mode: multiply;
}

.brand-block:hover img {
  transform: scale(1.05);
}

.brand-slider .owl-carousel .owl-stage-outer {
  padding: 5px;
}
.brand-slider {
  padding-top: 60px;
}

.our-vision-description-main {
  background-color: var(--light-brown-color);
  padding-top: 50px;
  padding-bottom: 50px;
}
.our-vision-description p {
  font-size: 24px;
  color: var(--white-color);
  line-height: 32px;
  text-align: center;
  font-weight: 500;
}

.globally-certified-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.globally-certified-heading-main .sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globally-certified-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}

.globally-certified-heading h2 span {
  color: var(--green-main-color);
}

.globally-certified-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.globally-certified-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
	    background: #e5e0d8;
}

.globally-certified-grid-item {
  background: #f8f6f1;
  padding: 44px 32px;
  text-align: center;
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.globally-certified-grid-item:hover {
  background: #e8f5e9;
}

.globally-certified-grid-item-icon {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0d3b2e;
  font-size: 20px;
}

.globally-certified-grid-item-text h4 {
  font-size: 22px;
  color: var(--brown-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.globally-certified-grid-item-text p {
  font-size: 16px;
  color: var(--text-color);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* inner pages */

/* contact page */

.about-banner {
  position: relative;
}

.about-banner-bg {
  height: 300px;
  background-color: #000;
  position: relative;
}

.about-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-bg::before {
  position: absolute;
  content: " ";
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-info .container-main {
  height: 100%;
}

.about-banner-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}

.about-banner-content h1 {
  font-size: 62px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.contact-us-page-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
.contact-us-page-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact-us-page-left,
.contact-us-page-right {
  width: 50%;
}
.contact-us-page-left {
  padding-right: 40px;
}

.contact-us-page-contact-info-heading h2 {
  font-size: 36px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
}

.contact-us-page-contact-info-heading h2 span {
  color: var(--green-main-color);
}

.contact-us-page-contact-info-flex {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 60px;
}
.contact-us-page-contact-info-block {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}
.contact-us-page-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--gradient-color);
  background-color: var(--brown-color);
  flex-shrink: 0;
}
.contact-us-page-contact-info-icon img {
  height: 22px;
  width: 22px;
  filter: invert(1);
}

.contact-us-page-contact-info-desc h3 {
  font-size: 22px;
  color: var(--black-color);
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 8px;
}
.contact-us-page-contact-info-desc p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.4;
}
.contact-us-page-contact-info-desc p a {
  color: var(--text-color);
}
.contact-us-page-contact-info-desc p a:hover {
  color: var(--green-main-color);
}

.contact-us-page-right .contact-right {
  background: #f8f6f1;
}

.contact-us-page-right .contact-right h2 {
  font-size: 36px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
}

.contact-us-page-right .form-row input,
.contact-us-page-right .form-row select,
.contact-us-page-right .form-row textarea {
  color: var(--black-color);
}

.contact-us-page-right .form-row input::placeholder,
.contact-us-page-right .form-row textarea::placeholder {
  color: var(--text-color);
}

.contact-us-page-right .submit-btn button {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.contact-us-page-right .submit-btn button:hover::after {
  transform: scaleX(1);
}

.contact-us-page-right .submit-btn button::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.contact-us-page-right .submit-btn button:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}
.map-main {
  padding-top: 40px;
  padding-bottom: var(--padding);
}

.contact-us-boxes .home-banner-content-boxes {
  padding-top: unset;
}

/* blog page */

.blog-page-main .our-products-flex {
  padding-top: unset;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 80px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #f8f6f1;
  color: var(--text-color);
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  /* transition: all var(--transition); */
}

.pagination-btn:hover {
  background: var(--green-main-color);
  color: var(--white-color);
  border-color: var(--green-main-color);
}

.pagination-numbers {
  display: flex;
  gap: 6px;
}

.pagination-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f1;
  color: var(--text-color);
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  /* transition: all var(--transition); */
}

.pagination-num:hover {
  border-color: var(--green-main-color);
  color: var(--green-main-color);
}

.pagination-num.active {
  background: var(--green-main-color);
  color: var(--white-color);
  border-color: var(--green-main-color);
}

.blog-bread-crumbs .about-banner-content h1 {
  font-size: 54px;
  max-width: 1200px;
}

.blog-detail-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.blog-detail-page {
  /* background: #fff; */
  /* padding: 30px; */
}

.blog-detail-page-flex {
  display: flex;
  flex-wrap: wrap;
}

.blog-detail-left {
  width: 70%;
  padding-right: 40px;
}

.blog-detail-right {
  width: 30%;
}

.blog-main-image {
  margin-bottom: 10px;
}

.blog-main-image img {
  height: 450px;
  width: 100%;
  border-radius: 12px;
}

.blog-date h4 {
  font-size: 18px;
  font-weight: 600;
  /* margin-top: -5px; */
  margin-bottom: 10px;
  color: var(--green-main-color);
}

.blog-heading {
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black-color);
  margin: 0 auto;
}

.blog-detail-content {
  margin-top: 30px;
}

.blog-detail-content h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: var(--black-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-detail-content p {
  font-size: 17px;
  line-height: 30px;
  color: var(--text-color);
  margin-bottom: 18px;
  font-weight: 500;
}

.blog-detail-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-detail-content ul li {
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color);
  margin-bottom: 12px;
  font-weight: 500;
  list-style-type: disc;
}

.blog-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 35px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.blog-detail-content table thead {
  background: var(--green-main-color);
}

.blog-detail-content table thead th {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border: 1px solid #e5e5e5;
}

.blog-detail-content table tbody tr {
  border: 1px solid #e5e5e5;
}

.blog-detail-content table tbody td {
  padding: 16px;
  font-size: 15px;
  color: var(--text-color);
  border: 1px solid #e5e5e5;
}

.blog-detail-content blockquote {
  background: #f5f7f2;
  border-left: 5px solid var(--green-main-color);
  padding: 25px 30px;
  font-size: 20px;
  line-height: 34px;
  font-style: italic;
  color: var(--black-color);
  border-radius: 12px;
  margin-top: 30px;
}

.blog-detail-right-heading h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-color);
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.latest-blog-block {
  padding: 15px;
  margin-top: 10px;
}

.latest-blog-flex {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}

.latest-blog-left {
  width: 40%;
  padding-right: 20px;
}

.latest-blog-left img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
}

.latest-blog-right {
  width: 60%;
}

.latest-blog-date i {
  color: var(--green-main-color);
}

.latest-blog-heading {
  margin-bottom: 5px;
}

.latest-blog-heading a h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: -5px;
  margin-bottom: 5px;
  color: var(--black-color);
}

/* career page */

.career-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.career .main-heading-info h1 {
  font-size: 42px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}

.career .main-heading-info h1 span {
  color: var(--green-main-color);
}

.career .main-heading-info p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.job-opening-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-top: 70px;
}
.journey-block {
  padding: 30px;
  transition: 0.3s;
  overflow: hidden;
  width: 33.33%;
  padding: 15px;
}
.journey-block-inner {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  border: 1px solid #e6e6e6;
  background-color: var(--white-color);
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.journey-block.career .year-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}
.year-right h4 {
  line-height: 28px;
  font-size: 22px;
  font-weight: 600;
  color: var(--black-color);
  padding-bottom: 10px;
}
.journey-block p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-color);
}

.job-top-flex {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.job-location img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.job-location p {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
  line-height: normal;
}

.apply-btn {
  margin-top: auto;
}
.apply-btn a {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 12px 16px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
  margin-top: 30px;
}

.apply-btn a:hover::after {
  transform: scaleX(1);
}

.apply-btn a::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.apply-btn a:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}

.career-detail-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.career-detail-flex {
  display: flex;
  flex-wrap: wrap;
}

.career-detail-left {
  width: 35%;
}

.career-detail-left .form-inner {
  background: var(--gradient-color);
  border-radius: 10px;
  padding: 32px 24px;
}

.career-detail-left .form-inner .form-field {
  padding: 0;
  margin-bottom: 15px;
}

.career-detail-left .form-inner .form-field input {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  background: var(--white-color);
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid rgba(11, 24, 42, 0.1);
  width: 100%;
  outline: none;
}
.career-detail-left .form-inner .form-field textarea {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  background: var(--white-color);
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid rgba(11, 24, 42, 0.1);
  width: 100%;
  outline: none;
  height: 125px;
}

.career-detail-left .form-field.file {
  border: 2px solid #eaeaea;
  border-style: dashed;
  height: 154px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
}

.career-detail-left .form-field.file span {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  display: block;
}

.career-detail-left .form-field.file p {
  font-size: 12px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
}

.career-detail-left .form-field.file {
  overflow: hidden;
  position: relative;
  resize: none;
  background-color: var(--white-color);

  [type="file"] {
    cursor: pointer !important;
    display: block;
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0px;
    z-index: 1;
    background-color: var(--white-color);
  }
}

.career-detail-left span.check p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: var(--white-color);
  margin-top: -2px;
}

.career-detail-left span.check {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  gap: 7px;
}

.career-detail-left span.check input {
  height: 25px;
  width: 25px;
}

.career-detail-right {
  width: 65%;
  padding-left: 60px;
}

.job-details {
  margin-bottom: 20px;
}

.job-details:last-child {
  margin-bottom: 0;
}

.job-details h4 {
  color: var(--green-main-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.job-details h5 {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 15px;
}

.job-details ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.job-details p,
.job-details ul li {
  margin-bottom: 5px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.job-detail-btn {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--white-color);
  z-index: 1;
  transition: 0.3s;
}

.job-detail-btn:hover::after {
  transform: scaleX(1);
}

.job-detail-btn::after {
  position: absolute;
  content: "";
  background: var(--yellow-main-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.job-detail-btn:hover {
  color: #1a5632;
  transform: translatey(-3px);
  border-color: var(--yellow-main-color);
  background-color: var(--yellow-main-color);
}

.career-detail-main .form-inner h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.job-details p strong a {
  color: var(--black-color);
}

.job-details p strong a:hover {
  color: var(--green-main-color);
}

.gallery-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 10;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.close-btn img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.lightbox-controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 14px;
  border-radius: 50%;
  transition: 0.3s;
}

.lightbox-controls span:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-controls .prev {
  left: 30px;
}

.lightbox-controls .next {
  right: 30px;
}

.lightbox-controls span img {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.our-products-main.categories-page {
  background-color: #eeecec;
}

.categories-page .our-products-flex {
  padding-top: unset;
}

.product-detail-page-main {
  padding: var(--padding) 0;
  background: #fafafa;
}

.product-detail-page-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-detail-page-left,
.product-detail-page-right {
  width: 50%;
}

.product-detail-page-left {
  padding-right: 50px;
}

.product-detail-page-img {
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
}

.product-detail-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-right h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--brown-color);
  margin-bottom: 15px;
}

.short-desc {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 30px;
}

.product-info-grid span {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.product-info-grid p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
}

.product-actions {
  display: flex;
  gap: 15px;
}

.product-actions .btn-quote {
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 12px 18px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.product-actions .btn-quote:hover::after {
  transform: scaleX(1);
}

.product-actions .btn-quote::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.product-actions .btn-quote:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}
.product-actions .btn-specs {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  display: inline-block;
  padding: 12px 18px;
  background: var(--brown-color);
  border-radius: 200px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  z-index: 1;
  transition: 0.3s;
}

.product-actions .btn-specs::after {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--green-main-color);
  border-radius: 200px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
  z-index: -1;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
}

.product-actions .btn-specs:hover::after {
  transform: scaleX(1);
}

.product-actions .btn-specs:hover {
  color: var(--white-color);
  border-color: var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  transform: translateY(-3px);
}

.product-table-section {
  margin-top: 70px;
}

.product-table-section h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brown-color);
  margin-bottom: 25px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.product-table thead {
  background: var(--gradient-color);
}

.product-table thead th {
  padding: 18px;
  color: var(--white-color);
  font-weight: 600;
  text-align: left;
  font-size: 22px;
}

.product-table tbody tr {
  border-bottom: 1px solid #eee;
}

.product-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.product-table td {
  padding: 14px 16px;
  color: var(--text-color);
  font-size: 16px;
}

.product-table td:nth-child(1),
.product-table td:nth-child(3) {
  font-weight: 600;
  color: var(--black-color);
  width: 22%;
}

.product-table td:nth-child(2),
.product-table td:nth-child(4) {
  width: 28%;
  color: #555;
}

.product-table tbody tr:hover {
  background: #f4f9ed;
}

.product-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.product-extra-grid div {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.product-extra-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-extra-grid h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brown-color);
}

.product-extra-grid p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 500;
}

.product-extra-grid ul {
  padding-left: 18px;
}

.product-extra-grid li {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 8px;
  list-style: disc;
  font-weight: 500;
}

/* about us page */

.about-us-who-we-are-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.about-us-who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-us-who-we-are-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-who-we-are-img-wrap {
  position: relative;
}

.about-us-who-we-are-img-wrap-main {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}
.about-us-who-we-are-img-wrap-main img{
  border-radius: 12px;
}

.about-us-who-we-are-img-badge {
  position: absolute;
  bottom: -14px;
  right: -16px;
  background: var(--brown-color);
  padding: 16px 22px;
  border-radius: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ab-badge-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--green-main-color);
  line-height: 1;
}

.ab-badge-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-us-who-we-are-side-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-color);
  border: 1px solid #e5e0d8;
  border-left: 2px solid var(--green-main-color);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 8px;
}

.ab-side-card-icon {
  font-size: 22px;
  color: var(--green-main-color);
  flex-shrink: 0;
}

.about-us-who-we-are-side-card-body strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-color);
  margin-bottom: 4px;
}

.about-us-who-we-are-side-card-body p {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.about-us-who-we-are-text {
  padding-top: 8px;
}

.about-us-who-we-are-lead p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-us-who-we-are-lead span {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.about-us-who-we-are-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-us-who-we-are-card-row-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gradient-color);
  border: 1px solid #c8e6c9;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: 0.04em;

}

.about-us-who-we-are-card-row-chip i {
  font-size: 12px;
}

.about-us-who-we-are-heading h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 15px;
}
.about-us-who-we-are-heading h2 span {
  color: var(--green-main-color);
}



.vision-mission-sec-main {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
    /* background: #f8f6f1; */
}

.vision-mission-sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-mission-sec-block {
    background: var(--white-color);
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(144, 197, 45, 0.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.vision-mission-sec-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-color);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.vision-mission-sec-block:hover::before {
    opacity: 1;
}

.vision-mission-sec-block:hover {
    transform: translateY(-10px);
}

.vision-mission-sec-img,
.vision-mission-sec-desc {
    position: relative;
    z-index: 1;
}

.vision-mission-sec-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(144, 197, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.vision-mission-sec-img img {
    width: 40px;
    height: 40px;
    transition: 0.4s ease;
}

.vision-mission-sec-desc h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brown-color);
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.vision-mission-sec-desc p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
    transition: 0.4s ease;
    font-weight: 500;
}

.vision-mission-sec-block:hover .vision-mission-sec-img {
    background: rgba(255, 255, 255, 0.15);
}

.vision-mission-sec-block:hover .vision-mission-sec-desc h3,
.vision-mission-sec-block:hover .vision-mission-sec-desc p {
    color: var(--white-color);
}

.vision-mission-sec-block:hover .vision-mission-sec-img img{
  filter: invert(1);
}


.our-journey-main {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background: #f8f6f1;
}

.our-journey-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.our-journey-heading .sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-journey-heading-main h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}
.our-journey-heading-main h2 span {
  color: var(--green-main-color);
}

.our-journey-heading-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}


.our-journey-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 120px;
}

.our-journey-timeline::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background:#e5e0d8;
}

.our-journey-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}

.our-journey-timeline-item:last-child {
  margin-bottom: 0;
}

.our-journey-timeline-item-year {
  position: absolute;
  left: -120px;
  width: 80px;
  text-align: right;
  padding-top: 14px;
}

.our-journey-timeline-item-year span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.06em;
}

.our-journey-timeline-item {
  position: relative;
}

.our-journey-timeline-item-dot {
  position: absolute;
  left: -30px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e0d8;
  border: 2px solid var(--white-color);
  box-shadow: 0 0 0 1px #e5e0d8;
  transition: all 0.3s ease;
}

.our-journey-timeline-item-dot-active {
  background: var(--green-main-color);
  box-shadow: 0 0 0 1px var(--green-main-color);
}

.our-journey-timeline-item:hover .our-journey-timeline-item-dot {
  background: var(--green-main-color);
  box-shadow: 0 0 0 1px var(--green-main-color);
  transform: scale(1.2);
}

.our-journey-timeline-item-card {
  background: var(--white-color);
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  padding: 22px 24px;
  flex: 1;
  transition:
    border-left-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 2px solid transparent;
}

.our-journey-timeline-item:hover .our-journey-timeline-item-card {
  border-left-color: var(--green-main-color);
  transform: translateX(4px);
}

.our-journey-timeline-item-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-color);
  margin-bottom: 8px;
}

.our-journey-timeline-item-card p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}


.at-glance-main {
    padding: 90px 0;
    background: #fff;
}

.at-glance-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.at-glance-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1f3b7a;
    margin-bottom: 15px;
}

.at-glance-heading p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 28px;
}

.pyramid-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pyramid-item {
    position: relative;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    color:var(--white-color);
    background: var(--gradient-color);
    clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pyramid-item:nth-child(1) { width: 85%; }
.pyramid-item:nth-child(2) { width: 82%; }
.pyramid-item:nth-child(3) { width: 78%; }
.pyramid-item:nth-child(4) { width: 74%; }
.pyramid-item:nth-child(5) { width: 70%; }
.pyramid-item:nth-child(6) { width: 66%; }
.pyramid-item:nth-child(7) { width: 62%; }
.pyramid-item:nth-child(8) { width: 58%; }
.pyramid-item:nth-child(9) { width: 54%; }

.pyramid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}



.brigid-insights-main {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
    background: #f8f6f1;
    position: relative;
    overflow: hidden;
}

.brigid-insights-heading .sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brigid-insights-heading-main h2 {
  font-size: 48px;
  color: var(--black-color);
  line-height: 120%;
  font-weight: 700;
  padding-top: 20px;
  text-align: center;
}

.brigid-insights-heading-main h2 span {
  color: var(--green-main-color);
}

.brigid-insights-desc p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 140%;
  font-weight: 500;
  padding-top: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.brigid-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding-top: 50px;
}

.brigid-insights-block {
    position: relative;
    background: var(--white-color);
    border-radius: 30px;
    padding: 45px;
    overflow: hidden;
    border: 1px solid rgba(144, 197, 45, 0.15);
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}



.brigid-insights-block:hover {
    transform: translateY(-10px);
    border-color: rgba(144, 197, 45, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.brigid-insights-block:hover::before {
    transform: scale(1.2);
}

.brigid-insights-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: var(--gradient-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.brigid-insights-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.brigid-insights-content {
    position: relative;
    z-index: 2;
}

.brigid-insights-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brown-color);
    margin-bottom: 25px;
}

.brigid-insights-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.brigid-insights-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.brigid-insights-content ul li:last-child {
    margin-bottom: 0;
}

.brigid-insights-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-main-color);
    box-shadow: 0 0 0 5px rgba(144, 197, 45, 0.12);
}

.map-main iframe{
    height: 400px;
  }

/* upload resume */




.wpcf7-form-control-wrap[data-name="resume"] input[type="file"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  outline: none;
  font-weight: 500;
  cursor: pointer;
}

.wpcf7-form-control-wrap[data-name="resume"] input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #000;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

/* postive imapct section */

.positive-impact-main {
  background: rgb(245, 245, 245);
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.positive-impact-contain-flex {
  display: flex;
  align-items: flex-start;
	gap:30px;
}

.positive-impact-contain-left {
  position: sticky;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: fit-content;
}

.positive-impact-contain-flex-right {
  width: 50%;
}

.positive-impact-contain-left-heading h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--black-color);
}

.positive-impact-contain-left-heading h2 span {
  color: var(--green-main-color);
}

.positive-impact-contain-left-desc {
  margin-top: 25px;
}

.positive-impact-contain-left-desc p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--black-color);
  max-width: 450px;
	font-weight:500;
}

.positive-impact-contain-flex-right {
  flex: 1;
}

.positive-impact-stat-item {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 60px 40px;
  overflow: hidden;
}

.positive-impact-stat-item:first-child {
  border-top: none;
}

.positive-impact-stat-category {
  position: absolute;
  top: 48px;
  right: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main-color);
}

.positive-impact-stat-number p {
  font-size: 120px;
  font-weight: 800;
  line-height: 0.85;
  color: var(--green-main-color);
  white-space: nowrap;
  margin-left: -4px;
}

.positive-impact-stat-desc p {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-color);
  max-width: 420px;
}

.positive-impact-contain-left-read-btn {
  margin-top: 36px;
}

.positive-impact-contain-left-read-btn a{
  position: relative;
  color: var(--white-color);
  display: inline-block;
  padding: 16px 22px;
  background: var(--green-main-color);
  border-radius: 200px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid var(--dark-green-color);
  box-shadow: 2px 2px 0 0 var(--dark-green-color);
  z-index: 1;
  transition: 0.3s;
}

.positive-impact-contain-left-read-btn a:hover::after {
  transform: scaleX(1);
}

.positive-impact-contain-left-read-btn a::after {
  position: absolute;
  content: "";
  background: var(--brown-color);
  left: 0;
  right: 0;
  border-radius: 200px;
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleX(0);
  border: 1px solid var(--brown-color);
  box-shadow: 2px 2px 0 0 var(--yellow-main-color);
  transition: 0.4s;
  z-index: -1;
}

.positive-impact-contain-left-read-btn a:hover {
  color: var(--white-color);
  transform: translatey(-3px);
}



.positive-impact-stat-item {
  opacity: 0.25;
  transform: translateY(60px);
  transition: all 0.6s ease;
}

.positive-impact-stat-item .positive-impact-stat-number p {
  color: rgba(52, 65, 120, 0.35);
  transition: all 0.5s ease;
}

.positive-impact-stat-item .positive-impact-stat-desc p {
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.5s ease;
}

.positive-impact-stat-item .positive-impact-stat-category {
  opacity: 0.5;
  transition: all 0.5s ease;
}

.positive-impact-stat-item.active {
  opacity: 1;
  transform: translateY(0);
}

.positive-impact-stat-item.active .positive-impact-stat-number p {
  color: var(--green-main-color);
}

.positive-impact-stat-item.active .positive-impact-stat-desc p {
  color: var(--green-main-color);
}

.positive-impact-stat-item.active .positive-impact-stat-category {
  opacity: 1;
}

.positive-impact-stat-item:hover {
  opacity: 1;
}

/* brand marquee */
/* =========================
   BRAND MARQUEE
========================= */

.brand-slider,
.brands-slider {
  padding-top: 60px;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brandMarquee 18s linear infinite;
}

/* =========================
   BRAND CARD
========================= */

.brand-block {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  padding: 15px;
}

.brand-block a {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px;
  overflow: hidden;

  transition: 0.4s ease;
}

.brand-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.4s ease;
  mix-blend-mode: multiply;
}

.brand-block:hover img {
  transform: scale(1.05);
}

/* =========================
   ANIMATION
========================= */

@keyframes brandMarquee {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .brand-track {
    animation: brandMarquee 20s linear infinite;
  }

  .brand-block {
    width: 170px;
    height: 110px;
    padding: 10px;
  }

  .brand-block a {
    border-radius: 10px;
    padding: 10px;
  }

}