 :root {
      /* Primitive Color Tokens */
      --color-white: rgba(255, 255, 255, 1);
      --color-black: rgba(0, 0, 0, 1);
      --color-cream-50: rgba(252, 252, 249, 1);
      --color-cream-100: rgba(255, 255, 253, 1);
      --color-gray-200: rgba(245, 245, 245, 1);
      --color-gray-300: rgba(167, 169, 169, 1);
      --color-gray-400: rgba(119, 124, 124, 1);
      --color-slate-500: rgba(98, 108, 113, 1);
      --color-brown-600: rgba(94, 82, 64, 1);
      --color-charcoal-700: rgba(31, 33, 33, 1);
      --color-charcoal-800: rgba(38, 40, 40, 1);
      --color-slate-900: rgba(19, 52, 59, 1);
      --color-teal-300: rgba(50, 184, 198, 1);
      --color-teal-400: rgba(45, 166, 178, 1);
      --color-teal-500: rgba(33, 128, 141, 1);
      --color-teal-600: rgba(29, 116, 128, 1);
      --color-teal-700: rgba(26, 104, 115, 1);
      --color-teal-800: rgba(41, 150, 161, 1);
      --color-red-400: rgba(255, 84, 89, 1);
      --color-red-500: rgba(192, 21, 47, 1);
      --color-orange-400: rgba(230, 129, 97, 1);
      --color-orange-500: rgba(168, 75, 47, 1);

      /* Brand Colors */
      --brand-primary: #2D8659;
      --brand-dark: #1F5C3D;
      --brand-light: #E8F3ED;
      --brand-charcoal: #1F2121;
      --brand-gray: #6B7280;
      --brand-bg-light: #F9F9F9;
      --brand-white: #FFFFFF;

      /* RGB versions for opacity control */
      --color-brown-600-rgb: 94, 82, 64;
      --color-teal-500-rgb: 33, 128, 141;
      --color-slate-900-rgb: 19, 52, 59;
      --color-slate-500-rgb: 98, 108, 113;
      --color-red-500-rgb: 192, 21, 47;
      --color-red-400-rgb: 255, 84, 89;
      --color-orange-500-rgb: 168, 75, 47;
      --color-orange-400-rgb: 230, 129, 97;

      /* Semantic Color Tokens (Light Mode) */
      --color-background: var(--color-cream-50);
      --color-surface: var(--color-cream-100);
      --color-text: var(--color-slate-900);
      --color-text-secondary: var(--color-slate-500);
      --color-primary: var(--color-teal-500);
      --color-primary-hover: var(--color-teal-600);
      --color-primary-active: var(--color-teal-700);
      --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
      --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
      --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
      --color-border: rgba(var(--color-brown-600-rgb), 0.2);
      --color-btn-primary-text: var(--color-cream-50);
      --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
      --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
      --color-error: var(--color-red-500);
      --color-success: var(--color-teal-500);
      --color-warning: var(--color-orange-500);
      --color-info: var(--color-slate-500);
      --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
      --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

      /* Typography */
      --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      --font-size-xs: 11px;
      --font-size-sm: 12px;
      --font-size-base: 14px;
      --font-size-md: 14px;
      --font-size-lg: 16px;
      --font-size-xl: 18px;
      --font-size-2xl: 20px;
      --font-size-3xl: 24px;
      --font-size-4xl: 30px;
      --font-weight-normal: 400;
      --font-weight-medium: 500;
      --font-weight-semibold: 550;
      --font-weight-bold: 600;
      --line-height-tight: 1.2;
      --line-height-normal: 1.5;
      --letter-spacing-tight: -0.01em;

      /* Spacing */
      --space-0: 0;
      --space-1: 1px;
      --space-2: 2px;
      --space-4: 4px;
      --space-6: 6px;
      --space-8: 8px;
      --space-10: 10px;
      --space-12: 12px;
      --space-16: 16px;
      --space-20: 20px;
      --space-24: 24px;
      --space-32: 32px;
      --space-40: 40px;
      --space-48: 48px;
      --space-64: 64px;
      --space-80: 80px;

      /* Border Radius */
      --radius-sm: 6px;
      --radius-base: 8px;
      --radius-md: 10px;
      --radius-lg: 12px;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);

      /* Animation */
      --duration-fast: 150ms;
      --duration-normal: 200ms;
      --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
    }

    @font-face {
      font-family: 'FKGroteskNeue';
      src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: var(--font-size-base);
      width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family-base);
      line-height: var(--line-height-normal);
      color: var(--brand-charcoal);
      background-color: var(--brand-white);
      -webkit-font-smoothing: antialiased;
      width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    /* Header & Navigation */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--brand-white);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: var(--space-8) var(--space-24);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: var(--space-12);
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-bold);
      color: var(--brand-primary);
      text-decoration: none;
    }
    .logo-image {
       height: 80px;  /* adjust size as needed */
       width: auto;
       display: block;
       margin-right: 8px;
    }

    .logo-icon {
      font-size: 28px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: var(--space-32);
      list-style: none;
    }

    .nav-link {
      color: var(--brand-charcoal);
      text-decoration: none;
      font-weight: var(--font-weight-medium);
      transition: color var(--duration-normal) var(--ease-standard);
      cursor: pointer;
    }

    .nav-link:hover {
      color: var(--brand-primary);
    }

    .nav-link.active {
      color: var(--brand-primary);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: var(--space-8);
    }

    .hamburger span {
      width: 24px;
      height: 3px;
      background-color: var(--brand-charcoal);
      border-radius: 2px;
      transition: all var(--duration-normal) var(--ease-standard);
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Navigation */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--brand-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-24);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none;
      }

      .nav-menu.active {
        display: flex;
      }
    }

    /* Container */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 var(--space-24);
    }

    /* Hero Section */
    .hero {
  /* This creates a 40% dark tint over the image to make text "pop" */
  background: \linear-gradient(rgba(200, 200, 200, 0.15), rgba(200, 200, 200, 0.15)), 
              url('images/hero-image2.png');
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*background-attachment: fixed; /* Keeps the "parallax" scrolling effect */
  
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Centers your title and buttons horizontally */
}

    .hero-content {
      display: flex;
      flex-direction: column; /* Stacks items vertically */
      align-items: center;
      justify-content: center;
      gap: -10px;
      padding-top:0.5rem;
     }

    /*.hero h1 {
      font-size: 48px;
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-24);
      line-height: 1.2;
    }*/

    .hero p {
      font-size: var(--font-size-xl);
      margin-bottom: var(--space-40);
      opacity: 0.95;
    }

   .hero-cta {
     order: 3; 
     display: flex;
     gap: 20px; /* Slightly wider gap for a premium feel */
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 10px; /* Pushes buttons further down from the dark title */
   }

    .hero-title {
  order: 2; /* Keeps it in the middle */
  
  /* ADD THE 'px' HERE */
  /*margin-top: 120px;*/ 
  
  /* Combined your margins into one */
  /*margin-bottom: 60px;*/ 

  /* Styling from your existing setup */
  /*margin-bottom: 60px;*/ 
  margin: 0 0 20px 0;
  color: #ffffff; 
  font-size: 4.5rem; 
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0px 6px 18px rgba(0, 0, 0, 0.9),0px 0px 20px rgba(0, 0, 0, 0.7);
  white-space: normal; /* Allows manual line breaks */
  margin-bottom: 10px;
}

    .hero-subtitle {
  order: 1;
  margin: -50px 0 10px 0;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
  max-width: 400px;
  line-height: 1.3;
}


    /* Mobile tweaks for hero background image */
