html {
  scroll-behavior: smooth;
}

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

p,
a,
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header {
  color: white;
  padding: 20px 0;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #87cb1b, #094403);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #87cb1b, #094403);
  /* #191654, #43C6AC); */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

header p {
  margin-bottom: 0px;
  text-wrap: nowrap;
}

.header-text {
  display: flex;
}

@media screen and (max-width: 1012px) {
  .header-text {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .header-text {
    font-size: 13px;
  }
  .header-button a {
    font-size: 13px;
    padding: 8px 12px !important;
  }
}

/* Primary Buttons */
.primary-btn a {
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  z-index: 1;
}

.primary-btn a::after {
  content: "";
  background: #87cb1b;
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: all linear 200ms;
}

.primary-btn a:hover::after {
  width: 100%;
}

.primary-btn:hover {
  color: black;
}

/* .header-button a{
    text-decoration: none;
    color:white;
    border: 1px solid white;
    padding : 10px 15px;
}

.header-button a:hover{
    background-color: white;
    color:black;
} */

.header-button a {
  color: white;
  padding: 10px 15px;
  border: 1px solid white;
}

.header-button a::after {
  background: #87cb1b;
}

.header-button a:hover {
  color: black;
}

.header-button a:hover i,
.demo-btn a:hover i {
  animation: moveArrow 0.5s ease-in-out infinite alternate;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(5px);
  }
}

@keyframes slidingBackground {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

main .logo img {
  width: 100%;
}

/* .demo-btn a{
  background: #87cb1b ;
} */
.demo-btn {
  margin: 15px 0;
}
.hamburger {
  padding: 16px 20px !important;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger .fa-bars,
.hamburger .fa-times {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s;
}

.hamburger .fa-times {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hamburger.active .fa-bars {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hamburger.active .fa-times {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}

.demo-btn a,
.hamburger-menu button {
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
  color: #094403;
  border: 1px solid #094403;
  z-index: 1;
  padding: 10px 14px;
}

.demo-btn a::after {
  content: "";
  background: #87cb1b;
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: all linear 200ms;
}

.demo-btn a:hover::after {
  width: 100%;
}

.nav-links a,
.mobile-menu a {
  text-decoration: none;
  margin: 0 10px;
  color: #094403;
  position: relative;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: #87cb1b;
}

.nav-links a::after,
.mobile-menu a::after {
  content: " ";
  background: #87cb1b;
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0px;
  transition: all linear 200ms;
}

.nav-links a:hover::after,
.mobile-menu a:hover::after {
  width: 100%;
}

.nav-bar .hamburger-menu {
  display: none;
}

.nav-bar .mobile-menu {
  display: none;
  flex-direction: column;
  text-align: center;
  background-color: white;
  position: absolute;
  top: 100%;
  width: 100%;
  transition: max-height 0.3s ease;
}

.nav-bar .mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .nav-bar .nav-links,
  .nav-bar .demo-btn {
    display: none;
  }

  .nav-bar .hamburger-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-bar .mobile-menu {
    max-height: 0;
  }

  .nav-bar .mobile-menu.active {
    max-height: 500px;
    display: flex;
    animation: slideDown 0.3s ease-in-out;
  }
}

@keyframes slideDown {
  from {
    max-height: 0;
  }
  to {
    max-height: 500px; /* This should match the max-height in the active state */
  }
}

.right-section {
  overflow: hidden;
}

.right-section-img {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

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

  100% {
    transform: translatey(0px);
  }
}

.right-section img {
  width: 100%;
  aspect-ratio: 1.235;
  object-fit: contain;
  rotate: 28deg;
  overflow: hidden;
}

.body-content {
  background-image: url("../images/curve_bg.webp");
  backdrop-filter: blur(0.2);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: white;
  box-shadow: -2px 0px 1px 0px;
  /* box-shadow: -2px 0px 15px 0px #0000005e /* on scroll */
}

.text .title {
  font-size: 30px;
  font-weight: 600;
}

.text h1 {
  font-size: 60px;
  font-weight: 800;
}
@media (max-width: 992px) {
  .text {
    margin-top: 20px;
  }
}
.text .subtitle {
  font-size: 24px;
  font-weight: 600;
}

.text .title,
.text h1,
.text .subtitle {
  background-image: url("../images/text-bg-groot.jpg");
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.prod {
  -webkit-text-stroke: 1px;
  letter-spacing: 1px;
}

/* Add this to your style.css */

/* Keyframe animations */
/* Add this to your style.css */
.float-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.float-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-sec-left {
  overflow: hidden;
}
.app-sec-left img {
  width: 100%;
}
.app-sec {
  background-color: #ffff;
}

.app-req-btn a {
  margin-top: 50px;
}

.why-sec {
  margin-top: 20px;
}

.why-sec-text h2 {
  font-size: 34px;
}

.why-sec-text p {
  font-size: 24px;
  max-width: 400px;
}

.why-sec-card img {
  width: 50px;
  height: 50px;
}

.fa1 {
  font-size: 25px;
  height: 45px;
  color: #87cb1b;
  border: 3.5px solid #87cb1b;
  aspect-ratio: 1;
  border-radius: 100%;
  width: auto;
  text-align: center;
  font-weight: 800;
  font-family: monospace;
}

/* -------------------------- */

svg#freepik_stories-invoice:not(.animated) .animable {
  opacity: 0;
}

svg#freepik_stories-invoice.animated #freepik--Folder--inject-5 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideUp;
  animation-delay: 0s;
}

svg#freepik_stories-invoice.animated #freepik--document--inject-5 {
  animation: 0.5s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
  animation-delay: 2s;
  opacity: 0;
}

svg#freepik_stories-invoice.animated #freepik--document--inject-5 {
  animation: 0.5s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown,
    3s Infinite linear floating;
  animation-delay: 2s, 2.5s;
  opacity: 0;
}

svg#freepik_stories-invoice.animated #freepik--coins--inject-5 {
  animation: 1s 1 forwards ease-out slideUp;
  animation-delay: 0s;
}

