/********** Template CSS **********/
:root {
  --primary: #5b8c51;
  --secondary: #eddd5e;
  --light: #f7f7f7;
  --dark: #404a3d;
}

html {
  zoom: 0.9;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

h1 {
  color: #14452f !important;
}
/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar {
  height: 70px;
}

.navbar img {
  height: 70px;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}
.navbar-brand {
  padding-left: 0rem;
}
.navbar .navbar-nav .nav-link + .nav-link {
  margin-left: 35px;
}

.navbar .navbar-nav .nav-link {
  padding: 25px 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar {
    border-bottom: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: url(../img/banner/playground.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 5px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 6px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Homepage About ***/
.home-about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  min-height: 690px;
  overflow: hidden;
  margin-top: -1px;
  background: #f8efdf;
}

.home-about-section::before,
.home-about-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 3;
}

.home-about-section::before {
  top: 7.5%;
  right: 7.5%;
  width: 32px;
  height: 18px;
  border-radius: 100% 0 100% 0;
  background: #8fa56d;
  opacity: 0.72;
  transform: rotate(-28deg);
}

.home-about-section::after {
  right: 4.6%;
  top: 34%;
  width: 44px;
  height: 21px;
  border-radius: 100% 0 100% 0;
  background: #9ca66f;
  opacity: 0.54;
  transform: rotate(23deg);
}

.home-about-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d9cba9;
}

.home-about-visual::after {
  position: absolute;
  content: "";
  top: -8%;
  right: -108px;
  width: 192px;
  height: 116%;
  border-left: 1px solid rgba(36, 79, 49, 0.12);
  border-radius: 50% 0 0 50%;
  background: #f8efdf;
  z-index: 2;
}

.home-about-visual img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.home-about-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6vw, 104px) clamp(36px, 7vw, 118px) clamp(56px, 6vw, 96px) clamp(42px, 6vw, 96px);
  color: #4e5148;
  background:
    radial-gradient(circle at 87% 15%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, #fbf4e7 0%, #f8efdf 48%, #fbf6ec 100%);
}

.home-about-content::before {
  position: absolute;
  content: "";
  left: 4%;
  bottom: 7%;
  width: 118px;
  height: 152px;
  opacity: 0.2;
  background: url("/assets/img/home-about-icons/grass.svg") center / contain no-repeat;
  transform: rotate(-11deg);
}

.home-about-eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 0 24px;
  padding-right: 84px;
  color: #3f743f;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-about-eyebrow::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 58px;
  height: 2px;
  background: #497846;
  transform: translateY(-50%);
}

.home-about-content h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #154f31 !important;
  font-family: "IBM Plex Serif", "Libre Baskerville", serif !important;
  font-size: clamp(3rem, 4.35vw, 5.65rem);
  line-height: 1.06;
}

.home-about-copy {
  max-width: 710px;
  margin: 0 0 42px;
  color: #55564f;
  font-size: clamp(1.05rem, 1.25vw, 1.36rem);
  font-weight: 500;
  line-height: 1.58;
}

.home-about-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 34px 44px;
  max-width: 760px;
  margin-bottom: 50px;
}

.home-about-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 72px;
  color: #42453f;
}

.home-about-benefit::after {
  position: absolute;
  content: "";
  left: 89px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(68, 89, 59, 0.28);
}

