
/* ===== HAMBURGER BUTTON — hidden on desktop ===== */

.home-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.home-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.home-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.home-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.home-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

  .home-nav-wrapper {
 
	  justify-content:end;
 
  }

/* ===== MOBILE MENU BEHAVIOUR ===== */
@media (max-width: 768px) {
  .home-header-inner {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  .home-menu-toggle {
    display: flex;
  }
  .home-nav-wrapper {
    display: none !important; /* hidden until toggled open */
    flex-direction: column;
	  justify-content:end;
    align-items: flex-start;
    width: 100%;
    order: 3;
    margin-top: 15px !important;
  }
  .home-nav-wrapper.is-open {
    display: flex !important;
  }
  .home-menu {
    flex-direction: column !important;
    width: 100%;
    gap: 0 !important;
  }
  .home-menu li {
    width: 100%;
    border-top: 1px solid #eee;
  }
  .home-menu li a {
    display: block;
    padding: 14px 0 !important;
    margin: 0 !important;
  }
  .home-cart {
    margin-top: 10px;
  }
}


/* ===== HOMEPAGE HEADER — SEPARATE WHITE BAR ===== */
 
 .site-header {
  position: relative !important;
  width: 100%;
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.06) !important;
  border-bottom: none !important;
	padding: 0 !important;
		  margin: 0 !important;
}

.site-title,
 .site-header .site-title {
  color: #1a1a1a !important;
}

.home-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

.home-logo a {
  color: #1a1a1a !important;
}
.home-logo .home-site-title {
  color: #1abc9c !important;
}
.home-logo .home-site-tagline {
  color: #666 !important;
}

.home-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;

	width:30vw;

}
.home-menu li a {
  position: relative;
  display: inline-block;
  color: #14151a !important;
  font-weight: 600 !important;
  font-size: 14.5px;
  letter-spacing: .2px;
  text-decoration: none !important;
  padding: 8px 4px;
  margin: 0 14px;
  transition: color .25s ease;
}

/* animated underline instead of plain text-decoration */
.home-menu li a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: #1abc9c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.home-menu li a:hover {
  color: #1abc9c !important;
}

.home-menu li a:hover::after {
  transform: scaleX(1);
}

/* active/current page state, if WP adds .current-menu-item */
.home-menu li.current-menu-item a {
  color: #1abc9c !important;
}
.home-menu li.current-menu-item a::after {
  transform: scaleX(1);
}

.home-cart a {
  color: #1a1a1a !important;
  font-weight: 600;
  text-decoration: none;
}
/* ===== HERO SLIDER ===== */
.home-hero {
  position: relative;
  overflow: hidden;
  height: 80vh;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35); /* dark overlay so white text is readable */
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 90%;
  z-index: 5;
  text-align: center;
}
.hero-overlay h1 {
  color: #fff !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 20px 0 !important;
  text-align: center !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.btn-cta {
  background: #1abc9c !important;
  color: #fff !important;
  padding: 14px 28px !important;
  display: inline-block !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border-radius: 2px;
  margin: 0 auto !important;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}
.hero-arrow:hover { background: transparent }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-dot.is-active {
  background: #1abc9c;
}

@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 1.6rem !important; }
  .hero-arrow { width: 34px; height: 34px; font-size: 1rem; }
}



//* ===== COMPANY OVERVIEW SECTION ===== */
.home-about {
  background: #fff;
}

/* Mission / Vision */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 60px 8% 0;
}
.about-mv-card {
  background: #0a1f44;
  color: #fff;
  padding: 40px;
  border-radius: 6px;
}
.about-mv-card h3 {
  color: #1abc9c !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
  letter-spacing: 0.5px;
}
.about-mv-card p {
  line-height: 1.7;
  color: #e6e6e6;
  margin: 0;
}

/* General block wrapper */
.about-block {
  padding: 60px 8%;
}
.about-block-alt {
  background: #f7f5ef;
}
.about-block h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a1f44;
  text-align: center;
  margin-bottom: 35px;
}
.about-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #444;
  line-height: 1.6;
}

