:root {
  --dark-brown: #ba9d83;
  --dark-green: #204d52;
  --light-brown: #f1e8e1;
  --white: #ffffff;
  --grey: #e9edee;
  --cards-count: 2;
  --card-height: 550px;
  --light-green: #769193;
}
 
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
@font-face {
  font-family: "light";
  src: url("font/ClarikaProGeo-Lt.woff2") format("woff2"),
    url("font/ClarikaProGeo-Lt.woff2") format("woff");
}
@font-face {
  font-family: "light-italic";
  src: url("font/ClarikaProGeo-LtIt.woff2") format("woff2"),
    url("font/ClarikaProGeo-LtIt.woff2") format("woff");
}
@font-face {
  font-family: "medium";
  src: url("font/ClarikaProGeo-Md.woff2") format("woff2"),
    url("font/ClarikaProGeo-Md.woff2") format("woff");
}
@font-face {
  font-family: "bold";
  src: url("font/ClarikaProGeo-Bd.woff2") format("woff2"),
    url("font/ClarikaProGeo-Bd.woff2") format("woff");
}
@font-face {
  font-family: "thin-italic";
  src: url("font/ClarikaProGeo-ThIt.woff2") format("woff2"),
    url("font/ClarikaProGeo-ThIt.woff2") format("woff");
}
@font-face {
  font-family: "thin";
  src: url("font/ClarikaProGeo-Th.woff2") format("woff2"),
    url("font/ClarikaProGeo-Th.woff2") format("woff");
}
@font-face {
  font-family: "demi-italic";
  src: url("font/ClarikaProGeo-DmIt.woff2") format("woff2"),
    url("font/ClarikaProGeo-DmIt.woff2") format("woff");
}
@font-face {
  font-family: "regular";
  src: url("font/ClarikaProGeo-Rg.woff2") format("woff2"),
    url("font/ClarikaProGeo-Rg.woff2") format("woff");
}
 
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
  /* overflow-x: hidden;  */
    user-select: none;
}

body {
  font-family: "medium", sans-serif;  
    user-select: none;
  /* scroll-behavior: smooth; */
}

h1 {
  font-family: "light", sans-serif;
  font-size: 5rem;
  color: var(--dark-green);
}
h2 {
  font-family: "light", sans-serif;
  font-size: 5rem;
}
h3 {
  font-size: 2.8rem;
  font-family: "thin-italic", sans-serif;
}
h4 {
  font-size: 2rem;
  font-family: "thin", sans-serif;
}
h5 {
  font-size: 2.1rem;
  font-family: "light" !important; 
  color: var(--dark-brown);
}
h6 {
  font-size: 1.4rem;
}
p {
  font-size: 1.6rem;
    font-family: "regular";
    font-weight: 500;
  color: var(--light-green);
}
a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
}
li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 176rem;
  margin: auto;
  padding: 5rem 2.8rem 0rem 2.8rem;
}
.wrapper {
  max-width: 176rem;
  margin: auto;
  padding: 5rem 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;
}
/* ================= */
/* ================= */
/* preloader */
/* ================= */
/* ================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  /* display: none; */
}
/* ================= */
/* ================= */
/* navbar */
/* ================= */
/* ================= */
header {
  /* background-color: var(--dark-green); */
  width: 100%;
  position: fixed;
  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;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav ul li a {
  text-transform: capitalize;
  color: var(--white);
   font-family: "regular";
    font-weight: 500;
   opacity: 0.8;
   position: relative;
     transition: color 0.3s ease, opacity 0.3s ease;
}
nav ul li a.active {
  opacity: 1; 
}
nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* text ke thoda niche */
  width: 100%;
  height: 2px;
  background-color: var(--white); /* underline ka color */
  border-radius: 2px;
}
.logo img {
  height: 6rem;
}
.btn {
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--dark-brown);
     padding: 1.7rem 2.5rem;
    border-radius: 1rem;
}
/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
#menu-toggle {
  display: none;
}
/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
/* ================= */
/* ================= */
/* banner */
/* ================= */
/* ================= */
.banner {
  background-image: url("assets/hero-slider.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 90vh;
  position: relative; 
}
.banner-data{
  position: absolute;
  top: 60%;
  left: 10rem;
  transform: translateY(-50%);
  width: 80%;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 77.4038%,
    rgba(0, 0, 0, 0.788) 100%
  );
}

