/* =========================================================================
   SHAMLI ENTERPRISES — DESIGN SYSTEM v3
   Direction: Clean corporate industrial template (reference: Phactorize /
   ThemeEarth-style factory templates) — navy + orange, white content
   sections, standard rounded cards, icon-box services, stat CTA bands,
   FAQ accordion, testimonial carousel. Safe, conventional, trustworthy.
   ========================================================================= */

:root {
  --navy-950: #081C30;
  --navy-900: #0A2E4D;
  --navy-800: #0F3D63;
  --navy-700: #154A78;
  --navy-500: #3C6E97;
  --navy-300: #8DAEC6;

  --grey-50: #F7F9FB;
  --grey-100: #EEF2F6;
  --grey-200: #E2E8EF;
  --ink: #1E2A38;
  --ink-soft: #5B6B7C;

  --orange: #FF6B1A;
  --orange-dark: #E1560E;
  --white: #FFFFFF;
  --line: #E5EAF0;

  --font-display: 'Poppins', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;

  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 12px rgba(10, 46, 77, .08);
  --shadow-md: 0 10px 32px rgba(10, 46, 77, .12);
  --shadow-lg: 0 24px 56px rgba(10, 46, 77, .18);

  /* --- legacy variable aliases (earlier design iterations used these
     names inline in page HTML) — keep pointing at v3 tokens so every
     page renders with the current palette without hunting every inline
     style attribute across 7 files. --- */
  --amber: var(--orange);
  --amber-dark: var(--orange-dark);
  --steel-50: var(--grey-50);
  --steel-200: var(--grey-200);
  --steel-400: var(--ink-soft);
  --steel-600: var(--navy-500);
  --steel-700: var(--navy-700);
  --steel-800: var(--navy-800);
  --steel-900: var(--navy-900);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container-xl {
  max-width: 1280px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* =============== UTILITIES =============== */
.eyebrow {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.bg-dark,
.bg-steel {
  background: var(--navy-950);
  color: var(--grey-200);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-steel h1,
.bg-steel h2,
.bg-steel h3,
.bg-steel h4 {
  color: var(--white);
}

.bg-dark-alt,
.bg-steel-800 {
  background: var(--navy-900);
  color: var(--grey-200);
}

.bg-dark-alt h1,
.bg-dark-alt h2,
.bg-dark-alt h3,
.bg-dark-alt h4,
.bg-steel-800 h1,
.bg-steel-800 h2,
.bg-steel-800 h3,
.bg-steel-800 h4 {
  color: var(--white);
}

.bg-paper,
.bg-panel {
  background: var(--grey-50);
}

.bg-white {
  background: var(--white);
}

.text-copper,
.text-amber {
  color: var(--orange-dark);
}

.btn-copper,
.btn-amber {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .94rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-copper:hover,
.btn-amber:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light,
.btn-outline-steel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .94rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-ghost-light:hover,
.btn-outline-steel:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: .2s ease;
}

.btn-wa:hover {
  background: #1EBE58;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-dark-outline {
  border: 1px solid var(--navy-700);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: .2s ease;
}

.btn-dark-outline:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* Standalone icon-box (used outside .card-service — services page, about page) */
.icon-box {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-900);
  background: var(--grey-50);
  transition: .25s;
}

/* Standard card shape everywhere — rounded corners, soft shadow (no diagonal cuts) */
.spec-plate {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.spec-plate .rivet-b1,
.spec-plate .rivet-b2 {
  display: none;
}

.intro-frame {
  display: none;
}

/* =============== PRE-LOADER =============== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: .1em;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-bar {
  width: 170px;
  height: 3px;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--orange);
  animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% {
    left: -40%;
  }

  50% {
    left: 60%;
  }

  100% {
    left: 100%;
  }
}

/* =============== TOP UTILITY BAR =============== */
.topbar {
  background: var(--navy-950);
  color: var(--grey-200);
  font-family: var(--font-body);
  font-size: .82rem;
  padding: .6rem 0;
}

.topbar a {
  color: var(--grey-200);
  transition: .2s;
}

.topbar a:hover {
  color: var(--orange);
}

.topbar .divider {
  color: var(--navy-700);
  margin: 0 .6rem;
}

/* =============== NAVBAR — solid white, always readable =============== */
.site-nav {
  background: var(--white);
  padding: 3px 0;
  transition: .3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}

.site-nav.scrolled {
  padding: .2rem 0;
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 700;
}

.brand .mark {
  width: 44px;
  height: 44px;
  background: var(--navy-900);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--orange);
  font-weight: 700;
  flex: none;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 400;
}

.nav-link-item {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy-900) !important;
  padding: .5rem 1rem !important;
  position: relative;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .1rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  transform: scaleX(1);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--orange-dark) !important;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  padding: .65rem 1.3rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: .2s;
}

.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid var(--line);
  padding: .45rem .65rem;
  background: var(--grey-50);
  border-radius: var(--radius);
}