svg#freepik_stories-invoice.animated #freepik--coins--inject-5 {
  animation: 1s 1 forwards ease-out slideUp;
  animation-delay: 0.5s;
  opacity: 0;
}

svg#freepik_stories-invoice.animated #freepik--Coins--inject-5 {
  animation: 1s 1 forwards ease-out slideUp, 6s Infinite linear floating;
  animation-delay: 0s, 1s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: inherit;
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes floating {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

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

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.aware-sec {
  background-image: url("../images/service-bg-2.jpg");
  width: 100%;
  min-height: 600px;
  height: fit-content;
  margin-top: 50px;
  opacity: 0.8;
  background-size: cover;
  background-position-x: 29%;
  background-repeat: no-repeat;
}

.aware-sec-text h3 {
  margin-top: 60px;
}

.aware-sec-text p {
  margin-bottom: 60px;
}

.aware-sec .fa-solid {
  border: 3px solid #87cb1b;
  color: white;
  border-radius: 100%;
  font-size: 25px;
  aspect-ratio: 1;
  width: auto;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aware-sec h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.aware-sec p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 400;
}
.review-sec {
  min-height: 200px;
  display: flex;
  align-items: center;
}
.review-sec h2 {
  font-size: 60px;
  text-align: center;
  font-weight: 700;
  color: #87cb1b;
}

.review-sec p {
  font-size: 34px;
  text-align: center;
  color: #094403;
  font-weight: 700;
}

/* ---- particles.js container ---- */
#particles-js {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
canvas {
  /*effect*/
  position: absolute;
  top: 0;
  left: 0;
}

/* ............owl-css................................ */

:root {
  --mon: "Montserrat", sans-serif;
  --blue: #e6e5e5;
  --darkblue: #094403;
}
.sec-title {
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}
.sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #094403;
}
.sec-title p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #094403;
}
.testimonial-area {
  background: var(--blue);
  position: relative;
  z-index: 2;
  padding: 50px 0;
}
.testimonial-area .owl-carousel {
  overflow: hidden;
  padding: 0 20px;
  margin: 0px -40px;
  padding-right: 40px;
}

