*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --scroll-behavior: smooth;
  --default-font: "Jost", sans-serif;
  --sub-heading: "Open Sans", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  height: auto;
  width: 100%;
  font-style: normal;
  font-weight: 300;
  color: #fff;
  background-color: #272727;
  font-size: 16px;
  line-height: 1.7em;
}

img {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0 0 25px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2em;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 65px;
  color: #ffffff;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  margin: 0 0 15px 0;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #000;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.cmn-gap {
  padding: 100px 0;
}

.cmn-hd {
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}

.cmn-hd::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  opacity: 0.5;
  background-color: #d8d8d8;
}

.cmn-hd.text-center::before {
  left: 50%;
  transform: translateX(-50%);
}

.sub-hd {
  font-size: 26px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.6;
}

.cmn-hd:last-child {
  margin-bottom: 0px;
}

/* Button Wrapper */
.cmn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 5px;
  overflow: hidden;
  font-family: var(--sub-heading);
  border-radius: 100px;
  background: #d5f45a;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}

.btn-text {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.btn-text-wrap {
  display: inline-flex;
  overflow: hidden;
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 100px;
  position: relative;
  min-width: 100px;
  margin-right: 40px;
  transition: all 0.3s ease-in-out;
  justify-content: center;
}

.btn-text-wrap::before {
  content: attr(data-text);
  position: absolute;
  bottom: -15px;
  opacity: 0;
  font-family: var(--sub-heading);
  transition: all 0.4s ease-in-out;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
}

.cmn-btn:hover .btn-text-wrap::before {
  bottom: 12px;
  opacity: 1;
}

.cmn-btn:hover .btn-text {
  transform: translateY(-30px);
  opacity: 0;
}

.btn-arrow {
  color: #000;
  font-size: 22px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 15px;
}

.btn-arrow::after {
  content: "\f061";
  font-family: "fontawesome";
  position: absolute;
  transition: all 0.3s ease-in-out;
  left: -30px;
  opacity: 0;
  z-index: -1;
}

.cmn-btn:hover .btn-arrow {
  right: -20px;
}

.cmn-btn:hover .btn-arrow::after {
  left: -35px;
  opacity: 1;
}

.cmn-btn-wht {
  background-color: #0d4f2b;
}

.cmn-btn-wht .btn-text-wrap {
  background-color: #fff;
}

.cmn-btn-wht .btn-text-wrap::before,
.cmn-btn-wht .btn-text {
  color: #000;
}

.cmn-btn-wht .btn-arrow {
  color: #fff;
}











/*------------------------------- start---------------------------- */
/* header */

.site-header {
  padding: 30px 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  transition: all 0.3s ease-in-out;
}

.btn-wht-only {
  padding: 3px;
}

.site-header.is-scrolled {
  background-color: #272727;
    position: fixed;
  padding: 20px;
    transition: all 0.3s ease-in-out;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr;
  align-items: center;
}

.nav-wrap-logo {
  max-width: 250px;
}

.nav-wrap-logo a {
  display: inline-block;
}

.mobile-toggle {
  display: none;
}

.nav-wrapper .btn-text-wrap::before,
.nav-wrapper .btn-text {
  font-size: 12px;
}

.nav-wrapper .btn-arrow {
  font-size: 14px;
}

.nav-wrapper .btn-text-wrap {
  padding: 8px 13px;
  margin-right: 33px;
}

.nav-wrapper .cmn-btn {
  min-height: 46px;
}

.nav-wrapper .cmn-btn:hover .btn-text-wrap::before {
  bottom: 9px;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-around;
}

.main-nav ul li.active a {
  color: #d5f45a;
}

.main-nav ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 5px 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 0%;
  height: 1px;
  background-color: #d5f45a;
}

.main-nav ul li a:hover {
  color: #d5f45a;
}

.main-nav ul li a:hover::after {
  left: 0;
  right: unset;
  width: 100%;
}

.main-nav ul li.active a::after {
  width: 100%;
}

.main-nav-btns {
  display: none;
}

.btn-wht-only {
      background-color: #69d14d;
}

.btn-wht-only .btn-text-wrap {
  background-color: #272727;
}

.btn-wht-only .btn-text {
  color: #fff;
}

.btn-wht-only .btn-arrow {
  color: #000;
}

.btn-wht-only .btn-text-wrap::before {
  color: #fff;
}

