:root {
  --green-bg: #e6ffe6;
  --dark-green: #0c1f0f;
  --nav-pill: #d6f2cc;
  --yellow-light: #fffcc2;
  --yellow-soft: #ffffcc;
  --deep-green: #00331f;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--green-bg);
  color: var(--dark-green);
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: var(--green-bg);
}

.logo img {
  max-height: 120px;
}

.nav-capsule {
  background-color: var(--nav-pill);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  display: flex;
  gap: 1.2rem;
  font-weight: bold;
}

.nav-capsule a {
  text-decoration: none;
  color: #000;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem 4rem 4rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: normal;
}

.sub-badge {
  background-color: #eae77c;
  color: var(--dark-green);
  padding: 0.2rem 0.6rem;
  font-size: 1.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.supporting-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-button {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.cta-button .arrow {
  margin-left: 0.6rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-image {
  flex: 1;
  text-align: right;
  min-width: 250px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  transform: rotate(-8deg);
}

/* TRUSTED BRANDS */
.trusted-brands {
  background-color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.trusted-brands h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem 1rem;
  min-width: 100%;
  padding: 1rem 0;
  box-sizing: border-box;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0.75rem;
  border-radius: 8px;
  
}

.logo-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* Navigation Arrows */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-green);
  color:#fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-button.prev {
  left: 0px;
}

.carousel-button.next {
  right: 0px;
}

/* Pagination Dots */
.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #ccc;
  cursor: pointer;
}

.carousel-dots button.active {
  background-color: var(--dark-green);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }

  .carousel-button.prev {
    left: 0;
  }

  .carousel-button.next {
    right: 0;
  }
}


/* WHY VERIFICATION */
.why-verification {
  background-color: var(--deep-green);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.why-verification h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.why-verification p.subtext {
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.5;
}

.features-group {
  max-width: 900px;
  margin: 0 auto;
}

.features-row {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 2rem 0;
}

.feature-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--dark-green);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* TIMELINE - HOW IT WORKS */
.how-it-works {
  background-color: var(--green-bg);
  text-align: center;
  padding: 4rem 2rem;
}

.how-it-works h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark-green);
  margin: 0;
}

.how-it-works p.subtext {
  margin: 0.5rem 0 2.5rem;
  font-size: 1rem;
  color: var(--dark-green);
  opacity: 0.85;
}

.timeline-alt {
  position: relative;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem 0;
}

.timeline-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #0c1f0f;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 3px solid #0c1f0f;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left::before {
  right: -8px;
}

.timeline-item.right::before {
  left: -8px;
}

.content-box {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: left;
  max-width: 90%;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible .content-box {
  opacity: 1;
  transform: translateY(0);
}

.content-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #0c1f0f;
}

.content-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/* ENGAGE PLATFORM */
.engage-platform {
  background-color: var(--deep-green);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.engage-platform h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.ep-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.ep-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.ep-text p {
  font-size: 1rem;
  line-height: 1.5;
}

.ep-image {
  flex: 1;
  min-width: 600px;
  text-align: right;
}

.ep-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ENGAGE FEATURES GRID */
.engage-features {
  background-color: var(--green-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.engage-features h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.engage-features .subtext {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  color: var(--dark-green);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.step-card {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.step-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-green);
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/* FAQ SECTION */
.faq-section {
  background-color: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.faq-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA SECTION */
.verification-cta {
  background-color: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem 4rem 2rem;
}

.verification-cta h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.verification-cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* CONTACT SECTION */
.contact-section {
  background-color: var(--green-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-section .subtext {
  font-size: 1rem;
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.contact-info {
  flex: 1;
  min-width: 260px;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info ul li {
  margin-bottom: 1rem;
}

.contact-info span {
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

.contact-form {
  flex: 1.2;
  min-width: 300px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button.cta-button {
  margin-top: 1rem;
  align-self: flex-start;
  background-color: #0c1f0f;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.contact-form .arrow {
  margin-left: 0.6rem;
  font-size: 1.2rem;
  font-weight: bold;
}

/* FOOTER */
.footer-section {
  background-color: #00331f;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #fff;
  margin: 0 0.5rem;
  
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #32e078;
  color: #00331f;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.scroll-top:hover {
  background: #28c66b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .features-row, .ep-content, .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .hero{
	  padding:1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .carousel-wrapper, .pricing-wrapper {
    overflow-x: auto;
  }

  .carousel-button, .pricing-button {
    display: none;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0 !important;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .timeline-alt::before {
    left: 20px;
  }

  .timeline-item::before {
    left: 12px !important;
    right: auto !important;
  }

  .content-box {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
  
  .ep-image {
  min-width: 300px;
}

 .timeline-alt {
    padding-left: 1.5rem;
  }

  .timeline-alt::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0 !important;
    padding: 2rem 1rem 2rem 3.5rem;
    text-align: left;
    position: relative;
  }

  .timeline-item::before {
    top: 24px;
    left: 20px !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .content-box {
    background: linear-gradient(135deg, #fff, #fff);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
  }

  .content-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .content-box p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .timeline-item.visible .content-box {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark-green);
}

/* Responsive styles for nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-capsule {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--nav-pill);
    display: none;
    padding: 1rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }

  .nav-capsule a {
    font-size: 1rem;
  }

  .nav-capsule.show {
    display: flex;
  }
}

@media (max-width: 992px) {
  .logo-card {
    flex: 0 0 calc(33.33% - 1rem); /* 3 per row */
  }
}

@media (max-width: 600px) {
  .logo-card {
    flex: 0 0 calc(50% - 1rem); /* 2 per row */
  }
}


/* Lightbox styles */
.lightbox {
  position: fixed;
  display: none;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.footer-bottom .credits {
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

.footer-bottom .credits img {
  height: 20px;
  margin-left: -8px;
  vertical-align: middle;
}

.footer-logo {
  margin: 0.5rem 0 1rem;
  text-align: left;
}

.footer-logo img {
  height: 40px;
}

