/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* # General Styling & Shared Classes */
body {
  background: url(../img/background.webp);
  /* background-color: #fff; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  font-family: var(--default-font);
  height: 100vh;
  margin: 0;
}

.section-container{
  width: 85% !important;
  margin: auto;
}


a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1C4342;
  font-family: var(--heading-font);
}


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: #b9d8c6;
  border-radius: 50%;
  color: #14924A;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
}

.swiper-wrapper .swiper-slide {
  width: 33%;
  height: auto;
}

 /* PHP Email Form Messages */

.php-email-form .error-message {
  display: none;
  background: #636B2F;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #636B2F;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #636B2F;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #636B2F;
  border-top-color: #636B2F;
  animation: php-email-form-loading 1s linear infinite;
}







/* # Global Header */

.header {
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.5s;
  width: 90%;
  margin: auto;
}
 .header .header-container {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px 25px;
  margin-top: 20px;
  box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header .logo {
  line-height: 1;
  padding-left: 5px;
}
.header .logo img {
  margin-right: 8px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: #14924A;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0 20px 0 20px;
  border-radius: 4px;
  transition: 0.3s;
  box-shadow: 0px 4px 10px -2px #676767;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: #FAF6DD;
  color: #000;
}

.btn-register{
  margin-right: 10px !important;
}
.btn-login{
  margin-right: 0 !important;
  margin-left: 0 !important;
  background: #1C4342 !important;
}
.btn-login:hover {
  background: #FAF6DD !important;
  color: #000 !important;
}

/* 
@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
} */





.navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #1C4342;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #14924A;
  }

.navbar-toggler {
  display: none;
  background-color: transparent;
  border: 2px solid #14924A;
  padding: 2px 4px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 22px;
  color: #14924A;
  margin-top: 0;
}


/* Hide nav links and show toggle on small screens */
@media (max-width: 1000px) {
  .navmenu ul {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

  .navmenu ul.show {
    display: flex;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 6px;
  }

  .navbar-toggler {
    display: block;
  }
}



/* # Navigation Menu */

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }



  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
/* @media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
} */


/* # Global Footer */

.footer {
  color: #000;
  background-color: #66bc8a;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  margin-right: 6px;
}

.footer-about div{
  width: 80%;
  margin-top: 40px;
}

.footer-about div h4{
  font-size: 20px;
}
.footer-about div p{
  margin-bottom: 4px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #0e7b3b;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #00481e;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer-links h4{
  font-size: 20px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-contact p span a {
  color: #000000;
}

.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}









/* # Scroll Top Button */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #1C4342;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}


.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


/* # Disable aos animation delay on mobile devices */

/* @media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
} */







/* # Hero Section */

.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 60px;
  background: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%); */
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 30px;
}

.hero .hero-content p {
  padding-bottom: 20px;
}

.hero-btn{
  color: #fff;
  background: #14924A;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0px 4px 10px -2px #676767;
}

.hero-btn:hover {
  background: #FAF6DD;
  color: #000;
}

/* @media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
} */

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 80%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* @media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
} */

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/* @media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
} */

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}










/* why choose */

.choose{
  background: rgb(206, 225, 215);
  padding: 30px 0;
}
.choose h2{
  font-size: 30px;
  font-weight: 600;
  margin-top: 15px;
}
.choose p{
  width: 70%;
  margin: auto;
}
.choose-all-card{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}
.choose-card {
  /* background-color: #e5ebbd; */
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 24%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
}
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.choose-card i {
  font-size: 3rem;
  color: #14924A;
}
.choose-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  /* height: 70px; */
  padding-top: 10px;
}





/* offer */

.offer h2{
  font-size: 30px;
  font-weight: 600;
  margin-top: 50px;
}
.offer p{
  width: 70%;
  margin: auto;
}
.offer-image{
  width: 55%;
  margin: auto;
  margin-top: 40px;
}