.banner .wrapper {
  text-align: left; /* Optional: limit width for better layout */
  width: 100%; /* Prevents shrinking */
}
.banner .wrapper h1 {
  /* width: 50%; */
  font-size: 6rem;
  padding-bottom: 2rem;
  line-height: 5.5rem;
  text-transform: uppercase;
  color: var(--white);
}
.banner .wrapper p { 
  padding-bottom: 3rem;
  color: var(--white);
}
/* ================= */
/* ================= */
/* right choice */
/* ================= */
/* ================= */
.right-choice {
  position: relative;
  width: 100%;
  background-color: var(--light-brown);
}
.right-choice .wrapper {
  padding: 4rem 2.8rem;
}
/* .right-choice-left {
  max-width: 40%;
} */
 .mobile-rc-h3{
  display: none;
 }
.right-choice-left h3 {
  color: var(--dark-green);
  font-family: "medium" !important;
  font-weight: 500;
  font-style: italic;
}
.right-choice-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-choice-item h4 {
  color: var(--dark-green);
  padding-bottom: 1.5rem;
    font-family: "medium" !important;
  font-weight: 500; 
}
.right-choice-item span::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: var(--dark-brown);
}
.right-choice-item a {
  color: var(--dark-green);
  text-decoration: underline;
  padding-top: 1.5rem;
  font-size: 1.4rem;
}
/* ================= */
/* ================= */
/* Overview */
/* ================= */
/* ================= */
.Overview {
  position: relative;
  width: 100%;
  background-image: url("assets/overview.svg");
  background-size: cover; /* keep original size */
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  /* min-height: 50vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}

.overview-btn {
  display: inline-flex; /* Or flex if you want full-width */
  align-items: center;
  gap: 3rem;
  background-color: var(--dark-green);
    padding: 1rem 1.5rem;
  border-radius: 1rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.overview-btn p {
  color: var(--white);
  font-size: 1.2rem;
}

.overview-btn i {
  color: var(--white);
  background-color: var(--dark-brown);
    padding: 0.3rem;
    border-radius: 0.5rem;
    font-size: 1.8rem;
}

.overview-para {
  max-width: 35%;
  padding: 4rem 0;
  text-align: justify;
  line-height: 1.6;
}
.overview-para span {
  font-family: "medium" !important;
  font-weight: 600;
}
.overview-data h1 {
  padding-top: 2rem;
  text-transform: uppercase;
}
/* ================= */
/* ================= */
/* about us */
/* ================= */
/* ================= */
.about {
  position: relative;
  width: 100%;
  min-height: 100vh; 
  overflow-x: hidden !important;
}
.about .wrapper{
  padding-bottom: 0rem;
}
.abut-sub-heading {
  padding-bottom: 2rem;
  text-align: center;
}
.about-data {
  text-align: center;
  width: 100%;
  /* margin: 0 auto;  */
}
.fade-text {
  width: 75%;  
  margin: 0 auto;
  font-size: 3.2rem; 
  color: #1e6168e5;
  line-height: 1.6;
   font-family: "light";
}
.fade-text span {
  display: inline;
}

/* ==========bus left to right animation===========
 ==========bus left to right animation===========
 ==========bus left to right animation===========
 ==========bus left to right animation===========
 ==========bus left to right animation=========== */
/* ====== Section ====== */

 

/* ====== Bus ====== */
 
.journey-section {
  position: relative;
  height: 48vh;
  overflow: hidden;
}

.journey-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
  
 .journey-text {
    position: absolute;
    text-align: center;
    color: var(--dark-green);
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
} 
#Layer_11, #Wheel, #Wheel1 {
  position: absolute;
  bottom: 10%;
  z-index: 10; /* bus appears above sections */
}