.header-actions-collab {
  padding-right: 20px;
  position: relative;
}

.header-actions-collab::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0 , -50%);
  width: 1px;
  height: 40%;
  background-color: #ffffff83;
}

/* responsive */

@media (max-width: 1440px) {
  .site-header .container {
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .nav-wrap-logo {
    max-width: 200px;
  }

  .nav-wrapper .btn-text-wrap {
    padding: 4px 9px;
    margin-right: 33px;
  }

  .header-actions {
    gap: 10px;
  }

  .main-nav ul {
    gap: 40px;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-actions .cmn-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
    border: 2px solid #d5f45a;
    background-color: #d1ea67;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 2px;
    color: #272727;
  }

  .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    padding: 20px 12px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;

    width: 310px;
    max-width: 90%;
    height: 100vh;

    background-color: #d5f45a;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 70px 20px 20px;

    z-index: 9999;

    /* GSAP controls animation */
    visibility: hidden;
  }

  .main-nav ul li a {
    color: #000;
    font-size: 16px;
  }

  .main-nav ul {
    gap: 15px;
    flex-direction: column;
  }

  .main-nav ul li {
    opacity: 0;
  }

  .main-nav-btns a {
    opacity: 0;
  }

  .main-nav ul li.active a {
    color: #000;
    font-weight: 600;
  }

  .main-nav ul li.active a::after {
    background-color: #000;
  }

  .main-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .main-nav-btns a {
    width: 100%;
    display: inline-block;
    background-color: #272727;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    padding: 7px 0;
  }

  .main-nav-btns a.btn-sm-gr {
    background-color: #fff;
    color: #272727;
  }

  .main-nav-btns .mobile-toggle {
    position: absolute;
    top: 20px;
    right: 20px;

    background-color: #272727;
    border: none;
    color: #fff;
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 15px 0px;
  }

  .mobile-toggle {
    border: 1px solid #d5f45a;
    width: 30px;
    height: 30px;
  }
}

/* header end */

/* banner */
.banner {
  padding: 0 25px;
}