@media screen and (max-width: 600px) {
  .testimonial-area .owl-carousel {
    margin: 0px !important;
  }
}
.testimonial-area .owl-stage-outer {
  padding: 30px 50px;
  margin-left: -34px;
  width: calc(100% + 100px);
}
.single-testimonial {
  border: 7px solid #094403;
  text-align: center;
  border-radius: 45px;
  position: relative;
  z-index: 2;
}
.single-testimonial p {
  color: #094403;
  font-size: 15px;
  line-height: 24px;
  padding: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}
.single-testimonial::before {
  content: "";
  position: absolute;
  left: -35px;
  top: -35px;
  background: url("../images/quote.png") no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  transform: rotate(180deg);
  background-position: 34px 15px;
}
.single-testimonial::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -34px;
  background: url("../images/quote.png") no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  background-position: 34px 19px;
}
.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
/* .round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -6px;
	width: 50px;
	height: 6px;
	background: #fff;
	border-radius: 30px;
} */
/* .round-1::after {
	content: "";
	position: absolute;
	left: -6px;
	top: 62px;
	width: 6px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
} */
/* .round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -6px;
	width: 50px;
	height: 6px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
} */
/* .round-2::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: 62px;
	width: 6px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
} */
.client-video {
  padding-right: 15px;
}
.client-info {
  position: relative;
  z-index: 3;
}
.client-info img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
/* .client-info a {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	font-size: 22px;
} */
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 50px;
}
.client-info h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  color: #094403;
}
.client-info span {
  display: inline-block;
  color: #094403;
  font-size: 12px;
}
.sec-title.white-title h2 {
  color: #fff;
}
.owl-dots button {
  background: #094403 !important;
  width: 10px;
  height: 10px;
  border-radius: 26px;
  margin: 0 5px;
  transition: 0.3s;
}
.owl-dots {
  text-align: center;
  margin-top: 50px;
}
.owl-dots button.active {
  width: 30px;
}

.footer-sec {
  padding-top: 20px;
}

.footer-logo img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: flex;
  padding-right: 10px;
}
.quick-links {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.quick-links a {
  text-decoration: none;
  color: #094403;
  margin-bottom: 10px;
  position: relative;
}

.quick-links a:hover {
  color: #87cb1b;
}

.quick-links a::after {
  content: "";
  background: #87cb1b;
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0px;
  transition: all linear 200ms;
}

.quick-links a:hover::after {
  width: 100%;
}

.sub-footer {
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #87cb1b, #094403);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #87cb1b, #094403);
  color: white;
  padding: 2px 0px;
}
.sub-footer p {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .sub-footer p {
    font-size: 12px;
    font-weight: 500;
  }
}
.sub-footer a {
  text-decoration: inherit;
  color: inherit;
  font-weight: inherit;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.social-icons a {
  text-decoration: none;
}

.social-icons .fa-brands {
  border: 3px solid #87cb1b;
  color: #094403;
  border-radius: 100%;
  aspect-ratio: 1;
  width: auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  /* transition: transform 1s ease-in-out; */
}

.social-icons .fa-brands:hover {
  /* transform: rotateY(360deg); */
  animation: spin 1s ease-in-out forwards;
}

@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.footer-left .mail i,
.footer-left .call i {
  color: #094403;
  margin-right: 5px;
}
.footer-left p {
  font-size: 18px;
  font-weight: 400;
}
.footer-right h5 {
  text-align: end;
}

@media screen and (max-width: 767px) {
  .social-icons {
    justify-content: flex-start;
  }
  .footer-right h5 {
    text-align: start !important;
  }
  .quick-links {
    align-items: flex-start;
  }
  .footer-logo img {
    justify-content: flex-start;
    width: 50%;
  }
  .footer-left,
  .footer-middle {
    margin-bottom: 10px;
  }
  .footer-middle {
    max-width: min-content!important;
  }  
}