.home-about-benefit img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.home-about-benefit span {
  display: block;
  padding-left: 32px;
  color: #40443e;
  font-size: clamp(1rem, 1.16vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
}

.home-about-button {
  width: fit-content;
  min-width: 290px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 999px;
  color: #fffdf4;
  background: #0f5634;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 34px rgba(15, 86, 52, 0.2);
  font-family: "IBM Plex Serif", "Libre Baskerville", serif;
  font-size: 1.24rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-about-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.home-about-button:hover {
  color: #ffffff;
  background: #0b4429;
  box-shadow: 0 22px 38px rgba(15, 86, 52, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .home-about-section {
    grid-template-columns: 1fr;
  }

  .home-about-visual,
  .home-about-visual img {
    min-height: 480px;
  }

  .home-about-visual::after {
    top: auto;
    right: -8%;
    bottom: -82px;
    width: 116%;
    height: 144px;
    border-top: 1px solid rgba(36, 79, 49, 0.12);
    border-left: 0;
    border-radius: 50% 50% 0 0;
  }

  .home-about-content {
    padding: 62px clamp(22px, 6vw, 72px) 72px;
  }
}

@media (max-width: 767.98px) {
  .home-about-visual,
  .home-about-visual img {
    min-height: 360px;
  }

  .home-about-content {
    padding-top: 46px;
  }

  .home-about-eyebrow {
    margin-bottom: 18px;
    padding-right: 62px;
    font-size: 0.92rem;
  }

  .home-about-eyebrow::after {
    width: 42px;
  }

  .home-about-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .home-about-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .home-about-benefit {
    grid-template-columns: 58px 1fr;
    min-height: 58px;
  }

  .home-about-benefit::after {
    left: 72px;
    top: 8px;
    bottom: 8px;
  }

  .home-about-benefit img {
    width: 46px;
    height: 46px;
  }

  .home-about-benefit span {
    padding-left: 28px;
  }

  .home-about-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 1.08rem;
  }
}
/*** About ***/
.about-experience {
  position: absolute;
  width: 100%;
  height: 100%;
  right: -20px;
  bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #14452f !important;
  color: white !important;
}

.about-experience h1 {
  color: white !important;
}



/*** Homepage Features Transition ***/
.home-features-section {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding-top: clamp(4.25rem, 7vw, 7rem) !important;
  padding-bottom: clamp(4rem, 6vw, 6.5rem) !important;
  background:
    linear-gradient(
      180deg,
      #fbf6ec 0%,
      #fffaf0 18%,
      #fffdf8 48%,
      #ffffff 100%
    );
}

.home-features-section::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 239, 223, 0.92), rgba(255, 255, 255, 0));
}

.home-features-section::after {
  position: absolute;
  content: "";
  right: 6%;
  top: 12%;
  width: 210px;
  height: 210px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 140, 81, 0.1), rgba(91, 140, 81, 0));
}

.home-features-section > .container {
  position: relative;
  z-index: 1;
}

.home-features-title {
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 0 0 8px rgba(255, 250, 240, 0.88);
}
/*** Homepage Feature Certificates ***/
.home-feature-cert-panel {
  position: relative;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(250, 244, 231, 0.96), rgba(245, 236, 216, 0.76));
  border: 1px solid rgba(91, 140, 81, 0.16);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 22px 46px rgba(64, 74, 61, 0.1);
}

.home-feature-cert-panel::before {
  position: absolute;
  content: "";
  inset: 14px;
  border: 1px solid rgba(91, 140, 81, 0.12);
  border-radius: 18px;
  pointer-events: none;
}

.home-feature-cert-card {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 254px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 1px solid rgba(91, 140, 81, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 30px rgba(64, 74, 61, 0.08);
  text-align: center;
}

.home-feature-cert-card .wraper-image-item {
  position: relative;
  width: min(150px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
}

.home-feature-cert-card .wraper-image-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-feature-cert-card h5 {
  max-width: 190px;
  margin: 0;
  color: #174f34;
  font-family: "Open Sans", sans-serif !important;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .home-feature-cert-card {
    min-height: 220px;
  }

  .home-feature-cert-card .wraper-image-item {
    width: 132px;
  }
}

/*** Banner Glass Cards ***/
.banner > .container > .row > .col-lg-6 {
  display: flex;
}

.banner .banner-glass-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin-right: 0;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 91, 42, 0.52) 0%, rgba(10, 72, 39, 0.34) 52%, rgba(17, 91, 47, 0.2) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 24px 58px rgba(4, 44, 24, 0.28);
}

.banner .banner-glass-card::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0));
}

.banner .banner-glass-card > [class*="col-"] {
  position: relative;
  z-index: 1;
}

.banner .banner-glass-card img {
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(5, 48, 26, 0.25);
}

.banner .banner-glass-card h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.banner .banner-glass-card p {
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 0 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .banner .banner-glass-card {
    background: rgba(18, 86, 42, 0.78);
  }
}

@media (max-width: 575.98px) {
  .banner .banner-glass-card {
    padding: 20px;
    border-radius: 20px;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.service-item .service-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 1;
}

.service-item .service-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  transition: 0.5s ease-out;
  z-index: 2;
}

.service-item:hover .service-img::after {
  width: 0;
  left: auto;
  right: 0;
}

.service-item .service-text .service-icon {
  width: 140px;
  height: 140px;
  padding: 15px;
  margin-top: -70px;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 140px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.service-item .service-text h5,
.service-item .service-text p {
  transition: 0.5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
  color: #ffffff;
}

.service-item .service-text .btn {
  color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.25);
}

.service-item .service-text .btn:hover {
  color: var(--dark);
  background: var(--secondary);
}

/*** Product ***/
.product-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.product-item .product-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding-top: 60px;
  transition: 0.5s;
}

.product-item:hover .product-overlay {
  opacity: 1;
  padding-top: 0;
}

