.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: #e6f5eb;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: #3aaa35;
}

.stat p {
  font-size: 1.2rem;
  color: #333;
}

/* ------------------------------
   Section Utility
------------------------------ */
.section {
  padding: 8rem 4rem;
  text-align: center;
  border-radius: 20px;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}


/* ------------------------------
    Features
------------------------------ */
.contact-features {
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
  background-color: #f5f5f5;
}

.feature {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature h2 {
  margin-bottom: 0.5rem;
  color: #006644;
}

/* ------------------------------
   Teams Section
------------------------------ */
.team-section {
  padding: 80px 20px;
  margin: auto;
  background-color: #f5f5f5;
}

.team-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.team-card p {
  color: #666;
  margin-top: 4px;
}

/* ------------------------------
   Feature Section
------------------------------ */
.feature-section {
  background-color: white;
  padding: 4rem 2rem;
}

.feature-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.text-column {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.text-column h4 {
  color: #6c757d;
  font-weight: 600;
}

.text-column h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.text-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.image-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.device-mockup {
  background-color: #111;
  padding: 1rem;
  border-radius: 16px;
  display: inline-block;
}

.device-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Testimonial*/
.testimonial-carousel {
  background: #f2f8f5;
  padding: 5rem 1rem;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  overflow: hidden;     /* ✅ Hide overflowing cards */
  max-width: 800px;         /* Match card width exactly */
  width: 100%;
  margin: auto;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;            /* Remove spacing between cards */
  background: transparent;
  box-sizing: border-box;
  padding: 3rem;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-card p {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.user img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.carousel-dots {
  text-align: center;
  margin-top: 2rem;
}

.carousel-dots .dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #006c4f;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

  .user img {
    width: 50px;
    height: 50px;
  }
  
}


/* ------------------------------
   Custom Footer
------------------------------ */
.custom-footer {
  background-color: #131313;
  color: white;
  font-family: 'Inter', sans-serif;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 60px;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #3aaa35;
  margin: 8px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a,
.footer-column a,
.footer-column p {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-column ul li a.active,
.footer-column a.green-link {
  color: #3aaa35;
  font-weight: 700;
}

.footer-column span {
  font-weight: bold;
  text-transform: uppercase;
}

.social-icons a {
  margin-right: 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom h4::after {
  background-color: #3aaa35;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
