:root {
  --green: #05a587;
  --l-green: #e6f6f3;
  --white: #ffff;
  --black: #0000;
  --dark-green: #014735;
  --light-green-bg: #014735;
  /* --light-white-bg: #014735; */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "light-italic";
  src: url("fonts/Montserrat-Italic-VariableFont_wght.woff2") format("woff2"),
    url("font/Montserrat-Italic-VariableFont_wght.woff2") format("woff");
}

@font-face {
  font-family: "para-font";
  src: url("fonts/Montserrat-VariableFont_wght.woff2") format("woff2"),
    url("fonts/Montserrat-VariableFont_wght.woff2") format("woff");
}

@font-face {
  font-family: "bold-font";
  src: url("fonts/Righteous-Regular.woff2") format("woff2"),
    url("fonts/Righteous-Regular.woff2") format("woff");
}

@font-face {
  font-family: "mon-semiBold";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat-SemiBold.woff2") format("woff");
}

@font-face {
  font-family: "mon-regular";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
    url("fonts/Montserrat-Regular.woff2") format("woff");
}

@font-face {
  font-family: "mon-Medium";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2"),
    url("fonts/Montserrat-Medium.woff2") format("woff");
}

@font-face {
  font-family: "mon-Bold";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"),
    url("fonts/Montserrat-Bold.woff2") format("woff");
}

html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "medium", sans-serif;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

h1 {
  font-size: 5rem;
  color: var(--dark-green);
  font-family: bold-font;
  font-weight: 500;
}

h2 {
  font-size: 4.2rem;
  font-family: "bold-font";
  color: var(--dark-green);
  text-transform: uppercase;
  font-weight: 500;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
  color: var(--green);
  font-family: "bold-font";
  text-transform: uppercase;
  padding-bottom: 3rem;
}

h5 {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  font-family: "para-font";
  padding-bottom: 1.5rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  font-size: 1.6rem;
  color: var(--dark-green);
  font-family: "mon-regular";
  line-height: 2.8rem;
  text-align: justify;
}

p span {
  font-size: 1.6rem;
  color: var(--dark-green);
  font-family: "mon-regular";
  line-height: 2.8rem;
  font-weight: 600;
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "mon-regular";
}

li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 176rem;
  padding: 4rem 2.8rem 0rem 2.8rem;
  margin: auto;
}

.wrapper {
  max-width: 176rem;
  margin: auto;
  padding: 4rem 2.8rem;
}

.grid {
  display: grid;
  gap: 5rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-five-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* jitne sections nav se linked hain unke liye */
section[id] {
  scroll-margin-top: 10rem;
  /* approx header height + thoda gap */
}

/* ================= */
/* ================= */
/* navbar */
/* ================= */
/* ================= */
header {
  /* background-color: var(--dark-green); */
  width: 100%;
  position: fixed;
  top: 0; 
  z-index: 100;
  transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.mobile-social-icons {
  display: none;
}

.burger-icon {
  display: none;
}

.navbar {
  margin: 0 auto;
  padding: 2rem 2.8rem;
  width: 100%;
  max-width: 176rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out; */
}

.mobile-btn {
  display: none;
}

.ttu-btn {
  display: none;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-transform: capitalize;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.4rem;
}

/* default: underline hidden */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 33%;
  bottom: -0.2rem;
  width: 0;
  height: 0.2rem;
  background: var(--white);
  transition: width 0.3s ease;
}
.mobile-social-icons a::after {
  display: none !important;
}
/* sirf active link ke niche underline dikhani hai */
nav ul li a.underline::after {
  width: 23%;
}
.ttu-btn::after {
  display: none !important;
}

.logo img {
  height: 6.5rem;
}

.btn {
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--green);
  padding: 1.7rem 2.5rem;
  border-radius: 33rem;
  font-size: 1.6rem;
  font-family: para-font;
}

/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
#menu-toggle {
  display: none;
}

/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
/* ================= */
/* ================= */
/* banner */
/* ================= */
/* ================= */
.banner {
  background-image: url("assets/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 90vh;
  position: relative;
  margin: 1rem 1rem 0rem 1rem;
  border-radius: 2rem;
}
.barnner-mobile {
  display: none;
}
.banner-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 43.4038%,
    rgba(0, 0, 0, 0.788) 100%
  );
  border-radius: 2rem;
}

.banner .wrapper {
  text-align: left;
  /* Optional: limit width for better layout */
  width: 100%;
  /* Prevents shrinking */
}

.banner .wrapper h1 {
  font-size: 5.2rem;
  padding-bottom: 3rem;
  line-height: 5.5rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.banner .wrapper p {
  padding-bottom: 3rem;
  color: var(--white);
}

.banner-data a {
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--green);
  padding: 1.8rem 3rem;
  display: inline-flex;
  border-radius: 33rem;
  text-transform: uppercase;
  font-family: para-font;
}