.product-item img {
  min-height: 300px;
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .btn {
  border-color: transparent;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

/*** Testimonial ***/
.testimonial-img {
  position: relative;
  min-height: 400px;
}

.testimonial-img::after {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 200px;
  color: #eeeeee;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.testimonial-img img {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
  top: 0;
  left: 0;
}

.testimonial-img img:nth-child(2) {
  top: 60%;
  left: 20%;
}

.testimonial-img img:nth-child(3) {
  top: 20%;
  left: 60%;
}

.testimonial-img img:nth-child(4) {
  bottom: 0;
  right: 0;
}

.testimonial-img img .animated.pulse {
  animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 45px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
  color: var(--dark);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
  background-color: #14452f !important;
  padding-top: 2rem !important;
  padding-bottom: 1rem !important;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.carousel-inner .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.btn.btn-secondary {
  background-color: #14452f !important;
  border-color: #14452f !important;
  color: white !important;
}
.btn.btn-primary {
  background-color: #14452f !important;
  border-color: white !important;
  color: white !important;
}
.newsletter input {
  color: white;
}

.bg-primary {
  background-color: #14452f !important;
  color: white !important;
}

.service-item .service-text .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Homepage hero */
.home-hero-slide {
  min-height: 690px;
}

.home-hero-slide .home-hero-image {
  min-height: 690px;
  object-fit: cover;
  object-position: center center;
}

.home-hero-caption {
  align-items: flex-start;
  padding-top: 118px;
  padding-bottom: 115px;
  /*background: linear-gradient(90deg, rgba(255, 252, 241, 0.76) 0%, rgba(255, 252, 241, 0.44) 36%, rgba(255, 252, 241, 0.08) 66%);*/
}

.home-hero-title {
  margin: 0 0 22px;
  color: #145235;
  font-family: "IBM Plex Serif", serif !important;
  font-size: clamp(3.2rem, 4.5rem, 6.8rem);
  font-weight: 700;
  line-height: 0.98;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.52);
}

.home-hero-copy {
  margin: 50px 0 30px;
  color: #26392f;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.58);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 2%;
}

.home-hero-btn {
  min-width: 220px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(20, 82, 53, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(20, 82, 53, 0.26);
}

.home-hero-btn-primary {
  color: #ffffff;
  background: #115936;
  border: 1px solid #115936;
}

.home-hero-btn-primary:hover {
  color: #ffffff;
  background: #0d472b;
}

.home-hero-btn-light {
  color: #28583c;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(82, 115, 72, 0.28);
  backdrop-filter: blur(12px);
}

.home-hero-btn-light:hover {
  color: #16472d;
  background: rgba(255, 255, 255, 0.88);
}

.home-hero-btn i {
  font-size: 1.25rem;
  line-height: 1;
}

.home-hero-features {
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 950px;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, rgba(15, 87, 48, 0.72), rgba(21, 84, 45, 0.54));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 44px rgba(13, 61, 37, 0.24);
  transform: translateX(-50%);
}

.home-hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  text-align: left;
}

.home-hero-feature-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.76);
}

.home-hero-feature-icon i {
  font-size: 1.55rem;
  line-height: 1;
}

.home-hero-feature strong,
.home-hero-feature small {
  display: block;
}

.home-hero-feature strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.home-hero-feature small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .home-hero-slide,
  .home-hero-slide .home-hero-image {
    min-height: 680px;
  }

  .home-hero-caption {
    padding-top: 98px;
    padding-bottom: 190px;
    background: linear-gradient(180deg, rgba(255, 252, 241, 0.78) 0%, rgba(255, 252, 241, 0.26) 64%, rgba(255, 252, 241, 0.05) 100%);
  }

  .home-hero-title {
    font-size: clamp(2.6rem, 9vw, 4.8rem);
  }

  .home-hero-copy {
    font-size: 1.12rem;
  }

  .home-hero-features {
    width: min(680px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 22px;
  }

  .home-hero-feature {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .home-hero-slide,
  .home-hero-slide .home-hero-image {
    min-height: 720px;
  }

  .home-hero-caption {
    padding-top: 90px;
    padding-bottom: 230px;
  }

  .home-hero-actions {
    gap: 12px;
  }

  .home-hero-btn {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 0.96rem;
  }

  .home-hero-features {
    bottom: 18px;
  }

  .home-hero-feature-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .home-hero-feature strong {
    font-size: 1rem;
  }

  .home-hero-feature small {
    font-size: 0.82rem;
  }
}
/* Homepage concern section */
.home-concern-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f7f0dc;
}

