/* =============================================
   index2.css — Hero Section Styles
   ============================================= */

/* =============================================
   Header2 Styles
   ============================================= */

/* Fixed-top offset for body */
body { padding-top: 88px; }

/* Top dark bar */
.header2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header2-topbar {
  background: #1a1a1a;
  padding: 6px 0;
  font-size: 13px;
}

.header2-topbar-link {
  color: #ccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.header2-topbar-link:hover { color: #F76C17; }

.header2-moq {
  color: #F76C17;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
}

/* Main navbar row */
.header2-nav-wrap {
  background: #fff;
  padding: 10px 0;
}

/* Logo */
.header2-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}

.header2-logo:hover { color: #fff; text-decoration: none; }

.header2-logo-bold {
  font-weight: 800;
  margin-right: 6px;
}

/* Nav links */
.header2-navbar ul li {
  position: relative;
}

.header2-navbar ul li > a {
  display: block;
  padding: 8px 12px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.header2-navbar ul li > a:hover,
.header2-navbar ul li > a.active { color: #F76C17; }

.header2-navbar ul li > a i {
  font-size: 11px;
  margin-left: 2px;
  vertical-align: middle;
}

/* Standard dropdown */
.h2-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid #F76C17;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-radius: 0 0 6px 6px;
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
}

.h2-dropdown-menu li a {
  display: block;
  padding: 7px 18px;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.h2-dropdown-menu li a:hover {
  background: #fff5f0;
  color: #F76C17;
}

.h2-dropdown:hover .h2-dropdown-menu { display: block; }

/* Mega-menu */
.h2-megamenu {
  display: none;
  flex-direction: row;
  min-width: 640px;
  padding: 16px;
  gap: 8px;
}

.h2-megamenu li {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 8px;
  border-right: 1px solid #f0f0f0;
}

.h2-megamenu li:last-child { border-right: none; }

.h2-megamenu li a {
  padding: 5px 0;
  font-size: 12.5px;
}

.h2-dropdown:hover .h2-megamenu { display: flex; }

/* Mobile toggle button */
.header2-mobile-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: #222;
  cursor: pointer;
  line-height: 1;
}

/* Mobile nav panel */
.header2-mobile-nav {
  background: #fff;
  border-top: 1px solid #eee;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.header2-mobile-nav.open { max-height: 600px; }

.header2-mobile-nav ul li a {
  display: block;
  padding: 10px 4px;
  color: #222;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}

.header2-mobile-nav ul li a:hover { color: #F76C17; }

/* =============================================
   Footer2 Styles
   ============================================= */

.footer2 {
  background: #0f0f0f;
  color: #aaa;
  font-size: 14px;
}

/* Main columns area */
.footer2-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid #2a2a2a;
}

/* Brand column */
.footer2-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer2-logo-bold { font-weight: 800; }

.footer2-desc {
  color: #888;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer2-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 18px;
}

.footer2-contact-info a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.footer2-contact-info a:hover { color: #F76C17; }

.footer2-moq-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer2-moq-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F76C17;
}

.footer2-moq-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Column headings */
.footer2-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

/* Link lists */
.footer2-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer2-links li a {
  color: #888;
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s;
}

.footer2-links li a:hover { color: #F76C17; }

/* Social icons */
.footer2-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer2-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e1e1e;
  color: #aaa;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.footer2-socials a:hover {
  background: #F76C17;
  color: #fff;
}

/* Bottom bar */
.footer2-bottom {
  padding: 16px 0;
  font-size: 13px;
  color: #555;
}

.footer2-bottom p { color: #555; }

/* ── Hero Section ── */
.hero-section {
  background: #fff;
  padding: 3rem;
}

.hero-heading {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #0E0E0E;
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 500px;
}

/* ── Buttons ── */
.btn-primary-orange {
  background: #F76C17;
  color: #fff;
  border-radius: 4px;
  font-size: .95rem;
  border: none;
}

.btn-primary-orange:hover {
  background: #d45a0e;
  color: #fff;
}

.btn-outline-dark-custom {
  background: transparent;
  color: #0E0E0E;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: .95rem;
}

.btn-outline-dark-custom:hover {
  border-color: #F76C17;
  color: #F76C17;
}

/* ── Guide Banner ── */
.guide-banner {
  background: #fff5f0;
  border-left: 4px solid #F76C17;
}

.guide-banner-label {
  color: #F76C17;
  font-size: .72rem;
  letter-spacing: 1.5px;
}

.guide-banner-title {
  color: #0E0E0E;
  font-size: .95rem;
}

.btn-brand-sm {
  background: #F76C17;
  color: #fff;
  border-radius: 4px;
  font-size: .88rem;
  white-space: nowrap;
  border: none;
}

.btn-brand-sm:hover {
  background: #d45a0e;
  color: #fff;
}

/* ── Feature Icons ── */
.feature-icon {
  color: #F76C17;
  font-size: 1.1rem;
}

.feature-label {
  font-size: .88rem;
  color: #555;
}

/* ── Hero Image ── */
.hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* ── Stats Bar ── */
.stats-bar {
  background: #0E0E0E;
  margin-top: 60px;
  padding: 24px 0;
}

.stats-icon {
  color: #F76C17;
  font-size: 1.3rem;
}

.stats-title {
  font-size: .92rem;
}

.stats-sub {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

/* =============================================
   Custom Apparel Categories Section
   ============================================= */

.apparel-categories-section {
  padding: 80px 0;
  background: #fff;
}

.apparel-categories-header {
  margin-bottom: 36px;
}

.apparel-categories-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.apparel-categories-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 10px;
}

.apparel-categories-desc {
  font-size: .95rem;
  color: #666;
  max-width: 420px;
  line-height: 1.65;
  margin: 0;
}

/* ── Card ── */
.apparel-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .25s;
  height: 100%;
}

.apparel-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}

.apparel-card-img-wrap {
  overflow: hidden;
  height: 180px;
}

.apparel-card-img-wrap-lg {
  height: 240px;
}

.apparel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.apparel-card:hover .apparel-card-img {
  transform: scale(1.04);
}

.apparel-card-body {
  padding: 16px;
}

.apparel-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 6px;
}

.apparel-card-desc {
  font-size: .83rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 12px;
}

.apparel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apparel-card-moq {
  font-size: .78rem;
  color: #aaa;
}

.apparel-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: #F76C17;
  text-decoration: none;
}

.apparel-card-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

/* =============================================
   Our Story Section
   ============================================= */

.our-story-section {
  padding: 80px 0;
  background: #fff;
}

/* ── Image Grid ── */
.our-story-images {
  min-height: 500px;
}

.our-story-img-main {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  display: block;
}

.our-story-img-sm {
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}

/* ── Content ── */
.our-story-content {
  padding: 60px 60px 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-story-label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 2px;
  color: #F76C17;
  display: block;
  margin-bottom: 14px;
}

.our-story-heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  line-height: 1.25;
  margin-bottom: 20px;
}