@media (max-width: 768px) {
  .hero {
    /* MOBILE background image */
    background: url('images/mobile-view3.png');

    background-position: center !important;
    background-attachment: scroll !important;
    background-size: cover;
    min-height: 100vh;
    padding: 0;
  }

  .hero-content {
    position: relative;
    /* Reduced top padding to move everything higher into the clouds */
    padding: 80px 20px 40px; 
    text-align: center;
    /* Pull the entire block up further if needed */
    margin-top: -20px; 
  }

  .hero-title {
    /* Change color to white for high visibility on mobile */
    color: #ffffff !important; 
    font-size: 32px; 
    font-weight: 800;
    line-height: 1.2;
    
    /* Stronger shadow since we are losing the 'halo' effect */
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.9);
    
    /* Reset margins for mobile spacing */
    margin-top: 35px !important;
    margin-bottom: 20px;
    order: 2;
  }

  .hero-subtitle {
    /* Remove absolute-style positioning for better flexbox flow */
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    
    /* Force 2 lines on mobile */
    max-width: 260px; 
    margin: 0 auto 15px auto; /* Centers itself and adds space below */
    
    line-height: 1.3;
    white-space: normal;
    display: block;
    order: 1; /* Keeps it at the very top */
  }
  }
  .hero-cta {
    transform: none !important;  /* reset button shift */
    margin-top: 20px;
    /*flex-direction: wrap;*/
    gap: 15px;
  }

  .btn {
    padding: 12px 24px;  /* smaller buttons */
    font-size: 16px;
  }
 

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-16) var(--space-32);
      border-radius: var(--radius-base);
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-medium);
      cursor: pointer;
      transition: all var(--duration-normal) var(--ease-standard);
      border: none;
      text-decoration: none;
      margin-top: 0;
    }

    .btn-primary {
      background: var(--brand-white);
      color: var(--brand-primary);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-secondary {
      background: transparent;
      color: var(--brand-white);
      border: 2px solid var(--brand-white);
    }

    .btn-secondary:hover {
      background: var(--brand-white);
      color: var(--brand-primary);
    }

    .btn-brand-primary {
      background: var(--brand-primary);
      color: var(--brand-white);
    }

    .btn-brand-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--brand-primary);
      color: var(--brand-primary);
    }

    .btn-outline:hover {
      background: var(--brand-primary);
      color: var(--brand-white);
    }

    /* Section */
    .section {
      padding: var(--space-80) var(--space-24);
    }

    .section-light {
      background-color: var(--brand-bg-light);
    }

    .section-title {
      font-size: 36px;
      font-weight: var(--font-weight-bold);
      text-align: center;
      margin-bottom: var(--space-16);
      color: var(--brand-charcoal);
    }

    .section-subtitle {
      font-size: var(--font-size-xl);
      text-align: center;
      color: var(--brand-gray);
      margin-bottom: var(--space-48);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* NEW Challenge section layout (replaces old background-image version) */
    .section-challenge {
  background-color: var(--brand-bg-light);
}

.challenge-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.challenge-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch; /* this is fine */
}



