/* =====================================================================
   ACE MANUFACTURERS - style.css
   Shared stylesheet for all pages.
   - Common base / header / nav / footer / buttons / floating buttons
   - Home page sections (hero carousel, about, gallery, why, process,
     industries, areas, counters, marquee, testimonials, FAQ, contact)
   - Inner page sections (scoped under body.inner-page where needed):
     hero, trust strip, content, spec table, pricing, features,
     gallery, related, testimonials, FAQ, CTA, quote form
   Loaded after Bootstrap 5.3.3 CSS so it can override Bootstrap defaults.
   ===================================================================== */

:root {
  --bs-primary: #0a2540;
  --bs-primary-rgb: 10, 37, 64;
  --navy: #0a2540;
  --navy-2: #0f3157;
  --orange: #ff6b35;
  --orange-2: #e85a24;
  --gold: #ffb703;
  --whatsapp: #25d366;
  --whatsapp-2: #1eb557;
  --bg-3: #eef2f7;
  --font-body: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Poppins', 'Outfit', sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #1a2332;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.02em
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -.01em
}

/* Custom buttons */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 6px 16px rgba(255, 107, 53, .35);
  transition: all .25s ease;
}

.btn-orange:hover {
  background: var(--orange-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 107, 53, .45);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .35);
  transition: all .25s ease;
}

.btn-wa:hover {
  background: var(--whatsapp-2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-weight: 600;
  padding: 12px 26px;
  transition: all .25s ease;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-pill-sm {
  padding: 10px 18px;
  font-size: .88rem;
  border-radius: 999px
}



/* HEADER */
.site-header {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(10, 37, 64, .08)
}

.brand-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-logo-text:hover {
  color: var(--navy)
}

.brand-logo-text .dot {
  color: var(--orange)
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .92rem;
  color: #1a2332;
  border-radius: 8px;
  padding: 8px 14px;
  transition: all .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--orange);
  background: var(--bg-3)
}

/* DROPDOWN MENU */
.navbar-nav .dropdown-toggle::after {
  margin-left: .4em;
  vertical-align: .15em;
  border-top-color: currentColor;
}

.dropdown-menu-products {
  min-width: 260px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, .16);
  margin-top: 8px !important;
  animation: dropFade .25s ease;

  /* Scrollable behaviour */
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

/* Webkit (Chrome / Safari / Edge) scrollbar styling */
.dropdown-menu-products::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu-products::-webkit-scrollbar-track {
  background: transparent;
  margin: 8px 0;
}

.dropdown-menu-products::-webkit-scrollbar-thumb {
  background: #d6dde6;
  border-radius: 999px;
}

.dropdown-menu-products::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.dropdown-menu-products .dropdown-item {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: #1a2332;
  display: flex;
  align-items: center;
  transition: all .2s ease;
}

.dropdown-menu-products .dropdown-item i {
  color: var(--orange);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.dropdown-menu-products .dropdown-item:hover,
.dropdown-menu-products .dropdown-item:focus {
  background: var(--bg-3);
  color: var(--navy);
  transform: translateX(3px);
}

.dropdown-menu-products .dropdown-item-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff !important;
  font-weight: 600;
  margin-top: 4px;
}

.dropdown-menu-products .dropdown-item-cta i {
  color: #fff
}

.dropdown-menu-products .dropdown-item-cta:hover,
.dropdown-menu-products .dropdown-item-cta:focus {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff !important;
  transform: translateX(3px);
}

.dropdown-menu-products .dropdown-divider {
  margin: 8px 4px;
  border-color: #e2e8f0;
}

/* Mobile dropdown adjustments */
@media(max-width:991.98px) {
  .dropdown-menu-products {
    box-shadow: none;
    border: 0;
    background: var(--bg-3);
    margin-top: 4px !important;
    padding: 6px;
    /* On mobile collapse menu, let parent scroll - dropdown shouldn't be its own scroll area */
    max-height: none;
    overflow: visible;
  }
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1a3d6e 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, .15), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255, 183, 3, .1), transparent 40%);
  pointer-events: none;
}

.hero h1 {
  color: #fff
}

.hero h1 .accent {
  color: var(--orange);
  display: block
}

.hero .lede {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .85);
  max-width: 560px
}

.hero-stat {
  border-left: 3px solid var(--orange);
  padding-left: 14px
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.hero-stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .05em
}

.hero-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
  aspect-ratio: 4/3;
}

.carousel-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.carousel-img-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, .75));
}

.carousel-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  z-index: 2;
}

.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, .4);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  transition: all .3s;
}

.carousel-indicators .active {
  background-color: var(--orange);
  width: 24px;
  border-radius: 5px
}

/* EYEBROW */
.section-eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, .1);
  border-radius: 999px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--orange);
  padding: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
  color: #fff;
}

.trust-item i {
  color: var(--orange);
  font-size: 1.3rem
}