.navbar-toggler .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 4px 0;
  transition: .2s;
}

/* Desktop Products dropdown */
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  margin-top: .5rem;
  min-width: 230px;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy-900);
  padding: .65rem .9rem;
  border-radius: var(--radius);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--grey-50);
  color: var(--orange-dark);
}

.nav-link-item.dropdown-toggle::before {
  display: none;
}

@media (min-width:992px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    position: absolute;
    pointer-events: none;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width:991.98px) {
  .nav-item.dropdown {
    display: none;
  }

  /* Products submenu on mobile uses the sliding drawer instead */
}

/* Mobile submenu (Products > Pulp / Paper) */
.mobile-parent-link {
  display: flex;
  align-items: stretch;
}

.mobile-parent-link a {
  flex: 1;
}

.mobile-sub-toggle {
  width: 52px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.mobile-sub-toggle.open i {
  transform: rotate(180deg);
}

.mobile-sub-toggle i {
  transition: .2s;
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--grey-50);
  transition: max-height .3s ease;
}

.mobile-submenu.open {
  max-height: 200px;
}

.mobile-submenu li {
  border-bottom: 1px solid var(--line);
}

.mobile-submenu a {
  padding: .85rem 1.4rem .85rem 2.2rem !important;
  font-size: .88rem !important;
  font-weight: 400 !important;
  color: var(--ink-soft) !important;
}

.mobile-submenu a:hover {
  color: var(--orange-dark) !important;
}

/* =============== RIGHT-SIDE SLIDING MOBILE MENU =============== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 48, .75);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--white);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  overflow-y: auto;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-50);
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.mobile-menu-links li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem 1.4rem;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .98rem;
  transition: .2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--orange-dark);
  background: var(--grey-50);
}

.mobile-menu-foot {
  padding: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.mobile-menu-foot .btn-wa,
.mobile-menu-foot .btn-amber {
  justify-content: center;
  width: 100%;
}

/* =============== HERO — full-bleed, dark navy overlay, centered content =============== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 48, .94) 0%, rgba(8, 28, 48, .72) 55%, rgba(8, 28, 48, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero .eyebrow {
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 1.2rem;
  color: var(--white);
}

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

.hero-lead {
  font-size: 1.08rem;
  color: var(--grey-200);
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.hero-spec-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 1.8rem;
  max-width: 600px;
}

.hero-spec-strip .spec-item {
  padding-right: 2.4rem;
  margin-bottom: .6rem;
}

.hero-spec-strip .spec-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--orange);
  font-weight: 700;
}

.hero-spec-strip .spec-label {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--grey-200);
  text-transform: uppercase;
}

/* Home hero banner slider */
.hero-carousel-wrap {
  position: relative;
}

.hero-carousel-wrap .carousel-item {
  transition: transform .7s ease-in-out;
}

.hero-carousel-wrap .hero {
  min-height: 88vh;
}

.hero-slide-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: .2s;
}

.hero-slide-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
  z-index: 5;
}

.hero-indicators {
  bottom: 1.6rem;
  z-index: 5;
  gap: .4rem;
}

.hero-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .4);
  opacity: 1;
  border: 0;
  transition: .2s;
}

.hero-indicators .active {
  background: var(--orange);
  width: 40px;
}

@media (max-width:767.98px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: var(--white);
}

.page-hero .container-xl {
  padding-bottom: 2.6rem;
  position: relative;
  z-index: 2;
}

.breadcrumb-mono {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--grey-200);
  margin-bottom: .8rem;
}

.breadcrumb-mono a {
  color: var(--orange);
}

.breadcrumb-mono a:hover {
  text-decoration: underline;
}