.shape-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  /* background-image: url(assets/bbbb.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right; */
  height: 120px;
  background-color: var(--white);
  border-top-left-radius: 3rem;
  text-align: center;
}

.shape-box p {
  color: var(--dark-green) !important;
  max-width: 100%;
  position: absolute;
  bottom: -10px;
  right: 0px;
  padding: 0 2rem;
  line-height: 2.8rem;
}

.italic-font {
  font-family: "light-italic";
  font-weight: 400 !important;
}

.shape-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  box-shadow: 0 20px 0 0 var(--white);
  /* border-radius of pseudo element */
  border-bottom-left-radius: 50%;
  transform: scaleX(-1);
}

.shape-box::after {
  content: "";
  position: absolute;
  top: 69px;
  left: -53px;
  height: 66px;
  width: 40px;
  background: transparent;
  box-shadow: 0 20px 0 0 #ffffff;
  border-bottom-left-radius: 50%;
  transform: rotate(270deg);
}

/* ============= */
/* ============= */
.we-dont .wrapper {
  padding-bottom: 0rem;
}
.we-dont {
  display: none;
}
/* ============= */
/* ============= */
/* =========who-we-are========= */
/* =========who-we-are========= */
/* =========who-we-are========= */
/* =========who-we-are========= */
.who-we-are {
  position: relative;
  width: 100%;
}
.who-we-are .grid-two-cols {
  grid-template-columns: 1fr 1.1fr;
}

/* =========moving text========= */
/* =========moving text========= */
/* =========moving text========= */
/* =========moving text========= */
.scroll-section {
  overflow: hidden;
  width: 100%;
  background: #fff;
}

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

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 2.4rem;
  text-transform: uppercase;
  padding-right: 25px;
}

.dot {
  width: 2rem;
  height: 2rem;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}


.text-item {
  font-size: 2.4rem;
  font-family: "mon-semiBold";
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos======= */
.ethos,
.director {
  position: relative;
  max-width: 176rem;
  margin: 0 auto;
}
.director .wrapper{
  padding-top: 0rem;
}
 .mobile-ethos-heading {
  display: none;
}
.director .grid-two-cols {
  grid-template-columns: 1fr 1.8fr;
}
.ethos-bg-1 {
  background-image: url(assets/ethos-bg.png);
  background-size: cover;
  background-position: 100%;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
  height: 500px;
  padding: 8rem 5rem;
  position: relative;
  overflow: hidden;
}

.ethos-bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.938) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );

  border-radius: 2rem;
  z-index: 0;
}

/* ================ */
.ethos-bg-2 {
  background-image: url(assets/ethos-bg2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
  height: 500px;
  padding: 8rem 5rem;
  position: relative;
  overflow: hidden;
}

.ethos-bg-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );

  border-radius: 2rem;
  z-index: 0;
}

/* ================ */
.ethos-bg-3 {
  background-image: url(assets/ethos-bg3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
  height: 500px;
  padding: 8rem 5rem;
  position: relative;
  overflow: hidden;
}

.ethos-bg-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );

  border-radius: 2rem;
  z-index: 0;
}

.ethos-data {
  position: relative;
  z-index: 99;
}
.ethos-data h4 {
  padding-bottom: 5rem;
}

.ethos-data ul li {
  color: var(--white);
  font-size: 1.8rem;
  font-family: "mon-regular";
  text-align: justify !important;
}

.e-li1,
.e-li2,
.e-li3 {
  padding-bottom: 3rem;
}
.e-li1 strong,
.e-li2 strong,
.e-li3 strong,
.e-li4 strong {
  font-family: "mon-Bold";
}
.ethos-bg-2 .ethos-data p {
  max-width: 57%;
  font-size: 1.8rem;

}
.ethos-bg-3 .ethos-data p {
  max-width: 57%;
  font-size: 1.8rem;

}
.ethos-slider .owl-nav {
  position: absolute;
  right: 6rem;
  bottom: 7rem;
  background-color: var(--green);
  padding: 1rem;
  border-radius: 33rem;
  color: var(--white);
  width: 97px;
  height: 45px;
}

.ethos-slider .owl-prev {
  font-size: 2.5rem !important;
  position: absolute;
  left: 0rem;
  top: 0.4rem;
  border: none !important;
  background-color: transparent !important;
}

.ethos-slider .owl-next {
  font-size: 2.5rem !important;
  position: absolute;
  right: 0rem;
    top: 0.4rem;
  border: none !important;
  background-color: transparent !important;
}

.ethos-slider .ethos-data p {
  color: var(--white);
}

/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */

.director-left p {
  padding-top: 3rem;
  width: 90%;
}

/* ============= */
/* ================= DIRECTOR RIGHT CARDS ================= */

.director-right {
  display: flex;
  justify-content: center;
}

.director-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
}

/* Card Base */
.director-card {
  position: relative;
  height: 520px;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  flex: 0.8;
  transition: flex 0.45s ease, transform 0.45s ease;
}