.challenge-copy {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 32px 24px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid #2d8659;  
  transition: box-shadow 0.3s ease;  
  height: 100%; 

}
.challenge-copy:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.challenge-copy .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.challenge-copy h3 {
  font-size: 20px;
  font-weight: 600;  
  margin-bottom: 12px;
  margin-top: 20px;  
  color: #2d8659;  
}
.challenge-copy h3:first-of-type {  
  margin-top: 0;
}

.challenge-copy p {
  color: var(--brand-gray);
  line-height: 1.6;
  margin-bottom: 16px; 
}

.challenge-visual {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;  /* ← Add subtle border */
  transition: box-shadow 0.3s ease;  /* ← Add hover transition */
}

.challenge-visual:hover {  /* ← New block: hover effect */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.challenge-visual img {
  display: block;
  width: 100%;
  height: auto;  /* ← Change from 100% to auto */
  object-fit: cover;
}

.challenge-visual figcaption {
  padding: 12px 16px;  /* ← Change from 8px 12px 10px */
  font-size: 14px;  /* ← Change from 13px to 14px */
  font-weight: 600;  /* ← Add: make bolder */
  color: #2d8659;  /* ← Change from gray to GREEN */
  text-align: center;  /* ← Add: center the caption */
  background: #f8f8f8;  /* ← Add: light background */
}

/* Challenge Image Cards */
.challenge-image-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2d8659;
  transition: all 0.3s ease;
  display: flex;          
  flex-direction: column;  
}

.challenge-image-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.challenge-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 0;         
  font-size: 0;            
}
.challenge-text {
  text-align: justify;
  hyphens: auto;
}



/* Mobile: stack text above image */
@media (max-width: 900px) {
  .challenge-row {
    grid-template-columns: 1fr;
  }

  .challenge-copy .section-title {
    text-align: center;
  }
}



