﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --forest: #0A2818;
    --forest-mid: #143D24;
    --forest-light: #1D5433;
    --lime: #BEFF57;
    --lime-dark: #9FE032;
    --cream: #F5F0E8;
    --cream-dark: #EAE3D5;
    --charcoal: #1A1A1A;
    --ink: #2C2C2C;
    --muted: #6B7280;
    --white: #FFFFFF;
    --border: rgba(10,40,24,0.12);
    --font-display: 'Fraunces', Georgia, serif;
    --font-heading: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Manrope', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.42s cubic-bezier(0.4,0,0.2,1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope',sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── NAV ─── */
  nav {
    padding: 50px 0px;
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: none;
  }
  .nav-logo {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    text-decoration: none;
  }
  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--forest); }
  .btn-nav {
    background: var(--lime);
    color: var(--forest) !important;
    padding: 0.656rem 2rem;
    border-radius: 100px;
    font-size: 0.8567rem !important;
    transition: background var(--transition), transform var(--transition) !important;
  }
  .btn-nav:hover { background: var(--lime) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(190,255,87,0.35); }
  .btn-nav a{
    text-decoration: none;
    color: #0A2818;
    font-weight: 600;
  }
  /* ─── BUTTONS ─── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lime);
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .btn-primary:hover {
    background: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190,255,87,0.35);
  }
  .btn-primary--lg { font-size: 1rem; padding: 1rem 2.25rem; }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
  }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1.5px solid var(--forest);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
  }
  .btn-outline:hover {
    background: var(--forest);
    color: var(--lime);
    transform: translateY(-2px);
  }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
  }
  .btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(
        to bottom,
        rgba(10, 40, 24, 0.25) 0%,
        rgba(10, 40, 24, 0.50) 60%,
        rgba(10, 40, 24, 0.75) 100%
      ),
      url("../images/optimised/hero-image.webp") center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 0px 5% 80px;
    align-items: center;
  }
  /* .hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(190,255,87,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(190,255,87,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  } */
  .hero-orb-1 {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(190,255,87,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-orb-2 {
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(29,84,51,0.6) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1240px; width: 100%;

    align-items: center;
    padding-top: 100px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(190,255,87,0.12);
    border: 1px solid rgba(190,255,87,0.25);
    color: var(--lime);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }
  .hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    width: 800px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--lime);
  }
  .hero-subtext {
    font-size: 1.0625rem;
    color: white;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    font-weight: 400;
  }
.hero-ctas {
  display: flex;
  align-items: center; /* fixes vertical alignment */
  gap: 1rem;
  flex-wrap: nowrap;
  margin-bottom: 2.5rem;
}

.hero-ctas a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap; /* prevents text breaking */
}
.hero-trust-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  list-style: none;
  width:100%;
  text-align: center;
}

.hero-trust-list li {
  position: relative;
  font-size: 15px;
  color: white;
  padding-right: 20px;
}

/* Divider */
.hero-trust-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 19px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
.hero-card-stack {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 300px; /* important for positioning */
}
.hero-left {
  max-width: 600px;
}
  .hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(8px);
  }
  .hero-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.4rem;
  }
  .hero-card-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .hero-card-desc {
    font-size: 0.8125rem;
    color: rgba(245,240,232,0.55);
    font-weight: 400;
  }
  .hero-card-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .hero-card.accent {
    background: var(--lime);
    border-color: transparent;
  }
  .hero-card.accent .hero-card-label { color: rgba(10,40,24,0.6); }
  .hero-card.accent .hero-card-value { color: var(--forest); }
  .hero-card.accent .hero-card-desc { color: rgba(10,40,24,0.6); }

  /* ─── TRUST BANNER ─── */
  .trust-banner {
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 5%;
    overflow: hidden;
  }
  .trust-scroll {
    display: flex; gap: 3rem; align-items: center;
    animation: scroll 18s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .trust-dot {
    width: 6px; height: 6px;
    background: var(--lime-dark);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── SECTIONS ─── */
  section { padding: 100px 5%; }
  .container { max-width: 1240px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    background: rgba(10,40,24,0.07);
    color: var(--forest);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(10,40,24,0.12);
  }
  .section-tag.light {
    background: rgba(255,255,255,0.12);
    color: var(--lime);
    border-color: rgba(190,255,87,0.25);
  }

  .section-header--center { text-align: center; }
  .section-header--center .section-sub { margin-left: auto; margin-right: auto; }

  .section-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.2vw, 2.875rem);
    font-weight: 600;
    color: var(--forest);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }
  .section-title em { font-style: italic; color: var(--forest-light); }
  .section-title.white { color: var(--forest); }
  .section-title.white em { color: var(--lime); }
  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 0.75rem;
    max-width: 700px;
  }
  .section-sub.wide { max-width: 680px; }
  .section-sub.white { color: var(--forest); padding-right: 40px; }
  .testinonials-bg .section-title.white{
    color: var( --forest);
  }
  