/* SECTION SPACING */
section.block {
  padding: 80px 0;
  scroll-margin-top: 90px
}

section.block.alt {
  background: #f8f9fa
}

/* ABOUT */
.about-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 37, 64, .12);
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: var(--orange);
  z-index: -1;
  border-radius: 14px;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px
}

.about-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #1a2332;
  font-weight: 500;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 800;
}

/* KEYWORD SECTIONS */
.kw-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 37, 64, .12);
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
}

.kw-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 6px 6px 0;
}

.kw-features {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 24px
}

.kw-features li {
  padding-left: 24px;
  position: relative;
  font-size: .92rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 6px;
}

.kw-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(20% 50%, 40% 70%, 80% 25%, 90% 35%, 40% 90%, 10% 60%);
}

/* GALLERY */
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10, 37, 64, .08);
  margin-bottom: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08)
}

.gallery-card .gc-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(10, 37, 64, .92));
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
}

/* WHY CARDS */
.why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height .3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, .12);
  border-color: transparent;
}

.why-card:hover::before {
  height: 100%
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px
}

.why-card p {
  font-size: .92rem;
  margin: 0;
  color: #4a5568
}

/* PROCESS */
.process-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  height: 100%;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-head);
  margin: 0 auto 12px;
  font-size: .95rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 4px
}

.process-step p {
  font-size: .82rem;
  margin: 0;
  color: #6b7280
}

/* INDUSTRIES */
.industry-pill {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  text-decoration: none;
  transition: all .25s;
}

.industry-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, .12);
}

/* AREAS */
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: #1a2332;
  text-decoration: none;
  transition: all .2s;
}

.area-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateX(3px);
}

.area-link i {
  color: var(--orange);
  flex-shrink: 0
}

/* COUNTERS */
.counter-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, .18), transparent 60%);
}

.counter-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.counter-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  background: #fff;
  padding: 36px 0;
  border-block: 1px solid #e2e8f0;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: scroll 35s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.brand-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #6b7280;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}

/* TESTIMONIALS */
.testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  height: 100%;
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: .18;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 2px
}

.testi-text {
  font-size: .95rem;
  color: #1a2332;
  margin-bottom: 18px;
  line-height: 1.7
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-head);
}

.testi-author strong {
  display: block;
  color: var(--navy);
  font-size: .95rem
}

.testi-author span {
  font-size: .82rem;
  color: #6b7280
}

/* FAQ ACCORDION */
.accordion-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #e2e8f0
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(10, 37, 64, .08);
}

.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 18px 22px;
  border-radius: 12px !important;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent
}

.accordion-button::after {
  background-image: none;
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-3);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: all .3s;
}

.accordion-button:not(.collapsed)::after {
  background-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 22px 20px;
  color: #4a5568;
  font-size: .95rem
}

.accordion-body strong {
  color: var(--navy)
}

/* CONTACT */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 36px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, .25), transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 18px
}

.contact-info-card p {
  color: rgba(255, 255, 255, .85)
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.contact-row i {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px
}

.contact-row strong {
  display: block;
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.contact-row a,
.contact-row span {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  text-decoration: none
}

.contact-row a:hover {
  color: var(--orange)
}

.map-embed {
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  position: relative;
  z-index: 1;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.contact-form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(10, 37, 64, .08);
  height: 100%;
}

.form-control,
.form-select {
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .12);
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  line-height: 1.9;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--orange)
}

.footer-col ul {
  list-style: none;
  padding-left: 0
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all .2s;
  font-size: 1.05rem;
}

.social-row a:hover {
  background: var(--orange);
  color: #fff
}

/* FLOATING BUTTONS */
.float-wa,
.float-call {
  position: fixed;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  z-index: 90;
  transition: transform .25s ease;
  color: #fff;
  font-size: 1.6rem;
}

.float-wa {
  left: 22px;
  background: var(--whatsapp);
  animation: pulse 2s infinite
}

.float-call {
  right: 22px;
  background: var(--orange)
}

.float-wa:hover,
.float-call:hover {
  transform: scale(1.08);
  color: #fff
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25), 0 0 0 0 rgba(37, 211, 102, .55)
  }

  50% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25), 0 0 0 14px rgba(37, 211, 102, 0)
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.cu-wdth-lgo {
  width: 180px;
}

/* RESPONSIVE TWEAKS */
@media(max-width:991.98px) {
  .hero {
    padding: 60px 0 70px
  }
}

@media(max-width:767.98px) {
  section.block {
    padding: 60px 0
  }

  .float-wa,
  .float-call {
    width: 52px;
    height: 52px;
    bottom: 16px
  }

  .float-wa {
    left: 16px
  }

  .float-call {
    right: 16px
  }

  .float-wa,
  .float-call {
    font-size: 1.4rem
  }

  .hero {
    padding: 50px 0 60px
  }
}