/* Expanded Card */
.director-card.active {
  flex: 1.8;
}

/* Director Image */
.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Info */
.director-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3rem 5rem 3rem;
}

.director-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Name */
.director-name {
  color: var(--green);
  font-size: 2.1rem;
  font-family: "bold-font";
  padding-bottom: 0rem;
  z-index: 99;
}

/* Role */
.director-role {
  z-index: 99;
  opacity: 0.9;
  font-family: "light-italic";
  margin-bottom: 1.2rem;
  color: var(--white);
  padding-top: 1rem;
}

/* Description – hidden when collapsed */
/* Description – hidden when collapsed */
.director-desc {
  color: var(--white);
  z-index: 99;
  font-size: 1.6rem;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transform: translateY(5120px); /* bottom se start */
  transition: max-height 0.35s ease, opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-desc span {
  font-weight: bold;
  color: var(--white);
}

/* Show description only when card active */
.director-card.active .director-desc {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0); /* fade + move up */
}

/* Responsive */
/* @media (max-width: 900px) {
  .director-cards {
    flex-direction: column;
  }

  .director-card,
  .director-card.active {
    flex: 1;
    height: 420px;
  }
} */

/* =========full-bg========= */
/* =========full-bg========= */
/* =========full-bg========= */
.light-bg {
  position: relative;
}

/* bottom background */
.light-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%; /* second section + half of first */
  background: #e9f3ec;
  z-index: -1;
}

/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
.we-solve {
  position: relative;
  width: 100%;
}
.ws-top-box .wrapper{
  padding-bottom: 0rem;
}
.wsb-box-main-reslut .wrapper{
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.mobile-we-solve{
  display: none;
}
.we-solve-box .grid-two-cols {
  align-items: flex-end;
}

.wsb-box {
  margin-top: 5rem;
}

.wsb-box-data {
  background-color: var(--l-green);
      padding: 2rem 2.5rem;
  border-radius: 2.5rem;
  text-align: center;
}

.wsb-box-data img {
  width: 110px;
  height: 110px;
  margin-bottom: 2rem;
}

.wsb-box-data p {
  font-family: "mon-Medium";
  color: rgba(1, 71, 53, 0.8);
  text-align: center;
}

.we-solve-bottom {
  margin-top: 4rem;
}

.we-solve-bottom h6 {
  font-size: 2.1rem;
  font-family: "mon-Bold";
  padding-bottom: 1rem;
  color: var(--dark-green);
}
.wsb-mobile-box {
  display: none;
}
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
.our-value {
  position: relative;
  width: 100%;
}
 
.our-value .grid-two-cols {
  align-items: flex-end;
}

/* ============= */
/* ============= */
/* ============= */
/* ============= */
/* MAIN WRAPPER */
.value-section-mobile {
  display: none;
}
.value-section {
  border-radius: 2.4rem;
  background: #ffffff;
  margin-top: 4rem;
}

/* HEADER TOP */
.value-header {
  display: flex;
  gap: 3rem;
  padding: 1rem 1.5rem 2.5rem;
}

.value-header-left {
  flex: 1.1;
}

.value-header-right {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4e5b63;
}

.small-title {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a57a;
  margin-bottom: 0.6rem;
}

.value-header h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  color: #004a3b;
}

/* TABS BAR */
.value-tabs {
  display: flex;
  border-radius: 1.4rem;
  overflow: hidden;
}

.value-tab {
  flex: 1;
  padding: 3rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 2.1rem;
  font-family: "bold-font";
  text-transform: uppercase;
  background: #f4f7f6;
  color: #004a3b;
  transition: background 0.25s ease, color 0.25s ease;
}

.value-tab + .value-tab {
  border-left: 1px solid #dde4e0;
}
.vps1{ 
  border-top: 1px solid rgba(112, 199, 175, 0.5);
  border-left: 1px solid rgba(112, 199, 175, 0.5);
  border-bottom: 1px solid rgba(112, 199, 175, 0.5);
    border-top-left-radius: 1.4rem;
    border-bottom-left-radius: 1.4rem;
}
.vps2{
  border: 1px solid rgba(112, 199, 175, 0.5);
    border-top-right-radius: 1.4rem;
    border-bottom-right-radius: 1.4rem;
}

.value-tab.active {
  background: #05a587;
  color: #ffffff;
}

/* TAB PANES (BOTTOM AREA) */
.value-content {
}

.value-pane {
  display: none;
  align-items: stretch;
  gap: 3rem;
  margin-top: 3rem;
}

.value-pane.active {
  display: flex;
}

.value-text {
  flex: 1;
  font-size: 1.4rem;
  color: #243339;
}
.value-text ul{
  padding-right: 55px;
}