/* SECTION */
.problem-bg{
  background: #F5F1EA;
  padding: 5rem 0;
}

/* CONTAINER */
.container{
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

/* HEADER */
.problem-header{
  text-align: center;
  margin-bottom: 2rem;
}

.problem-header h2{
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}

.problem-sub{
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #6b6b6b;
  max-width: 600px;
  margin-right: auto;
  line-height: 1.6;
  text-align: left;
}

/* GRID */
.problem-grid{
  display: grid;
  grid-template-columns:1fr 3fr;
  gap: 2rem;
  align-items: stretch;
}

/* LEFT CARD */
.problem-left{
  background:
    linear-gradient(to bottom, rgba(10,40,24,0.55), rgba(10,40,24,0.92)),
    url("../images/optimised/image13.webp") center/cover no-repeat;
  color: white;
  padding: 1.5rem;
  border-radius: 25px;
}

.problem-left h3{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.problem-left p{
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* RIGHT IMAGE CARD */
.solution-right{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  /* IMAGE */
  background:
    linear-gradient(to bottom, rgba(10,40,24,0.25), rgba(10,40,24,0.75)),
    url("../images/optimised/image11.webp") center/cover no-repeat;
}

/* OVERLAY CONTENT */
.solution-overlay{
  padding: 3rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.section-title-sol{
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
  width: min(100%, 720px);
}

/* TEXT */
.solution-line{
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

/* BUTTON */
.btn-outline{
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.42s;
}

.btn-outline:hover{
  background: white;
  color: #0A2818;
}

/* RESPONSIVE */
@media(max-width:900px){
  .problem-grid{
    grid-template-columns: 1fr;
  }

  .problem-header h2{
    font-size: 2rem;
  }
}
/* ─── SERVICES SECTION ─── */
.services-bg {
  background: var(--white);
}

/* ─── GRID LAYOUT ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ─── LAYOUT STRUCTURE ─── */

/* Top-left */
.service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

/* Right tall card */
.service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Bottom-left */
.service-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

/* Bottom full-width */
.service-card:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 3;
}

/* ─── CARD BASE ─── */
.service-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: transform 0.42s ease, box-shadow 0.42s ease;
}

/* ─── SIZE VARIATION ─── */

/* Big card */
.service-card:nth-child(4) {
  padding: 2.5rem;
}

/* Smaller cards */
.service-card:nth-child(1),
.service-card:nth-child(3) {
  padding: 1.75rem;
}

/* ─── ICON ─── */
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

/* ─── TEXT (default = white) ─── */
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  color: white;
  line-height: 1.7;
}

/* ─── TAG ─── */
.service-card .tag {
  font-style: italic;
  color: #1ebe5a;
}

/* ─── BACKGROUND VARIATIONS ─── */

/* Card 1 */
.service-card:nth-child(3) {
  background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.8)
    ),
    url("../images/optimised/image6.webp");
  background-size: cover;
}

.service-card:nth-child(3) h3{
  color: white;
}
/* Card 2 */
.service-card:nth-child(2) {
  background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.8)
    ),
    url("../images/optimised/image2.webp");
  background-size: cover;
  padding-top: 250px;
}

/* Card 3 (LIGHT CARD FIX ✅) */
.service-card:nth-child(1) {
  background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.8)
    ),
    url("../images/optimised/image4.webp");
    background-size: cover;
  
}

/* Override text color ONLY for card 3 */
.service-card:nth-child(1) h3,
.service-card:nth-child(1) p {
  color: white;
}

/* Card 4 */
.service-card:nth-child(4) {
  background: 
    linear-gradient(
      to left,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.8)
    ),
    url("../images/optimised/image3.webp");
  background-size: cover;
}

/* Limit paragraph width for big card */
.service-card:nth-child(4) p {
  max-width: 600px;
}