/*Solutions section*/

/* Images Section */
.solution-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  max-height: fit-content;
  margin: 0 auto 60px;
}

.solution-image-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2d8659;
  transition: all 0.3s ease;
  max-height: 900px;
}

.solution-image-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.solution-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
  padding: 16px;              
  box-sizing: border-box;
}

.image-caption {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2d8659;
  margin: 0;
  background: #f8f8f8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .solution-images {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .solution-image-card img {
     height: auto;              
    padding: 12px;
  }
}


.section-solution {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
  padding: 80px 40px;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.solution-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f333f;
}

.solution-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Cards Container */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Individual Card */
.solution-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2d8659;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Card Icon */
.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

/* Card Heading */
.solution-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d8659;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

/* Card Text */
.solution-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-solution {
    padding: 60px 24px;
  }
  
  .solution-header {
    margin-bottom: 40px;
  }
  
  .solution-header h2 {
    font-size: 32px;
  }
  
  .solution-subtitle {
    font-size: 16px;
  }
  
  .solution-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .solution-card {
    padding: 32px 24px;
  }
  
  .card-icon {
    font-size: 40px;
  }
  
  .solution-card h3 {
    font-size: 20px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .solution-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .section-solution {
    padding: 40px 16px;
  }
  
  .solution-header h2 {
    font-size: 28px;
  }
  
  .solution-card {
    padding: 24px 20px;
  }
  
  .card-icon {
    font-size: 36px;
  }
  
  .solution-card h3 {
    font-size: 18px;
  }
  
  .solution-card p {
    font-size: 14px;
  }
}
/* HOW IT WORKS FLOW UNDER IMAGES 
.solution-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}*/

.flow-step {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #2d8659;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  display: flex;          /* NEW */
  flex-direction: column; /* NEW */
}

.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.flow-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;     /* ensure same space under 1,2,3,4 */
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d8659;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flow-step h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d8659;
}

.flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
}

/* Slider layout for numbered solution cards */
.solutions-slider {
  position: relative;
  overflow: visible;
  padding: 0 64px; /* room for arrows */
  width: 100%;
}

.solutions-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  justify-content: flex-start ;
  will-change: transform;
  padding: 0;
}

/* card width inside slider */
.solutions-track .flow-step {
  flex:0 0 320px;
  max-width: 360px;
}

/* center row on large screens */
@media (min-width: 900px) {
  .solutions-track {
    justify-content: center;
  }
}

/* arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow:  0 6px 16px rgba(0,0,0,0.2); /* stronger shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #2d8659;
  z-index: 10;
}

.slider-arrow--left  { left: 4px; }
.slider-arrow--right { right: 4px; }

.slider-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Mobile: show one card at a time */
@media (max-width: 768px) {
  .solutions-slider {
    padding: 0 40px;
  }

  .solutions-track .flow-step {
    flex: 0 0 280px; /* Smaller on mobile */
    max-width: 280px;
  }
}


/* Mobile: stack nicely */
@media (max-width: 768px) {
  .solution-flow {
    display: flex;
    flex-direction: column;
  }

  .flow-step {
    flex: 1 1 auto;
  }
}


    /* Cards Grid */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-32);
      max-width: 1280px;
      margin: 0 auto;
    }

    .card {
      background: var(--brand-white);
      border-radius: var(--radius-lg);
      padding: var(--space-32);
      box-shadow: var(--shadow-sm);
      transition: all var(--duration-normal) var(--ease-standard);
      border: 1px solid var(--color-card-border);
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .card-icon {
      font-size: 48px;
      margin-bottom: var(--space-16);
    }

    .card-title {
      font-size: var(--font-size-2xl);
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-12);
      color: var(--brand-charcoal);
    }

    .card-description {
      color: var(--brand-gray);
      line-height: 1.6;
      margin-bottom: var(--space-12);
    }

    .card-stat {
      font-size: var(--font-size-sm);
      color: var(--brand-primary);
      font-weight: var(--font-weight-bold);
    }

    /* Team Cards */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-32);
      max-width: 1280px;
      margin: 0 auto;
    }

    .team-card {
      background: var(--brand-white);
      border-radius: var(--radius-lg);
      padding: var(--space-32);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all var(--duration-normal) var(--ease-standard);
      border: 1px solid var(--color-card-border);
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .team-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
      margin: 0 auto var(--space-16);
      border: 4px solid var(--brand-primary);
    }

    .team-name {
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-8);
      color: var(--brand-charcoal);
    }

    .team-title {
      font-size: var(--font-size-base);
      color: var(--brand-primary);
      margin-bottom: var(--space-12);
      font-weight: var(--font-weight-medium);
    }

    .team-bio {
      font-size: var(--font-size-sm);
      color: var(--brand-gray);
      line-height: 1.5;
    }

    /* ========================================
   SECTION: WHY CHOOSE US
   ======================================== */