.value-text li {
  margin-bottom: 0.9rem;
  line-height: 4rem;
  font-size: 2.1rem;
  font-family: "mon-Medium";
  color: rgba(1, 71, 53, 0.8);
  display: flex;
  align-items: start;
  gap: 1.2rem;
  text-align: justify;
}

.value-text li i {
  font-size: 0.7rem;
}

/* Image block */
.value-image {
  flex: 1;
  border-radius: 1.8rem;
  overflow: hidden;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .value-header {
    flex-direction: column;
  }

  .value-pane,
  .value-pane.active {
    flex-direction: column;
  }
}

/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
.solution {
  position: relative;
  width: 100%;
}
.solution .wrapper-heading{
  padding-bottom: 0rem;
}
.solution .grid{
  gap: 2rem;
}
.solution .s2-heading {
  display: none;
}
.solution-left-box {
  background-color: var(--l-green);
  padding: 4rem;
  border-radius: 2.5rem;
  height: 250px;
}

.solution-left-box .slb-h5 {
  font-family: "bold-font";
  font-size: 1.8rem;
  height: 80px;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;

}

.solution-left-box p {
  font-family: "mon-Medium";
  font-size: 1.6rem; 
}

.solution .grid-two-cols {
  grid-template-columns: 2.8fr 1fr;
}

.solution-right {
  position: relative;
}

.solution-right img {
  width: 100%;
  height: 100%;
}
.solution-left .grid {
  gap: 2rem;
}
/* TOP CENTER */
.sr-heading {
position: absolute;
    text-align: center;
    top: 10%; 
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

/* TEXT COLORS */
.sr-heading h4 {
  margin: 0 auto;
  text-align: center;

  color: var(--white);
  padding-bottom: 2rem;
}

.sr-heading p {
  font-family: "mon-Medium";
  color: var(--white);
  text-align: center;
}

.os-btn {
  position: absolute;
  text-align: center;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%);
    width: 100%;
}

.solution-right a {
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--green);
  padding: 2rem;
  border-radius: 33rem;
  display: inline-block;
}
.solution-left-mobile {
  display: none;
}
.mobile-show {
  display: none;
}

/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* ===============================
   BENEFITS SECTION – DESKTOP ONLY
================================ */

.benefits {
  width: 100%; 
}
.benefits .wrapper{
  padding-top: 0rem;
}
/* ===============================
   BACKGROUND WRAPPER
================================ */

.benefits-bg {
  background-image: url(assets/benefits.png);
  background-size: 100% 100%;
  background-position: center;
  border-radius: 2rem;
  height: 635px;
  padding: 4rem 0rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.benefits-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 4.85) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}

/* ===============================
   TOP TABS (DESKTOP)
================================ */

.benefits-btn {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
}

.benefits-btn .tab-btn {
  background: var(--dark-green);
  padding: 1.4rem 3rem;
  border-radius: 50rem;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "mon-Medium";
}

.benefits-btn .tab-btn.active {
  background: var(--green);
}

/* ===============================
   CONTENT LAYOUT
================================ */