.our-story-text {
  font-size: .95rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── Stats ── */
.our-story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.our-story-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f0;
  border-radius: 8px;
  padding: 12px 18px;
  flex: 1 1 120px;
}

.our-story-stat-icon {
  color: #F76C17;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.our-story-stat-value {
  font-weight: 700;
  font-size: .92rem;
  color: #0E0E0E;
}

.our-story-stat-label {
  font-size: .78rem;
  color: #888;
}

@media (max-width: 991px) {
  .our-story-content {
    padding: 40px 24px;
  }

  .our-story-images {
    min-height: 360px;
  }
}

/* =============================================
   Mission & Values Section
   ============================================= */

.mission-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.mission-header {
  margin-bottom: 48px;
}

.mission-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.mission-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 14px;
}

.mission-desc {
  font-size: .95rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.mission-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px 16px;
  height: 100%;
  transition: box-shadow .25s;
}

.mission-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.mission-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #F76C17;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mission-icon {
  color: #F76C17;
  font-size: 1.3rem;
}

.mission-card-title {
  font-weight: 700;
  font-size: .95rem;
  color: #F76C17;
  margin-bottom: 6px;
}

.mission-card-desc {
  font-size: .82rem;
  color: #888;
  line-height: 1.6;
}

/* =============================================
   Custom Manufacturing Section
   ============================================= */

