@font-face {
  font-family: "proxima nova";
  src: url("/font/Fontspring-DEMO-proximanovacond-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --wb-black: #333;
  --wb-green: #40ac44;
  --wb-light-green: #e6f4e6;
  --white: #fff;
  --wb-grey: #ddd;
  --bbb-grey: #bbb;
}

body {
  font-family: "Mozilla Text", sans-serif;
  color: var(--wb-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.main_head {
  font-family: "Proxima Nova", Arial, sans-serif;
  color: var(--white);
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
}

.main_head_black {
  font-family: "Proxima Nova", Arial, sans-serif;
  color: var(--wb-black);
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
}

.title_48 {
  color: var(--wb-black);
  text-align: center;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 66px;
}

.comman_btn {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--wb-green);
  color: var(--white);
  font-weight: 700;
  line-height: normal;
  border: 1px solid var(--wb-green);

}

.comman_btn:hover {
  border: 1px solid var(--wb-green);
  color: var(--wb-green);
  background: var(--white);
}

.comman_btn2 {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--white);
  color: var(--wb-green);
  font-weight: 700;
  line-height: normal;
  border: none;
  border: 1px solid var(--white);
}

.comman_btn2:hover {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.lang-select {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
}

.lang-select select {
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  padding-left: 5px;
}

.section_pt {
  padding-top: 90px;
}

.section_pb {
  padding-bottom: 90px;
}

.section_mt {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-60 {
  margin-top: 60px;
}

.hero_banner_bg {
  background-image: url(../images/hero_prosolu.png);
  width: auto;
  /* height: 550px; */
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  background-repeat: no-repeat;
   transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
   
}

.banner-slider
{
  background: url(../images/terrapreta_banner_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  text-align: center;
  padding-bottom: 50px;
  display: flex;
    justify-content: end;
    text-align: center;
}

.advantage_item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 15px;
}

.advantage_item p {
  color: var(--wb-black);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.advantage_wrapper {
  display: flex;
  gap: 74px;
}

.animate-text {
  opacity: 0;
}

.animate-text.split-done {
  opacity: 1;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-text.animate .word {
  animation: fadeInUp 0.6s forwards;
}


.light_bg {
  background: var(--wb-light-green);
}



.navbar {
  padding: 0 0;
}

header {
  padding: 20px 0;
}

.navbar .navbar-nav .nav-item {
  margin-right: 40px;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 400;
  color: var(--wb-black);
  transition: .3s;
  line-height: 50px;
}

.navbar .navbar-nav .nav-item:hover .nav-link {
  font-weight: bold;
  color: var(--wb-green);
}

.navbar .dropdown_down:hover svg path {
  stroke: var(--wb-green);
}

.navbar .dropdown_down:hover svg {
  transform: rotate(-180deg);
  stroke: var(--wb-green);
}

.nav-item:hover .mega_menu {
  display: block;
  visibility: visible;
  z-index: 2;
}

.mega_menu {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: -1;
  padding: 60px 35px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

/* Show mega menu when active class is added */
.mega_menu.active {
  display: block !important;
  visibility: visible !important;
  /*scale: 0;*/
}

.mega_menu ul {
  margin: 0;
  padding: 0;
}

.mega_menu ul li {
  list-style: none;
  margin-bottom: 6px;
}

.mega_menu ul li a {
  color: var(--wb-black);
}

.mega_menu ul li a:hover {
  color: var(--wb-green);
  font-weight: bold;
}


/* product slider  */
.single-product {
  border-radius: 20px;
  background: #fff;
  height: auto;
  padding: 30px;
}

.product_pill {
  display: inline-flex;
  padding: 14px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.products-sider .products-carousel {
  position: relative;
}

.products-sider .swiper-navigation-container {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--wb-green);
  border-radius: 9999px;
  display: none;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  z-index: 10;
  display:none !important;
}
.products-sider .swiper-button-next:after, .products-sider .swiper-button-prev:after{color: #fff;  font-size: 30px;}
.products-sider .swiper-button-next{
    
    height: 50px;
    right:-7%!important;
    background: var(--wb-green);
    padding: 20px;
    width: 50px;
    border-radius: 50%;
    
    
}

.products-sider .swiper-button-prev{
    
    height: 50px;
    left: -7% !important;
    background: var(--wb-green);
    padding: 20px;
    width: 50px;
    border-radius: 50%;
    }

@media only screen and (min-width: 1024px) {
  .products-sider .swiper-navigation-container {
    display: flex;
    left: calc(31.25% - 5px);
  }
}

.products-sider .swiper-navigation-container .swiper-left,
.products-sider .swiper-navigation-container .swiper-right {
  align-items: center;
  display: flex;
  flex: 1 1 0%;
  height: 100%;
  justify-content: center;
  padding-right: 0px;
}

.products-sider .swiper-navigation-container .swiper-left:before,
.products-sider .swiper-navigation-container .swiper-right:before {
  background-color: #fff;
}

.products-sider .swiper-right:before {
  background-color: #000;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5l7 7-7 7" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5l7 7-7 7" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all 0.3s ease;
}

.products-sider .swiper-left:before {
  background-color: #000;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all 0.3s ease;
}

.power_biotechnology {
  background-image: url(../images/white_line_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

.title_24 {
  color: var(--wb-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.title_30
{
  color: var(--wb-black);
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}

.biotech_card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.biotech_card .title_24 {
  margin-bottom: 20px;
}

/* .sustainability{
    background-image: url(../images/sustainability.png);
    width: auto;
    height: 900px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */

.sustainability_wrapper {
  position: absolute;
  bottom: 8%;
  left: 8%;
}

.blog_card {
  display: grid;
  gap: 30px;
}
.blog_card p{
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.farming_form_bg {
  background-image: url(../images/form_bg.png);
  width: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 80px;
  border-radius: 20px;
}

.farming_form_bg_logo
{
    width:250px;
}

/* contect form  */
.farming_form .form-control {
  background-color: transparent;
  border-bottom: 1px solid var(--white) !important;
  border: none;
  border-radius: 0;
  padding: 10px 0px;
  /*margin-bottom: 30px;*/
  color: var(--white) !important;
}

.form-floating>label {
  padding: 1rem 0;
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  transform: scale(0.85) translateY(-1.5rem) translateX(0);
}

.farming_form .form-label {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.farming_form .form-select {
  background-color: transparent;
  border-bottom: 1px solid var(--white) !important;
  border: none;
  border-radius: 0;
  padding: 10px 0px;
  /*margin-bottom: 30px;*/
  color: #333;
}

form .form-control:focus,
form .form-select:focus {
  background-color: transparent;
  border-bottom: 1px solid var(--white);
  box-shadow: none;
}

.farming_form select.form-select {
  color: #fff;
  background-color: transparent;
  /*font-weight: 600;*/
}

.farming_form select.form-select option {
  color: #333;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--blue) inset !important;
  /*-webkit-text-fill-color: var(--white) !important;*/
  transition: background-color 5000s ease-in-out 0s;
}

input::-webkit-input-placeholder,
textarea::placeholder {
  color: #fff !important;
}

form .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: #333;
  background-color: #222;
}

.farming_form .form-check-input {
  border-radius: 5px;
  --bs-form-check-bg: #e6f4e6;
  border-color: #e6f4e6;
}


    .farming_form input:-webkit-autofill,
.farming_form textarea:-webkit-autofill,
.farming_form select:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;               
  transition: background-color 5000s ease-in-out 0s;
}

.form-floating label {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

/* footer  */
footer a {
  color: var(--wb-black);
  font-size: 16px;
}

.footer {
  background-color: #fffbf3;
  padding: 100px 0px 0px;
}

a {
  text-decoration: none;
  color: unset;
}

.ft_list {
  padding-left: 0;
  list-style: none;
}

.ft_list li {
  margin-bottom: 10px;
}

.ft_menu_title {
  color: var(--wb-green);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.social_items {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.ft_bg {
  background-image: url(../images/ft_bg.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

/* about page css */
.banner_wrapper {
  position: relative;
}

.banner_wrapper .comman_btn
{
    margin-top:5px;
}

.banner_wrapper a {
  display: inline-block;
}

.banner_txt {
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ceo {
  background: url("../images/light_line_bg.png") no-repeat;
  background-size: 100% auto;
  background-position: top;
  height: 70%;
}

.ceo_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-top: 40px;
}

.ceo_box {
  text-align: center;
}

.ceo_box img {
  margin-bottom: 30px;
}

.sustainability_wrapper ul {
  color: var(--white);
  font-size: 24px;
  line-height: 36px;
}

.counter_box {
  text-align: center;
  height: 100%;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter {
  font-size: 36px;
  font-weight: 600;
  line-height: 28px;
  background-color: #e6f4e6;
  border-radius: 50%;
  width: fit-content;
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 20px;
}

.counter_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.counter_wrapper {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}

/* journey */
.phil_boxes {
    display: grid;
     gap: 25px; 
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
}

.phil_box
{
    /*max-height:113px;*/
    /*max-width:113px;*/
}

.phil_box img
{
    width:100%;
}

.phil_box .phil_name {
  margin-top: 15px;
}

.phil_box .phil_name {
  margin-top: 30px;
}

.jour_img_wrapper {
  position: relative;
}

.jour_img_text {
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 82%;
}

.jour_img_text img {
  border-radius: 20px;
}

/* contact-us */
.contact_card {
  background-color: #e6f4e6;
  display: grid;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}

.contact_title {
  color: #AED4AE;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #AED4AE;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  line-height: 100px;
}

/* product listing */
.form-select {
  background-color: none;
}

.form-select:focus {
  border-color: var(--wb-green);
  outline: 0;
  box-shadow: none;
}

.prod_filter {
  width: 195px;
  border-radius: 50px;
  border: 1px solid var(--wb-green);
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.prod_img_wrapper {
  border-radius: 20px;
  border: 1px solid #e3cea6;
  padding: 20px;
}

/* .prod_btn {
    padding-left: 20px;
} */
.prod_img {
  margin-top: 24px;
}

.prod_title {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}

/* From Uiverse.io by karthik092726122003 */
.styled-wrapper .button {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.styled-wrapper .button:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
  border: 1px solid var(--wb-green);
  /* Update dynamically for light/dark mode */
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.styled-wrapper .button:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
  border: 1px solid var(--wb-green);
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.styled-wrapper .button:hover:before,
.styled-wrapper .button:focus:before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.styled-wrapper .button:hover:after,
.styled-wrapper .button:focus:after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.styled-wrapper .button-box {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  /* Changed from left to right */
  flex-direction: row-reverse;
  /* Reverse the order of elements */
}

.styled-wrapper .button-elem {
  display: block;
  width: 30px;
  height: 30px;
  margin: 16px 14px 0 18px;
  /* Adjusted for right alignment */
  /* transform: rotate(180deg); */
  fill: #fff;
}

.button-box .button-elem:nth-child(2) {
  margin: 16px 21px 0 0px;
}

.styled-wrapper .button:hover .button-box,
.styled-wrapper .button:focus .button-box {
  transition: 0.4s;
  transform: translateX(69px);
  /* Move right to left, positive value for right start */
}

.key_box {
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--wb-green);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

/* career-listing */
.position_box {
  border-radius: 20px;
  padding: 30px 40px;
  background: #e6f4e6;
}

.opening_pill {
  padding: 5px 15px;
  background: #fff;
  width: fit-content;
  border-radius: 50px;
  color: #40ac44;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.position_box p {
  margin-bottom: 0;
}

.position_box .comman_btn {
  margin-top: 30px;
}

.career_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.career_left {
  position: sticky;
  top: 10%;
}

.career_title .opening_pill {
  background: #E6F4E6;
  padding: 15px 30px;
}

.career_head .comman_btn {
  margin: 40px 0;
}

.career_form_wrapper {
  margin-top: 70px;
}

.career_form_wrapper .form-control,
.career_form_wrapper select{
  /* background-color: transparent; */
  border-bottom: 1px solid #bbb !important;
  border: none;
  border-radius: 0;
  padding: 10px 0px;
  color: #333;
      width: 100%;
          outline: none;
}

.career_form_wrapper label {
  color: var(--wb-black);
}

.custom_file_input label {
  border-radius: 5px;
  border: 1px solid #DDD;
  background: var(--White, #FFF);
  width: 100%;
  padding: 50px;
  text-align: center;
  cursor: pointer;
}



/* --------------------ravi---------------- */

.blogs_card {
  position: relative;
  margin-bottom: 50px;
}

.blogs_card .prod_btn .comman_btn {
  background: var(--wb-light-green);
  color: var(--wb-black);
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.blogs_card .styled-wrapper .button {
  position: absolute;
  bottom: -30px;
  right: 30px;
  border-radius: 50%;
  background-color: var(--white);
}

.bolg_details .main_head_black {
  font-size: 36px;
  text-align: start;
}

.bolg_details h6 {
  font-size: 16px;
  font-weight: 700;
}

.bolg_details_col {
  margin-bottom: 30px;
}

.bolg_details hr {
  margin-top: 80px;
  margin-bottom: 50px;
  background: #999;
}

.bolg_details li {
  list-style: square;
}

.bolg_details .blogs-details_baner {
  position: relative;
  margin-top: 70px;
}

.bolg_details .blogs-details_baners {
  position: absolute;
  bottom: 50px;
  left: 50px;
  transform: translate(0, 0);
}

.bolg_details .blogs-details_baners .main_head {
  margin-bottom: 20px;
}


/* sumit add style */

.breadcrumb-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.breadcrumb-flex .title_24 {
  font-weight: 400;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "▶";
  color: #d3d3d3;
  font-size: 10px;
  padding: 0 8px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

/* .breadcrumb a:hover {
  text-decoration: underline;
} */

.breadcrumb .active {
  color: #40AC44;
  font-weight: 500;
}

.breadcrumb-line {
  flex: 1;
  border-top: 1px solid #ddd;
  margin-top: 0;
}

.sticky-col {
  position: sticky;
  top: 20px;
}

.title_36 {
  color: var(--wb-black);
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}


/* ------------------------------- */

.home_pro_all {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_pro_all hr {
  width: 65%;
}

.home_pro_all .comman_btn {
  display: inline-flex;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home_pro_all .comman_btn:hover
{
   background: transparent;
   transition: all 0.3s ease;
}

/* thank you  */

.thank {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--wb-light-green);
  mix-blend-mode: multiply;
  background-image: url(../images/light_line_bg.png);
}

/* popup css */
.btn-shine {
  position: relative;
  margin: 0;
  padding: 17px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: var(--wb-green);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-shine span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.btn-shine:hover {
  animation: rotate624 0.7s ease-in-out both;
}

button:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.btn-shine {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-shine span {
  z-index: 20;
}


/* milstone style */

.milestone_wrapper {
  background: url("../images/light_line_bg.png") no-repeat;
  padding: 60px 0;
}

.milestone_head {
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 600;
  line-height: 100px;
  text-align: left;
  /* background: url("../images/light_line_bg.png") no-repeat; */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #AED4AE;
}


.milestone {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.milestone ul {
  padding: 10px 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: auto;
  /* max-width: 1200px; */
}

.milestone ul li {
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  list-style-type: none;
  width: 100%;
  position: relative;
  text-align: center;
  min-width: 115px;
}

.milestone ul li:last-child:after {
  display: none;
}

.milestone ul li:first-child:before {
  display: none;
}

.milestone ul li.active:before,
.milestone ul li.active:after {
  border: 2px solid #40AC44;
}

.milestone ul li.current:before {
  border: 2px solid #40AC44;
}

.milestone ul li:before {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  border: 1px solid #AED4AE;
  left: 0;
}

.milestone ul li:after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  border: 1px solid #AED4AE;
  right: 0;
}

.milestone li span {
  color: #AED4AE;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

/* .milestone li span:hover {
        background: rgba(6, 187, 232, 0.1);
        transform: translateY(-2px);
    } */

.milestone li span:after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background: #AED4AE;
  border-radius: 100%;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.milestone li.current span,
.milestone li.active span {
  color: #333;
  font-size: 36px;
  font-family: "Mozilla Text";
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.36px;
}

.milestone li.current span:after,
.milestone li.active span:after {
  background: #40AC44;
  /* box-shadow: 0 4px 12px rgba(6, 187, 232, 0.3); */
}

.milestone li.current {
  font-size: 18px;
  font-weight: bold;
}

.milestone li.current span:after {
  transform: translate(-50%, -35%) scale(1.5);
  width: 16px;
  height: 16px;
  top: -10px;
}

.content-milestone {
  margin-bottom: 45px;
  display: flex;
  justify-content: left;
  padding: 0 50px;
}

.content-milestone ul {
  padding: 0;
  margin: 0;
  width: 100%;
  /* max-width: 760px; */
  overflow: hidden;
}

.content-milestone ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
}

.content-milestone ul li.active {
  width: 100%;
  display: flex;
  gap: 50px;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-milestone .image {
  /* width: 100%;
    height: auto; */
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.content-milestone .image img {
  /* width: 100%;
    height: 430px;
    object-fit: cover; */
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/* .content-milestone .image:hover img {
    transform: scale(1.05);
} */

.content-milestone .explain {
  text-align: left;
}

.content-milestone .explain .title_48 {
  text-align: left;
}

.key_benefits {
  background-image: url(../images/ft_bg.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 120px;
}

.key_benefits .title_48 {
  margin-bottom: 40px;
}

.key_benefits_card {
  border: 2px solid var(--wb-green);
  background: var(--white);
  padding: 40px 30px;
  height: 100%;
  border-radius: 20px;
}

.key_benefits_card .title_24 {
  margin-bottom: 20px;
}

.product_card .title_24
{
    font-size: 22px;
    font-weight: 400;
}

.product_card_details
{
    text-align:center;
}

.product_card_details 
{
    border:1px solid #E3CEA6;
    /*padding:30px 60px;*/
    border-radius:20px;
}


/*form*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/*---------------google traslate-------------------*/


    .suggestions-box {
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    background: #fff;
    z-index: 999;
    width: 100%;
    }
    .suggestions-box div {
        padding: 8px;
        cursor: pointer;
    }
    .suggestions-box div:hover {
        background-color: #f0f0f0;
    }
        .goog-te-gadget-simple {
            border: none !important;
            background: none !important;
            padding: 0 !important;
            font-family: "Glacial Indifference", sans-serif;
        }
        .goog-te-gadget-icon {
            display: none !important;
        }
        .goog-te-gadget-simple span {
            border-left: none !important;
            font-family: inherit !important;
            color: var(--gray) !important;
            font-size: 16px !important;
        } 
        
    .custom-select {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: #fff;
        border: 2px solid #D9D9D9;
        border-radius: 25px;
        padding: 8px 15px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
 
    .custom-select:hover {
        border-color: #A8964E;
    }
 
    .custom-select .icon svg {
        stroke: #A8964E;
    }
 
    .goog-te-combo {
        border: none;
        background: transparent;
        outline: none;
        color: #000;
        font-weight: 500;
        cursor: pointer;
    }
    
    .text-fill-animate {
  background-image: linear-gradient(to right, #333 50%, #DDD 50%);
  background-size: 200% 100%;
  background-position: 100% 0;     /* start showing the grey part */
  background-repeat: no-repeat;

  /* clip background to text and make text transparent so gradient shows through */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* animation: move gradient from right -> left to "fill" with red */
  animation: textFill 24s linear forwards;
}

@keyframes textFill {
  to {
    background-position: 0 0;
  }
}

.ceo .text-fill-animate
{
     background-image: linear-gradient(to right, #333 50%, #77a077 50%);
}

.form-check-input:checked {
  background-color: var(--wb-green);
}
 .form-check-input:focus{box-shadow:none;}


.ft_log
{
   margin: 50px 0; 
}

/*----------------loader----------*/
   
           .loader-overlay {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
            opacity: 1;
            visibility: visible;
        }

        .loader-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-box {
            width: 120px;
            height: 120px;
            display: inline-block;
            transform-origin: center;
            animation: loader-entrance 0.45s ease;
        }

       .loader-box svg {
            width: 150px;
            /*height: 200px;*/
        }

       .loader-box path {
            stroke: #40AC44;
            stroke-width: 2;
            fill: #40AC44;
            fill-opacity: 0;
            stroke-dasharray: 600;
            stroke-dashoffset: 600;
            animation: draw 2s linear forwards, fillUp 1s ease forwards 1s;
            /* draw 3s, then fill 1s */
        }

        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes fillUp {
            to {
                fill-opacity: 1;
            }
        }
    

.card-hover-effect
{
     position: relative;
  overflow: hidden; /* image bahar na nikle */
  border-radius: 12px; /* thoda rounded look */
  transition: transform 0.3s ease;
}

.card-hover-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-in-out;
}

.card-hover-effect:hover {
  transform: translateY(-6px); 
  border:1px solid var(--wb-green);
}

.card-hover-effectr:hover img {
  transform: scale3d(1.2, 1.2, 1); /* zoom in */
}

    
    
.mega_menu_wrapper .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega_menu_wrapper .submenu.active {
  display: block;
}

.mega_menu_wrapper .title_24 { 
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.mega_menu_wrapper .title_24.active {
  color: var(--wb-green);
  /* active color */
}
.two-col-product {
    column-count: 2;
    column-gap: 40px;
}
.category_item{
    border-bottom: 1px solid #ddd;
    margin-right: 67px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.mega_menu_wrapper ul li{
     list-style: disc;
}


/**/



/* Button wrapper */
.back-to-top {
  position: fixed;
  right: 18px;   /* distance from bottom/right */
  bottom: 18px;
  width: 56px;   /* button area size */
  height: 56px;
  display: inline-grid;
  place-items: center;
  background: transparent; /* svg draws the circle */
  border: none;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(.95);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.9,.2,1);
  -webkit-tap-highlight-color: transparent;
 z-index: 99;
}

/* visible when scrolled */
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:focus,
.back-to-top:hover {
  transform: translateY(-3px) scale(1.02);
  outline: none;
}

/* scale SVG nicely inside button */
.back-to-top svg { 
  width: 64%; 
  height: auto; 
  display: block; 
}

/* color the svg shapes */
.back-to-top .btp-rect { stroke: #40AC44; }
.back-to-top .btp-path { stroke: #4AAF4E; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  .back-to-top,
  .back-to-top.visible,
  .back-to-top:focus,
  .back-to-top:hover { 
    transition: none; 
    transform: none; 
  }
}

/* smaller screens tweak */
@media (max-width:480px){
  .back-to-top {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}

    
    