.offer-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-all-card{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.offer-card{
  width: 49%;
  height: 60px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  border: 2px solid #14924A;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.offer-card-left{
  width: 60px;
  background: #14924A;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card-left i{
  font-size: 30px;
  color: #FAF6DD;
}
.offer-card-right{
  margin-left: 10px;
  font-size: 20px;
  color: #14924A;
  font-weight: 500;
  line-height: 24px;
}
.offer-btn{
  color: #fff;
  background: #14924A;
  font-size: 18px;
  font-weight: 400;
  padding: 6px 30px;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 20px;
  box-shadow: 0px 4px 10px -2px #676767;
}
.offer-btn:hover {
  background: #FAF6DD;
  color: #000;
}







/* process */

.process{
  /* background: rgb(157, 203, 176, 0.3); */
  background: rgb(206, 225, 215, 0.3);
  padding: 30px 0;
  padding-bottom: 60px;
  position: relative;
}
.process h2{
  font-size: 30px;
  margin-top: 20px;
  font-weight: 600;
}
.process p{
  width: 70%;
  margin: auto;
}

.process-all-card{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 100px;
}
.process-card {
  background-color: #9DCBB0;
  border-radius: 50%;
  padding: 0px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.process-card i {
  font-size: 3rem;
  color: #14924A;
}
.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  width: 60%;
}

.process-curve-back{
position: absolute;
z-index: -1;
width: 80%;
top: 290px;
left: 150px;
}
.process-curve-back img{
  width: 100%;
}

/* .process-step{
  position: absolute;
  top: -25px;
  left: 40px;
  color: #14924A;
  font-size: 40px;
  font-weight: 900;
  z-index: -1;
  transition: all 0.3s ease-in-out;
} */












/* blog */

.blog{
  margin-bottom: 60px;
}

.blog h2{
  margin: 30px;
  margin-top: 50px;
}
.card{
  position: relative;
}
.blog-heading{
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.blog-btn{
  display: flex;
  align-items: center;
  font-size: 18px;
}
.blog-btn i{
  font-size: 24px;
  margin-top: 2px;
}
.blog-type{
  position: absolute;
  top: 30px;
  left: 30px;
  border: 1px solid #14924A;
  border-radius: 20px;
  background: #14924A;
  color: #fff;
  padding: 2px 20px;
  transition: all 0.2s ease-in-out;
}
.card-body:hover .blog-type{
  background: #FAF6DD;
  color: #000;
}









/* testimonial */
.testimonials{
  padding-bottom: 60px;
  background: rgb(206, 225, 215);
}
.testimonials h4{
  font-size: 26px;
  /* font-weight: 600; */
  padding-top: 50px;
}
.testimonial-card {
  transition: transform 0.3s ease;
  cursor: default;
  height: 100%;
  border: 1px solid #1C4342;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  border-radius: 14px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.testimonial-text {
  font-style: normal;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.testimonial-card p{
  text-align: left;
  font-size: 0.9rem;
  margin-top: 10px;
}
.testimonial-card h5{
  font-size: 1.1rem;
}
.testimonial-card h6{
  font-size: 0.9rem;
  margin-bottom: 0;
}















/* about page */
/* 
.about-container{
  margin-top: 150px;
  display: flex;
  justify-content: space-between;
}
.about-left{
  width: 49%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.about-left h5{
  font-size: 20px;
  font-weight: 800;
  color: #14924A;
}
.about-left h1{
  font-size: 40px;
  font-weight: 600;
}
.about-left p{
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 40px;
}

.about-right{
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-img{
  border-radius: 20px;
  overflow: hidden;
  height: 49%;
}
.about-img img{
  width: 100%;
}
.about-right-content{
  height: 49%;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-right-content-innerdiv{
  width: 49%;
  height: 45%;
  background: #dcebe2;
  border-radius: 10px;
  padding: 20px;
} */




.about{
  margin-bottom: 30px;
}
.about-container {
  margin-top: 130px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2%;
}

.about-left,
.about-right {
  width: 49%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.about-left h5 {
  font-size: 20px;
  font-weight: 700;
  color: #14924A;
}

.about-left h1 {
  font-size: 40px;
  font-weight: 600;
}

.about-left p {
  line-height: 24px;
  margin-top: 30px;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: none;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  height: 49%;
  margin-bottom: 20px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right-content {
  height: 49%;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1%;
}

.about-right-content-innerdiv {
  width: 48%;
  height: 100px;
  background: #dcebe2;
  border-radius: 10px;
  padding: 20px;
  margin-top: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-right-content-innerdiv:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.about-right-content-innerdiv h2 {
  margin-bottom: 0;
  font-weight: 600;
}
.about-right-content-innerdiv h2 span {
  font-size: 16px;
}
.about-right-content-innerdiv p {
  margin-bottom: 0;
  text-align: center;
  line-height: 20px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-right {
    flex-direction: column;
  }

  .about-img,
  .about-right-content {
    height: auto;
  }

  .about-right-content-innerdiv {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .about-left h1 {
    font-size: 32px;
  }

  .about-left p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
  }

  .about-right-content-innerdiv {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-left h1 {
    font-size: 26px;
  }

  .about-left h5 {
    font-size: 18px;
  }

  .about-right-content {
    flex-direction: column;
  }

  .about-right-content-innerdiv {
    width: 100%;
    margin-bottom: 10px;
  }
}



/* vision mission */

.vision{
  background: rgb(206, 225, 215);
  padding: 30px 0;
  padding-bottom: 50px;
}
.vision h2{
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
.vision p{
  width: 70%;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}
.vision-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.vision-card {
  width: 49%;
  height: 180px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.vision-card h5 {
  color: #14924A;
  font-weight: 700;
}
.vision-card h2{
  font-size: 26px;
  font-weight: 600;
  margin-top: 0px;
  text-align: unset;
}
.vision-card p{
  width: 100%;
  margin: auto;
  text-align: unset;
  margin-bottom: 0px;
}



.about-choose{
  background: none;
}



/* team */
.team{
  background: rgb(206, 225, 215);
  padding: 30px 0;
  padding-bottom: 50px;
}
.team h2{
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
.team p{
  width: 70%;
  margin: auto;
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}
.team-all-cards{
  justify-content: center;
}
.team-member-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member-img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.team-member-img img {
  /* border-radius: 0%; */
  width: 100%;
  height: auto;
  /* margin-bottom: 5px; */
}

.team-member-content {
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-member-card h4 {
  color: #666;
  font-weight: 700;
}
.team-member-content h5 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1em;
  color: #14924A;
  font-weight: 500;
}
.team-member-content p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}

.team-social-links{
  /* gap: 10px; */
  background: #dcf1e5;
  padding: 10px;
  border-radius: 50%;
  width: 54px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-social-links a i{
  font-size: 22px;
  color: #14924A;
  transition: all 0.2s ease-in-out;
}
.team-social-links a i:hover{
  color: #00481e;
}







/* product page */


.product-header-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.9)),
    url("../img/product-banner.webp") !important;
  /* margin-top: 100px; */
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 400px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.product-header-banner p{
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  width: 70%;
  margin: auto;
  line-height: 30px;
  padding-top: 140px;
}

.product-single {
  margin: 100px 0;
  /* border: 2px solid #14924A; */
  border-radius: 20px;
  padding: 20px;
}
.product-single h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.product-single h4{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-left{
  width: 49%;
}
.product-left ul{
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  padding-left: 30px;
  font-size: 16px;
  color: #077f39;
}
.product-left ul li{
  margin-bottom: 4px;
}


.product-right{
  width: 49%;
}
.product-right img{
  width: 100%;
}

.product-btn-all{
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-started-btn{
  color: #fff;
  background: #14924A;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0px 4px 10px -2px #676767;
}

.product-started-btn:hover {
  background: #FAF6DD;
  color: #000;
}
.product-more-btn{
  color: #4b4b4b;
  background: #a5bfb0;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.3s;
}

.product-more-btn:hover {
  background: #737373;
  color: #fff;
}


.product-divider{
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #14924A, #1C4342);
  border-radius: 4px;
}











/* blog list page */


.blog-header-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.9)),
    url("../img/blog-banner.webp") !important;
  /* margin-top: 100px; */
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 400px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.blog-header-banner h1{
  margin-top: 140px;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 40px;
}
.blog-header-banner p{
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  width: 70%;
  margin: auto;
  line-height: 30px;
}

.blog-catg{
  display: flex;
  margin: auto;
  width: 100%;
}
.blog-catg{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.blog-tip{
  border: 1px solid #14924A;
  border-radius: 30px;
  padding: 2px 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.blog-tip:hover {
  background: #14924A;
  color: #fff;
}
.blog-catg .active {
  background: #14924A;
  color: #fff;
}



.blog-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.blog-card{
  width: 49%;
  margin-bottom: 20px;
}

.blog-card a{
  color: #1f1f1f;
}

.blog-card .blog-btn {
  color: #3e5bff;
}
.blog-card .blog-btn:hover {
  color: #1833c7;
}

.recent-posts-list img{
  width: 80px;
  height: 70px;
  margin-right: 10px;
  object-fit: cover;
}

.sidebar-widget{
  margin-bottom: 20px;
}









/* blog detail page */

.blog-details-catg{
  display: flex;
  margin: auto;
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.blog-details-catg {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0px;
}
.blog-details-catg .blog-tip{
  border: 1px solid #14924A;
  border-radius: 4px;
  padding: 2px 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.blog-tip:hover {
  background: #14924A;
  color: #fff;
}
.blog-catg .active {
  background: #14924A;
  color: #fff;
}


.card-main-img {
  height: 25vw;
  overflow: hidden;
}
.card-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body h2{
  font-size: 30px;
  font-weight: 700;
}

.blog-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-left: 20px;
}

.blog-post-card .blog-catg{
  justify-content: left;
  margin-left: 10px;
  margin-top: 0;
}
.blog-post-card .blog-tip{
  background: #14924A;
  color: #fff;
}

.blog-about p{
  width: 300px;
}









/* privacy policy page */

.privacy-header-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.8)),
    url("../img/privacy-policy-banner.webp") !important;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.privacy-header-banner h1{
  margin-top: 150px;
  color: #fff;
  font-weight: 700;
  font-size: 60px;
}
.privacy-header-banner p{
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  width: 70%;
  margin: auto;
  line-height: 24px;
}


.main-ul {
  list-style-type: none;
  padding-left: 0;
}

.main-ul h5 {
  padding-left: 25px;
}

.text-p p{
  padding-left: 25px;
}
.inner-ul {
  padding-left: 50px;
}

.privacy-contact-div{
  padding-left: 40px;
}






/* enquiry page */

.enquiry-hero{
  padding-top: 120px;
  padding-bottom: 0px;
}
.enquiry-hero-card-all {
  display: flex;
  align-items: center;
  gap: 3%;
}
.enquiry-hero-card{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enquiry-hero-card-img i {
  font-size: 40px;
  color: #14924A;
}
.enquiry-hero-card-text {
  font-size: 20px;
  font-weight: 600;
  color: #14924A;
  text-align: center;
}

.enquiry-hero-card-all .divider{
  height: 80px;
  width: 2.2px;
  background: #14924A;
  border-radius: 4px;
}




.enquiry-form{
  background: rgb(206, 225, 215);
  padding-bottom: 0;
}
.enquiry-form h2{
  font-size: 30px;
  font-weight: 600;
  padding-top: 40px;
}
.enquiry-form p{
  width: 75%;
  margin: auto;
}
.form-section{
  display: flex;
  justify-content: space-around;
  align-items: end;
}

.form-section-img{
  width: 400px;
}
.form-section-img img{
  width: 100%;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
}

.form-container h2 {
  text-align: center;
  color: #222;
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: 500;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #14924A;
}

button {
  margin-top: 20px;
  padding: 6px;
  border: none;
  background-color: #14924A;
  color: white;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1C4342;
}








.enquiry-choose{
  background: none;
}