.banner-wrap {
  background-color: #d5f45a;
  background-image: linear-gradient(180deg, #d1ea67, #fff);
  background-size: auto, contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  position: relative;
  padding: 200px 0 50px;
  z-index: 1;
}

.water-txt-banner {
  background-image: linear-gradient(
    180deg,
    #18472f66,
    transparent 75%,
    transparent
  );

  text-align: center;
  letter-spacing: -10px;
  text-transform: uppercase;
  white-space: nowrap;

  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  font-size: clamp(70px, 8.3vw, 160px);

  opacity: 0.5;
  line-height: 1;

  position: absolute;
  top: 10%;
  left: 50%;

  transform: translateX(-50%);

  pointer-events: none;
}

.banner-col-cont h1 {
  color: #272727;
}

.banner-col-cont p {
  color: #272727;
  font-size: 20px;
  margin-bottom: 30px;
}

.banner-card {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-left: auto;
  background-color: #fffc;
  border: 1px solid #fff6;
  border-radius: 1rem;
  padding: 1.125rem 1.25rem;
  box-shadow: 0 0 30px #33333321;
}

.banner-card-img {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 62%;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  user-select: none;
}

.banner-card-cont {
  padding-top: 20px;
  position: relative;
}

.banner-card-cont h3 {
  color: #272727;
  font-weight: 400;
  margin-bottom: 5px;
}

.banner-card-cont p {
  color: #272727;
  opacity: 0.8;
  margin: 0;
}

.banner-card-btn {
  position: absolute;
  right: 0;
  top: 20px;
  transform: rotate(-40deg);
  width: 45px;
  height: 45px;
  border: 2px solid #0d4f2b;
  color: #0d4f2b;
  border-radius: 100%;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}

.banner-card:hover .banner-card-btn {
  background-color: #0d4f2b;
  transform: rotate(0deg);
  color: #fff;
}

@media (max-width: 991px) {
  .banner {
    padding: 0 12px;
  }

  .banner-wrap {
    padding: 120px 0 40px;
    border-radius: 16px;
    overflow: hidden;
  }

  .water-txt-banner {
    font-size: clamp(50px, 15vw, 100px);
    letter-spacing: -4px;
    top: 5%;
  }

  .banner-col-cont h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  .banner-col-cont p {
    font-size: 17px;
    line-height: 1.6;
  }

  .banner-card {
    max-width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .banner-wrap {
    padding: 95px 0 30px;
  }

  .water-txt-banner {
    font-size: 12.5vw;
    letter-spacing: -2px;
  }

  .banner-col-cont h1 {
    font-size: 38px;
  }

  .banner-col-cont p {
    font-size: 15px;
  }

  .banner-card {
    padding: 14px;
  }

  .banner-card-cont h3 {
    font-size: 22px;
  }

  /* button */
  .btn-text-wrap::before,
  .btn-text {
    font-size: 12px;
  }

  .btn-arrow {
    font-size: 14px;
  }

  .btn-text-wrap {
    padding: 8px 13px;
    margin-right: 33px;
  }

  .cmn-btn {
    min-height: 46px;
  }

  .cmn-btn:hover .btn-text-wrap::before {
    bottom: 9px;
  }

  .banner-card-btn {
    top: 20px;
    border: 1px solid #0d4f2b;
    width: 40px;
    height: 40px;
  }
}

/* banner end */

/* LOGO SLIDER  */

.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.logo-slider-wrap {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.logo-slider-col {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 15px;
  white-space: nowrap;
  display: flex;
  gap: 12px;
}

.logo-slider-col span {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.logo-slider-col i {
  color: #d5f45a;
  font-size: 30px;
  line-height: 1;
  font-style: normal;
}

@media (max-width: 991px) {
  .logo-slider {
    padding: 26px 0;
  }

  .logo-slider-col span {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .logo-slider {
    padding: 35px 0;
  }

  .logo-slider-col span {
    font-size: 18px;
    letter-spacing: 0;
  }

  .logo-slider-col i {
    font-size: 18px;
  }
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-sec {
  padding: 100px 0 0;
  background-color: #fff;
  overflow: hidden;
}

.about-head {
  margin-bottom: 40px;
}

.sub-hd {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 100px;
  padding: 11px 20px;
  color: #0d4f2b;
  margin-bottom: 25px;
}

.sub-hd i {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
}

.sub-hd span {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.about-head h2 {
  color: #151515;
  font-weight: 400;
  margin: 0;
}

.about-head h2 span {
  color: #0d4f2b;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 35px;
}

.about-images {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 25px;
  align-items: stretch;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #eee;
  clip-path: inset(8% 0 8% 0 round 20px);
}

.about-img-large {
  height: 490px;
}

.about-img-small {
  height: 490px;
}

.about-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.about-cont {
  padding-left: 0;
}

.about-text {
  max-width: 570px;
}

.about-text p {
  color: #151515;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 28px;
}

.about-text strong {
  color: #0d4f2b;
  font-weight: 500;
}

.about-cont .cmn-btn {
  margin-top: 5px;
}

@media (max-width: 1199px) {
  .about-sec {
    padding: 100px 0;
  }

  .about-head {
    margin-bottom: 55px;
  }

  .about-content {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
    gap: 30px;
  }

  .about-images {
    gap: 22px;
  }

  .about-img-large,
  .about-img-small {
    height: 430px;
  }

  .about-text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-sec {
    padding: 75px 0;
  }

  .about-head {
    margin-bottom: 40px;
  }

  .sub-hd {
    padding: 9px 16px;
    margin-bottom: 20px;
  }

  .sub-hd span {
    font-size: 14px;
  }

  .sub-hd i {
    font-size: 16px;
  }

  .about-head h2 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
    letter-spacing: -2px;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 14px;
  }

  .about-img-large,
  .about-img-small {
    height: 330px;
    border-radius: 16px;
  }

  .about-img {
    clip-path: inset(5% 0 5% 0 round 16px);
  }

  .about-cont {
    width: 100%;
  }

  .about-text {
    max-width: none;
  }

  .about-text p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .about-sec {
    padding: 60px 0;
  }

  .about-images {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
  }

  .about-img-large,
  .about-img-small {
    height: 270px;
  }

  .about-head h2 {
    font-size: 35px;
  }
}

/* =========================================================
   COUNTER SECTION
========================================================= */

.counter-sec {
  padding: 40px 0 100px;
  background-color: #fff;
}

.counter-wrap {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.counter-col {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 45px;
  position: relative;
}

.counter-col:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 65%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, #0d4f2b66, transparent);
}

.counter-number {
  display: flex;
  align-items: baseline;
  color: #151515;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.counter-number span:last-child {
  color: #666;
}

.counter-col p {
  margin: 0;
  color: #666;
  font-size: 20px;
  line-height: 1.2;
}

.counter-value {
  display: inline-flex;
  align-items: flex-start;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
}

.counter-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
}

.counter-digit-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.counter-digit-item {
  height: 1em;
  line-height: 1;
  display: block;
}

.counter-suffix {
  display: inline-block;
  margin-left: 4px;
  line-height: 1;
}

@media (max-width: 991px) {
  .counter-sec {
    padding: 30px 0 80px;
  }

  .counter-col {
    padding: 25px 25px;
    min-height: 140px;
  }

  .counter-number {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .counter-col p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .counter-sec {
    padding: 25px 0 60px;
  }

  .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-col {
    min-height: 135px;
    padding: 25px 20px;
  }

  .counter-col:nth-child(2)::after {
    display: none;
  }

  .counter-col:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #0d4f2b66, transparent);
  }

  .counter-number {
    font-size: 34px;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .counter-col p {
    font-size: 15px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .counter-col {
    min-height: 120px;
    padding: 20px 15px;
  }

  .counter-number {
    font-size: 29px;
  }

  .counter-col p {
    font-size: 14px;
  }
}

/* JOURNEY SECTION - MAIN CONTAINER */

.journey-sec {
  position: relative;
  padding: 130px 25px 160px;
  background: #272727;
  overflow: hidden;
}

.journey-head {
  max-width: 1000px;
  margin: 0 auto 110px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.journey-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(213, 244, 90, 0.5);
  border-radius: 100px;
  padding: 9px 18px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.journey-label-icon {
  color: #d5f45a;
  font-size: 15px;
}

.journey-head h2 {
  margin: 0;
  color: #fff;
}

.journey-head h2 span {
  color: #d5f45a;
}

.journey-head p {
  max-width: 650px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.6;
}

.journey-timeline {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0;
}

.journey-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.journey-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-line-bg {
  fill: none;
  stroke: rgba(213, 244, 90, 0.15);
  stroke-width: 2px;
}

.journey-line-progress {
  fill: none;
  stroke: #d5f45a;
  stroke-width: 3px;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(213, 244, 90, 0.6));
}

.journey-item {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

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

.journey-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.journey-item:nth-child(even) {
  flex-direction: row;
}

.journey-step {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #272727;
  border: 1px solid rgba(213, 244, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.journey-step span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.journey-item.is-active .journey-step {
  background: #d5f45a;
  border-color: #d5f45a;
  box-shadow: 0 0 15px rgba(213, 244, 90, 0.5);
}

.journey-item.is-active .journey-step span {
  color: #0d4f2b;
}

.journey-card,
.journey-media {
  width: calc(50% - 60px);
}

.journey-media {
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity;
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.journey-card {
  position: relative;
  min-height: 400px;
  padding: 55px 60px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #d5f45a 0%, #eff9bd 48%, #fff 100%);
  isolation: isolate;
  will-change: transform, opacity;
}

.journey-card-watermark {
  position: absolute;
  right: -20px;
  bottom: -6px;
  font-size: clamp(70px, 5vw, 140px);
  line-height: 0.8;
  letter-spacing: -6px;
  color: #0d4f2b;
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}

.journey-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.journey-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #0d4f2b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d4f2b;
  font-size: 13px;
}

.journey-category {
  color: #0d4f2b;
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: 500;
}

.journey-card h3 {
  margin: 0 0 25px;
  color: #111;
  font-size: clamp(34px, 2.7vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 400;
}

.journey-card p {
  max-width: 680px;
  margin: 0;
  color: #272727;
  font-size: 17px;
  line-height: 1.65;
}

/* RESPONSIVE DESIGN */

@media (max-width: 991px) {
  .journey-sec {
    padding: 100px 20px 120px;
  }

  .journey-head {
    margin-bottom: 70px;
  }

  .journey-head h2 {
    font-size: clamp(42px, 7vw, 60px);
  }

  .journey-timeline {
    padding-left: 60px;
  }

  .journey-step {
    left: 0;
    top: 40px;
    transform: translateX(-50%);
  }

  .journey-item,
  .journey-item:nth-child(odd),
  .journey-item:nth-child(even) {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 50px;
  }

  .journey-card,
  .journey-media,
  .journey-item:nth-child(odd) .journey-card,
  .journey-item:nth-child(even) .journey-card,
  .journey-item:nth-child(odd) .journey-media,
  .journey-item:nth-child(even) .journey-media {
    width: 100%;
    min-height: auto;
  }

  .journey-media {
    height: 300px;
  }

  .journey-card {
    padding: 45px 40px;
  }

  .journey-line {
    left: 0px;
  }
}

@media (max-width: 767px) {
  .journey-sec {
    padding: 80px 15px 100px;
  }

  .journey-head {
    margin-bottom: 50px;
    text-align: left;
  }

  .journey-label {
    margin-bottom: 22px;
  }

  .journey-head h2 {
    font-size: 43px;
    line-height: 1.05;
    letter-spacing: -2px;
  }

  .journey-head p {
    margin-top: 20px;
    font-size: 16px;
  }

  .journey-timeline {
    padding-left: 45px;
  }

  .journey-step {
    left: 0;
    top: 30px;
    width: 42px;
    height: 42px;
  }

  .journey-step span {
    font-size: 11px;
  }

  .journey-media {
    height: 240px;
    border-radius: 22px;
  }

  .journey-media img {
    border-radius: 22px;
  }

  .journey-card {
    padding: 32px 25px;
    border-radius: 22px;
  }

  .journey-card-top {
    margin-bottom: 25px;
  }

  .journey-number {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .journey-category {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .journey-card h3 {
    font-size: 34px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }

  .journey-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .journey-card-watermark {
    font-size: 65px;
    right: -10px;
    bottom: 15px;
    letter-spacing: -3px;
  }
}

@media (max-width: 576px) {
  .journey-sec {
    padding: 50px 0;
  }

  .journey-head h2 {
    font-size: 38px;
  }

  .journey-card {
    padding: 28px 22px;
  }

  .journey-card h3 {
    font-size: 30px;
  }

  .journey-timeline {
    padding: 0px 0 0 40px;
  }

  .journey-media {
    height: 200px;
  }

  .journey-step {
    left: -24px;
    width: 25px;
    height: 25px;
  }

  .journey-item, .journey-item:nth-child(odd), .journey-item:nth-child(even) {
    margin-bottom: -10px;
  }
}

/* =========================================
   WHY AQUASCAPING
========================================= */

.why-aqua-sec {
  position: relative;
  padding: 120px 25px;
  background: #fff;
  overflow: hidden;
}

.why-aqua-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

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

.why-aqua-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.why-aqua-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 11px 20px;

  border: 1px solid #d2d2d2;
  border-radius: 50px;

  margin-bottom: 30px;

  color: #0b5a32;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.why-aqua-label i {
  font-size: 18px;
  font-style: normal;
}

.why-aqua-content h2 {
  margin: 0 0 30px;
  font-weight: 400;

  color: #111;
}

.why-aqua-content h2 span {
  color: #0b5a32;
}

.why-aqua-desc {
  max-width: 680px;
  margin: 0 0 15px;
  color: #111;
  font-size: 18px;
}

.why-aqua-desc strong {
  color: #111;
  font-weight: 600;
}

.why-aqua-content .cmn-btn {
  margin-top: 30px;
}

/* =========================================
   RIGHT CARDS AREA
========================================= */

.why-aqua-cards-wrap {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 20px;

  min-height: 530px;

  padding: 0;
}

.why-aqua-card {
  position: relative;

  min-height: 200px;

  padding: 25px;

      background: #e4f3e2;

  border-radius: 12px;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  isolation: isolate;
}

.why-aqua-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -80px;
  bottom: -90px;

  border-radius: 50%;

  background: #d1ea67;

  opacity: 0;

  transform: scale(0);

  z-index: -1;
}

.why-aqua-card-icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: #fff;

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

  color: #0b5a32;

  font-size: 21px;
}

.why-aqua-card-content {
  position: relative;
}

.why-aqua-card-number {
  display: block;

  margin-bottom: 8px;

  font-size: 12px;
  letter-spacing: 1px;

  color: #0b5a32;
}

.why-aqua-card h3 {
  margin: 0 0 12px;

  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;

  letter-spacing: -1px;
  font-weight: 400;

  color: #111;
}

.why-aqua-card p {
  max-width: 400px;

  margin: 0;

  color: #6d6d6d;

  font-size: 16px;
  line-height: 1.5;
}

.why-aqua-center {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 90px;
  height: 90px;

  transform: translate(-50%, -50%);

  z-index: 10;

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

.why-aqua-center-ring {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  background: #d1ea67;

  border: 8px solid #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-aqua-center-ring::before,
.why-aqua-center-ring::after {
  content: "";

  position: absolute;

  inset: -8px;

  border-radius: 50%;

  border: 1px solid #d1ea67;

  opacity: 0;
}

.why-aqua-center-inner {
  position: relative;

  width: 55px;
  height: 55px;

  border-radius: 50%;

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

  color: #0b5a32;

  font-size: 23px;

  z-index: 2;
}

@media (min-width: 992px) {
  .why-aqua-content > * {
    opacity: 0;
    transform: translateY(45px);
  }

  .why-aqua-card {
    opacity: 0;
  }

  .why-card-1,
  .why-card-3 {
    transform: translateX(-50px);
  }

  .why-card-2,
  .why-card-4 {
    transform: translateX(50px);
  }

  .why-aqua-center {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

@media (max-width: 991px) {
  .why-aqua-sec {
    padding: 100px 20px;
  }

  .why-aqua-wrap {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .why-aqua-content {
    max-width: 800px;
  }

  .why-aqua-content h2 {
    font-size: clamp(45px, 7vw, 65px);
  }

  .why-aqua-cards-wrap {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .why-aqua-sec {
    padding: 80px 0;
  }

  .why-aqua-wrap {
    display: block;
  }

  .why-aqua-content {
    padding: 0 20px;

    margin-bottom: 55px;
  }

  .why-aqua-label {
    margin-bottom: 22px;

    font-size: 13px;
  }

  .why-aqua-content h2 {
    font-size: 43px;

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 22px;
  }

  .why-aqua-desc {
    font-size: 16px;

    line-height: 1.55;
  }

  .why-aqua-cards-wrap {
    display: flex;
    flex-direction: column;

    gap: 15px;

    min-height: auto;

    padding: 70px 20px 0;
  }

  .why-aqua-card {
    min-height: 260px;

    padding: 25px;

    border-radius: 14px;

    opacity: 0;

    transform: translateY(60px) scale(0.96);
  }

  .why-aqua-card-icon {
    width: 52px;
    height: 52px;

    font-size: 18px;
  }

  .why-aqua-card h3 {
    font-size: 29px;
  }

  .why-aqua-card p {
    font-size: 15px;
  }

  .why-aqua-center {
    width: 76px;
    height: 76px;

    top: 0;

    left: 50%;

    transform: translate(-50%, -50%) scale(0);
  }

  .why-aqua-center-ring {
    border-width: 7px;
  }

  .why-aqua-center-inner {
    width: 46px;
    height: 46px;

    font-size: 19px;
  }

  .why-aqua-center {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-aqua-content h2 {
    font-size: 38px;
  }

  .why-aqua-card {
    min-height: 245px;
    padding: 22px;
  }

  .why-aqua-card h3 {
    font-size: 26px;
  }

  .why-aqua-cards-wrap {
    padding: 0;
  }
}

/* left-img-rgt-txt */

.left-img-rgt-txt {
  padding: 100px 0;
}

.left-cont-col {
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.left-cont-col h2 span {
  color: #d1ea67;
}

.left-cont-col p b {
  font-weight: 500;
}

.left-cont-col p a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.left-img-rgt-txt .row {
  align-items: center;
  --bs-gutter-x: 0;
}

.left-img-rgt-txt .row:nth-child(even) {
  flex-direction: row-reverse;
}

.left-img-rgt-txt .row:nth-child(even) .left-cont-col {
  padding: 0 50px 0 0;
}

/* =========================================
   BLOG SECTION
========================================= */
.blog-sec {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.blog-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

/* Label Badge */
.blog-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 30px;
  margin-bottom: 16px;
  color: #0b3b22;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-label i {
  font-style: normal;
  font-size: 11px;
}

/* Heading */
.blog-head h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
}

.blog-head h2 span {
  color: #0b3b22;
}

/* Navigation Buttons */
.blog-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-nav button i {
  font-size: 14px;
}

.blog-nav button:hover {
  border-color: #0b3b22;
  background: #0b3b22;
  color: #ffffff;
}

/* =========================================
   SWIPER SLIDER
========================================= */
.blog-slider-wrap {
  width: 100%;
}

.blog-swiper {
  width: 100%;
  padding-left: max(
    20px,
    calc((100vw - 1200px) / 2)
  ); /* Keeps left aligned with main container */
  padding-right: max(20px, calc((100vw - 1200px) / 2));
  overflow: visible;
}

.blog-swiper .swiper-slide {
  height: auto;
}

/* Card Outer Wrapper */
.blog-card {
  height: 100%;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Image */
.blog-card-img {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  background: #e0e0e0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

/* Content */
.blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 6px 6px;
}

.blog-card-content h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card-content p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-read i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.blog-read:hover {
  color: #0b3b22;
}

.blog-read:hover i {
  transform: translateX(5px);
}

.left-img-col {
  display: flex;
}

.blog-head-left h2 {
  color: #111;
  font-weight: 400;
}

.blog-head-left h2 span {
  color: #0b5a32;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */
@media (max-width: 1366px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .left-cont-col {
    padding: 30px 0 20px;
  }

  .left-img-rgt-txt .row:nth-child(even) .left-cont-col {
    padding: 30px 0 0;
  }
}

@media (max-width: 767px) {
  .blog-sec {
    padding: 50px 0;
  }

  .blog-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .blog-card-img {
    height: 210px;
  }

  h2 {
    font-size: 30px;
  }

  .left-img-rgt-txt {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .why-aqua-content {
    padding: 0;
  }

  .journey-number {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .journey-card-top {
    margin-bottom: 13px;
  }

  .journey-card h3 {
    font-size: 25px;
  }

  .journey-head h2,
  .why-aqua-content h2 {
    font-size: 30px;
  }
}

/* footer */
.site-footer {
  color: #ffffff;
  width: 100%;
}

.footer-container {
  width: 77.8%;
  max-width: 1475px;
  margin: 0 auto;
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main {
  border-top: 1px solid rgba(112, 166, 136, 0.22);
  border-bottom: 1px solid rgba(112, 166, 136, 0.22);

  display: grid;
  grid-template-columns: 2.05fr 1.25fr 1fr 0.75fr;
  column-gap: 6.5vw;

  padding: 74px 0 62px;
}

/* =========================
   LOGO / ABOUT
========================= */

.footer-logo {
  display: inline-block;
}

.footer-description {
  margin-top: 12px;
  line-height: 1.78;
  font-weight: 300;
  color: #afafaf;
}

.footer-tags {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer-tags span {
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 500;
  color: #ffffff;
}

/* =========================
   GENERAL COLUMNS
========================= */

.footer-column h4 {
  margin-bottom: 18px;

  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2.2px;
  color: #ffffff;
}

.footer-column h4.contact-title {
  margin-top: 46px;
  margin-bottom: 22px;
  text-transform: none;
}

.footer-column a {
  display: inline-block;

  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;

  color: #afafaf;
  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #8bd65b;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 16px;
  line-height: 1;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  min-height: 82px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.footer-motto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.3px;
  color: #ffffff;
}

.footer-motto i {
  font-style: normal;
  color: #ffffff;
}

.tour-year {
  text-align: right;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.4px;
  color: #8bd65b;
}

.brand-name {
  max-width: 210px;
}

.brand-name a {
  display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .footer-container {
    width: 88%;
  }

  .footer-main {
    grid-template-columns: 1.6fr 1fr 0.8fr 0.7fr;
    column-gap: 4vw;
  }

  .brand-name {
    font-size: 29px;
  }

  .footer-description {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 50px;

    padding: 60px 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;

    padding: 25px 0;
  }

  .footer-bottom p,
  .tour-year {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    width: calc(100% - 40px);
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;

    padding: 45px 0;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-tagline {
    justify-content: flex-start;
  }

  .brand-tagline span {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .brand-tagline i {
    width: 22px;
  }

  .footer-description {
    margin-top: 28px;

    font-size: 15px;
    line-height: 1.7;
  }

  .footer-description br {
    display: none;
  }

  .footer-tags {
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 25px;
  }

  .footer-column h4 {
    margin-bottom: 14px;
  }

  .footer-column h4.contact-title {
    margin-top: 32px;
  }

  .footer-column ul li {
    margin-bottom: 13px;
  }

  .footer-column a {
    font-size: 16px;
  }

  .footer-motto {
    flex-wrap: wrap;
    gap: 8px 12px;

    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 16px 0;
            gap: 2px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .tour-year {
    font-size: 10px;
  }
}