.benefits-data {
  margin-top: 12rem;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LEFT CONTENT
================================ */

.bd-left h5 {
  color: var(--green); 
  margin-bottom: 1rem;
}

.bd-left h2 {
  color: #fff;
  font-size: 4.2rem;
  line-height: 1.3;
  max-width: 450px;
}

/* mobile-only heading hidden on desktop */
.bd-left-desktop-hide {
  display: none;
}

/* ===============================
   RIGHT CONTENT (SLIDER AREA)
================================ */

.bd-right {
  width: 55%;
  position: relative;
    overflow: hidden !important; 
}

/* ===============================
   SLIDER CARD
================================ */

.bgr-data {
    width: 294px !important;   /* 🔥 controls layout */
  height: 261px !important;
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  display: flex;
  align-items: center;
}
.benefits-functional,
.benefits-emotional {
  overflow: hidden;
}
.bgr-data p {
  font-size: 1.8rem;
  color: rgba(1, 71, 53, 0.8);
  text-align: center;
  font-family: "mon-Medium";
  display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ===============================
   TABS CONTENT VISIBILITY
================================ */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===============================
   OWL NAVIGATION – DESKTOP
================================ */

 
/* Arrow wrapper (green pill like Owl) */
.benefits-nav {
  /* position: absolute;
  right: 6rem;
    bottom: -8rem;
  background-color: var(--green);
  border-radius: 33rem;
     width: 97px;
    height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  z-index: 5;
  gap: 3rem;
  padding: 1rem; */
  
  overflow: visible !important;


    position: absolute;
  right: 6rem;
  bottom: -8rem;
  background-color: var(--green);
  padding: 1rem;
  border-radius: 33rem;
  color: var(--white);
  width: 97px;
  height: 42px;
}
.benefits-prev {
  /* width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;*/
  cursor: pointer;
  transition: opacity 0.2s ease; 


   font-size: 2.5rem !important;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY( -43%);
  border: none !important;
  background-color: transparent !important;
}
.benefits-next {
  font-size: 2.5rem !important;
    position: absolute;
    right: 0.5rem;
  top: 50%;
  transform: translateY( -43%);

  border: none !important;
  background-color: transparent !important;
}
.benefits-prev.disabled,
.benefits-next.disabled {
  opacity: 0.4;
  pointer-events: none;
}






/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
.advantage {
  position: relative;
  width: 100%;
}
.advantage  .wrapper{
  padding-top: 0rem;
}
.advantage .grid-two-cols {
  grid-template-columns: 1fr 1fr;
} 
.adv-mobile {
  display: none;
}
.ar-box {
  display: flex;
  align-items: self-start;
  gap: 2rem;
}

.ar-box i {
  color: var(--green);
  margin-top: 1rem;

  font-size: 1rem;
}

.ar-box p {
  font-size: 1.8rem;
  font-family: "mon-Medium";
}
.advantage-right{
  margin-top: 4rem;
  margin-left:-50px;
}
.advantage-right .grid{
  gap: 3rem;
}

/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
.proof {
  position: relative;
  width: 100%;
}
.proof-slider .wrapper {
    padding: 0rem 2.8rem 4rem 2.8rem;
}
.proof .wrapper-heading {
  text-align: center;
}

.proof .wrapper-heading h2 { 
  margin: 0 auto;
}

.proof-slider {
  margin-top: 3rem;
}

.proof-data {
  margin: 0 auto;
  max-width: 40%;
  text-align: center;
}

.proof-data h3 {
  font-family: "mon-regular";
  line-height: 4rem;
  color: rgba(1, 71, 53, 0.8);
  font-weight: 500;
}

.proof-data h3 span {
  font-family: "mon-semiBold";
  font-weight: bold;
}

.proof-slider .owl-nav {
  position: absolute;
  /* color: var(--white); */
  top: 30%;
  left: 0%;
  width: 100%;
}

.proof-slider .owl-prev {
  position: absolute;
  left: 0%;
  top: 0;
  background-color: var(--green) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  font-size: 2rem !important;
  color: var(--white) !important;
}

.proof-slider .owl-next {
  position: absolute;
  right: 0% !important;
  top: 0;
  background-color: var(--green) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  font-size: 2rem !important;
  color: var(--white) !important;
}

.proof-slider .owl-dot {
  margin-top: 1rem !important;
}

.proof-slider .owl-dot span {
  width: 15px !important;
  height: 15px !important;
}

.proof-slider .owl-dot.active span {
  background-color: var(--green) !important;
}
.proof-arrow{
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.proof-slider-data .owl-stage{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
.vision {
  position: relative;
  width: 100%;
}
.vision  .wrapper-heading{
  padding-bottom: 0rem;
}
.vision-data .wrapper {
  padding-top: 0rem;
}
.vd-left h4 {
  font-family: "mon-regular";
  font-size: 2.1rem;
  color: var(--dark-green);
  font-weight: 500;
  margin-top: 3rem;
  text-transform: capitalize;
}

.vd-left h4 span {
  font-family: "mon-semiBold";
}

.vd-right {
  text-align: right;
}
.vd-right img {
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-top: 3rem;
}

.vd-left h3 {
  font-family: "mon-Medium";
  font-weight: 500;
  color: rgba(1, 71, 53, 0.4);
  padding: 2rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 3.2rem;
  border-left: 5px solid var(--white);
}

.vd-left-1,
.vd-left-2,
.vd-left-3 {
  margin-bottom: 1rem;
}

.vd-left h3.active {
  background-color: rgb(230, 246, 243);
  border-left: 5px solid var(--green);
  color: var(--dark-green);
}

/* ========faqs========= */
/* ========faqs========= */
/* ========faqs========= */
/* ========faqs========= */
.faqs {
  position: relative;
  width: 100%;
  background-color: rgb(230, 237, 235);
}

.faqs-box {
  background-color: var(--blue);
  border-radius: 2rem;
}

.faq-header-first {
  text-align: center;
  margin-bottom: 5rem;
}
.faq-header-first h5 {
  text-transform: none;
}
/* ---------faq code-------- */

.faq-container .wrapper {
  padding: 0rem 4rem 4rem 4rem;
}

.faq-item.active {
  background-color: var(--white) !important;
}

.faq-item.closing {
  background-color: var(--blue);
  /* back to original, smoothly */
}

.faq-heading {
  margin: 0px 8rem 15px 5rem;
}

.faq-heading .faq-para11 {
  color: var(--light-gray);
  font-weight: 600;
}

.faq-heading .faq-para22 {
  color: var(--light-gray);
  padding-bottom: 3rem;
}

.faq-heading h1 {
  padding: 1rem 0 3rem 0;
  color: var(--blue);
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--blue);
  margin: 2px 0rem;
  transition: background-color 0.3s ease;
}

.faq-item.closing {
  background-color: var(--blue);
  /* transition to default */
}

.last-faq-item {
  margin: 2px 0rem 0px 0rem !important;
}

.faq-header {
  margin: 0px 35px;
  color: #fff;
  padding: 20px 0px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  /* transition: background-color 0.5s ease; */
  transition: all 0.3s ease;
  gap: 2rem;
}

.faq-title {
  display: flex;
  align-items: self-start;
  gap: 2rem;
}

.faq-number,
.faq-heading-text {
  transition: font-size 0.3s ease;
  font-size: 2.1rem;
  font-family: "bozon-bold";
  color: var(--red);
}

.faq-item.animating-open .faq-number,
.faq-item.animating-open .faq-heading-text {
  transition: font-size 0.3s ease;
}

.faq-item.active .faq-number,
.faq-item.active .faq-heading-text {
  font-size: 1.7rem;
}

.faq-number,
.faq-heading-text,
.faq-icon {
  color: var(--dark-green);
  font-size: 2.1rem;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  font-family: "mon-semiBold";
}

.faq-item.active .faq-number,
.faq-item.active .faq-heading-text,
.faq-item.active .faq-icon {
  color: var(--dark-green);
  font-size: 2.5rem;
  font-family: "mon-semiBold";
}

.faq-icon {
  font-size: 2.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  margin: 0 15px;
  padding: 0 20px;
  /* background-color: var(--blue); */
  transition: max-height 0.5s ease;
}

.faq-content.active {
  max-height: 600px;
  padding: 0px 20px 0px 20px;
}

.faq-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(1, 71, 53, 0.8);
  margin-bottom: 2rem;
  font-family: "mon-regular"; 
}
.faq-text1{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.faq-text2{
  margin-left: 3.8rem;
  margin-right: 3.8rem;
}
.faq-text3{
  margin-left: 4rem;
  margin-right: 4rem;
}
.faq-text4{
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}
.faq-text5{
  margin-left: 4.2rem;
  margin-right: 4.2rem;
}
.faq-text6{
  margin-left: 4.3rem;
  margin-right: 4.3rem;
}
.faq-text7{
  margin-left: 4.3rem;
  margin-right: 4.3rem;
}
.faq-text8{
  margin-left: 4.3rem;
  margin-right: 4.3rem;
}
.faq-text9{
  margin-left: 4.3rem;
  margin-right: 4.3rem;
}
.faq-text10{
  margin-left: 5.2rem;
  margin-right: 5.2rem;
}
.faq-text a {
  display: inline-block;
  font-weight: bold;
  color: var(--dark-green);
  text-decoration: underline;
}

/* =========contact us ========= */
/* =========contact us ========= */
/* =========contact us ========= */
/* =========contact us ========= */
.contact {
  position: relative;
  width: 100%;
  height: 100%;
}

/* .contact .wrapper {
  padding-top: 0rem;
} */

.contact .grid {
  gap: 0;
}

.contact-box {
  background-color: rgb(230, 246, 243);
  padding: 5rem;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.contact-box h2 {
  padding-bottom: 3rem;
}

.contact-box h1 {
  color: var(--blue);
  padding: 2rem 0 2rem 0;
  width: 90%;
}

#cc-para {
  padding-top: 2rem;
  font-family: "light-italic";
}

.contact-box p {
  width: 77%;
  color: rgba(1, 71, 53, 0.8);
}

/* ------- */
.contact-box-right {
  padding: 3rem 5rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background-image: url(assets/contact.png);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-box-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 71, 53, 0.8);
  z-index: 0 !important;
}

.contact-input-flex {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 99 !important;
}

.contact-input-flex input {
  z-index: 99 !important;
  width: 100%;
  padding: 2rem 3rem;
  border: none;
  outline: none;
  border-radius: 1rem;
  color: var(--dark-green);
  font-size: 1.6rem;
  font-family: "mon-regular";
}

input::placeholder {
  color: var(--dark-green);
  font-family: "mon-regular";
}

input {
  color: var(--dark-green);
  font-family: "mon-regular";
}

.cif-inpur input {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "mon-regular";
}

.cfi-message {
  width: 100%;
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  border: none;
  outline: none;
  z-index: 99 !important;
  position: relative;
  font-family: "mon-regular";
  font-size: 1.6rem;
}

.cfi-message::placeholder {
  font-family: "mon-regular";
  font-size: 1.6rem;
}

.contact-agreement {
  display: flex;
  align-items: self-start;
  gap: 1rem;
  margin-top: 3rem;
  font-family: "mon-regular";
}

/* =====custom dropdown select option=========  
     =====custom dropdown select option=========   */
.custom-select-wrapper {
  position: relative;
  min-width: 49%;
}

.custom-select {
  position: relative;
  user-select: none;
}

.select-trigger {
  background: #fff;
  padding: 1.5rem 3rem;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  color: var(--blue);
}

.select-trigger span {
  font-family: "mon-regular";
  font-size: 1.6rem;
  color: var(--dark-green);

  display: block;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-trigger .arrow i {
  color: var(--dark-green);
  font-size: 2.5rem;
  margin-left: 10px;
}

.custom-options {
  position: absolute;
  top: 88%;
  left: 0;
  right: 0;
  background: var(--dark-green);
  z-index: 100;
  display: none;
  flex-direction: column;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.custom-option {
  padding: 0.8rem 3rem;
  cursor: pointer;
  color: var(--white);
  transition: all 0.2s ease-in-out;
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.custom-option:hover {
  color: var(--green);
}

.custom-option.selected {
  color: var(--green);
}

/* =====custom dropdown select option=========  
     =====custom dropdown select option=========   */

/* ===========for check box design in contact us======= */
/* ===========for check box design in contact us======= */

.checkbox-wrapper-19 {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 16px;
  margin-top: 0.5rem;
}

/* ===============================
   KEYFRAMES
================================ */

@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 0.35);
  }
}

@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 0.8);
  }
}