.st82, .st83{
  z-index: -2 !important;
  /* width: 100vw; */
}
/* .st83{    
  position: relative;
  animation: moveLine 2s linear infinite;
}
@keyframes moveLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);  
  }
} */
.journey-text .word {
  opacity: 0; 
  z-index: -1;
    display: inline-block;  /* required by SplitType */
  position: relative;
}
 

/* ================= */
/* ================= */
/* Company Ethos */
/* ================= */
/* ================= */
.ethos{
  width: 100%;
  position: relative;
  /* height: 100vh; */
}
.ethos .wrapper{
  padding-top: 4rem;
}
.gallery-container {
  /* max-width: 1400px; */
  width: 100%;
  /* background: white; */
  overflow: hidden;
  position: relative;
}

.ethos-data h2 {
  color: var(--dark-green);
  padding-top: 2rem;
  padding-bottom: 5rem;
  text-transform: uppercase;
}

.gallery-wrapper {
  display: flex;
  height: 500px; 
}

.gallery-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  flex: 1; /* sabka equal by default */
  padding: 6rem;
}
.center-gallery {
  margin: 0 40px;
}

.gallery-item.active {
  flex: 5;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); */
  z-index: 1;
  transition: all 0.8s ease;
}

.gallery-item.active::before {
  /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.151)
  ); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* Vision - Forest/Nature Theme */
.gallery-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
    url("assets/vision.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
}

/* Mission - Wind Energy Theme */
.gallery-item:nth-child(2) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)),
    url("assets/missionss.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Values - Electric/Green Theme */
.gallery-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)),
    url("assets/valuess.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  color: white;
  z-index: 2;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
}

.gallery-item.active .gallery-content {
  transform: translateY(0);
}