/* What We Do / Manufacturing / Private Label lists */
.about-list-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-list-grid li {
  background: #fff;
  border-left: 4px solid #1abc9c;
  padding: 14px 18px;
  font-weight: 600;
  color: #1a1a1a;
  border-radius: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.about-block-alt .about-list-grid li {
  background: #fff;
}

/* MM Exports — Private Label / Export service grid */
/* PRIVATE LABEL & EXPORT — modern check-card style */
.mm-private-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mm-private-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #edeeee;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* soft gradient corner glow on hover */
.mm-private-item::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(26,188,156,.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.mm-private-item:hover {
  transform: translateY(-4px);
  border-color: rgba(26,188,156,.4);
  box-shadow: 0 12px 24px rgba(26,188,156,.14);
}

.mm-private-item:hover::before {
  opacity: 1;
}

.mm-private-check {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(26,188,156,.1);
  color: #1abc9c;
  transition: background .25s ease, color .25s ease, transform .3s ease;
}

.mm-private-check svg {
  width: 15px;
  height: 15px;
}

.mm-private-item:hover .mm-private-check {
  background: #1abc9c;
  color: #fff;
  transform: scale(1.1);
}

.mm-private-text {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 14.5px;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color .25s ease;
}

.mm-private-item:hover .mm-private-text {
  color: #0f7d67;
}

/* lead paragraph above the grid */
.about-lead {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a4d54;
}

/* keep consistent bg if this ever sits inside about-block-alt */
.about-block-alt .mm-private-item {
  background: #fff;
}

@media (max-width: 900px) {
  .mm-private-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mm-private-grid { grid-template-columns: 1fr; }
}

/* Core Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  background: #fff;
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.value-card h4 {
  color: #1abc9c !important;
  font-weight: 800 !important;
  margin: 0 0 10px 0 !important;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.value-card p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== PRODUCT CATEGORY IMAGE CARDS ===== */
.cat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  position: relative;
  height: 340px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.25s ease;
}
.cat-card:hover::before {
  background: rgba(0,0,0,0.4);
}
.cat-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.cat-card-inner h3 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  letter-spacing: 0.5px;
}
.cat-card .btn-view-more {
  background: #1abc9c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.cat-card .btn-view-more:hover {
  background: #16a085;
}

@media (max-width: 1024px) {
  .cat-card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .cat-card-grid {
    grid-template-columns: 1fr !important;
  }
  .cat-card {
    height: 260px !important;
  }
}

/* Why choose us */
.why-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-list li {
  font-weight: 600;
  color: #1a1a1a;
  padding-left: 28px;
  position: relative;
}
.why-list li::before {
  content: '✓';
  color: #1abc9c;
  font-weight: 800;
  position: absolute;
  left: 0;
}

/* Future vision */
.about-future {
  background: #1abc9c;
  color: #fff;
  text-align: center;
  padding: 70px 10%;
}
.about-future h2 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-future p {
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}


/* ===== HOMEPAGE FOOTER ===== */
.site-footer {
 background: #0a1f44 !important;
  color: white !important;
}

.site-footer a {
  color: blue !important;
}
.home-footer {
 
  padding-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 0 8% 50px;
}
.footer-col h3.footer-logo {
color: white !important;  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 15px 0;
}
.footer-col h4 {
 color: white !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.footer-col p {
  line-height: 1.7;
 color: white !important;
  margin: 0;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 16px;
  line-height: 1.6;
  color: white;
}
.footer-contact a {
  color: white;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #1abc9c;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
	 color: white !important;
}
.footer-links a {
  color: white !important;
  text-decoration: none;
}
.footer-links a:hover {
  color: #1abc9c;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: #1abc9c;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #8a93a8;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 6% 40px;
  }
}

/* ===== FULL RESPONSIVE PASS — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .about-list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===== FULL RESPONSIVE PASS — MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* Feature cards */
  .home-features {
    grid-template-columns: 1fr !important;
    padding: 40px 6% !important;
  }

  /* Product category grid (garments/fabrics/yarn) */
  .category-grid {
    grid-template-columns: 1fr !important;
  }
  .category-card {
    height: 260px !important;
  }

  /* Mission / Vision */
  .about-mv-grid {
    grid-template-columns: 1fr !important;
    padding: 40px 6% 0 !important;
  }
  .about-mv-card {
    padding: 28px !important;
  }

  /* What We Do / Manufacturing / Private Label lists */
  .about-list-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  .about-block {
    padding: 40px 6% !important;
  }
  .about-block h2 {
    font-size: 1.5rem !important;
  }

  /* Core values */
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product tags */
  .tag-grid {
    gap: 8px !important;
  }
  .tag {
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
  }

  /* Why choose us */
  .why-list {
    grid-template-columns: 1fr !important;
  }

  /* Future vision */
  .about-future {
    padding: 45px 6% !important;
  }
  .about-future h2 {
    font-size: 1.5rem !important;
  }
  .about-future p {
    font-size: 0.95rem !important;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 6% 40px !important;
    text-align: left;
  }
}

/* ===== SMALL PHONES (≤480px) ===== */
@media (max-width: 480px) {
  .home-hero {
    height: 65vh !important;
  }
  .hero-overlay h1 {
    font-size: 1.3rem !important;
  }
  .btn-cta {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
  .about-mv-card h3,
  .about-block h2 {
    font-size: 1.2rem !important;
  }
  .value-card,
  .about-list-grid li {
    padding: 16px !important;
  }
}






/* MM Exports — What We Do auto marquee */

.mm-whatwedo {
  padding: 60px 0%;
}

.mm-whatwedo h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a1f44;
  text-align: center;
  margin-bottom: 35px;
}

.mm-whatwedo-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 0;
}