/* ─── ARROW BUTTON ─── */
.circle {
  width: 40px;
  height: 40px;
  background: var(--lime-dark);
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  right: 20px;
  bottom: 20px;

  cursor: pointer;
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

/* Hover effect 🔥 */
.service-card:hover .circle {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
  /* ─── MID CTA ─── */
  .mid-cta {
    background: var(--forest);
    padding: 80px 5%;
  }
  .mid-cta-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem;
  }
  .mid-cta h2 {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 600;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.025em;
    max-width: 520px;
  }
  .mid-cta h2 em { font-style: italic; color: var(--lime); }
  .mid-cta p {
    color: rgba(245,240,232,0.6);
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    max-width: 480px;
  }

  /* ─── FULL SERVICES ─── */
  .full-service{
    background-color: white;
  }
  .full-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  .fs-card {
  position: relative;
  overflow: hidden;

  border-radius: 10px;
  padding: 2rem 1.75rem;

  transition: all 0.42s ease;
}
.fs-card.reveal.reveal-delay-1{
    background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.6)
    ),
    url("../images/optimised/image7.webp");
  background-size: cover;
}
.fs-card.reveal.reveal-delay-2{
    background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.6)
    ),
    url("../images/optimised/image8.webp");
  background-size: cover;
}
.fs-card.reveal.reveal-delay-3{
    background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.6)
    ),
    url("../images/optimised/image9.webp");
  background-size: cover;
}
.fs-card.reveal.reveal-delay-4{
    background: 
    linear-gradient(
      to bottom,
      rgba(12, 30, 19, 0.1),
      rgba(12, 30, 19, 0.6)
    ),
    url("../images/optimised/image10.webp");
  background-size: cover;
}
  .fs-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,40,24,0.08); }
  .fs-num {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 100;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .fs-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    margin-bottom: 6rem;
    letter-spacing: -0.02em;
  }
  .fs-card p {
    font-size: 0.875rem;
    color: white;
    line-height: 1.75;
  }

/* ─── TESTIMONIAL SECTION ─── */
.testimonials-bg {
  background: white;
}

.testimonial .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 50px;
}


/* ─── HEADER ─── */
.test-head {
  position: relative;
  padding: 2rem 2rem 0 2rem;
  margin-top: 60px;
}

.test-head::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 10rem;
  color: rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-family: serif;
}

.test-head h2 {
  padding-top: 60px;
  font-size: 35px;
  width: 280px;
}


/* ─── SLIDER WRAPPER (IMPORTANT FIX) ─── */
.testimonial-slider {
  width: 70%;
  overflow: hidden;
  position: relative;
}


/* ─── GRID (NO overflow here) ─── */
/* ─── GRID ─── */
.testimonials-grid {
  display: flex;
  gap: 20px;
  margin-top: 3.5rem;
  will-change: transform;
}


/* ─── CARD ─── */
.testimonial-card {
  position: relative;
  width: calc((100% - 40px) / 3);
  height: 300px;
  border-radius: 10px;
  padding: 1.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.42s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}


/* ─── IMAGE BACKGROUND ─── */
.testimonial-card.reveal.reveal-delay-1 {
  background: url("../images/optimised/rahul.webp");
  background-size: cover;
}

.testimonial-card.reveal.reveal-delay-2 {
  background: url("../images/optimised/simran.webp");
  background-size: cover;
}

.testimonial-card.reveal.reveal-delay-3 {
  background: url("../images/optimised/patel.webp");
  background-size: cover;
}
.testimonial-card.reveal.reveal-delay-4 {
  background: url("../images/optimised/ananya.webp");
  background-size: cover;
}

/* ─── DARK OVERLAY (FIXED WAY) ─── */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 30, 19, 0.1),
    rgba(12, 30, 19, 0.6)
  );
  transition: background 0.48s ease;
  z-index: 1;
}

/* stronger overlay on hover */
.testimonial-card:hover::before {
  background: rgba(12, 30, 19, 0.85);
}


/* ─── AUTHOR ─── */
.testimonial-author {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: transform 0.48s ease;
}

/* move up smoothly */
.testimonial-card:hover .testimonial-author {
  transform: translateY(-200px);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.author-role {
  font-size: 0.75rem;
  color: white;
  margin-top: 4px;
}


/* ─── TEXT ─── */
.testimonial-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.48s ease;

  font-size: 0.9375rem;
  color: white;
  line-height: 1.8;
  font-style: italic;
  z-index: 2;
}