.custom-mfg-section {
  padding: 80px 0;
  background: #fff;
}

.custom-mfg-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-mfg-img-top,
.custom-mfg-img-bottom {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  border-radius: 6px;
}

.custom-mfg-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 12px;
}

.custom-mfg-heading {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0E0E0E;
  line-height: 1.25;
  margin-bottom: 20px;
}

.custom-mfg-text {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.custom-mfg-link {
  color: #F76C17;
  text-decoration: none;
  font-weight: 600;
}

.custom-mfg-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

/* =============================================
   Our Factory Section
   ============================================= */

.factory-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.factory-header {
  margin-bottom: 48px;
}

.factory-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.factory-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 14px;
}

.factory-desc {
  font-size: .95rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.factory-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}

.factory-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.factory-card-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.factory-card-icon {
  color: #F76C17;
  font-size: 1rem;
}

.factory-card-title {
  font-weight: 700;
  font-size: .95rem;
  color: #0E0E0E;
}

.factory-card-desc {
  font-size: .85rem;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.6;
}

.factory-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.factory-list li {
  font-size: .85rem;
  color: #555;
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}

.factory-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F76C17;
}

.factory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.factory-tag {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: .78rem;
  color: #555;
  padding: 3px 10px;
}

.factory-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.factory-cert-badge {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: .88rem;
  color: #0E0E0E;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.factory-cert-badge span {
  font-weight: 400;
  font-size: .75rem;
  color: #999;
}

/* =============================================
   Quality Manufacturing Section
   ============================================= */

.quality-mfg-section {
  padding: 80px 0;
  background: #fff;
}

.quality-mfg-header {
  margin-bottom: 48px;
}

.quality-mfg-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.quality-mfg-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
}

.quality-mfg-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.quality-mfg-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.quality-mfg-icon {
  color: #F76C17;
  font-size: 1.1rem;
}

.quality-mfg-text {
  font-size: .92rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   Custom Solutions Section
   ============================================= */

.custom-solutions-section {
  padding: 80px 0;
  background: #fff;
}

.custom-solutions-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 12px;
}

.custom-solutions-heading {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0E0E0E;
  line-height: 1.25;
  margin-bottom: 20px;
}

.custom-solutions-text {
  font-size: .92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}

.custom-solutions-link {
  color: #F76C17;
  text-decoration: none;
  font-weight: 500;
}

.custom-solutions-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

.custom-solutions-process {
  background: #fff;
  padding: 8px 0 0 24px;
}

.custom-solutions-process-label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 24px;
}

.custom-solutions-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.custom-solutions-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}

.custom-solutions-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.custom-solutions-step-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #F76C17;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F76C17;
  font-size: 1.15rem;
}

.custom-solutions-step-title {
  font-weight: 700;
  font-size: .95rem;
  color: #F76C17;
  margin-bottom: 3px;
}

.custom-solutions-step-sub {
  font-size: .82rem;
  color: #888;
}

/* =============================================
   Our Team Section
   ============================================= */

.our-team-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.our-team-header {
  margin-bottom: 48px;
}

.our-team-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.our-team-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
}

.our-team-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px 20px;
  height: 100%;
  transition: box-shadow .25s;
}

.our-team-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.our-team-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.our-team-icon {
  color: #F76C17;
  font-size: 1.3rem;
}