/* ===============================
   HIDE DEFAULT CHECKBOX
================================ */

.checkbox-wrapper-19 input[type="checkbox"] {
  display: none;
}

/* ===============================
   CHECKBOX BOX
================================ */

.checkbox-wrapper-19 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * 0.1) solid #ffffff;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  transition: border-color ease 0.2s;
  cursor: pointer;
}

/* ===============================
   TICK STYLES
================================ */

.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * 0.15); /* 👈 thinner tick */
  background-color: #ffffff;
  display: inline-block;
  transform-origin: left top;
  border-radius: 5px;
  content: "";
  transition: opacity ease 0.3s;
}

/* TOP STROKE */
.checkbox-wrapper-19 .check-box::before {
  top: calc(var(--checkbox-height) * 0.68);
  left: calc(var(--checkbox-height) * 0.4);
  transform: rotate(-135deg);
}

/* BOTTOM STROKE */
.checkbox-wrapper-19 .check-box::after {
  top: calc(var(--checkbox-height) * 0.38);
  left: calc(var(--checkbox-height) * 0.1);
  transform: rotate(-45deg);
}

/* ===============================
   CHECKED STATE
================================ */

.checkbox-wrapper-19 input[type="checkbox"]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
  border-color: #ffffff;
}

.checkbox-wrapper-19 input[type="checkbox"]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
  animation: dothabottomcheck-19 0.2s ease forwards;
}