/* reveal text */
.testimonial-card:hover .testimonial-text {
  opacity: 1;
  transform: translateY(0);
}
/* ─── CONTROLS ─── */
.controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 250px;
  margin-top: 2rem;
}


/* ─── NAV BUTTONS ─── */
.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.32s ease;
}

.nav-btn:hover svg {
  transform: translateX(2px);
}

#prev svg {
  transform: rotate(180deg);
}

#prev:hover svg {
  transform: rotate(180deg) translateX(2px);
}


/* ─── INDICATOR ─── */
.slider-indicator {
  flex: 1;
}

.indicator-track {
  width: 100%;
  height: 1px;
  background: #ddd;
  overflow: hidden;
}

.indicator-progress {
  height: 100%;
  width: 0%;
  background: black;
  transition: width 0.52s ease;
}
/* ─── DISABLED STATE ─── */
.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.registration-bg {

  background: var(--forest);

  position: relative;

  overflow: hidden;

  padding: 100px 0;

}
/* BIG BACKGROUND TEXT */

.registration-bg::before {

  content: "albics";

  position: absolute;

  bottom: -90px;

  left: 0;

  font-size: 700px;

  font-weight: 600;

  letter-spacing: -10px;

  line-height: 1;

  /* color: rgba(255, 255, 255, 0.03); */
  color:rgba(190,255,87,0.03);

  pointer-events: none;

  user-select: none;

}

/* ─── LAYOUT ─── */

.reg-inner {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.reg-inner .reveal {

  display: flex;

  justify-content: space-between;

  gap: 6rem;

  width: 100%;

}

/* ─── LEFT ─── */

.reg-head {

  max-width: 500px;

}

.section-title-reg {

  font-size: 3.5rem;

  line-height: 1.15;

  color: white;

  font-weight: 400;

}

.section-sub-reg {

  font-size: 1rem;

  color: white;

  opacity: 0.7;

  margin-top: 1rem;

}

/* ─── RIGHT ─── */

.reg-lists {

  width: 50%;

  display: flex;

  flex-direction: column;

  gap: 2.5rem;

  color: white;

}

/* HEADINGS */

.reg-list-group h4 {

  font-size: 0.8rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  margin-bottom: 1.2rem;

  opacity: 0.6;

}

/* GRID */

.reg-list-group ul {

  display: grid;

  grid-template-columns: repeat(2, minmax(200px, 1fr));

  gap: 0.8rem 2rem;

  padding: 0;

  margin: 0;

  list-style: none;

}

/* ITEMS */

.reg-list-group ul li {

  font-size: 0.95rem;

  display: flex;

  align-items: center;

  gap: 10px;

}

/* DOT */

.reg-list-group ul li::before {

  content: '';

  width: 7px;

  height: 7px;

  background: var(--lime);

  border-radius: 50%;

}

/* DIVIDER */

.reg-divider {

  height: 1px;

  background: rgba(255,255,255,0.15);

  width: 100%;

}

.process-bg {

  background: #f5f5f5;

  padding: 100px 0;

  text-align: center;

}

/* ─── HEADER ─── */

.process-head h2 {

  font-size: 2.5rem;

  font-weight: 500;

  color: #111;

}

.process-head p {

  margin-top: 0.5rem;

  font-size: 1rem;

  color: #555;

}

.process-head span {

  color: var(--forest);

  font-weight: 500;

}

/* ─── STEPS WRAPPER ─── */

.process-steps {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-top: 4rem;

  position: relative;

}

.process-steps.reveal {

  opacity: 1;

  transform: none;

}

/* ─── LINE BETWEEN STEPS ─── */

.process-steps::before {

  content: "";

  position: absolute;

  top: 26px;

  left: 15%;

  right: 15%;

  height: 1px;

  background: #bbb;

  z-index: 0;

  transform: scaleX(0);

  transform-origin: left center;

  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);

}

.process-steps.visible::before {

  transform: scaleX(1);

}

/* ─── STEP ─── */

.step {

  width: 30%;

  position: relative;

  z-index: 1;

}

/* ─── CIRCLE ─── */

.step-circle {

  width: 60px;

  height: 60px;

  background: var(--forest);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--lime);

  font-size: 1.8rem;

  margin: 0 auto 1.2rem;

}

/* ─── TEXT ─── */