.home-concern-shell {
  position: relative;
  min-height: 717px;
  display: flex;
  align-items: stretch;
  background-image: url("../img/homepage-concern.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-concern-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 248, 229, 0.04) 0%, rgba(255, 248, 229, 0.18) 50%, rgba(255, 248, 229, 0.03) 100%);
  pointer-events: none;
}
.home-concern-shell::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 240, 220, 0) 0%, rgba(247, 240, 220, 0.72) 58%, #f7efe0 100%);
  pointer-events: none;
  z-index: 1;
}

.home-concern-heading {
  position: absolute;
  top: 24px;
  left: 50%;
  width: min(560px, calc(100% - 32px));
  text-align: center;
  transform: translateX(-50%);
  z-index: 2;
}

.home-concern-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #5f704f;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-concern-heading span::before,
.home-concern-heading span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #8a9668;
}

.home-concern-heading h2 {
  margin: 0;
  color: #174f34;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.home-concern-container {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.home-concern-grid {
  width: 100%;
  min-height: 455px;
  align-items: stretch;
}

.home-concern-grid > [class*="col-"] {
  position: relative;
}

.home-concern-box {
  position: absolute;
  width: min(255px, calc(100% - 32px));
  min-height: 190px;
  padding: 24px 22px;
  border-radius: 28px;
  color: #243d2f;
  background: rgba(255, 250, 228, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 34px rgba(82, 76, 48, 0.13);
}

.home-concern-box-1 {
  top: 260px;
  right: 14px;
}

.home-concern-box-2 {
  left: 73%;
  bottom: 36px;
  transform: translateX(-50%);
}

.home-concern-box-3 {
  top: 265px;
  left: 100px;
}

.home-concern-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(90, 108, 72, 0.36);
  border-radius: 50%;
  color: #667a4f;
  background: rgba(255, 255, 255, 0.48);
}

.home-concern-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.home-concern-box h3 {
  margin: 0 0 12px;
  color: #174f34;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-concern-box p {
  margin: 0;
  color: #53624d;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .home-concern-shell,
  .home-concern-grid {
    min-height: 420px;
  }

  .home-concern-heading {
    top: 22px;
  }

  .home-concern-box {
    width: min(235px, calc(100% - 24px));
    padding: 20px;
  }

  .home-concern-box-1 {
    top: 140px;
    right: 8px;
  }

  .home-concern-box-2 {
    bottom: 34px;
  }

  .home-concern-box-3 {
    top: 148px;
    left: 12px;
  }
}

@media (max-width: 991.98px) {
  .home-concern-shell,
  .home-concern-grid {
    min-height: 390px;
  }

  .home-concern-heading h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.4rem);
  }

  .home-concern-box {
    width: min(210px, calc(100% - 18px));
    min-height: 178px;
    padding: 18px;
    border-radius: 22px;
  }

  .home-concern-box h3 {
    font-size: 1rem;
  }

  .home-concern-box p {
    font-size: 0.82rem;
  }
}

@media (max-width: 767.98px) {
  .home-concern-section {
    padding: 54px 0 62px;
  }

  .home-concern-shell {
    min-height: 0;
    display: block;
    background-image: none;
  }

  .home-concern-shell::before,
  .home-concern-shell::after,
  .reason-choice-section::before {
    display: none;
  }

  .home-concern-heading {
    position: static;
    width: min(520px, calc(100% - 32px));
    margin: 0 auto 24px;
    transform: none;
  }

  .home-concern-heading span {
    font-size: 0.76rem;
  }

  .home-concern-heading span::before,
  .home-concern-heading span::after {
    width: 22px;
  }

  .home-concern-grid {
    min-height: 0;
    gap: 18px 0;
  }

  .home-concern-grid > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-concern-box {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    overflow: hidden;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 18px 36px rgba(82, 76, 48, 0.14);
    transform: none;
  }

  .home-concern-box::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(255, 250, 228, 0.06) 0%, rgba(255, 250, 228, 0.46) 52%, rgba(255, 250, 228, 0.9) 100%);
  }

  .home-concern-box > * {
    position: relative;
    z-index: 1;
  }

  .home-concern-box-1 {
    background-image: url("../img/homepage-concern-1.png");
  }

  .home-concern-box-2 {
    background-image: url("../img/homepage-concern-2.png");
  }

  .home-concern-box-3 {
    background-image: url("../img/homepage-concern-3.png");
  }

  .home-concern-box h3 {
    max-width: 285px;
    font-size: 1.15rem;
  }

  .home-concern-box p {
    max-width: 300px;
    font-size: 0.9rem;
  }
}
/* Reason to choose section */
.reason-choice-section {
  position: relative;
  overflow: hidden;
  background: #f7efe0;
}