.section-why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f333f;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========================================
   THREE KEY ADVANTAGES GRID
   ======================================== */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.advantage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2d8659;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d8659;
  margin: 0 0 12px;
}

.advantage-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

.advantage-icon {
  width: 80px;              /* or whatever size you want */
  height: 80px;
  border-radius: 16px;
  background: #f5fbf7;      /* soft green background like before */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 16px
}

.advantage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills the square, crops if needed */
  display: block;
}


/* ========================================
   COMPETITIVE COMPARISON SECTION
   ======================================== */

.comparison-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2d8659;
}

.comparison-title {
  font-size: 28px;
  font-weight: 600;
  color: #2d8659;
  margin: 0 0 12px;
}

.comparison-intro {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-table {
  margin-bottom: 32px;
  overflow-x: auto;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}

.comparison-header {
  background: #f8f8f8;
  font-weight: 600;
  color: #2d8659;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #2d8659;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row--highlight {
  background: #f0f8f5;
  font-weight: 500;
}

.comparison-column {
  font-size: 15px;
  color: #333333;
}

.comparison-column--label {
  font-weight: 500;
  color: #1f333f;
}
/* PERFECT Mobile comparison - correct column matching */
@media (max-width: 768px) {
  .comparison-section {
    padding: 24px 16px !important;
  }

  .comparison-table {
    overflow: visible;
  }

  .comparison-header,
  .comparison-row {
    /* Simple 1fr stack - NO column shuffling */
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px 12px !important;
    border-radius: 12px;
    font-size: 13px;
  }

  /* Headers: consistent bold font */
  .comparison-header {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5e9 100%) !important;
    border: 2px solid #2d8659;
    font-weight: 600 !important;
    font-size: 13px !important;
    margin-bottom: 12px;
  }

  /* Each row: Technology → values stacked */
  .comparison-row {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #e8e8e8;
  }

  .comparison-row--highlight {
    background: #f0f8f5 !important;
    border-left-color: #2d8659 !important;
  }

  /* Tech name BIG */
  .comparison-column--label {
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;
  }

  /* Values: badge + text paired */
  .comparison-column {
    font-size: 13px;
    line-height: 1.4;
  }

  .badge {
    font-size: 12px !important;
    padding: 4px 10px !important;
    margin-bottom: 2px;
    display: inline-block;
  }
}

  /* Better badge spacing */
  .badge {
    display: block;
    margin: 2px 0;
    font-size: 12px;
    padding: 4px 8px;
  }

  .comparison-row--highlight {
    background: #f0f8f5;
    border-left: 4px solid #2d8659;
  }




/* Badges for status indicators */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.badge--success {
  background: #e8f5e9;
  color: #2d8659;
  border: 1px solid #2d8659;
}

.badge--warning {
  background: #fff3e0;
  color: #d97706;
  border: 1px solid #d97706;
}

/* ========================================
   COMPARISON CONCLUSION
   ======================================== */

.comparison-conclusion {
  background: #f0f8f5;
  border-left: 4px solid #2d8659;
  padding: 20px;
  border-radius: 8px;
}

.comparison-conclusion p {
  font-size: 16px;
  color: #1f333f;
  line-height: 1.7;
  margin: 0;
}