.our-team-stat {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0E0E0E;
  line-height: 1.1;
}

.our-team-role {
  font-size: .88rem;
  font-weight: 600;
  color: #F76C17;
  margin-bottom: 10px;
}

.our-team-desc {
  font-size: .82rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   Manufacturing Capabilities Section
   ============================================= */

.mfg-cap-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.mfg-cap-header {
  margin-bottom: 52px;
}

.mfg-cap-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 12px;
}

.mfg-cap-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 14px;
  line-height: 1.2;
}

.mfg-cap-desc {
  font-size: .95rem;
  color: #555;
  max-width: 640px;
  line-height: 1.75;
}

/* Sub-section headers */
.mfg-cap-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mfg-cap-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E0E0E;
  margin: 0;
}

.mfg-cap-view-link {
  font-size: .82rem;
  font-weight: 600;
  color: #F76C17;
  text-decoration: none;
  white-space: nowrap;
}

.mfg-cap-view-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

.mfg-cap-sub-desc {
  font-size: .9rem;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.65;
}

.mfg-cap-inline-link {
  color: #F76C17;
  text-decoration: none;
  font-weight: 500;
}

.mfg-cap-inline-link:hover {
  text-decoration: underline;
}

/* Fabric Cards */
.mfg-cap-fabric-card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px 18px;
  display: block;
  background: #fff;
  transition: border-color .2s;
  height: 100%;
}

.mfg-cap-fabric-card:hover {
  border-color: #F76C17;
}

.mfg-cap-fabric-card-orange {
  border-color: #fde8d8;
  background: #fff9f6;
}

.mfg-cap-fabric-icon {
  color: #F76C17;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: block;
}

.mfg-cap-fabric-title {
  font-weight: 700;
  font-size: .9rem;
  color: #0E0E0E;
  margin-bottom: 3px;
}

.mfg-cap-fabric-sub {
  font-size: .78rem;
  color: #999;
}

/* Print Cards */
.mfg-cap-print-card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 22px;
  background: #fff;
  height: 100%;
  transition: box-shadow .25s;
}

.mfg-cap-print-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.mfg-cap-print-icon {
  color: #F76C17;
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: block;
}

.mfg-cap-print-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0E0E0E;
  margin-bottom: 10px;
}

.mfg-cap-print-desc {
  font-size: .84rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}

.mfg-cap-print-best {
  font-size: .8rem;
  color: #aaa;
}

.mfg-cap-print-best span {
  color: #F76C17;
  font-weight: 600;
}

/* Service Cards (Embroidery + Packaging) */
.mfg-cap-service-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  height: 100%;
}

.mfg-cap-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mfg-cap-service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E0E0E;
  margin: 0;
}

.mfg-cap-service-desc {
  font-size: .86rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}

.mfg-cap-service-note {
  font-size: .8rem;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}

.mfg-cap-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.mfg-cap-bullet-list li {
  font-size: .84rem;
  color: #555;
  padding: 4px 0 4px 16px;
  position: relative;
}

.mfg-cap-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F76C17;
}

.mfg-cap-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mfg-cap-icon-list li {
  font-size: .84rem;
  color: #555;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mfg-cap-icon-list li i {
  color: #F76C17;
  font-size: .88rem;
  flex-shrink: 0;
}

/* =============================================
   MOQ & Shipping Section
   ============================================= */

.moq-section {
  padding: 80px 0;
  background: #f4f4f4;
}

.moq-card {
  background: #0E0E0E;
  border-radius: 8px;
  padding: 28px 32px;
  height: 100%;
  color: #fff;
}

.moq-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.moq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 12px;
}

.moq-row-last {
  border-bottom: none;
  padding-bottom: 0;
}

.moq-row-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