.reason-choice-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 190px;
  content: "";
  background: linear-gradient(180deg, #f7efe0 0%, rgba(247, 239, 224, 0.88) 32%, rgba(247, 239, 224, 0.42) 68%, rgba(247, 239, 224, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.reason-choice-shell {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  background-image: url("../img/reason-to-chose-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.reason-choice-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 248, 232, 0.28) 0%, rgba(255, 248, 232, 0.14) 42%, rgba(255, 248, 232, 0) 68%);
  pointer-events: none;
}

.reason-choice-container {
  position: relative;
  z-index: 3;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.reason-choice-copy {
  width: 900px;
  padding: 92px 0 52px;
  text-align: left;
}

.reason-choice-eyebrow {
  position: absolute;
  top: 66px;
  left: 0;
  width: min(760px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: #5f704f;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.reason-choice-eyebrow::before,
.reason-choice-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #8a9668;
}

.reason-choice-copy h2 {
  margin: 0 0 48px;
  color: #254f35;
  font-size: clamp(3rem, 3rem, 5.75rem);
  font-family: "IBM Plex Serif", serif !important;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.56);
}

.reason-choice-grid {
  width: min(760px, 100%);
}

.reason-choice-card {
  min-height: 238px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border: 1px solid rgba(83, 93, 64, 0.16);
  border-radius: 22px;
  color: #2d583b;
  background: rgba(255, 250, 238, 0.38);
  backdrop-filter: blur(5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 18px 35px rgba(67, 62, 44, 0.08);
}

.reason-choice-icon {
  width: 77px;
  height: 77px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 3px solid #44713d;
  border-radius: 50%;
  color: #44713d;
  background: rgba(255, 255, 255, 0.16);
}

.reason-choice-icon i {
  font-size: 2rem;
  line-height: 1;
}

.reason-choice-divider {
  position: relative;
  width: 120px;
  height: 16px;
  display: block;
  margin: 0 0 18px;
  background: radial-gradient(circle at 50% 50%, #8aa453 0 4px, transparent 5px);
}

.reason-choice-divider::before,
.reason-choice-divider::after {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  content: "";
  background: #b3953e;
}

.reason-choice-divider::before {
  left: 0;
}

.reason-choice-divider::after {
  right: 0;
}

.reason-choice-card h3 {
  margin: 0;
  color: #2d583b;
  font-family: "Open Sans", sans-serif !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
}

@media (max-width: 1199.98px) {
  .reason-choice-shell,
  .reason-choice-container {
    min-height: 590px;
  }

  .reason-choice-shell {
    background-position: 58% center;
  }

  .reason-choice-copy {
    width: min(670px, 60vw);
  }

  .reason-choice-copy h2 {
    margin-bottom: 36px;
  }

  .reason-choice-card {
    min-height: 210px;
  }

  .reason-choice-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 991.98px) {
  .reason-choice-shell,
  .reason-choice-container {
    min-height: 560px;
  }

  .reason-choice-shell {
    background-position: 62% center;
  }

  .reason-choice-copy {
    width: min(570px, 64vw);
  }

  .reason-choice-copy h2 {
    font-size: clamp(2.45rem, 5.8vw, 4.2rem);
  }

  .reason-choice-icon {
    width: 70px;
    height: 70px;
  }

  .reason-choice-icon i {
    font-size: 2rem;
  }

  .reason-choice-card {
    min-height: 184px;
    padding: 22px 14px;
  }
}

@media (max-width: 767.98px) {
  .reason-choice-shell {
    min-height: 0;
    padding: 54px 0 360px;
    align-items: flex-start;
    background-position: 70% bottom;
  }

  .reason-choice-shell::before {
    background: linear-gradient(180deg, rgba(255, 248, 232, 0.92) 0%, rgba(255, 248, 232, 0.72) 52%, rgba(255, 248, 232, 0.16) 100%);
  }

  .reason-choice-container {
    min-height: 0;
    display: block;
  }

  .reason-choice-copy {
    width: 100%;
    padding: 0;
  }

  .reason-choice-eyebrow {
    position: static;
    width: 100%;
    margin: 0 0 14px;
    font-size: 0.76rem;
  }

  .reason-choice-eyebrow::before,
  .reason-choice-eyebrow::after {
    width: 22px;
  }

  .reason-choice-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .reason-choice-grid {
    width: 100%;
  }

  .reason-choice-card {
    min-height: 178px;
    border-radius: 20px;
    background: rgba(255, 250, 238, 0.72);
  }
}

@media (max-width: 575.98px) {
  .reason-choice-shell {
    padding-bottom: 300px;
    background-size: auto 52%;
    background-position: 72% bottom;
  }

  .reason-choice-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}