.comparison-conclusion strong {
  color: #2d8659;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .section-why-choose {
    padding: 60px 20px;
  }

  .comparison-section {
    padding: 32px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .advantage-card {
    padding: 32px 24px;
  }

  .comparison-section {
    padding: 24px;
    border-radius: 12px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.3fr 1fr;
    gap: 12px;
    padding: 12px;
    font-size: 13px;
  }

  .comparison-column {
    display: flex;
    flex-direction: column;
  }

  .comparison-column::before {
    content: attr(data-label);
    font-weight: 600;
    color: #2d8659;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .comparison-conclusion {
    padding: 16px;
  }

  .comparison-conclusion p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .advantage-card {
    padding: 24px;
  }

  .advantage-icon {
    width: 60px;
    height: 60px;
  }

  .advantage-card h3 {
    font-size: 18px;
  }

  .advantage-card p {
    font-size: 14px;
  }

  .comparison-section {
    padding: 16px;
  }

  .comparison-title {
    font-size: 22px;
  }
}

.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-mission-text .section-title {
  margin-bottom: 24px;
}

.about-mission-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.ourstory-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-bottom: 24px
}

/* Mobile */
@media (max-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-text .section-title,
  .about-mission-text .section-subtitle {
    text-align: center !important;
  }
}

/* Move title + subtitle upward */
.about-us-title,
.about-us-subtitle {
    position: relative;
    top: -20px; /* adjust this value to move them higher or lower */
}