.gallery-category {
  color: var(--dark-brown);
  font-family: "medium" !important;
  font-weight: 500;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.gallery-item.active .gallery-category {
  opacity: 1;
  transform: translateY(0);
}

.gallery-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.gallery-item.active .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

.gallery-description {
  transform: translateY(40px);
  transition: all 0.8s ease 0.6s;
  max-width: 98%;
  color: var(--white);
  line-height: 1.6;
}
.gallery-li {
  font-size: 1.6rem;
  font-family: "light", sans-serif;
  list-style: disc;
  margin-left: 1.5rem;
}
.gallery-li span {
  font-family: "medium", sans-serif;
}

.gallery-item.active .gallery-description {
  opacity: 1;
  transform: translateY(0);
}

.progress-container {
  padding: 40px 0px 0px;
  display: flex;
  gap: 3rem;
}

.progress-bar {
  height: 6px;
  background: rgba(47, 82, 51, 0.1);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1; /* default flexible growth */ 
}
/* Use flex-grow ratios instead of fixed pixels */
 

.progress-bar.active {
  background: rgba(47, 82, 51, 0.3); /* highlight active */
  flex:3;
}

.progress-bar:hover {
  background: rgba(47, 82, 51, 0.2);
  transform: scaleY(1.5);
}

.progress-fill {
  height: 100%;
  background: #2f5233;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-bar.active .progress-fill {
  animation: progress 5s linear forwards;
  /* width: 100%; */
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
   

  .gallery-content {
    padding: 40px;
  }

  .gallery-title {
    font-size: 28px;
  }

}

@media (max-width: 768px) {
  /* .header {
    padding: 40px;
    text-align: center;
  } */

  .main-title {
    font-size: 28px;
  }

  .gallery-wrapper {
    flex-direction: column;
    height: auto; 
  }

  .gallery-item {
    height: 100px;
    margin: 10px 0;
    flex: none !important;
  }

  .gallery-item.active {
    height: 400px;
  }

  .gallery-content {
    padding: 30px;
    /* position: relative; */
    /* transform: none; */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }

  .gallery-category,
  .gallery-title,
  .gallery-description {
    opacity: 1;
    transform: none;
    transition: none; 
  }
.gallery-description{
  max-width: 100%;
          text-align: justify;
}
  .progress-container {
    padding: 20px 0px;
  }
}

/* Loading Animation */
.gallery-item {
  animation: slideInUp 0.6s ease forwards;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= */
/* ================= */
/* Our Leadership mobile */
/* ================= */
/* ================= */
.leader-mobile{  
  display: none; 
}
.leader-mobile-hide1, .leader-mobile-hide2{
  display: none;
}
/* ================= */
/* ================= */
/* Our Leadership */
/* ================= */
/* ================= */
.leadership {
  position: relative;
}

 
.leadership-left h2 {
  color: var(--dark-green);
  text-transform: uppercase;
  padding-top: 3rem;
}
.leadership-right .lr-image {
  position: relative;
}
.lr-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.lr-image i {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 3rem;
  color: var(--dark-green);
  background: var(--white);
  border-radius: 0.5rem;
  padding: 0.2rem;
  cursor: pointer;
  font-size: 2.5rem;
}
.lr-box h4 {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  color: var(--dark-green);
  font-size: 2.1rem;
}
.lr-box p {
  color: #204d527c;
  font-family: "light-italic", serif;
  font-size: 1.8rem;
}
/* ================= */
/* ================= */
/* Our Leadership hide section */
/* ================= */
/* ================= */
.hide-leadership {
  position: relative;
  background-color: var(--grey);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.hide-leadership.show1 {
  max-height: 1000px; /* Large enough to fit content */
}
.hide-leadership.show2 {
  max-height: 1000px; /* Large enough to fit content */
}
.hide-leadership-left {
  padding-top: 5rem;
}
.hide-leadership-left h2 {
  color: var(--dark-green);
  text-transform: uppercase;
  padding-top: 3rem;
}
/* =======right======= */
.hide-leadership-right {
  background-color: var(--light-brown);
}
.hl11 .wrapper{
  padding: 5rem 0rem 5rem 2.8rem;
}
.hide-leadership .grid-two-cols {
  grid-template-columns: 1fr 1.5fr;
}
.hide-leadership-right-box {
  position: relative;
    padding: 10rem 4rem;
}
.hide-leadership-right-box i {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 3rem;
  color: var(--white);
  background: var(--dark-brown);
  border-radius: 0.5rem;
  padding: 0.2rem;
  cursor: pointer;
  font-size: 2.2rem;
}
.hlrb-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}
.hlrb-right h4 {
  color: var(--dark-green);
  padding-bottom: 0.2rem;
}
.hlrb-right .hlr-cf { 
  padding-bottom: 0.2rem;
  font-family: "light-italic", serif;
}
.hlr-para {
  padding-top: 4rem;
  text-align: justify;
  width: 90%;
  line-height: 1.6;
  color: var(--dark-green);
}
.hlr-para span {
  font-family: "medium", serif;
  font-weight: 600;
}
.hlrb-box img {
  width: 40%;
  height: auto;
  border-radius: 1rem;
}









/* ================== */
/* ================== */
/* solution section  */
/* ================== */
/* ================== */
/* ================== */
.solution {
  position: relative;
}
.solution-data {
  margin-bottom: 6rem;
  /* position: sticky;
  top: 5%; */
}
.solution-data h2 {
  color: var(--dark-green);
  text-transform: uppercase;
  padding-top: 1rem;
}

.solution-data p {
  width: 50%;
  padding-top: 3rem;
  line-height: 1.6;
}

/* ========cards======== */

.card {
  position: sticky;
  top: 8%;
}
.card .grid-two-cols{
  grid-template-columns: 1.5fr 1fr;
}
.card2 {
  position: sticky;
  top: 15%;
  margin-top: 5rem;
}
.card3 {
  position: sticky;
  top: 22%;
  margin-top: 5rem;
}
.card4 {
  position: sticky;
  top: 29%;
  margin-top: 5rem;
}
.card5 {
  position: sticky;
  top: 36%;
  margin-top: 5rem;
}

.card__inner {
  will-change: transform;
  border-radius: 2rem;
  background-color: var(--dark-green);
  padding: 5rem ;
  transition: background-color 0.3s ease;
}
.card__inner__1,
.card__inner__2,
.card__inner__3,
.card__inner__4,
.card__inner__5 {
  will-change: transform;
  border-radius: 2rem;
  /*  */
  padding: 5rem ;
}
.card__inner__5 {
  background-color: var(--dark-green);
}

.cards {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  gap: 40px 0;
}
.cards::after {
  content: "";
  display: block;
  height: 50vh; /* or more, depending on how long you want the last card to stay */
}
.card__image-container img{
  display: none;
}
.card__image-container h3 {
  color: var(--dark-brown);
  /* padding-bottom: 2rem; */
  font-family: "light", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
}
/* .cic-white h3 {
  color: var(--white) !important;
} */
.card__image-container h3::before {
  content: "";
  width: 7rem;
  height: 0.4rem;
  position: absolute;
  background-color: var(--dark-brown);
  bottom: -3rem;
  border-radius: 1rem; 
}
.card-flex-icons-text {
  display: flex;
  gap: 3rem;
  position: relative;
}

 
.card-content-r-r-r h3 {
  color: var(--dark-brown);
  padding-bottom: 1rem;
    font-family: "demi-italic";
  font-size: 2.1rem;
  font-weight: 700;
}
.card-content-r-r-r p {
  color: var(--white);  
}
.card-content-r-r-r:nth-child(1) {
  padding-bottom: 4rem;
}
.card-content-r-r-r:nth-child(2) {
  padding-bottom: 4rem;
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__image {
    aspect-ratio: 16 / 9;
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }

   
}
/* ================== */
/* ================== */
/* Ready to Make the Switch to Sustainable Mobility?  */
/* ================== */
/* ================== */
/* ================== */
.ready-to-make {
  position: relative;
  background-image: url("assets/readyToMake.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 85vh;
  z-index: 0; /* Base stacking context */
  width: 100%;
}

.ready-to-make::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.842) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;  
}

.ready-to-make .wrapper {
  position: relative;
  z-index: 2; 
  padding: 5rem 2.8rem;
}

.ready-to-make-box {
  text-align: center;
  color: var(--white);
}
.ready-to-make-box h1 {
  color: var(--white);
  text-transform: uppercase;
  width: 60%;
  margin: 0 auto;
}
.ready-to-make-box p {
  color: var(--white);
  width: 25%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ready-to-make-box .ready-to-make-btn {
      background-color: var(--white);
    display: inline-block;
     padding: 2rem 3rem;
    border-radius: 1.1rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--dark-green);
}
/* ================== */
/* ================== */
/* Future Plan  */
/* ================== */
/* ================== */
/* ================== */
.future-plan {
  position: relative;
  background-image: url("assets/future_plan_overlay.svg");
  background-position: center;
  width: 100%;
  height: 100%;
}
.future-plan-box h5 {
  color: var(--dark-green);
}
.future-plan-box h2 {
  color: var(--dark-green);
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom:3rem;
}
/* ======= */
.future-plan-data {
  margin-top: 5rem;
}

.future-plan-data-list h3 {
  font-family: "light", sans-serif;
  color: var(--dark-brown);
  padding-bottom: 2rem;
}
.future-plan-data-list p {
  line-height: 1.6;
  text-align: justify;
  width: 80%;
}
.future-plan-h4 {
  padding-top: 4rem;
  color: var(--light-green);
}
/* ================== */
/* ================== */
/* Future Plan  */
/* ================== */
/* ================== */
/* ================== */
.choose-ziel {
  position: relative;
}
.mobile-cz{
  display: none;
}
.choose-ziel-box h2 {
  color: var(--dark-green);
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.choose-ziel-box img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  /* object-fit: cover; */
  padding-top: 5rem;
  padding-bottom: 7rem;
    overflow: hidden;
}
.choose-ziel-three-box .grid {
  gap: 15rem;
}

.choose-ziel-three-box-data h3 {
  font-family: "light", sans-serif;
  color: var(--dark-brown);
  padding-bottom: 4rem;
  letter-spacing: 0.1rem;
}
.cztbd-para{
background-color: #fbf8f5;
  padding: 4rem 3rem;
  border-radius: 1rem;
  height: 380px;          /* fixed height as you wanted */
  position: relative;
  overflow: hidden;       /* default hidden */
  transition: all 0.2s ease;
}
/* ====== CSS ====== */
.cztbd-para-scroll {
  background-color: #fbf8f5;
  padding: 4rem 3rem;
  border-radius: 1rem;
  height: 380px;          /* fixed height as you wanted */
  position: relative;
  overflow: hidden;       /* default hidden */
  transition: all 0.2s ease;
}

/* Enable inner scroll and prevent scroll-chaining to the page */
.cztbd-para-scroll.expanded {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;  /* <--- key */
  scrollbar-width: thin;         /* optional */
}

.cztbd-para-scroll:focus {
  outline: none;
}

/* button */
.read-more-btn-scroll {
    position: sticky;
    bottom: -40px;
    left: 0;
    min-width: 100%;
    color: var(--dark-green);
    cursor: pointer;
    text-decoration: underline;
    border: none;
    outline: none;
    background: #fbf8f5;
    padding: 1rem;
    text-align: left;
    z-index: 10; 
}

.cztbd-icon-div {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}
.dot-icon {
  padding-top: 1.2rem;
  font-size: 0.5rem;
}
.cztbd-icon-div i {
  color: var(--dark-green) !important;
}
 
.cztbd-para p {
  font-size: 1.6rem;
  list-style: disc;
  text-align: justify;
  line-height: 1.6;
}
.cztbd-para p span {
  font-family: "medium", serif;
  color: var(--dark-green);
}
.cztbd-para p:nth-child(1) {
  padding-bottom: 1rem;
}
.cztbd-para p:nth-child(2) {
  padding-bottom: 1rem;
}
.cztbd-para p:nth-child(3) {
  padding-bottom: 1rem;
}
.cztbd-para p:nth-child(4) {
  padding-bottom: 1rem;
}
#fb, #eb, #sb {
  scroll-margin-top: 300px;  
}
/* ================== */
/* Contact Us  */
/* ================== */
/* ================== */
/* ================== */
.contact {
  position: relative;
  background-image: url("assets/f-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  padding-bottom: 6rem;
    padding-top: 6rem;
}
 
.contact-left h1 {
  color: var(--white);
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.contact-left p {
  color: var(--white);
  width: 80%;
  line-height: 1.6; 
}
.form-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.form-box input {
  padding: 2rem;
  border-radius: 1rem;
  border: none;
  outline: none;
  width: 70%;
  margin-bottom: 1.5rem;
  background-color: var(--dark-brown);
  font-family: "light";
  color: var(--white);
  font-size: 1.6rem;
  width: 95%;
}
.form-box input::placeholder {
  color: var(--white);
  font-size: 1.6rem;
  font-family: "light" serif;
}
/* =====custom dropdown select option=========  
     =====custom dropdown select option=========   */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

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

.select-trigger {
    background: var(--dark-brown);
    padding: 1.8rem;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    color: var(--white);
    position: absolute;
    width: 100%;
    top: -39px;
    font-family: "light";
}

.select-trigger span {
  font-size: 1.6rem;
  font-family: "light" serif;
}

.select-trigger .arrow i {
  font-size: 2.2rem;
  margin-left: 10px;
}

.custom-options {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  background: var(--dark-brown);
  z-index: 99;
  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: "light" serif;
}

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

.custom-option.selected {
  color: var(--white);
}
textarea {
  padding: 2rem;
  border-radius: 1rem;
  border: none;
  outline: none;
  width: 70%;
  margin-bottom: 2rem;
  background-color: var(--dark-brown);
  font-family: "light";
  color: var(--white);
  font-size: 1.6rem;
  width: 100%;
}
textarea::placeholder {
  color: var(--white);
  font-size: 1.6rem;
  font-family: "light" serif;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
/* ========contact tick box====== */
/* ========contact tick box====== */
/* ========contact tick box====== */
/* ========contact tick box====== */
.checkbox-wrapper-19 {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 17px;
}

@-moz-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

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

.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;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}

.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * 0.2);
  background-color: #ffffff;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}

.checkbox-wrapper-19 .check-box::before {
  top: calc(var(--checkbox-height) * 0.72);
  left: calc(var(--checkbox-height) * 0.45);
  box-shadow: 0 0 0 calc(var(--checkbox-height) * 0) var(--background-color);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.checkbox-wrapper-19 .check-box::after {
  top: calc(var(--checkbox-height) * 0.37);
  left: calc(var(--checkbox-height) * 0.05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.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 {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.checkbox-wrapper-19 input[type="checkbox"]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}
.contact_pt {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
.contact_pt p {
  color: var(--white);
}
.contact_pt p a {
  display: inline-block;
  color: var(--white);
  text-decoration: underline;
}
.contact-btn-box {
  margin-top: 3rem;
}
.contact-btn-box button {
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background-color: var(--dark-green);
}
.contact-btn-box button p {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.2rem;
}
.contact-btn-box button i {
  color: var(--white);
  background-color: var(--dark-brown);
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}
/* ============ */
/* ============ */
/* ============ */
/* faq  */
/* ============ */
/* ============ */
.faq {
  position: relative;
}
.faq-heading-faq {
  text-align: center;
}
.faq-heading-faq h2 {
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 5rem !important;
  color: var(--dark-green) !important;
}

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

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

}
.faq-item.closing {

  background-color: inherit !important; /* 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 {
  background-color: transparent !important;
  margin-bottom: 15px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--grey) !important;
  margin: 15px 0rem;

  transition: none;

 
}

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

.faq-header {
  margin: 0px 35px;
  color: var(--dark-green) !important;
  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;

  background-color: inherit !important;
  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: "light", sans-serif !important;
  font-weight: 600;
  color: var(--dark-green) !important;
}
.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);
  /* transition: color 0.3s ease, transform 0.3s ease; */
  font-size: 2.1rem;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
}

.faq-item.active .faq-number,
.faq-item.active .faq-heading-text,
.faq-item.active .faq-icon {
  color: var(--gray) !important;
}

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

.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 {
  line-height: 1.6;
  color: var(--light-green) !important;
  margin-bottom: 2rem;
  font-family: "light", sans-serif;
  font-weight: 500;
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}
.faq-text span{
  font-weight: 600;
}
 
 
/* =============== */
/* =============== */
/* footer */
/* =================== */
/* =================== */
footer {
  background-color: var(--dark-green);
}
.fp-mobile, .fl-mobile{
  display: none;
}
footer .wrapper {
  padding: 5rem 2.8rem;
}
footer .grid-four-cols {
    grid-template-columns: 1fr 1.5fr 0.5fr 1fr;
}
/* Footer nav links */
.ul-footer-links li a {
  color: var(--white);
  font-family: "regular";
  font-weight: 500;
  opacity: 0.8;
  position: relative;  
  transition: color 0.3s ease, opacity 0.3s ease;
}

.ul-footer-links li a.active {
  opacity: 1; 
}

.ul-footer-links li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width:100%;
  height: 1px;
  background-color: var(--white); /* Active underline color */
  border-radius: 2px;
}

.footer-box h5 {
  text-transform: uppercase;
  padding-bottom: 2rem;
  font-size: 1.6rem;
}
.footer-box ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}
.footer-box ul li a {
  color: var(--white);
  font-family: "light", serif;
  font-weight: 500; 
}
 
 
 
.footer-box-2 .f-zmsptd {
  color: var(--dark-brown);
  font-family: "medium", serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0;
}
.footer-box-2 p:nth-child(3) {
  color: var(--white);
  /* width: 80%; */
}
.footer-box-2 a {
  color: var(--white);
  font-family: "medium", serif;
  text-decoration: underline;
  padding: 2rem 0;
}
.f-p-no-link{
  color: var(--white);
  padding: 0 !important;
  text-decoration: none !important;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.footer-logos img {
  width: 70px;
  height: 70px;
}
.fsi-flex {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  justify-content: flex-end;
}
.fsi-flex-1 {
  padding-top: 3rem;
}
.fsi-flex-2 {
  padding-top: 2rem;
}
.fb-icon {
  width: 25px;
  height: 25px;
}
.footer-boder {
  border: 1px solid var(--dark-brown);
}
.footer-sub {
  padding: 2rem 2.8rem;
  max-width: 176rem;
  margin: auto;
}
.fs-data-box {
  display: flex;
  justify-content: space-between;
}
.fx-data p {
  color: var(--white);
}
.fx-data p a {
  display: inline-block;
  color: var(--dark-brown);
  text-decoration: underline;
}
.pptc {
  color: var(--dark-brown) !important;
}


.second-animated-text .wrapper{
  padding-top: 0rem;
}
/* ==========scroll to top btn========= */
#scrollToTopBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  display: none; /* hidden by default */
  border: none;
  background-color: transparent;
}

#scrollToTopBtn img {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  border: 2px solid var(--dark-green);
  transition: border-color 0.3s ease;
}

/* button visible state */
#scrollToTopBtn.show {
  display: block;
}

