@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #8ec73c;
  --white: #fff;
  --black: #000;
  --text: #192a00;
  --background: #f4ffe5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
}

.container {
  max-width: 1400px;
  /* max-width: 100%; */
  /* padding-left: 25px;
  padding-right: 25px; */
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.4s ease 0s;
}

a:focus-visible {
  outline: 0;
}

/* button  */
a.site-btn {
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
  padding: 8px 20px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s;
}

a.site-btn:hover {
  background-color: var(--white);
  border: 1px solid var(--primary);
  transform: scale(1.05);
  color: var(--primary);
}

p,
.fs-16,
.navbar-nav li a {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  color: var(--black);
}

h1 {
  font-size: 54px;
  line-height: 64px;
}

h2 {
  font-size: 40px;
  line-height: 50px;
}

h3 {
  font-size: 32px;
  line-height: 42px;
}

h4 {
  font-size: 18px;
  line-height: 28px;
}

img {
  max-width: 100%;
  height: auto;
}

div {
  border: 0;
  outline: 0;
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.py-100 {
  padding: 100px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.br-16 {
  border-radius: 16px;
}

.site-border {
  border: 4px solid var(--primary);
  border-radius: 16px;
  background-color: #E9FFCA;
  width: 100%;
}

svg:focus,
.offcanvas-header .btn-close {
  outline: none;
}

.nav-link:focus-visible,
.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
}

select:focus-visible,
input:focus-visible,
.dropdown-item:focus-visible {
  outline: 0;
}

.sec-title {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

/* header  */

a.nav-link {
  transition: color 0.3s ease;
}

a.nav-link.active {
  color: var(--primary);
}

a.nav-link:hover {
  color: var(--primary);
}

.siteLogo {
  width: 180px;
}

/* hero  */

.textWidth {
  max-width: 676px;
  margin: auto;
}

section.hero-section .container {
  background: linear-gradient(to bottom,
      #e7ffc6 0%,
      rgba(244, 255, 228, 0.5) 100%);
  max-width: 1400px;
  border-radius: 15px;
  padding: 100px;
}

/* team  */

.subtitle-width {
  max-width: 650px;
  margin: 0 auto;
}

/* .product-image img {
  height: 500px;
  object-fit: contain;
} */

.team .accordion-body>p {
  margin: 10px 0;
}

/* Accordion customization */
.feature-item.accordion-item {
  border: 1px solid #dedede;
  background-color: var(--white);
  max-width: 90%;
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
}

.feature-item .accordion-button {
  padding: 15px 20px;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.feature-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.feature-item .accordion-button::after {
  margin-left: auto;
}

.feature-item .accordion-body {
  padding: 0 20px 20px 70px;
}

.feature-item {
  /* display: flex;
  gap: 20px; */
  padding: 10px;
  border: 1px solid #dedede;
  background-color: var(--white);
  max-width: 450px;
  margin: 25px 0;
  border-radius: 12px;
  align-items: center;
}

.accordion-button .feature-icon {
  max-width: 30px;
  max-height: 30px;
}

.accordion-button .feature-text {
  margin-right: auto;
}

/* Features */

section.team .container,
.features-wrapper .container, section.pricing .container {
  background-color: #f4ffe5;
  padding: 80px;
  max-width: 1400px;
  border-radius: 25px;
}

.feature-tabs .nav-link {
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  color: var(--text);
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #dedede;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.feature-tabs .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-tabs .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.feature-tabs .nav-link.active i {
  color: var(--white);
}

.feature-icon {
  font-size: 24px;
  display: block;
}

.tab-content {
  padding: 50px 0 0;
}

.feature-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-wrapper img {
  height: 400px;
  /* object-fit: contain; */
}

.feature-description {
  padding: 20px;
}

.feature-title {
  margin-bottom: 20px;
}

.tab-pane {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tab-pane.show {
  opacity: 1;
}

p.feature-text {
  margin: 15px 0;
}

/* .feature-tabs i.feature-icon {
  margin-bottom: 15px;
} */

.timeTracking-wrapper .feature-tabs i.feature-icon {
  margin-bottom: 0;
}

/* device  */

.subtitle-fullwidth {
  max-width: 850px;
  margin: 0 auto;
}

img.productDevice {
  max-width: 70%;
  margin: 0 auto;
}

/* testimonial  */

.title-container {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
}

.slider-btn {
  display: flex;
  gap: 20px;
}

.swiper {
  width: 100%;
  padding-bottom: 30px;
}

.testimonial-card {
  background-color: #F4FFE5;
  padding: 40px;
  border-radius: 12px;
  height: 100%;
  height: 506px;
}

/* .testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
} */

.testimonial-author {
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
}

.stars {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.custom-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev,
.custom-next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.testimonial-card-heading {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* download  */

section.download img {
  max-width: 150px;
  height: 70px;
}


/* free forever  */

.free-item {
  margin: 20px 5px;
}

/* customer support  */

.support-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.support-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin: 10px 0;
}

.dot-text p,
.dot-text i {
  color: #474649;
}

.dot-text i {
  font-size: 8px;
}

/* cta  */

.team .container {
  margin-top: 100px;
}

/* contact us  */

.contact-details i {
  font-size: 20px;
  padding: 10px;
  border-radius: 50px;
  background-color: var(--primary);
  margin: 10px 0;
  color: var(--white);
}

.form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.25);
}

.form-container .form-group {
  margin-bottom: 25px;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 18px;
}

.form-container .required::after {
  content: " *";
  color: var(--primary);
}

.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dae0e8;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: var(--primary);
}

.form-container textarea {
  min-height: 100px;
  resize: vertical;
}

.form-container button {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 8px 25px;
  border-radius: 30px;
  transition: background-color 0.2s;
}

.form-container button:hover {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

section.contact-section {
  background-color: #F4FFE5;
  margin: 100px 0;
}

/* footer  */

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-title {
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
  font-size: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.separator {
  border-top: 1px solid #eee;
  margin: 2rem 0;
}

.copyright {
  padding: 0 0 15px;
  color: #555;
  font-size: 0.9rem;
}

.bottom-links a {
  color: #555;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: var(--primary);
}

a.download-btn img {
  max-width: 150px;
  height: 60px;
}


/* accordion */

/* .feature-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
} */

.feature-item {
  margin-bottom: 10px;
}

.site-border {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  /* overflow: hidden; */
  /* min-height: 350px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  transition: all 0.5s ease;
}

.slide-image {
  position: absolute;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.slide-image.active {
  opacity: 1;
  transform: translateX(0);
}

.default-image {
  opacity: 1;
}

.default-image.hidden {
  opacity: 0;
  transform: translateX(-50px);
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #0d6efd;
  box-shadow: none;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0.25rem !important;
  margin-bottom: 10px;
}

/* cards layout  */

.card_wrapper {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: 340px;
  border: 1px solid #dedede;
}

.icon-container {
  display: inline-block;
  background-color: #f3f2ff;
  border-radius: 8px;
  padding: 12px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  color: var(--primary);
  font-size: 20px;
}

.card_wrapper a {
  max-width: max-content;
}


/* privacy policy and term condition  */
.site-policy .title {
  font-size: 40px;
  line-height: 50px;
  color: #192a00;
  text-align: center;
  /* text-decoration: underline; */
  margin-bottom: 30px;
  font-weight: 600;
}

.site-policy .section-title {
  font-size: 28px;
  line-height: 40px;
  color: #000;
  /* text-decoration: underline; */
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.site-policy p {
  margin-bottom: 15px;
  text-align: justify;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.site-policy ul {
  margin-left: 20px;
}

.site-policy li {
  margin-bottom: 10px;
}

/* privacy policy and term condition  */

.feature-item i {
  font-size: 30px;
  color: var(--primary);
}

.copyright a:hover {
  color: var(--primary);
}

.copyright a {
  color: var(--black);
}

/* faq section  */

.faq-title {
  text-align: center;
  color: #333333;
  font-weight: bold;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.faq-item {
  background: #f6fef9;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(65, 196, 118, 0.15);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-weight: 400;
  color: #333;
}

.faq-icon {
  color: var(--primary);
  font-size: 25px;
  transition: transform 0.3s ease;
}

.faq-item.active i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 200px;
}

.question-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-right: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(65, 196, 118, 0.2);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
}

/* faq section  */