/* =============== SECTION HEADS =============== */
.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.9vw, 2.5rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* =============== INTRO / ABOUT SPLIT =============== */
.intro-figure {
  position: relative;
}

.intro-figure img {
  border-radius: var(--radius-lg);
}

.intro-badge {
  position: absolute;
  bottom: -22px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

.intro-badge .num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.intro-badge .lbl {
  font-family: var(--font-body);
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .55rem 0;
  color: var(--ink);
}

.check-list li i {
  color: var(--orange-dark);
  margin-top: .2rem;
}

.bg-dark .check-list li,
.bg-steel .check-list li,
.bg-dark-alt .check-list li,
.bg-steel-800 .check-list li {
  color: var(--grey-200);
}

.bg-dark .check-list li i,
.bg-steel .check-list li i,
.bg-dark-alt .check-list li i,
.bg-steel-800 .check-list li i {
  color: var(--orange);
}

/* category chip row (About) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.2rem 0 1.6rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--grey-50);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 30px;
}

/* =============== CARDS: PRODUCT / SERVICE =============== */
.card-product {
  overflow: hidden;
  transition: .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.card-product:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-product .thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-800);
}

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

.card-product:hover .thumb img {
  transform: scale(1.06);
}

.card-product .cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 20px;
}

.card-product .body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-product h3 {
  font-size: 1.14rem;
  margin-bottom: .6rem;
}

.card-product p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 1rem;
}

.card-product .feat-mini {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: .84rem;
  color: var(--ink);
}

.card-product .feat-mini li {
  padding: .25rem 0;
  display: flex;
  gap: .5rem;
}

.card-product .feat-mini li::before {
  content: "✓";
  color: var(--orange-dark);
  font-weight: 700;
}

.card-product .card-foot {
  margin-top: auto;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* Service card — photo top with icon badge overlapping (classic industrial-template pattern) */
.card-service {
  overflow: visible;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
  padding: 1.8rem;
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-service .svc-photo {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/11;
}

.card-service .svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.card-service:hover .svc-photo img {
  transform: scale(1.08);
}

.card-service .icon-box {
  width: 58px;
  height: 58px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  position: absolute;
  left: 1.6rem;
  bottom: -29px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.card-service .svc-body {
  padding: 2.4rem 1.6rem 0;
}

.card-service h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.card-service p {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.card-service .read-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.card-service .read-more:hover {
  color: var(--orange-dark);
}

/* Manufacturing capability strip */
.cap-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cap-item:last-child {
  border-bottom: 0;
}

.cap-num {
  font-family: var(--font-display);
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  flex: none;
  width: 2.4rem;
}

.cap-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.cap-item p {
  color: var(--grey-200);
  font-size: .9rem;
  margin-bottom: 0;
  opacity: .85;
}

/* =============== STATS =============== */
.stat-block {
  text-align: center;
  padding: 1.6rem 1rem;
  position: relative;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--grey-200);
  margin-top: .6rem;
}

/* =============== WHY / PROCESS =============== */
.why-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.why-row:last-child {
  border-bottom: 0;
}

.why-ico {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-row h4 {
  font-size: 1.02rem;
  margin-bottom: .3rem;
}

.why-row p {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 0;
}

.process-step {
  position: relative;
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  /* opacity: .3; */
  line-height: 1;
  margin-bottom: .8rem;
}

.process-step h4 {
  font-size: 1.03rem;
  margin-bottom: .5rem;
  color: var(--white);
}

.process-step p {
  color: var(--grey-200);
  font-size: .9rem;
  opacity: .85;
}

/* =============== TESTIMONIALS =============== */
.testi-card {
  padding: 2rem;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.testi-card .stars {
  color: var(--orange);
  letter-spacing: .15rem;
  margin-bottom: 1rem;
}

.testi-card p.quote {
  font-size: .98rem;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}

.testi-name {
  font-weight: 600;
  font-size: .92rem;
}

.testi-role {
  font-family: var(--font-body);
  font-size: .76rem;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* =============== FAQ ACCORDION =============== */
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .9rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy-900);
  padding: 1.1rem 1.4rem;
  background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--orange-dark);
  background: var(--grey-50);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--line);
}

.faq-accordion .accordion-body {
  color: var(--ink-soft);
  font-size: .92rem;
  padding: 0 1.4rem 1.2rem;
}

/* =============== CTA BAND =============== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(255, 107, 26, .08);
  border-radius: 50%;
}

/* =============== FOOTER =============== */
.site-footer {
    /* background-image: url('../images/hero/footer-bg.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: .2rem 0 .0rem;
     background-color:var(--navy-950);
  background-blend-mode:overlay;
  color: var(--grey-200);
}

.site-footer h5 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}

.site-footer a {
  color:#fff;
  transition: .2s;
  font-size: .92rem;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .6rem;
}

.footer-contact-item {
  display: flex;
  gap: .7rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--grey-200);
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: .2rem;
}

.footer-bottom {
  border-top: 1px solid var(--navy-800);
  padding: 1.2rem 0;
  font-size: .82rem;
  color: #fff;
      background: #04111e;
}

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-200);
}

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

/* =============== FLOATING ACTION BUTTONS =============== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: .25s ease;
  position: relative;
}

.fab:hover {
  transform: scale(1.08);
  color: var(--white);
}

.fab.fab-wa {
  background: #25D366;
}

.fab.fab-call {
  background: var(--orange);
}

.fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .5;
  animation: fabPulse 2.2s ease-out infinite;
}

.fab-wa::after {
  color: #25D366;
}

.fab-call::after {
  color: var(--orange);
  animation-delay: .6s;
}

@keyframes fabPulse {
  0% {
    transform: scale(.9);
    opacity: .6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.fab-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-950);
  color: var(--white);
  font-size: .76rem;
  padding: .4rem .7rem;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  font-family: var(--font-body);
}

.fab:hover .fab-tip {
  opacity: 1;
  visibility: visible;
}

/* =============== FORMS =============== */
.form-industrial label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .4rem;
  display: block;
}

.form-industrial .form-control,
.form-industrial .form-select {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: .75rem .9rem;
  font-size: .95rem;
  background: var(--white);
}

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

/* =============== GALLERY =============== */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--navy-800);
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 48, .88) 0%, rgba(8, 28, 48, 0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  opacity: 0;
  transition: .3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h5 {
  color: var(--white);
  font-size: .95rem;
  margin: 0;
  font-family: var(--font-display);
}

.gallery-item .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery-filter-btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .85rem;
  padding: .6rem 1.3rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: .2s;
  border-radius: 30px;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* =============== PRODUCT DETAIL =============== */
.detail-gallery-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
}

