.stats-section-redesigned .company-mv-cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .stats-section-redesigned .company-mv-cards {
    flex-direction: column;
    gap: 18px;
    flex-wrap: wrap;
  }
}
/* ==============================
   ABOUT – STATS SECTION REDESIGN
   ============================== */
.stats-section-redesigned {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(16,24,40,0.08);
  max-width: 1000px;
  margin: 48px auto 0 auto;
  padding: 48px 24px;
}
.stat-mv-card {
  text-align: center;
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  box-shadow: 0 2px 8px rgba(34,197,94,0.08);
}
.stat-mv-card h3 {
  color: #22c55e;
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.stat-mv-card p {
  color: #555;
  font-size: 1.1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .stats-section-redesigned {
    padding: 32px 8px;
  }
}
/* ==============================
   COMPANY STORY, MISSION & VISION
   ============================== */
.company-story-section {
  background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(16,24,40,0.08);
  max-width: 1000px;
  margin: 48px auto 0 auto;
}
.company-story-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.company-story-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  text-align: center;
}
.company-story-content {
  max-width: 700px;
  text-align: center;
}
.company-story-text {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 32px;
}
.company-mv-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.company-mv-card {
  flex: 1 1 280px;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(34,197,94,0.08);
  margin-bottom: 16px;
}
.company-mv-card h3 {
  color: #22c55e;
  margin-top: 0;
  margin-bottom: 12px;
}
.company-mv-card p {
  color: #555;
  font-size: 1.08rem;
}
@media (max-width: 900px) {
  .company-mv-cards {
    flex-direction: column;
    gap: 18px;
  }
  .company-story-inner {
    padding: 32px 8px;
  }
}
body{margin:0;font-family:Arial,sans-serif;background:#f0fdf4;line-height:1.6}
.header{background:#dcfce7;padding:15px;position:sticky;top:0;z-index:100;box-shadow:0 2px 4px rgba(0,0,0,0.1)}
.nav{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto}
.logo{display:flex;align-items:center;gap:12px;font-weight:bold;font-size:24px;color:#22c55e;padding:10px 20px;border-radius:8px;background:#dcfce7;box-shadow:0 2px 8px rgba(34,197,94,0.15)}
.logo img{height:85px;width:auto;filter:drop-shadow(0 2px 4px rgba(34,197,94,0.2))}
nav{display:flex;gap:20px;align-items:center}
nav a{text-decoration:none;color:#333;font-weight:500}
nav a:hover{color:#22c55e}

/* Breadcrumb Navigation */
.breadcrumb{padding:12px 20px;max-width:1200px;margin:0 auto;font-size:14px;color:#666}
.breadcrumb a{color:#22c55e;text-decoration:none;font-weight:500}
.breadcrumb a:hover{text-decoration:underline}
.breadcrumb span{margin:0 8px;color:#999}

/* Responsive navigation toggle */
.nav-toggle{display:none;background:transparent;border:0;font-size:26px;cursor:pointer;color:#1f2937}
.nav-toggle:focus{outline:2px solid rgba(34,197,94,0.25);outline-offset:2px}
.site-nav{display:flex;gap:20px;align-items:center}

@media(max-width:768px){
  .nav-toggle{display:block}
  .site-nav{display:none;flex-direction:column;gap:12px;width:100%}
  .site-nav.open{display:flex}
}
.hero{padding:40px 20px;background:transparent}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;max-width:1200px;margin:0 auto;background:linear-gradient(135deg,#dcfce7 0%,#f0fdf4 100%);border-radius:16px;overflow:hidden;box-shadow:0 6px 30px rgba(16,24,40,0.08);height:520px}
.hero-grid h1{font-size:48px;margin:0 0 20px 0;color:#1a1a1a}
.hero-grid p{font-size:18px;color:#555;margin:0 0 30px 0}
.hero-grid img{width:100%;height:100%;object-fit:cover;display:block}

.hero-content{padding:60px;display:flex;flex-direction:column;justify-content:center}
.hero-media{position:relative}
.hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.05) 40%,rgba(0,0,0,0) 100%);pointer-events:none}
.hero-media img{display:block;width:100%;height:100%;object-fit:cover}

@media(max-width:768px){
  .hero-grid{grid-template-columns:1fr;height:auto;border-radius:12px}
  .hero-media{height:260px}
  .hero-media img{height:100%;object-fit:cover}
  .hero-content{padding:30px}
}
.cta-group{display:flex;gap:15px}
.btn{background:#22c55e;color:#fff;padding:12px 24px;text-decoration:none;border-radius:6px;font-weight:bold;display:inline-block;transition:background 0.3s}
.btn:hover{background:#16a34a}
.btn-secondary{background:transparent;border:2px solid #22c55e;color:#22c55e;padding:10px 22px;text-decoration:none;border-radius:6px;font-weight:bold;display:inline-block;transition:all 0.3s}
.btn-secondary:hover{background:#22c55e;color:#fff}
.btn-large{padding:15px 40px;font-size:18px}
.section{padding:60px 20px;max-width:1200px;margin:0 auto}
.section h2{font-size:36px;text-align:center;margin-bottom:50px;color:#1a1a1a}
.section h3{font-size:22px;margin:15px 0;color:#1a1a1a}
.section p{color:#666;line-height:1.6}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card{background:#fff;padding:30px;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:transform 0.3s,box-shadow 0.3s}
.card:hover{transform:translateY(-5px);box-shadow:0 4px 16px rgba(0,0,0,0.15)}
.stat-card{text-align:center;background:#f0fdf4;border-left:4px solid #22c55e}
.stat-card h3{color:#22c55e;font-size:32px}
.solution-card h3{color:#22c55e}
.solution-card .link{color:#22c55e;text-decoration:none;font-weight:bold;transition:color 0.3s}
.solution-card .link:hover{color:#16a34a}
.solution-icon{width:80px;height:80px;object-fit:contain;margin-bottom:15px;display:block}
.solution-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}
.solution-card-content {
  padding: 18px 0 0 0;
}
.trust-section{background:#f9fafb}
.how-it-works{background:#fff}
.process-flow{display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap}
.process-step{text-align:center;flex:1;min-width:150px;padding:20px}
.step-number{width:50px;height:50px;background:#22c55e;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:bold;font-size:24px;margin:0 auto 15px}
.process-arrow{font-size:32px;color:#22c55e;font-weight:bold}
.cta-banner{background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);color:#fff;text-align:center;border-radius:12px}
.cta-banner h2{color:#fff;margin-bottom:15px}
.cta-banner p{color:#fff;font-size:18px;margin-bottom:30px}
.footer{background:#020617;color:#fff;padding:40px 20px 20px}
.footer-content{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;max-width:1200px;margin:0 auto;margin-bottom:30px}
.footer-col h4{margin:0 0 15px 0;font-size:16px}
.footer-col p{margin:10px 0;color:#ccc}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col ul li{margin:8px 0}
.footer-col a{color:#ccc;text-decoration:none;transition:color 0.3s}
.footer-col a:hover{color:#22c55e}
.footer-bottom{border-top:1px solid #444;padding-top:20px;text-align:center;color:#999;max-width:1200px;margin:0 auto}
@media(max-width:768px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .hero-grid h1{font-size:32px}
  .section h2{font-size:28px}
  .process-flow{flex-direction:column}
  .process-arrow{transform:rotate(90deg);margin:10px 0}
  .footer-content{grid-template-columns:1fr;gap:20px}
  .cta-group{flex-direction:column}
  .hero-content{padding:30px}

  /* Header responsiveness */
  .header{padding:10px}
  .nav{flex-direction:column;align-items:flex-start;gap:12px;padding:0 16px}
  .logo{font-size:18px;padding:6px 12px;gap:10px;border-radius:6px}
  .logo img{height:56px}
  nav{display:flex;flex-direction:column;gap:8px;width:100%}
  nav a{display:block;padding:10px 0;color:#333}
}

/* Only for solutions page hero image */
.solutions-hero-img { object-fit: contain !important; background: #dcfce7; }

/* Ensure solution hero images align exactly like homepage */
.hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================
   INDUSTRIES HERO IMAGE (COLLAGE FIX)
   ===================================== */
.hero-img--contain {
  object-fit: contain;
  background: #ecfdf5; /* same hero bg */
}

/* =====================================
   CONTACT FORM (GLOBAL)
   ===================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #0f172a;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 12px;
}

/* =====================================
   ABOUT – WHO WE ARE
   ===================================== */
.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.about-card {
  background: #f0fdf4;
}

.about-card h2 {
  margin-top: 0;
}

.about-highlights {
  margin-top: 16px;
  padding-left: 18px;
  color: #22c55e;
  font-weight: 500;
}

.about-highlights li {
  margin-bottom: 8px;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   ABOUT – WHO WE ARE FIX
   ============================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.about-card {
  background: #f0fdf4;
}

.about-highlights {
  margin-top: 16px;
  padding-left: 18px;
  color: #22c55e;
  font-weight: 500;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   ABOUT – WHO WE ARE FIX
   ============================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.about-card {
  background: #f0fdf4;
}

.about-highlights {
  margin-top: 16px;
  padding-left: 18px;
  color: #22c55e;
  font-weight: 500;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