/* =====================================================================
   INNER PAGE STYLES
   Applied only when <body class="inner-page"> is set.
   These override / extend the home page styles for product detail pages
   like customized-tshirt-manufacturer-mumbai.html
   ===================================================================== */

/* Inner page brand logo (trust strip) */
.brand-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #6b7280;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}

/* ---------- Inner page Hero ---------- */
body.inner-page .hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #061a2e 100%);
  color: #fff;
  padding: 64px 0 80px;
  overflow: hidden;
}

body.inner-page .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, .18) 0%, transparent 60%);
  pointer-events: none;
}

body.inner-page .hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, .08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, .15);
  border: 1px solid rgba(255, 107, 53, .4);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}

body.inner-page .hero h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

body.inner-page .hero-stat strong {
  display: block;
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

body.inner-page .hero-stat span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
  display: block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
  transform: rotate(-1.5deg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, .4) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  color: var(--navy);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: 0 12px 32px rgba(10, 37, 64, .12), 0 4px 8px rgba(10, 37, 64, .06);
  z-index: 2;
}

.hero-badge strong {
  display: block;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

/* ---------- Inner page Trust strip ---------- */
.trust-strip {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid #e4e8ed;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.trust-item span {
  display: block;
  font-size: .85rem;
  color: #5a6573;
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- Inner page Content sections ---------- */
.intro-block {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.intro-block .eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6573;
}

.content-rich h2 {
  margin-top: 48px;
  padding-top: 8px;
}

.content-rich h2:first-child {
  margin-top: 0;
}

.content-rich h3 {
  margin-top: 32px;
  color: #1a1a1a;
}

.content-rich p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.content-rich ul,
.content-rich ol {
  padding-left: 22px;
  margin-bottom: 1.2em;
}

.content-rich li {
  margin-bottom: .5em;
  line-height: 1.7;
}

.content-rich strong {
  color: var(--navy);
}

/* ---------- Spec table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .04);
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e4e8ed;
}

.spec-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
}

.spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.spec-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

/* ---------- Pricing slabs ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid #e4e8ed;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 200ms cubic-bezier(.4, 0, .2, 1);
}

.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 37, 64, .08), 0 2px 4px rgba(10, 37, 64, .04);
}

.pricing-card .qty {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: #5a6573;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1;
}

.pricing-card .unit {
  font-size: .85rem;
  color: #5a6573;
  margin-top: 4px;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.feature-card {
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 14px;
  padding: 28px;
  transition: all 200ms cubic-bezier(.4, 0, .2, 1);
}

.feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(10, 37, 64, .08), 0 2px 4px rgba(10, 37, 64, .04);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--orange);
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.feature-card p {
  font-size: .95rem;
  color: #5a6573;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Inner page Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 32px 0;
}

.gallery figure {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

/* ---------- Related / internal links ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  transition: all 200ms cubic-bezier(.4, 0, .2, 1);
}

.related-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(10, 37, 64, .08), 0 2px 4px rgba(10, 37, 64, .04);
  transform: translateY(-2px);
}

.related-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.related-card p {
  font-size: .9rem;
  color: #5a6573;
  margin: 0;
  line-height: 1.5;
}

.related-card .arrow {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Areas served (chips) ---------- */
.areas-served {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.area-chip {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 999px;
  font-size: .88rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 200ms cubic-bezier(.4, 0, .2, 1);
}

.area-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---------- Inner page Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: 'Poppins', 'Outfit', serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: .18;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e4e8ed;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.testimonial-role {
  font-size: .82rem;
  color: #5a6573;
  margin: 2px 0 0;
}

.stars {
  color: var(--orange);
  font-size: .9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* ---------- Inner page FAQ (using <details>) ---------- */
.faq-list {
  max-width: 840px;
  margin: 32px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 200ms cubic-bezier(.4, 0, .2, 1);
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .04);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 200ms cubic-bezier(.4, 0, .2, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 22px;
  color: #1a1a1a;
  line-height: 1.7;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---------- CTA block ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, #061a2e 100%);
  color: #fff;
  border-radius: 14px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, .2) 0%, transparent 60%);
}

.cta-block h2 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-block p {
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* ---------- Quote form (inner pages) ---------- */
.quote-form {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(10, 37, 64, .08), 0 2px 4px rgba(10, 37, 64, .04);
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e4e8ed;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 200ms cubic-bezier(.4, 0, .2, 1);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .15);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---------- Inner page section helpers ---------- */
.section-tight {
  padding: 40px 0;
}

.section-soft {
  background: #f8f9fa;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

/* ---------- Inner page responsive ---------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 18px;
  }

  .cta-block {
    padding: 32px 20px;
  }
}

/* ---------- Logo width helper (used in header) ---------- */
.cu-wdth-lgo {
  width: 180px;
}