.moq-row-value {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.moq-row-value-orange {
  color: #F76C17;
}

.moq-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.moq-info-row.moq-row-last {
  border-bottom: none;
  padding-bottom: 0;
}

.moq-info-icon {
  color: #F76C17;
  font-size: .95rem;
  flex-shrink: 0;
  width: 16px;
}

.moq-info-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}

.moq-info-value {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  margin-left: auto;
  text-align: right;
}

.moq-info-value-orange {
  color: #F76C17;
}

/* =============================================
   How It Works Section
   ============================================= */

.hiw-section {
  padding: 80px 0 0;
  background: #0E0E0E;
}

.hiw-header {
  margin-bottom: 52px;
}

.hiw-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.hiw-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.hiw-steps-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
  margin-bottom: 52px;
}

.hiw-step {
  padding-right: 24px;
}

.hiw-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F76C17;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hiw-step-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.hiw-step-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}

.hiw-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 28px 0;
  flex-wrap: wrap;
}

.hiw-cta-title {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 4px;
}

.hiw-cta-sub {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}

/* =============================================
   Industries We Serve Section
   ============================================= */

.industries-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.industries-header {
  margin-bottom: 48px;
}

.industries-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.industries-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 14px;
}

.industries-desc {
  font-size: .95rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.industries-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: box-shadow .25s;
}

.industries-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.industries-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.industries-icon {
  color: #F76C17;
  font-size: 1.1rem;
}

.industries-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 8px;
}

.industries-card-desc {
  font-size: .83rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
}

.industries-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industries-checklist li {
  font-size: .82rem;
  color: #F76C17;
  padding: 2px 0 2px 20px;
  position: relative;
  line-height: 1.5;
}

.industries-checklist li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: .75rem;
  color: #F76C17;
}

/* =============================================
   Recent Projects Section
   ============================================= */

.projects-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.projects-header {
  margin-bottom: 48px;
}

.projects-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.projects-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 12px;
}

.projects-desc {
  font-size: .95rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.projects-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  height: 100%;
  transition: box-shadow .25s;
}

.projects-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}

.projects-img-wrap {
  overflow: hidden;
  height: 200px;
}

.projects-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.projects-card:hover .projects-img {
  transform: scale(1.04);
}

.projects-card-body {
  padding: 18px 20px;
}

.projects-client {
  font-size: .75rem;
  font-weight: 600;
  color: #F76C17;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.projects-client span {
  color: #F76C17;
}

.projects-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 8px;
}

.projects-card-desc {
  font-size: .82rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
}

.projects-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.projects-tag {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: .75rem;
  color: #666;
  padding: 3px 10px;
  background: #fafafa;
}

/* =============================================
   Client Case Studies Section
   ============================================= */

.case-studies-section {
  padding: 80px 0;
  background: #fff;
}

.case-studies-label {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
}

.case-study-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  background: #fff;
}

.case-study-tag {
  display: inline-block;
  background: #fff5f0;
  color: #F76C17;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.case-study-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 18px;
  line-height: 1.35;
}

.case-study-block {
  margin-bottom: 14px;
}

.case-study-block-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 5px;
}

.case-study-block-text {
  font-size: .83rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.case-study-results {
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
  margin-top: 16px;
}

.case-study-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F76C17;
  line-height: 1.1;
}

.case-study-stat-label {
  font-size: .75rem;
  color: #999;
  margin-top: 2px;
}

/* =============================================
   Customer Success Section
   ============================================= */

.success-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.success-header {
  margin-bottom: 36px;
}

.success-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.success-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
}

.success-feature-box {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 28px;
}

.success-feature-left {
  padding: 32px 36px;
  border-right: 1px solid #eee;
}

.success-feature-badge {
  font-size: .75rem;
  font-weight: 600;
  color: #F76C17;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.success-feature-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 14px;
}

.success-feature-text {
  font-size: .88rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
}

.success-feature-right {
  display: flex;
  flex-direction: column;
}

.success-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.success-stat-item-last {
  border-bottom: none;
}

.success-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F76C17;
  line-height: 1.1;
}