.checkbox-wrapper-19 input[type="checkbox"]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
  animation: dothatopcheck-19 0.4s ease forwards;
}

/* ===========for check box design in contact us======= */
/* ===========for check box design in contact us======= */
.ca-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 99 !important;
}

.ca-agree p {
  color: var(--white);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.ca-agree a {
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: underline;
  font-family: "mon-regular";
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: var(--green);
  margin: 4rem 1rem 1rem 1rem;
  text-transform: uppercase;
  border-radius: 5rem;
  position: relative;
  border: none;
  cursor: pointer;
  left: 50%;
  width: 208px;
  height: 53px;
  transform: translate(-50%, -6%);
}

.contact-button h6 {
  color: var(--white);
  padding-left: 1rem;
  margin: 0;
  font-size: 1.6rem;
  font-family: "mon-Medium";
}

.contact-button .img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-button .img-wrapper::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-color: var(--white) !important;
  border-radius: 50%;
  z-index: 0;
}

.contact-button .img-wrapper img {
  position: relative;
  z-index: 1;
  width: 1rem;
  /* Optional: adjust image size */
  height: auto;
}

/* =======footer======== */
/* =======footer======== */
/* =======footer======== */
/* =======footer======== */
footer {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--dark-green);
}

footer .grid-four-cols {
  grid-template-columns: 0.6fr 1fr 1fr 0.5fr;
}

.footer-box1 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  text-transform: uppercase;
}

.footer-box1 ul li {
  padding: 1rem 0;
}

.footer-box1 ul li a {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

/* ----  */
.footer-box2 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  text-transform: uppercase;
}

.footer-box2 ul li {
  padding: 0.7rem 0;
}

.footer-box2 ul li span {
  color: var(--green);
  font-size: 1.4rem;
  font-family: "mon-semiBold";
}

.footer-box2 ul li a {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}
.footer-box2 ul li {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.footer-box2-para-mob {
  color: var(--white) !important;
}

.f-emaill {
  text-decoration: underline;
}

/* <!-- ------  --> */

.footer-box3 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  font-size: 1.6rem;
  text-transform: uppercase;
}

footer .footer-para2 {
  padding-bottom: 2.5rem;
}

.footer-box3 ul {
  display: flex;
  gap: 5rem;
}

.footer-box3 ul li p {
}

