/* ======= 1. Genral ======= */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Nunito Sans";
font-family: "Public Sans"; */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* bg color */
  --primary-color: #374d38;
  --secondary-color: #8aa789;
  --bg-white: #fff;
  --gradient-color: linear-gradient(
    -224deg,
    var(--primary-color) 0,
    #337dff 100%
  );
  --gradient-text: linear-gradient(
    120deg,
    #1c99fe 20.69%,
    #7644ff 50.19%,
    var(var(--primary-color)) 79.68%
  );

  /* Text Color */
  --primary-font: "Nunito Sans";
  --seconday-font: "Public Sans";
  --primary-text: #384e39;
  --text-light-green: #8aa789;
  --text-white: #fff;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-inner-spin-button {
  display: none;
}

section {
  padding: 50px 0;
}

/* .main-btn {
    display: inline-block;
    border-radius: 50px;
    transition: all .4s ease-in-out;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--gray-color);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.main-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
} */

input:hover,
input:focus,
textarea:focus,
textarea:hover,
button {
  outline: none !important;
  box-shadow: none !important;
}

.heading {
  font-family: var(--seconday-font);
  font-size: 90px;
  font-weight: 200;
  line-height: 105.75px;
}

.subheading {
  font-family: var(--seconday-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

h1 {
  font-family: var(--primary-font);
  font-size: 36px;
  font-weight: 600;
  line-height: 57.6px;
}

p {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

section {
  margin: 0;
  padding: 100px 0;
}

/* ===== 2. Navbar ===== */
.header_wrapper .navbar {
  padding: 15px 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.header_wrapper .navbar-brand img {
  height: 80px;
}

.header_wrapper .navbar-toggler {
  border: 0;
  color: var(--text-white);
  line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
  box-shadow: none;
}

.header_wrapper .nav-item {
  margin: 0 20px;
  padding: 0;
}

.header_wrapper .nav-item .nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  display: inline-block;
}

/* .header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
    color: var(--secondary-color);
} */

/* from JS to make header sticky */
.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

/*
=========================
       home Section
=========================
 */

.hero_sec {
  padding-top: 80px;
  padding-bottom: 0;
  background: linear-gradient(180deg, #8aa789 0%, #374d38 100%);
  min-height: 100dvh;
  width: 100%;
  position: relative;
  color: var(--text-white);
}

.hero_sec::after {
  content: "";
  position: absolute;
  background-image: url(../images/designBg.webp);
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  background-size: cover;
  width: 300px;
  height: 300px;
  opacity: 0.5;
}

.hero_sec .heading {
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.hero_sec .subheading {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--primary-font);
  max-width: 600px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.hero-btn {
  z-index: 1;
  text-transform: uppercase;
  color: var(--text-white);
  position: relative;
  font-size: 20px;
  font-family: var(--primary-font);
}

.hero-btn::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 100%;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease-in-out 0.3s;
}

.hero-btn::before {
  position: absolute;
  content: "";
  background: url(../images/arrow.svg) no-repeat;
  width: 100%;
  height: 10px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease-in-out 0.3s;
}

.hero-btn:hover::before {
  right: -210px;
}

.hero-btn:hover::after {
  right: -80px;
}

.hero_sec .social a {
  position: relative;
  z-index: 1;
  margin-top: 150px;
  font-size: 30px;
  color: var(--text-white);
}

.hero_sec .card {
  background-color: #cdd9cd;
  width: 500px;
  margin: auto;
  overflow: hidden;
}

.hero_sec .card .cardImage {
  overflow: hidden;
}

.hero_sec .card .cardImage img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero_sec .card .card-body {
  padding: 30px;
  padding-bottom: 50px;
  font-family: var(--primary-font);
}

.hero_sec .card .card-body h2 {
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: var(--primary-text);
  font-size: 36px;
  font-weight: 400;
  line-height: 57.6px;
  margin-bottom: 0;
}

.hero_sec .card .card-body p {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 24.55px;
}

.swiper {
  width: 500px;
}

.swiper-slide {
  width: 500px;
}

.HeroSwiper .swiper-button-next,
.HeroSwiper .swiper-button-prev {
  right: 0;
  bottom: 0;
}

.HeroSwiper .swiper-button-next,
.HeroSwiper .swiper-button-prev {
  top: 95%;
  color: var(--primary-color);
  z-index: 50;
}

.HeroSwiper .swiper-button-next {
  right: 60px;
  bottom: 0;
}

.HeroSwiper .swiper-button-prev {
  right: 90px;
  left: auto;
}

.HeroSwiper .swiper-button-prev:after,
.HeroSwiper .swiper-button-next:after {
  font-size: 26px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 5%;
  width: 100%;
}

.swiper-pagination {
  text-align: left;
  /* padding-left: 30px; */
  font-size: 30px;
  font-family: var(--seconday-font);
  color: var(--secondary-color);
}

/*------------------- More Section -------------------*/
.more_sec {
  margin: 0;
  padding: 100px 0;
  background-color: #fff;
}

.more_sec .box {
  padding: 50px;
  color: var(--primary-color);
}

.more_sec .box:nth-child(2) {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.more_sec .box:nth-child(3) {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.more_sec .box .subheading {
  text-transform: uppercase;
}

/*------------------- Mission Section -------------------*/
.missionEco_sec {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--text-white);
}

.ecoHeading {
  font-family: var(--seconday-font);
  font-size: 128px;
  font-weight: 200;
  line-height: 150.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.underLine {
  width: 100px;
  height: 1px;
  background-color: #fff;
  margin-top: 60px;
}

.missionEco_sec img {
  max-height: 595px;
}

/*------------ Global Problem Sec ------------*/
.globalProblem_sec {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: var(--text-white);
  position: relative;
  z-index: -2;
  overflow: hidden;
}

.globalProblem_sec::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 700px;
  background: rgba(55, 77, 56, 0.48);
  filter: blur(80px);
  border-radius: 100%;
  bottom: -10%;
  right: -10%;
  z-index: -1;
}

/*------------ Statistics Sec ------------*/
.statistics_sec {
  padding: 100px 0;
  color: var(--primary-color);
}

.statistics_sec img {
  max-height: 625px;
}

/*------------ MAP Sec ------------*/
.map_sec {
  padding: 100px 0;
  background-image: url(../images/map.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
}

.map_sec .BlurBox {
  max-width: 430px;
  min-height: 250px;
  margin: auto;
  padding: 25px 20px 25px 25px;
  backdrop-filter: blur(3px);
  border: 1px solid white;
  background-color: #374d3853;
  color: var(--text-white);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.map_sec .BlurBox h1 {
  font-family: var(--seconday-font);
  font-size: 64px;
  font-weight: 100;
  line-height: 75.2px;
}

.map_sec .BlurBox h1 span {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

/*------------ Solution Sec ------------*/
.solution_sec {
  color: var(--primary-color);
}

.solution_sec .card h3 {
  color: var(--primary-color);
  margin: 20px 0;
  font-size: 20px;
}

/*------------ Woman Team Sec ------------*/
.womanTeam_sec {
  background: linear-gradient(122.19deg, #8aa789 30.68%, #c5d3c4 86.36%);
}

.womanTeam_sec .ecoHeading {
  margin-top: 100px;
}

.womanTeam_sec .whiteBox {
  max-width: 530px;
  padding: 30px 26px 20px 26px;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.67);
  font-family: Nunito Sans;
  right: -100px;
}

/*------------ Indian Woman Sec ------------*/
.indianWoman_sec .container {
  margin-left: 0;
  color: #698e68;
}

.indianWoman_sec .ecoHeading:nth-child(3) {
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 50px;
}

.indianWoman_sec ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.indianWoman_sec ul li .num {
  font-family: var(--seconday-font);
  font-size: 36px;
  font-weight: 100;
  line-height: 40.1px;
}

/*------------ Production Sec ------------*/
.production_sec {
  background-color: #f0f8f0;
}

.production_sec .container {
  margin-right: 0;
  color: #698e68;
}

.production_sec ul {
  padding-left: 0;
  padding-top: 30px;
}

.production_sec ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.production_sec ul li .num {
  font-family: var(--seconday-font);
  font-size: 36px;
  font-weight: 100;
  line-height: 40.1px;
}

/*------------ Life Cycle Sec ------------*/
.lifeCycle_sec {
  color: #698e68;
}

/*------------ Life Cycle Sec ------------*/
.EcoProduct_sec {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 0;
}

.EcoProduct_sec .circle {
  max-width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: var(--bg-white);
  box-shadow: 4px 4px 4px 1px #2a3c2b;
}

.EcoProduct_sec .rightSec {
  position: relative;
}

/* .EcoProduct_sec .rightSec .productSlideImg {
    position: absolute;
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
} */

.EcoProduct_sec .rightSec .swiper.mySwiper.ProductSecSlide {
  content: "";
  position: absolute;
  left: -50%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/productSlideBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 500px;
  height: 500px;
  border-radius: 100%;
}

.EcoProduct_sec .rightSec .swiper.mySwiper.ProductSecSlide .item {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  margin: 50px;
  background-color: #8aa789;
}

.ProductSecSlide .swiper-button-next:after,
.ProductSecSlide .swiper-button-prev:after {
  font-size: 20px;
  color: #8aa789;
  z-index: 5;
}

/*------------ Step Into Sec ------------*/
.stepInto_sec {
  height: 100dvh;
  width: 100%;
  padding: 100px 0;
  background-color: #cdd9cd;
  position: relative;
}

.stepInto_sec::before {
  position: absolute;
  content: "";
  background: url(../images/stepIntoBg.webp);
  background-repeat: no-repeat;
  width: 500px;
  height: 100%;
  right: 0;
  top: 0;
}

.stepInto_sec h1 {
  color: var(--primary-color);
  font-family: var(--seconday-font);
  font-size: clamp(4.375rem, 7.03vw + 2.727rem, 8rem);
  font-weight: 200;
  line-height: 104px;
  text-transform: uppercase;
}

.stepInto_sec p {
  color: var(--primary-color);
  font-family: var(--seconday-font);
  font-size: clamp(1.75rem, 0.97vw + 1.523rem, 2.25rem);
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
}

.stepInto_sec .contactForm {
  max-width: 600px;
  height: auto;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 50px 40px;
  position: absolute;
  top: 50%;
}

.stepInto_sec .contactForm p {
  font-size: 20px;
  font-weight: 200;
}

.stepInto_sec .contactForm input,
.stepInto_sec .contactForm textarea {
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid var(--bg-white);
  padding: 12px 0;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.stepInto_sec .contactForm textarea {
  border: 1px solid #fff;
  padding: 12px 5px;
}

.stepInto_sec .contactForm input::placeholder,
.stepInto_sec .contactForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.stepInto_sec .contactForm h6 {
  margin: 20px 0 15px 0;
}

.stepInto_sec .contactForm .checkbox {
  width: fit-content;
}

.stepInto_sec .contactForm button {
  background: #fff;
  border: 0;
  box-shadow: none;
  outline: none;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 200;
  line-height: 32px;
  text-align: center;
  margin-top: 30px;
}

/*========== FOOTER ==========*/
footer {
  padding: 100px 0;
  background-color: #161e17;
}

footer .ftrLogo {
  height: 80px;
}

footer .ftrAddress {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  color: #5f7960;
}

footer ul {
  padding-left: 0;
}
footer ul li {
  list-style: none;
  margin-bottom: 10px;
}

footer ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

footer .contact {
  color: #5f7960;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

footer a {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  color: #fff;
  font-family: var(--primary-font);
}

footer .social {
  font-family: var(--primary-font);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.contactBgImg {
  height: 70vh;
}