.success-stat-label {
  font-size: .75rem;
  color: #999;
  margin-top: 3px;
}

.success-bridge-text {
  font-size: .88rem;
  color: #777;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}

.testimonial-stars {
  color: #F76C17;
  font-size: .85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .85rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.testimonial-author {
  font-weight: 700;
  font-size: .88rem;
  color: #0E0E0E;
}

.testimonial-role {
  font-size: .78rem;
  color: #aaa;
}

/* =============================================
   USA Manufacturing Section
   ============================================= */

.usa-mfg-section {
  padding: 80px 0;
  background: #fffaf7;
}

.usa-mfg-inner {
  border: 1px solid #fde8d8;
  border-radius: 12px;
  padding: 48px 40px;
  background: #fff;
}

.usa-mfg-gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8860b, #FFD700, #DAA520);
  border: none;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  padding: 8px 20px;
  box-shadow: 0 4px 18px rgba(218, 165, 32, 0.45);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  animation: goldPulse 2.5s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(218, 165, 32, 0.45); }
  50%       { box-shadow: 0 6px 28px rgba(218, 165, 32, 0.75); }
}

.usa-mfg-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.usa-mfg-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 18px;
}

.usa-mfg-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.usa-mfg-trust-item {
  font-size: .82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.usa-mfg-trust-item i {
  color: #F76C17;
}

.usa-mfg-text-block {
  max-width: 680px;
  margin: 0 auto 32px;
}

.usa-mfg-text-block p {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 10px;
}

.usa-mfg-link {
  color: #F76C17;
  text-decoration: none;
  font-weight: 500;
}

.usa-mfg-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

.usa-mfg-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 12px;
  background: #fff;
  transition: border-color .2s;
}

.usa-mfg-card:hover {
  border-color: #F76C17;
}

.usa-mfg-card-icon {
  color: #F76C17;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.usa-mfg-card-title {
  font-weight: 700;
  font-size: .88rem;
  color: #0E0E0E;
  margin-bottom: 3px;
}

.usa-mfg-card-sub {
  font-size: .78rem;
  color: #aaa;
}

@media (max-width: 767px) {
  .usa-mfg-inner {
    padding: 32px 20px;
  }
}

/* =============================================
   FAQ Section
   ============================================= */

.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.faq-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0E0E0E;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  border-bottom: 1px solid #eee;
  border-radius: 0 !important;
  background: transparent;
}

.faq-btn {
  font-size: .92rem;
  font-weight: 500;
  color: #0E0E0E;
  background: transparent;
  padding: 18px 0;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: #F76C17;
  background: transparent;
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F76C17'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-btn-highlight {
  color: #F76C17;
}

.faq-body {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  padding: 0 0 18px;
}

/* =============================================
   CTA Banner Section
   ============================================= */

.cta-banner-section {
  padding: 72px 0;
  background: #0E0E0E;
}

.cta-banner-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =============================================
   Contact Section
   ============================================= */

.contact-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-label {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  color: #F76C17;
  margin-bottom: 10px;
}

.contact-heading {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0E0E0E;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 10px;
}

.contact-quote-link {
  font-size: .85rem;
  font-weight: 600;
  color: #F76C17;
  text-decoration: none;
}

.contact-quote-link:hover {
  text-decoration: underline;
  color: #d45a0e;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F76C17;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: .88rem;
  color: #333;
  text-decoration: none;
}

.contact-info-value:hover {
  color: #F76C17;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px;
}

.contact-form-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.contact-form-req {
  color: #F76C17;
}

.contact-form-input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.contact-form-input:focus {
  border-color: #F76C17;
}

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

@media (max-width: 991px) {
  .success-feature-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 24px;
  }

  .success-feature-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .success-stat-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
  }

  .success-stat-item:nth-child(even) {
    border-right: none;
  }

  .success-stat-item-last {
    border-bottom: none;
  }
}