.step h3 {

  font-size: 1.1rem;

  color: #111;

  margin-bottom: 0.6rem;

}

.step p {

  font-size: 0.9rem;

  color: #555;

  line-height: 1.6;

  max-width: 260px;

  margin: 0 auto;

}
 .why-bg {

  background: var(--cream);

  padding: 100px 5%;

  position: relative;

  overflow: hidden;

}

/* ─── HEADER ─── */

.why-head h2 {

  font-size: 2.5rem;

  font-weight: 500;

  max-width: 650px;

  line-height: 1.2;

}
.why-head span{
  color: #143D24;
}
.why-sub {

  margin-top: 4rem;

  font-size: 2rem;

  color: var(--forest);

  text-transform: lowercase;

  width: fit-content;

}

/* ─── GRID ─── */

.why-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;

}

/* ─── ITEM ─── */

.why-item {

  padding: 1rem 2rem 2rem 0;

  display: flex;
  gap: 20px;

  border-top: 1px solid rgba(0,0,0,0.15);

  min-height: 150px;

}


/* ─── TEXT ─── */

.why-item h3 {

  font-size: 1rem;

  color: var(--forest);

  margin-bottom: 0.4rem;

}

.why-item p {

  font-size: 0.85rem;

  color: var(--muted);

  line-height: 1.6;

  max-width: 260px;
}

/* ─── ICON ─── */

.why-icon {

  margin-top: -13px;
  font-size: 4rem;

  opacity: 0.4;

  transition: 0.42s ease;

}


/* ─── BACKGROUND TEXT ─── */

.why-bg-text {

  position: absolute;

  right: -30px;

  top: 19%;

  transform: translateY(-50%);

  font-size: 18rem;

  font-weight: 700;

  color: rgba(0,0,0,0.05);

  pointer-events: none;

  user-select: none;

}
/* ─── SECTION ─── */
.faq-bg {
  background: #ffffff;
  padding: 100px 0;
}


/* ─── LAYOUT ─── */
.faq-inner {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center ;
}

.faq-title{
  font-size: 3rem;
}
/* ─── LEFT ─── */
.faq-left {
  width: 40%;
}

.faq-left .section-title {
  font-size: 3rem;
  line-height: 1.2;
}

.faq-left span {
  color: var(--forest);
}

.faq-sub {
  margin-top: 1rem;
  color: var(--muted);
}


/* ─── RIGHT ─── */
.faq-list {
  width: 50%;
  display: flex;
  flex-direction: column;
}


/* ─── ITEM (NO CARDS NOW) ─── */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.2rem 0;
}


/* ─── QUESTION ─── */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #222;
}


/* ─── TOGGLE ─── */
.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--forest);
  stroke-width: 2;
  fill: none;
  transition: transform 0.42s ease;
}


/* ─── ANSWER ─── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer-inner {
  padding-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ─── ACTIVE ─── */
.faq-item.active .faq-answer {
  max-height: 120px;
}

.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
}
.final-footer {
  background: var( --forest);
  color: white;
  padding: 80px 50px;
  font-family: sans-serif;
}

.final-container {
  max-width: 1240px;
  margin: auto;
}


/* ─── TOP ─── */
.final-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.final-text h2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.final-text h2 span {
  color: #b6ff4d;
}

.final-text .sub {
  margin-top: 0.5rem;
  opacity: 0.7;
  width: 700px;
  font-weight: 200;
  line-height: 1.6;
}


/* ─── WHATSAPP BUTTON ─── */
.wa-btn {
  background: #22c55e;
  color: white;
  padding: 1rem 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.42s ease;

  margin-top: 1rem;
}

.wa-btn:hover {
  background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190,255,87,0.35);
}


/* ─── DIVIDER ─── */
.final-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 3rem 0;
}


/* ─── BOTTOM ─── */
.final-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}


/* LEFT */
.logo {
  font-size: 2.5rem;
  font-weight: 500;
  opacity: 0.7;
}

.tagline {
  margin-top: 0.5rem;
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}


/* RIGHT */
.footer-right h4 {
  margin-bottom: 1rem;
  font-weight: 500;
  margin-top: 1rem;
}

.footer-right p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.copyright {
  margin-top: 2rem;
  opacity: 0.5;
  font-size: 0.85rem;
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 999;
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-float__label {
  background: var(--forest);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.wa-float__label.visible {
  opacity: 1;
  transform: translateX(0);
}