.fb3-img {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.fb3-img a img {
  width: 80px;
  height: 80px;
}

/* ----------  */
.footer-box4 {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  gap: 1rem;
  height: 62%;
}

.fb4-flex {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fb4-flex img {
  width: 25px;
  height: 25px;
}

.f-gmes-icon {
  width: 130px;
}

/* .f-ff {
  width: 30px !important;
  height: 30px !important;
} */

.subfooter {
  border-top: 1px solid var(--green);
  background-color: var(--dark-green);
  position: relative;
  overflow-x: hidden;
}
.fsc-mobile{
  display: none;
}
.subfooter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;

  max-width: 176rem;
  padding: 2rem 2.8rem 2rem 2.8rem;
}

.subfooter-box div p {
  color: var(--white);
  line-height: 2rem;
}

.subfooter-box div a {
  color: var(--green);
  text-decoration: underline;
}
.footer-sub-company a {
  display: inline-block;
  text-decoration: none !important;
  color: var(--white) !important;
}
.footer-sub-company p,
.footer-sub-company a {
  font-size: 1.2rem;
  font-family: "mon-regular";
}
.devindia{
  margin-right: 34rem;
}
.devindia a {
  color: var(--white);
  text-decoration: none !important;
  font-size: 1.2rem;
}

.devindia a span {
  color: var(--white);
}

/* ==========scroll to top btn========= */
#scrollToTopBtn {
  position: fixed;
  bottom: 105px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  border: 2px solid var(--green);
  color: var(--white);
  font-size: 2rem;
  background-color: var(--green);
}

#scrollToTopBtn i {
}
.footer-box4-mobile {
  display: none;
}
/* =====privacy-po======= */
/* =====privacy-po======= */
/* =====privacy-po======= */
/* =====privacy-po======= */
.privacy-po {
  position: relative;
  width: 100%;
}

.privacy-bg {
  background-image: url(assets/pri.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: relative;
}

.privacy-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 59, 45, 0.8);
  z-index: 0;
}

.pb-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.pb-flex h2 {
  padding-bottom: 2rem;
  z-index: 999 !important;
  color: var(--white);
}

.pb-flex h5 {
  z-index: 999 !important;
  color: var(--white);
}

.pb-flex h5 a {
  color: var(--white);
  display: inline-block;
  font-size: 2.1rem;
}

.privacy-po h2 {
  padding-bottom: 2rem;
}

.privacy-po h5 {
  padding: 2rem 0;
}

.privacy-po ul li {
  font-size: 1.6rem;
  padding: 1rem 0;
  font-family: "mon-regular";
  list-style: circle;
  margin-left: 2rem;
  color: var(--dark-green);
}

/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* Orientation overlay (hidden by default) */
/* overlay default hidden */
.orientation-overlay {
  position: fixed;
  inset: 0;
  display: none;
  /* shown by CSS media query / JS */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background: var(--green);
  pointer-events: auto;
}

.orientation-overlay .box {
  max-width: 720px;
}

.orientation-overlay h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 4.4vw, 25px);
  line-height: 1.05;
  color: var(--overlay-text);
  text-transform: unset !important;
  font-family: "mon-semiBold";
}

 

body.overlay-active {
  overflow: hidden;
  height: 100vh;
}

@media (orientation: landscape) and (max-width: 900px) {
  .orientation-overlay {
    display: flex;
    background: var(--green);
  }

  body {
    overflow: hidden !important;
    height: 100vh !important;
  }

  .box h2 {
    color: var(--white);
  }

  .site {
    filter: blur(1px);
  }
}
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* footer ant-animation */
  .walking-ant {
            width: 30px;
            height: 30px;
            position: absolute;
            /* animation: ant-move 50s linear infinite; */
            transform: rotateY(180deg);
            bottom: 0;
            filter: brightness(0) invert(1);
            right: -50px;
            z-index: 999;
            }
       .logo-container:hover #walking-ant-1{
                      animation: ant-move 60s linear infinite;
        }
      .logo-container:hover  #walking-ant-2{
                        animation: ant-move 60s linear infinite;
                    animation-delay: 20s;
        }
      .logo-container:hover  #walking-ant-3{
                    animation: ant-move 60s linear infinite;
                    animation-delay: 22s;
        }
      .logo-container:hover  #walking-ant-4{
                    animation: ant-move 60s linear infinite;
                    animation-delay: 35s;
        }
      @keyframes ant-move {
            0% {
                right: -20px;
            }
            100% {
                right: calc(100% );
            }
        }

 .walking-ants-container {
            width: 100%;
            position: absolute;
            background-color:var(--dark-green);
            overflow: hidden;
            right: -100%;
            top: 0;
                transition: all 2s ease;
            height: 100%;
        }
   .walking-ants-container h2{
        color: white;
        font-size: 16px;
        text-align: center;
        display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: "mon-regular";
    text-transform: none;
   }      
.logo-container:hover .walking-ants-container{
    right: 0;
    transition: all 2s ease;
}