/* fade edges — match this color to your section background */
.mm-whatwedo-wrap::before,
.mm-whatwedo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
.mm-whatwedo-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f7f7f7, rgba(247,247,247,0));
}
.mm-whatwedo-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f7f7f7, rgba(247,247,247,0));
}

.mm-whatwedo-track {
  display: flex;
  width: max-content;
  animation: mmMarquee 28s linear infinite;
}
.mm-whatwedo-track:hover {
  animation-play-state: paused;
}

.mm-whatwedo-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

@keyframes mmMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



/* single line: icon + text side by side */
.mm-whatwedo-item {
  flex: 0 0 auto;
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.mm-whatwedo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(26,188,156,.5);
  box-shadow: 0 10px 22px rgba(26,188,156,.18);
  background: #fff;
}

.mm-whatwedo-ic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(26,188,156,.1);
  color: #1abc9c;
  transition: background .3s ease, color .3s ease, transform .4s ease;
}
.mm-whatwedo-ic svg { width: 18px; height: 18px; }

.mm-whatwedo-item:hover .mm-whatwedo-ic {
  background: #1abc9c;
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.mm-whatwedo-txt {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #1a1a1a;
  transition: color .3s ease;
}
.mm-whatwedo-item:hover .mm-whatwedo-txt {
  color: #0f7d67;
}

@media (max-width: 640px) {
  .mm-whatwedo-item { padding: 8px 18px 8px 8px; gap: 10px; }
  .mm-whatwedo-ic { width: 32px; height: 32px; }
  .mm-whatwedo-ic svg { width: 16px; height: 16px; }
  .mm-whatwedo-txt { font-size: 13px; }
  .mm-whatwedo-track { animation-duration: 20s; }
}


/* MM Exports — Why Choose Us, elegant split layout */
.mm-why-wrap {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 20px 24px;
}

/* --- LEFT: image side --- */
.mm-why-media {
  position: relative;
}

.mm-why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.mm-why-badge {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: #14151a;
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.mm-why-badge-num {
  font-size: 26px;
  font-weight: 800;
  color: #1abc9c;
  line-height: 1;
}

.mm-why-badge-txt {
  font-size: 12px;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 1.35;
  margin-top: 6px;
}

/* --- RIGHT: content side --- */
.mm-why-content {
  display: flex;
  flex-direction: column;
}

.mm-why-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1abc9c;
  margin-bottom: 10px;
}

.mm-why-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.28;
  color: #14151a;
  margin: 0 0 14px;
}

.mm-why-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #5c5f66;
  margin: 0 0 30px;
  max-width: 480px;
}

.mm-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #e9eaea;
}

.mm-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px 16px 2px;
  border-bottom: 1px solid #e9eaea;
  transition: padding-left .25s ease, background .25s ease;
}

.mm-why-item:nth-child(odd) {
  border-right: 1px solid #e9eaea;
  padding-right: 20px;
}

.mm-why-item:hover {
  padding-left: 10px;
  background: rgba(26,188,156,.04);
}

.mm-why-index {
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #1abc9c;
  opacity: .65;
}

.mm-why-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #1e1f24;
  line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .mm-why-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mm-why-img { height: 360px; }
  .mm-why-badge { right: 10px; }
}

@media (max-width: 560px) {
  .mm-why-list { grid-template-columns: 1fr; }
  .mm-why-item:nth-child(odd) {
    border-right: none;
    padding-right: 2px;
  }
  .mm-why-heading { font-size: 24px; }
}


/* ===== ABOUT PAGE ===== */
/* ===== ABOUT PAGE — HERO ===== */
.about-page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #14151a; /* fallback while image loads */
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,.55), rgba(10,12,14,.72));
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-page-hero-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1abc9c;
  margin-bottom: 14px;
}

.about-page-hero-inner h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 12px;
	color:white;
}

.about-page-hero-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.82);
  margin: 0;
}

/* ===== CONTENT WRAPPER ===== */
.about-page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.about-page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1abc9c;
  margin-bottom: 12px;
}

.about-page-block {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-page-block p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a4d54;
  margin: 0 0 16px;
}

/* ===== STATS STRIP ===== */
.about-page-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #eceeed;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 70px;
}

.about-page-stat {
  background: #fff;
  padding: 30px 16px;
  text-align: center;
}

.about-page-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #14151a;
  margin-bottom: 6px;
}

.about-page-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b6e75;
}

/* ===== OUR STORY: split layout ===== */
.about-page-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-page-story-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.about-page-story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-page-story-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #14151a;
  line-height: 1.3;
  margin: 0 0 18px;
}

.about-page-story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4d54;
  margin: 0 0 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-page-hero-inner h1 { font-size: 34px; }
  .about-page-stats { grid-template-columns: repeat(2, 1fr); }
  .about-page-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-page-story-img { height: 300px; }
}

@media (max-width: 560px) {
  .about-page-content { padding: 50px 20px; }
  .about-page-stats { grid-template-columns: 1fr; }
}