/* footer viewport me aane par */
#scrollToTopBtn.in-footer img {
  border-color: pink;
}



/* .reveal-section {
  opacity: 0;
  transform: translateY(50px); 
} */
 /* ===========privacy policy========= */
 /* ===========privacy policy========= */
 /* ===========privacy policy========= */
 /* ===========privacy policy========= */
 /* ===========privacy policy========= */
 #p-header{
  background-color: var(--dark-green);
 }
 .privacy{
  padding-top: 8rem;  
  line-height: 1.6;
 }
 .privacy p a{
  display: inline-block;
  color: var(--dark-green);
 }
  .privacy p{
    color: var(--dark-green);
  }
.privacy-title {
  /* font-size: 2.8rem; */
  margin-bottom: 5rem;
  text-align: center;
  /* color: #222; */
}
.privacy h3  {
   font-size: 2rem;  
  color: var(--dark-green); 
  font-style: normal !important;
}
.privacy h4{
font-size: 1.6rem;  
  color: var(--dark-green); 
  font-style: normal !important;
}
.privacy-subtitle {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.privacy-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.privacy-list li {
  color: var(--dark-green);
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.6rem;
}

.privacy-list li::before {
  content: "•";
  position: absolute;
  left: -1.5rem;
  /* color: #0077cc; */
  font-size: 1.2rem;
  line-height: 1;
}

 

.privacy-policy a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 2rem;
  }
  .privacy-title {
    font-size: 2.2rem;
  }
  .privacy-subtitle {
    font-size: 1.6rem;
  }
}