.detail-spec-table {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
}

.detail-spec-table tr {
  border-bottom: 1px solid var(--line);
}

.detail-spec-table td {
  padding: .75rem .2rem;
}

.detail-spec-table td:first-child {
  color: var(--ink-soft);
  width: 45%;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .04em;
}

.detail-spec-table td:last-child {
  color: var(--ink);
  font-weight: 600;
}

/* =============== MISC =============== */
.divider-copper,
.divider-amber {
  width: 56px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 1.4rem;
  border-radius: 2px;
}

.section-head .divider-copper {
  margin-left: 0;
  margin-right: auto;
}

.section-head.center .divider-copper {
  margin-left: auto;
  margin-right: auto;
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1400;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* reveal-on-scroll — fail-safe (see main.js) */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal [data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="left"].in-view {
  transform: translateX(0);
}

.js-reveal [data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="right"].in-view {
  transform: translateX(0);
}

/* =============== RESPONSIVE =============== */
@media (max-width:991.98px) {
  .section {
    padding: 3.4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 2.4rem 0;
  }

  .intro-badge {
    left: 0;
    bottom: -16px;
    padding: .85rem 1.1rem;
  }

  .card-service .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    left: 1.2rem;
    bottom: -25px;
  }

  .card-service .svc-body {
    padding: 2rem 1.2rem 0;
  }
}

@media (max-width:575.98px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .back-to-top {
    left: 14px;
    bottom: 14px;
  }
}


/* Custome Css */

.bg-img {
background-image: url("../images/hero/footer-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: cenfer;
background-color: rgba(0, 0, 0, 0.671);
background-blend-mode: overlay;
background-attachment: fixed;

}

.tes_bg{
  /* background-image: url("../images/paper-mill/bg3.jpg"); */
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
    background-color: #F7F9FB;
background-blend-mode: overlay;
/* background-attachment: fixed; */
}

.cte_bg{
    background-image: url("../images/paper-mill/bg3.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
        background-color: #000000b0;
background-blend-mode: overlay;
/* background-attachment: fixed; */
}