/* Title styling (optional if you already have this) */
.about-us-title {
    font-size: 3rem; /* adjust as needed */
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Subtitle styling */
.about-us-subtitle {
    font-size: 1.6rem; /* increased size */
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}



    /* Blog Cards */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: var(--space-32);
      max-width: 1280px;
      margin: 0 auto;
    }

    .blog-card {
      background: var(--brand-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all var(--duration-normal) var(--ease-standard);
      border: 1px solid var(--color-card-border);
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .blog-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-primary) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }

    .blog-content {
      padding: var(--space-24);
    }

    .blog-meta {
      display: flex;
      gap: var(--space-16);
      margin-bottom: var(--space-12);
      font-size: var(--font-size-sm);
      color: var(--brand-gray);
    }

    .blog-category {
      color: var(--brand-primary);
      font-weight: var(--font-weight-medium);
    }

    .blog-title {
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-12);
      color: var(--brand-charcoal);
    }

    .blog-excerpt {
      color: var(--brand-gray);
      line-height: 1.6;
      margin-bottom: var(--space-16);
    }

    .blog-read-more {
      color: var(--brand-primary);
      font-weight: var(--font-weight-medium);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: var(--space-8);
    }

    .blog-read-more:hover {
      gap: var(--space-12);
    }

    /* Blog Detail */
    .blog-detail {
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-detail-header {
      margin-bottom: var(--space-40);
    }

    .blog-detail-title {
      font-size: 42px;
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-16);
      color: var(--brand-charcoal);
    }

    .blog-detail-content {
      font-size: var(--font-size-lg);
      line-height: 1.8;
      color: var(--brand-charcoal);
    }

    .back-button {
      display: inline-flex;
      align-items: center;
      gap: var(--space-8);
      color: var(--brand-primary);
      text-decoration: none;
      font-weight: var(--font-weight-medium);
      margin-bottom: var(--space-32);
    }

    .back-button:hover {
      gap: var(--space-4);
    }

    /* FAQ */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--brand-white);
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-16);
      border: 1px solid var(--color-card-border);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: var(--space-24);
      background: none;
      border: none;
      text-align: left;
      font-size: var(--font-size-lg);
      font-weight: var(--font-weight-bold);
      color: var(--brand-charcoal);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background var(--duration-normal) var(--ease-standard);
    }

    .faq-question:hover {
      background: var(--brand-bg-light);
    }

    .faq-icon {
      font-size: 20px;
      transition: transform var(--duration-normal) var(--ease-standard);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--duration-normal) var(--ease-standard);
    }

    .faq-answer-content {
      padding: 0 var(--space-24) var(--space-24) var(--space-24);
      color: var(--brand-gray);
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
    }

    /* Contact Form */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-64);
      max-width: 1280px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: var(--space-24);
    }

    .form-label {
      display: block;
      margin-bottom: var(--space-8);
      font-weight: var(--font-weight-medium);
      color: var(--brand-charcoal);
    }

    .form-control {
      width: 100%;
      padding: var(--space-12) var(--space-16);
      border: 2px solid var(--color-border);
      border-radius: var(--radius-base);
      font-size: var(--font-size-base);
      font-family: var(--font-family-base);
      transition: border-color var(--duration-normal) var(--ease-standard);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
    }

    .form-control.error {
      border-color: var(--color-error);
    }

    .error-message {
      color: var(--color-error);
      font-size: var(--font-size-sm);
      margin-top: var(--space-8);
      display: none;
    }

    .error-message.show {
      display: block;
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    select.form-control {
      background-color: var(--brand-white);
    }

    .contact-info {
      background: var(--brand-light);
      padding: var(--space-40);
      border-radius: var(--radius-lg);
    }

    .contact-info h3 {
      font-size: var(--font-size-2xl);
      margin-bottom: var(--space-24);
      color: var(--brand-charcoal);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: var(--space-16);
      margin-bottom: var(--space-24);
    }

    .contact-icon {
      font-size: 24px;
      color: var(--brand-primary);
    }

    .contact-details h4 {
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-bold);
      margin-bottom: var(--space-4);
      color: var(--brand-charcoal);
    }

    .contact-details p {
      color: var(--brand-gray);
      margin: 0;
    }

    .map-placeholder {
      width: 100%;
      height: 200px;
      background: var(--brand-white);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-gray);
      margin-top: var(--space-32);
      border: 2px dashed var(--color-border);
    }

    /* Thank You Page */
    .thank-you {
      text-align: center;
      padding: var(--space-80) var(--space-24);
      max-width: 600px;
      margin: 0 auto;
    }

    .thank-you-icon {
      font-size: 80px;
      margin-bottom: var(--space-24);
    }

    .thank-you h2 {
      font-size: 36px;
      margin-bottom: var(--space-16);
      color: var(--brand-charcoal);
    }

    .thank-you p {
      font-size: var(--font-size-lg);
      color: var(--brand-gray);
      margin-bottom: var(--space-32);
    }

    /* Footer */
    .footer {
      background-color: var(--brand-charcoal);
      color: var(--brand-white);
      padding: var(--space-64) var(--space-24) var(--space-32);
    }

    .footer-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-48);
      margin-bottom: var(--space-48);
    }

    .footer-section h3 {
      font-size: var(--font-size-xl);
      margin-bottom: var(--space-16);
      color: var(--brand-white);
    }

    .footer-section p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: var(--space-12);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: var(--space-12);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color var(--duration-normal) var(--ease-standard);
    }

    .footer-links a:hover {
      color: var(--brand-white);
    }

    .social-links {
      display: flex;
      gap: var(--space-16);
      margin-top: var(--space-16);
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-white);
      text-decoration: none;
      font-size: 20px;
      transition: background var(--duration-normal) var(--ease-standard);
    }

    .social-link:hover {
      background: var(--brand-primary);
    }

    .footer-bottom {
      text-align: center;
      padding-top: var(--space-32);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: var(--font-size-sm);
    }

    /* Page Visibility */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 36px;
      }

      .section-title {
        font-size: 30px;
      }

      .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-32);
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: var(--space-48) var(--space-16);
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero p {
        font-size: var(--font-size-base);
      }

      .section {
        padding: var(--space-48) var(--space-16);
      }

      .section-title {
        font-size: 24px;
      }

      .cards-grid,
      .team-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .blog-detail-title {
        font-size: 28px;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 375px) {
      .hero h1 {
        font-size: 24px;
      }

      .btn {
        padding: var(--space-12) var(--space-24);
        font-size: var(--font-size-sm);
      }
    }
    /* Password Overlay Container */
#password-overlay {
  position: fixed;
  inset: 0;
  background: #0b1e16;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* The White Box */
.password-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  font-family: system-ui, -apple-system, sans-serif;
}

.password-card h2 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #1f2121;
}

.password-note {
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 14px;
}

#site-pass-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}

#site-pass-button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: #2d8659;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

#site-pass-error {
  display: none; /* Keep this hidden by default */
  margin-top: 10px;
  color: #dc2626;
  font-size: 13px;
}