:root {
    --blue: #007fcb;
    --blue-dark: #046ead;
  --orange: #000000;
  --orange-dark: #8F6008;
  --gray-900: #202936;
  --gray-700: #4b5563;
  --gray-100: #f3f6fa;
  --white: #ffffff;
  --line: #dfe6ef;
  --shadow: 0 18px 44px rgba(0, 94, 90, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--blue-dark);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  max-width: 850px;
}

h2 {
  font-size:16px;
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
  color: var(--gray-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(168, 115, 10, 0.27);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  display: none;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(0 0 0 / 96%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header .container {
  width: min(1320px, calc(100% - 40px));
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: clamp(12px, 1.35vw, 22px);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}

.nav-links a:hover,
.dropdown-toggle:hover,
.nav-links > li:hover > a,
.dropdown:hover > .dropdown-toggle {
  color: var(--white);
}

.nav-links > li > a,
.dropdown-toggle {
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  max-height: min(430px, calc(100vh - 118px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(4, 110, 173, 0.55) var(--gray-100);
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: var(--radius);
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(4, 110, 173, 0.35);
  border-radius: var(--radius);
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(4, 110, 173, 0.55);
}

.dropdown.open > .dropdown-menu,
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.open > .dropdown-toggle i,
.dropdown:hover > .dropdown-toggle i,
.dropdown:focus-within > .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--gray-700);
  line-height: 1.25;
  font-size: 0.94rem;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: #000000;
  color:white;
}

.dropdown-menu i {
  color: var(--blue);
  width: 18px;
  text-align: center;
}

.products-menu {
  min-width: 310px;
  max-height: none;
  overflow: visible;
}

.product-category {
  position: relative;
}

.product-category-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--gray-700);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.product-category-toggle:hover,
.product-category.open > .product-category-toggle,
.product-category:focus-within > .product-category-toggle {
  background: var(--blue-dark);
  color: var(--white);
}

.product-category-toggle i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.product-submenu {
  position: absolute;
  top: -12px;
  left: calc(100% + 8px);
  width: min(370px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 118px));
  overflow-y: auto;
  padding: 12px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}

.product-category:hover > .product-submenu,
.product-category:focus-within > .product-submenu,
.product-category.open > .product-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.product-category:hover > .product-category-toggle i,
.product-category:focus-within > .product-category-toggle i,
.product-category.open > .product-category-toggle i {
  transform: rotate(90deg);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue-dark);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.nav-enquiry {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 18px;
  white-space: nowrap;
}


.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  aspect-ratio: 1717 / 916;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  background: transparent;
  transition: opacity 120ms ease-out;
}

.hero-video.is-ready {
  opacity: 1;
}

.about-breadcrumb-section {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 87px 0 84px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(115deg, #00403d 0%, #005e5a 44%, #202936 100%);
}

.about-breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 74%);
  pointer-events: none;
}

.about-breadcrumb-section::after {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.about-breadcrumb-section .row {
  display: flex;
  justify-content: center;
}

.about-breadcrumb-section .col-12 {
  width: min(100%, 760px);
  margin: 0 auto;
}

.about-breadcrumb-section .pagetitle-heading {
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 53px;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.about-breadcrumb-section .pagetitle-heading::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.88));
}

.about-breadcrumb-section .pagetitle-desc {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-breadcrumb-section .d-flex {
  display: flex;
  gap: 14px;
}

.about-breadcrumb-section .flex-wrap {
  flex-wrap: wrap;
}

.about-breadcrumb-section .align-items-center {
  align-items: center;
}

.about-breadcrumb-section .justify-content-center {
  justify-content: center;
}

.about-breadcrumb-section .btn-white {
  min-width: 154px;
  color: var(--blue-dark);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.about-breadcrumb-section .btn-white:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.about-breadcrumb-section .btn-outlined {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.about-breadcrumb-section .breadcrumb {
  width: fit-content;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 12px 18px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.about-breadcrumb-section .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.about-breadcrumb-section .breadcrumb a {
  color: var(--white);
  transition: color 0.2s ease;
}

.about-breadcrumb-section .breadcrumb a:hover {
  color: #ffd98e;
}

.about-breadcrumb-section .home-nav {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-breadcrumb-section .home-nav:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-3px);
}

.about-breadcrumb-section .curve-top-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 76px;
  pointer-events: none;
}

.about-breadcrumb-section .curve-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-breadcrumb-section .curve-path {
  fill: var(--white);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-band {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 94, 90, 0.06), transparent 36%),
    linear-gradient(300deg, rgba(168, 115, 10, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(0, 94, 90, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px;
  pointer-events: none;
}

.about-band::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 94, 90, 0.2), rgba(168, 115, 10, 0.26), transparent);
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.92fr) minmax(360px, 430px) minmax(270px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.about-intro,
.about-media,
.about-highlights {
  animation: aboutFadeUp 0.75s ease both;
}

.about-media {
  animation-delay: 0.12s;
}

.about-highlights {
  animation-delay: 0.22s;
}

.about-intro h2 {
  margin-bottom: 18px;
}

.about-title {
  font-size: 24px;
}

.about-lead {
  font-size: 1.05rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 94, 90, 0.16);
  background: rgba(0, 94, 90, 0.06);
  color: var(--blue-dark);
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.about-pill:hover {
  transform: translateY(-3px);
  background: var(--blue);
  color: var(--white);
}

.about-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.about-shape-wrap {
  position: relative;
  width: min(100%, 430px);
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 28px 42px rgba(0, 94, 90, 0.2));
  animation: aboutFloat 5s ease-in-out infinite;
}

.about-shape-wrap::before,
.about-shape-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
}

.about-shape-wrap::before {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: translate(14px, 14px);
  box-shadow: 0 34px 70px rgba(0, 94, 90, 0.24);
}

.about-shape-wrap::after {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  transform: translate(-10px, -10px);
  z-index: 2;
}

.about-shape {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-dark);
  border: 8px solid var(--white);
  box-shadow: 0 18px 44px rgba(0, 94, 90, 0.16);
}

.about-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.about-shape-wrap:hover .about-shape img {
  transform: scale(1.14);
  filter: saturate(1.12) contrast(1.05);
}

.about-image-badge {
  position: absolute;
  left: 18px;
  bottom: 54px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
background: linear-gradient(135deg, #0080cc, #0081cde3);
  box-shadow: 0 18px 38px rgba(0, 94, 90, 0.24);
  font-weight: 900;
}

.about-image-badge i {
  color: var(--orange);
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), #f8fbff);
  box-shadow: 0 12px 28px rgba(0, 94, 90, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-point:hover {
  transform: translateX(-6px);
  border-color: rgba(168, 115, 10, 0.48);
  box-shadow: 0 20px 42px rgba(0, 94, 90, 0.14);
}

.about-point-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
    background: linear-gradient(135deg, #021724ba, #0080cc);
  box-shadow: 0 12px 24px rgba(0, 94, 90, 0.18);
}

.about-point h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.about-point p {
  font-size: 0.9rem;
  line-height: 1.48;
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
  font-weight: 650;
}

.check-list i {
  color: var(--orange);
  margin-top: 5px;
}

#mission-vision {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 57px;
  background: #dbdadaad;
}

#mission-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

#mission-vision::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44px;
  width: min(640px, 80vw);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(168, 115, 10, 0.12), transparent 66%);
  pointer-events: none;
}

#mission-vision .container {
  position: relative;
  z-index: 1;
}

#mission-vision .section-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mv-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mv-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 94, 90, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9)),
    var(--white);
  box-shadow: 0 18px 42px rgba(0, 94, 90, 0.1);
  overflow: hidden;
  animation: mvFadeUp 0.7s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mv-card:nth-child(2) {
  animation-delay: 0.12s;
}

.mv-card:nth-child(3) {
  animation-delay: 0.22s;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 36%);
  opacity: 0.78;
  pointer-events: none;
}

.mv-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -64px;
  top: -64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 115, 10, 0.18), rgba(0, 94, 90, 0.1));
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.mv-card:hover {
  transform: translateY(-9px);
  border-color: rgba(168, 115, 10, 0.5);
  box-shadow: 0 26px 58px rgba(0, 94, 90, 0.16);
}

.mv-card:hover::after {
  transform: scale(1.15);
  opacity: 0.9;
}

.mv-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 30px rgba(0, 94, 90, 0.22);
  transition: transform 0.28s ease, background 0.28s ease;
}

.mv-card:hover .mv-icon {
  transform: translateY(-3px) rotate(-4deg);
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.mv-card h3,
.mv-card p,
.mv-card ul {
  position: relative;
  z-index: 1;
}

.mv-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.mv-card-text {
  margin-top: 14px;
}

.values-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 650;
  line-height: 1.42;
  transition: transform 0.2s ease, color 0.2s ease;
}

.values-list li:hover {
  transform: translateX(4px);
  color: var(--blue-dark);
}

.values-list i {
  color: var(--orange);
  margin-top: 5px;
}

@keyframes mvFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.why-choose-about {
  position: relative;
  overflow: hidden;
  padding-top: 22px;
  padding-bottom: 35px;
  background:
    linear-gradient(135deg, rgba(0, 94, 90, 0.06), transparent 34%),
    linear-gradient(315deg, rgba(168, 115, 10, 0.08), transparent 38%),
    var(--white);
}

.why-choose-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  pointer-events: none;
}

.why-choose-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 38px;
  align-items: center;
}

.why-choose-content h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 30px;
}

.why-choose-lead {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 164px;
  padding: 22px;
  border: 1px solid rgba(0, 94, 90, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 94, 90, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.why-choose-item:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 115, 10, 0.46);
  box-shadow: 0 24px 48px rgba(0, 94, 90, 0.14);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 14px 28px rgba(0, 94, 90, 0.18);
}

.why-choose-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.why-choose-item p {
  line-height: 1.55;
}

.why-choose-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 94, 90, 0.15);
  box-shadow: 0 24px 58px rgba(0, 94, 90, 0.16);
  background: var(--blue-dark);
}

.why-choose-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 94, 90, 0.04), rgba(0, 94, 90, 0.34)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.why-choose-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.why-choose-visual:hover img {
  transform: scale(1.06);
}

.why-choose-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(32, 41, 54, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.why-choose-badge strong {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 1.08rem;
  line-height: 1;
}

.why-choose-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.4;
}

.product-detail-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 48%, #ffffff 100%);
}

.product-detail-section {
  padding-top: 76px;
  padding-bottom: 78px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.product-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 94, 90, 0.14);
  background: #eef5f4;
  box-shadow: 0 18px 44px rgba(0, 94, 90, 0.11);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 6px;
  object-fit: contain;
  object-position: center;
  background: #f4f8fc;
}

.product-detail-media:hover img {
  transform: none;
}

.product-detail-content h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.product-detail-content p {
  max-width: 760px;
  font-size: 1.02rem;
}

.product-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.product-meta-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: rgba(0, 94, 90, 0.08);
  font-weight: 800;
  font-size: 0.9rem;
}

.product-meta-list i {
  color: var(--orange);
}

.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.product-info-band {
  padding-top: 0px;
  padding-bottom: 18px;

}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.product-features h2,
.product-specs h2 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.product-feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 94, 90, 0.12);
  color: var(--gray-700);
  font-weight: 650;
}

.product-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-feature-list i {
  color: var(--orange);
  margin-top: 5px;
}

.product-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 94, 90, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 94, 90, 0.08);
}

.product-spec-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.product-spec-table th,
.product-spec-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 94, 90, 0.11);
  vertical-align: top;
}

.product-spec-table th {
  width: 34%;
  color: var(--blue-dark);
  background: rgba(0, 94, 90, 0.07);
  font-weight: 900;
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.product-enquiry-strip {
  padding: 34px 0 76px;
}

.product-enquiry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #287b72);
  box-shadow: 0 18px 42px rgba(0, 94, 90, 0.16);
}

.product-enquiry-inner h2,
.product-enquiry-inner p {
  color: var(--white);
}

.product-enquiry-inner h2 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.product-enquiry-inner p {
  color: rgba(255, 255, 255, 0.84);
}

.product-enquiry-inner .btn {
  flex: 0 0 auto;
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.product-enquiry-inner .btn:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.capability-page {
  background: var(--white);
}

.capability-breadcrumb {
  --capability-hero: url('assets/images/teerham/breadcrumb-industrial-banner.jpg') !important;
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 92px 0 78px;
  overflow: hidden;
  background: linear-gradient(100deg, rgba(0, 20, 40, 0.42), rgba(4, 110, 173, 0.18)), var(--capability-hero) center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.capability-breadcrumb h1 {
  color: var(--white);
  font-size: 33px;
  margin-bottom: 18px;
}

.capability-breadcrumb nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.capability-breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-breadcrumb .breadcrumb-list li + li::before {
  content: "/";
  margin: 0 0.55rem;
}

.about-intro > h1 {
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: inherit;
}

.capability-breadcrumb nav a:hover {
  color: var(--orange-dark);
}

.capability-section {
  padding: 84px 0;
}

/* Static capability image gallery */
.capability-gallery-section {
  padding: 0 0 84px;
  background: var(--white);
}

.capability-gallery {
  width: 100%;
}

.capability-gallery-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.capability-gallery-item {
  position: static;
  flex: 1 1 0;
  min-width: 0;
  height: clamp(340px, 34vw, 460px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-100);
  box-shadow: 0 12px 28px rgba(32, 41, 54, 0.12);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.capability-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  object-position: center;
  background: var(--gray-100);
}

.raw-material-spec-section {
  padding: 64px 0;
  background: var(--gray-100);
}

.raw-material-spec-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.raw-material-spec-header h2 {
  margin: 10px 0 12px;
}

.raw-material-spec-header p {
  margin: 0;
  color: var(--text-muted);
}

.raw-material-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.raw-material-spec-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(32, 41, 54, 0.08);
}

.raw-material-spec-grid i {
  flex: 0 0 auto;
  color: var(--primary);
}

.industries-served-section {
  padding: 64px 0;
  background: var(--white);
}

.industries-served-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.industries-served-header h2 {
  margin: 10px 0 12px;
}

.industries-served-header p {
  margin: 0;
  color: var(--text-muted);
}

.industries-served-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.industry-served-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(32, 41, 54, 0.09);
}

.industry-served-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
}

.industry-served-card h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
}

.industry-served-card p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .raw-material-spec-section {
    padding: 48px 0;
  }

  .raw-material-spec-grid {
    grid-template-columns: 1fr;
  }

  .industries-served-section {
    padding: 48px 0;
  }

  .industries-served-grid {
    grid-template-columns: 1fr;
  }
}

/* Filler-neck images presented as a compact horizontal showcase. */
.filler-neck-gallery-section .capability-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filler-neck-gallery-section .capability-gallery-item {
  width: 100%;
  height: clamp(260px, 26vw, 360px);
}

.seat-frame-gallery-section .capability-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seat-frame-gallery-section .capability-gallery-item {
  width: 100%;
  height: clamp(320px, 32vw, 420px);
}

.uniform-capability-gallery-section .capability-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.uniform-capability-gallery-section .capability-gallery-item {
  width: 100%;
  height: clamp(320px, 32vw, 420px);
}

.uniform-capability-gallery-section .capability-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 991px) {
  .capability-gallery-grid {
    flex-wrap: wrap;
  }

  .capability-gallery-item {
    flex: 1 1 calc(50% - 12px);
    height: clamp(290px, 42vw, 380px);
  }
}

@media (max-width: 640px) {
  .filler-neck-gallery-section .capability-gallery-grid {
    grid-template-columns: 1fr;
  }

  .filler-neck-gallery-section .capability-gallery-item {
    height: clamp(280px, 92vw, 400px);
  }

  .seat-frame-gallery-section .capability-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seat-frame-gallery-section .capability-gallery-item {
    height: clamp(280px, 92vw, 400px);
  }

  .uniform-capability-gallery-section .capability-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .uniform-capability-gallery-section .capability-gallery-item {
    height: clamp(280px, 92vw, 400px);
  }
}

.capability-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 44px;
  align-items: center;
}

.capability-overview-full {
  grid-template-columns: minmax(0, 1fr);
}

.capability-content h2,
.capability-grid-section h2 {
  margin-bottom: 16px;
}

.capability-content p {
  margin-bottom: 18px;
}

.capability-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--gray-100);
}

.capability-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.capability-media:hover img {
  transform: scale(1.04);
}

.capability-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.capability-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-900);
  font-weight: 800;
  line-height: 1.25;
}

.capability-meta i,
.capability-card i {
  color: var(--blue);
}

.capability-grid-section {
  background: var(--gray-100);
}

.capability-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.capability-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(32, 41, 54, 0.07);
}

.capability-card h3 {
  margin: 12px 0 8px;
}

.capability-card .capability-media {
  margin: 0 0 16px;
}

.capability-card .capability-media img {
  aspect-ratio: 16 / 10;
}

.capability-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.capability-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray-700);
}

.capability-list i {
  margin-top: 5px;
}

.capability-cta {
  padding: 58px 0;
  background: linear-gradient(100deg, var(--blue-dark), #07111a);
  color: var(--white);
}

.capability-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.capability-cta h2,
.capability-cta p {
  color: var(--white);
}

.capability-cta h2 {
  margin-bottom: 8px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(168, 115, 10, 0.45);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 215px;
  overflow: hidden;
  background: var(--blue-dark);
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 94, 90, 0.05), rgba(0, 94, 90, 0.24)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%);
  pointer-events: none;
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 235px;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-image-left {
  object-position: left center;
}

.product-image-center {
  object-position: center center;
}

.product-image-right {
  object-position: right center;
}

.product-image-low {
  object-position: center bottom;
}

.card-body {
  padding: 24px;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 94, 90, 0.1);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

#categories {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, var(--white), #f8fbff 52%, var(--white));
}

#categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

#categories .container {
  position: relative;
  z-index: 1;
}

#categories .section-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#categories .section-header h2 {
  font-size: 24px;
  text-align: center;
}

#categories .grid-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}

#categories .categories-carousel {
  position: relative;
  --carousel-gap: 26px;
  --cards-per-view: 4;
  --carousel-card-basis: calc((100% - 78px) / 4);
}

#categories .categories-carousel-viewport {
  overflow: hidden;
  padding: 6px 2px 22px;
  touch-action: pan-y;
}

#categories .categories-carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
  align-items: stretch;
  will-change: transform;
  transition: transform 0.55s ease;
}

#categories .categories-carousel.is-dragging .categories-carousel-track {
  transition: none;
}

#categories .categories-carousel-track .product-card {
  flex: 0 0 var(--carousel-card-basis);
  width: var(--carousel-card-basis);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#categories .categories-carousel-track .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

#categories .categories-carousel-track .read-link {
  margin-top: auto;
  padding-top: 18px;
}

#categories .carousel-arrow {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 94, 90, 0.16);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 94, 90, 0.14);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

#categories .carousel-arrow:hover,
#categories .carousel-arrow:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

#categories .carousel-arrow-prev {
  left: -22px;
}

#categories .carousel-arrow-next {
  right: -22px;
}

#categories .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
}

#categories .carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 94, 90, 0.24);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

#categories .carousel-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--orange);
}

#categories .product-card {
  position: relative;
  grid-column: span 2;
  border: 1px solid rgba(0, 94, 90, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: 0 18px 42px rgba(0, 94, 90, 0.09);
  isolation: isolate;
  animation: categoryFadeUp 0.7s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#categories .product-card:nth-child(2) {
  animation-delay: 0.06s;
}

#categories .product-card:nth-child(3) {
  animation-delay: 0.12s;
}

#categories .product-card:nth-child(4) {
  animation-delay: 0.18s;
}

#categories .product-card:nth-child(5) {
  animation-delay: 0.24s;
}

#categories .product-card:nth-child(4):nth-last-child(2) {
  grid-column: 2 / span 2;
}

#categories .categories-carousel-track .product-card,
#categories .categories-carousel-track .product-card:nth-child(4):nth-last-child(2),
#categories .categories-carousel-track .product-card:nth-child(5):last-child {
  grid-column: auto;
}

#categories .product-card:nth-child(5):last-child {
  grid-column: 4 / span 2;
}

#categories .product-card:nth-child(6) {
  animation-delay: 0.3s;
}

#categories .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.75), transparent 36%);
  pointer-events: none;
  z-index: 1;
}

#categories .product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 115, 10, 0.5);
  box-shadow: 0 28px 58px rgba(0, 94, 90, 0.16);
}

#categories .product-card:hover .product-image {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.04);
}

#categories .product-card:hover .card-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: rotate(-5deg) scale(1.05);
}

#categories .card-icon {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

#categories .card-body {
  position: relative;
  z-index: 2;
  padding: 26px;
}

#categories .card-body h3 {
  min-height: 52px;
}

#categories .read-link {
  transition: transform 0.22s ease, color 0.22s ease;
}

#categories .read-link:hover {
  transform: translateX(4px);
  color: var(--blue);
}

@keyframes categoryFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  margin-top: 18px;
}

.stats {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background: linear-gradient(356deg, rgba(0, 94, 90, 0.06), transparent 34%), linear-gradient(315deg, rgb(168 115 10 / 18%), #00000017 38%), #ffffff;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.stats-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 22px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 94, 90, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.95)),
    var(--white);
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 94, 90, 0.09);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.stat::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -52px;
  width: 108px;
  height: 108px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(168, 115, 10, 0.09);
  pointer-events: none;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 115, 10, 0.45);
  box-shadow: 0 26px 54px rgba(0, 94, 90, 0.15);
}

.stat:hover::before {
  transform: translateX(-50%) scale(1.12);
  opacity: 0.9;
}

.stat strong {
  position: relative;
  display: block;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: var(--blue-dark);
  letter-spacing: 0;
}

.stat span {
  position: relative;
  display: block;
  margin-top: 10px;
  color: var(--gray-700);
  font-weight: 800;
  line-height: 1.35;
  font-size: 0.95rem;
}
.partner {
    background: linear-gradient(120deg, rgb(8 98 152), rgb(0 128 204 / 79%));
    color: var(--white);
}


.partner-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.partner h2
 {
  color: var(--white);
      font-size: 28px;
}

.partner-desc {
  margin-top: 18px;
}

.partner-box {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
}

.partner-box .seal {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 18px;
}

.partner-box-title {
  color: var(--white);
}

.partner-box-desc {
  margin-top: 12px;
}

.products-band {
  background: var(--gray-100);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 4px solid var(--orange);
  box-shadow: 0 10px 28px rgba(0, 94, 90, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.gallery-item:first-child {
  grid-row: span 2;
}

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

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

.gallery-visual {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 94, 90, 0.92), rgba(0, 94, 90, 0.72));
}

.gallery-visual span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(168, 115, 10, 0.94);
  font-weight: 900;
}

.contact-band {
  background: var(--gray-100);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #202936;
  /* border: 1px solid var(--line); */
  box-shadow: 0 12px 32px rgba(0, 94, 90, 0.08);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: #ffffff;
}

.contact-line i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  flex: 0 0 auto;
}

.contact-address {
  font-style: normal;
  margin: 0;
}

.contact-actions {
  margin-top: 18px;
}

.map {
  min-height: 320px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 94, 90, 0.08);
}

.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0 12px;
}

.footer .section-header {
  margin-bottom: 18px;
}

/* .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
} */

.footer h2,
.footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 40;
}

.floating-actions a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  box-shadow: var(--shadow);
}

@media (max-width: 1200px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--gray-900);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links > li > a,
  .dropdown-toggle {
    min-height: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    white-space: normal;
  }

  .dropdown,
  .dropdown-toggle {
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: space-between;
    padding: 12px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    max-height: min(380px, 48vh);
    overflow-y: auto;
    padding: 0 0 6px 14px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .dropdown.open > .dropdown-menu {
    display: grid;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    transform: none;
  }

  .products-menu {
    max-height: none;
    overflow: visible;
  }

  .product-category-toggle {
    padding: 12px;
  }

  .product-submenu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 2px 0 8px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .product-category.open > .product-submenu {
    display: grid;
  }

  .product-category:hover > .product-submenu,
  .product-category:focus-within > .product-submenu {
    transform: none;
  }

  .product-submenu a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .nav .btn {
    display: none;
  }
  .mv-layout,
  .why-choose-layout,
  .product-detail-layout,
  .product-info-grid,
  .capability-overview,
  .partner-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .capability-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-breadcrumb-section {
    min-height: 390px;
    padding: 108px 0 86px;
  }

  .about-breadcrumb-section::after {
    inset: 16px;
  }

  #mission-vision {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  #categories {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .stats {
    padding: 44px 0;
  }

  .why-choose-visual {
    min-height: 430px;
  }

  .why-choose-visual img {
    min-height: 430px;
  }

  .product-detail-section {
    padding-top: 68px;
    padding-bottom: 56px;
  }

  .product-info-band {
    padding-bottom: 64px;
  }

  .product-enquiry-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }

  .about-media {
    order: 2;
  }

  .about-shape-wrap {
    width: min(100%, 520px);
    height: auto;
    max-height: none;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
  }

  .about-intro {
    order: 1;
  }

  .grid-3,
  .grid-4,
  .stat-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #categories .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #categories .categories-carousel {
    --cards-per-view: 2;
    --carousel-card-basis: calc((100% - 26px) / 2);
  }

  #categories .product-card,
  #categories .product-card:nth-child(4):nth-last-child(2),
  #categories .product-card:nth-child(5):last-child {
    grid-column: auto;
  }

  #categories .carousel-arrow-prev {
    left: -8px;
  }

  #categories .carousel-arrow-next {
    right: -8px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  #mission-vision {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  #categories {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .stats {
    padding: 40px 0;
  }

  .stat {
    min-height: 122px;
    padding: 20px 18px;
  }

  .topbar-inner {
    align-items: flex-start;
    padding: 10px 0;
  }

  .topbar a,
  .topbar span {
    margin-right: 8px;
  }

  .brand img {
    width: 150px;
    height: 46px;
  }

  .grid-3,
  .grid-4,
  .stat-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #categories .grid-3 {
    grid-template-columns: 1fr;
  }

  #categories .categories-carousel {
    --carousel-gap: 18px;
    --cards-per-view: 1;
    --carousel-card-basis: 100%;
  }

  #categories .categories-carousel-viewport {
    padding-left: 0;
    padding-right: 0;
  }

  #categories .carousel-arrow {
    top: calc(50% - 42px);
    width: 38px;
    height: 38px;
  }

  #categories .carousel-arrow-prev {
    left: 8px;
  }

  #categories .carousel-arrow-next {
    right: 8px;
  }

  .btn {
    width: 100%;
  }

  .about-breadcrumb-section {
    min-height: 360px;
    padding: 86px 0 78px;
  }

  .about-breadcrumb-section .pagetitle-desc {
    font-size: 1rem;
  }

  .about-breadcrumb-section .btn-white {
    width: min(100%, 280px);
  }

  .about-breadcrumb-section .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .about-breadcrumb-section .home-nav {
    right: 18px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-about {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .why-choose-item {
    min-height: 0;
  }

  .why-choose-visual,
  .why-choose-visual img {
    min-height: 330px;
  }

  .why-choose-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .product-detail-section {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .product-detail-layout {
    gap: 26px;
  }

  .product-info-band {
    padding-top: 8px;
    padding-bottom: 54px;
  }

  .product-info-grid {
    gap: 30px;
  }

  .product-features h2,
  .product-specs h2 {
    margin-bottom: 14px;
    font-size: 1.32rem;
  }

  .product-feature-list {
    gap: 0;
    border-top: 1px solid rgba(0, 94, 90, 0.12);
  }

  .product-feature-list li {
    gap: 10px;
    padding: 13px 0;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .product-feature-list i {
    flex: 0 0 auto;
  }

  .product-table-wrap {
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .product-spec-table {
    min-width: 0;
    display: block;
  }

  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(0, 94, 90, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 94, 90, 0.07);
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 11px 13px;
    border-bottom: 0;
  }

  .product-spec-table th {
    background: rgba(0, 94, 90, 0.08);
    font-size: 0.88rem;
  }

  .product-spec-table td {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .product-page-actions,
  .product-page-actions .btn,
  .product-enquiry-inner .btn {
    width: 100%;
  }

  .capability-breadcrumb {
    min-height: 280px;
    padding: 72px 0 62px;
  }

  .capability-section {
    padding: 58px 0;
  }

  .capability-gallery-section {
    padding: 0 0 58px;
  }

  .capability-gallery-item {
    flex-basis: 100%;
    height: clamp(280px, 92vw, 400px);
  }

  .capability-card-grid,
  .capability-meta {
    grid-template-columns: 1fr;
  }

  .capability-breadcrumb nav {
    flex-wrap: wrap;
  }

  .capability-cta .btn {
    width: 100%;
  }

  .product-enquiry-strip {
    padding: 18px 0 58px;
  }

  .product-enquiry-inner {
    padding: 22px;
  }

  .about-media {
    min-height: 0;
  }

  .about-shape-wrap {
    width: min(100%, 390px);
    height: auto;
  }

  .about-image-badge {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: min(260px, 92%);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .capability-gallery-item {
    height: clamp(260px, 92vw, 340px);
  }
}

#pp-products {
  padding-top: 30px;
  padding-bottom: 26px;
}


#pp-products .section-header {
  max-width: 920px;
  margin: 0 auto 38px;
  padding: 0 16px;
  text-align: center;
}

#pp-products .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}



@media (max-width: 640px) {
#pp-products {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  #pp-products .section-header {
    margin-bottom: 28px;
  }

  #pp-products .section-header h2 {
    font-size: 32px;
  }
}

#pp-products .pp-carousel {
  --pp-gap: 24px;
  --pp-visible: 3;
  position: relative;
  max-width: 100%;
}

#pp-products .pp-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

#pp-products .pp-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--pp-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

#pp-products .pp-slide {
  display: contents;
  min-width: 0;
}

#pp-products .pp-card {
  flex: 0 0 calc((100% - (var(--pp-gap) * (var(--pp-visible) - 1))) / var(--pp-visible));
  min-width: 0;
  height: auto;
}

#pp-products .pp-card img {
  height: 205px;
  aspect-ratio: auto;
  object-fit: cover;
  padding: 0;
  background: #eef4f7;
}

#pp-products .pp-card-body {
  min-height: 128px;
}

#pp-products .pp-carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

#pp-products .pp-carousel-btn:disabled:hover {
  color: #102033;
  background: #ffffff;
  border-color: rgba(15, 35, 55, 0.14);
}

@media (max-width: 991px) {
  #pp-products .pp-carousel {
    --pp-visible: 2;
    --pp-gap: 20px;
  }
}

@media (max-width: 640px) {
#pp-products .pp-carousel {
    --pp-visible: 1;
    --pp-gap: 16px;
  }

  #pp-products .pp-card img {
    height: 220px;
  }
}

#pp-products {
  background: #f7fafc;
  overflow: hidden;
}






.pp-carousel {
  position: relative;
  width: 100%;
}

.pp-carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.pp-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.pp-slide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-width: 100%;
}

.pp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 35, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 35, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 24px 55px rgba(15, 35, 55, 0.13);
}

.pp-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eef4f7;
  padding: 22px;
  display: block;
}

.pp-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 22px;
}

.pp-card-body h3 {
  color: #102033;
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.pp-card-body p {
  color: #5e6b78;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.pp-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.pp-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 35, 55, 0.14);
  border-radius: 50%;
  color: #102033;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 35, 55, 0.1);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pp-carousel-btn:hover,
.pp-carousel-btn:focus-visible {
  color: #ffffff;
  background: #0f766e;
  border-color: #0f766e;
  transform: translateY(-2px);
  outline: none;
}

.pp-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
}

.pp-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 35, 55, 0.24);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.pp-carousel-dots button.active,
.pp-carousel-dots button[aria-current="true"] {
  width: 26px;
  border-radius: 999px;
  background: #0f766e;
}

@media (max-width: 991px) {
  .pp-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
#pp-products .section-header {
    margin-bottom: 24px;
  }

  .pp-slide {
    grid-template-columns: 1fr;
  }

  .pp-card img {
    padding: 18px;
  }

  .pp-card-body {
    padding: 18px;
  }

  .pp-carousel-controls {
    gap: 12px;
    margin-top: 22px;
  }
}

/* Client logo infinite slider */
.client-logo-section {
  padding: 68px 0 56px;
  background: #ffffff;
  overflow: hidden;
}

.client-logo-header {
  max-width: 780px;
  margin: 0 auto 28px;
  padding: 0 16px;
  text-align: center;
}

.client-logo-header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #005E5A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.client-logo-header h2 {
  color: #102033;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}

.client-logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: clientLogoMarquee 28s linear infinite;
}

.client-logo-slider:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
  min-height: 82px;
  padding: 18px 22px;
  color: #102033;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(15, 35, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 35, 55, 0.08);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

@keyframes clientLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 991px) {
  .client-logo-section {
    padding: 56px 0 48px;
  }

  .client-logo-track {
    gap: 18px;
    animation-duration: 24s;
  }

  .client-logo-item {
    flex-basis: 158px;
    min-height: 74px;
    padding: 16px 18px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
.client-logo-section {
    padding: 46px 0 40px;
  }

  .client-logo-header {
    margin-bottom: 20px;
  }

  .client-logo-header h2 {
    font-size: 30px;
  }

  .client-logo-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .client-logo-item {
    flex-basis: 138px;
    min-height: 66px;
    padding: 14px 16px;
    font-size: 14px;
  }
}

.developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  color: #5e6b78;
  background: #ffffff;
  border-top: 1px solid rgba(15, 35, 55, 0.1);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
}

.developer-credit img {
  display: block;
  max-width: 150px;
  height: auto;
}

@media (max-width: 480px) {
  .developer-credit {
    flex-direction: column;
    gap: 8px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom>span:first-child {
  text-align: left;
}

.footer-bottom>a[href="#home"] {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom>span:nth-of-type(2) {
  margin-left: auto;
  white-space: nowrap;
}

.footer-bottom>a[href*="weblinkservices"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-bottom>a[href*="weblinkservices"] img {
  display: block;
  max-width: 130px;
  height: auto;
}

@media (max-width: 768px) {
  .footer {
    padding: 26px 0 10px;
  }

  .footer .section-header {
    margin-bottom: 14px;
  }

  .contact-layout {
    gap: 14px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-line {
    margin-top: 10px;
  }

  .footer-bottom {
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-bottom>span:first-child,
  .footer-bottom>span:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

/* Client logo section */
.client-logo-section {
  padding: 21px 0 0px;
  background: #ffffff;
  overflow: hidden;
}

.client-logo-header {
  max-width: 760px;
  margin: 0 auto 30px;
  padding: 0 16px;
  text-align: center;
}

.client-logo-header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #005E5A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.client-logo-header h2 {
  color: #102033;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}

.client-logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: clientLogoMarquee 28s linear infinite;
}

.client-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
  height: 82px;
  padding: 16px 22px;
  color: #102033;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(15, 35, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 35, 55, 0.08);
  overflow: hidden;
}

.client-logo-item span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-logo-item img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes clientLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 991px) {
  .client-logo-section {
    padding: 56px 0 48px;
  }

  .client-logo-track {
    gap: 18px;
    animation-duration: 24s;
  }

  .client-logo-item {
    flex-basis: 158px;
    height: 74px;
    padding: 14px 18px;
  }

  .client-logo-item span {
    font-size: 15px;
  }

  .client-logo-item img {
    max-height: 52px;
  }
}

@media (max-width: 640px) {
.client-logo-section {
    padding: 46px 0 40px;
  }

  .client-logo-header {
    margin-bottom: 20px;
  }

  .client-logo-header h2 {
    font-size: 30px;
  }

  .client-logo-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .client-logo-item {
    flex-basis: 138px;
    height: 66px;
    padding: 12px 16px;
  }

  .client-logo-item span {
    font-size: 14px;
  }

  .client-logo-item img {
    max-height: 46px;
  }
}

/* Site-wide scroll animations */
:root {
  --anim-duration: 0.8s;
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll {
  opacity: 0;
  transition:
    opacity var(--anim-duration) var(--anim-ease),
    transform var(--anim-duration) var(--anim-ease);
  transition-delay: var(--anim-delay, 0s);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

[data-animate="fade-in"] {
  transform: translate3d(0, 0, 0);
}

[data-animate="fade-up"] {
  transform: translate3d(0, 34px, 0);
}

[data-animate="fade-down"] {
  transform: translate3d(0, -34px, 0);
}

[data-animate="slide-left"] {
  transform: translate3d(-46px, 0, 0);
}

[data-animate="slide-right"] {
  transform: translate3d(46px, 0, 0);
}

[data-animate="zoom-in"] {
  transform: scale(0.94);
}

[data-animate="flip-up"] {
  transform: perspective(900px) rotateX(8deg) translate3d(0, 28px, 0);
  transform-origin: center bottom;
}

.pp-card,
.product-card,
.service-card,
.gallery-item,
.about-card,
.feature-card,
.contact-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.pp-card:hover,
.product-card:hover,
.service-card:hover,
.about-card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(15, 35, 55, 0.14);
}

.pp-card img,
.product-card img,
.service-card img,
.gallery-item img,
.about-image img,
.feature-card img {
  transition: transform 0.45s ease;
}

.pp-card:hover img,
.product-card:hover img,
.service-card:hover img,
.gallery-item:hover img,
.about-image:hover img,
.feature-card:hover img {
  transform: scale(1.045);
}

.gallery-item,
.pp-card,
.product-card,
.service-card,
.feature-card,
.contact-card {
  overflow: hidden;
}

.client-logo-track {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {

  .animate-on-scroll,
  .animate-on-scroll.is-visible,
  .pp-card,
  .product-card,
  .service-card,
  .gallery-item,
  .about-card,
  .feature-card,
  .contact-card,
  .pp-card img,
  .product-card img,
  .service-card img,
  .gallery-item img,
  .about-image img,
  .feature-card img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

.map {
  height: 300px;
}

@media (max-width: 640px) {
.map {
    min-height: 250px;
    height: 250px;
  }
}

/* Why Choose Raj Fasteners */
.why-raj-section {
  --why-blue: #005E5A;
  --why-text: #152033;
  --why-muted: #3f4a5f;
  position: relative;
  overflow: hidden;
  padding: 43px 0px 27px;
  background:
    radial-gradient(circle at 0% 100%, rgba(0, 94, 90, 0.1) 0 20%, transparent 21%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--why-text);
}

.why-raj-container {
  position: relative;
  z-index: 2;
}

.why-raj-header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.why-mini-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #005E5A;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.why-mini-title::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--why-blue);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.18);
  position: absolute;
  transform: translateY(-42px) rotate(18deg);
}

.why-mini-title span {
  display: block;
  width: clamp(38px, 5vw, 70px);
  height: 2px;
  background: var(--why-blue);
}

.why-raj-header h2 {
  margin-top: 12px;
  color: var(--why-blue);
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  font-weight: 800;
  line-height: 0.95;
  text-shadow: 0 9px 18px rgba(0, 94, 90, 0.13);
}

.why-raj-header p {
  margin-top: 16px;
  color: #2c3446;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  font-weight: 500;
}

.why-title-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.why-title-mark span {
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: var(--why-blue);
}

.why-title-mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--why-blue);
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 94, 90, 0.12);
  border-bottom: 1px solid rgba(0, 94, 90, 0.12);
}

.why-feature {
  position: relative;
  min-height: 210px;
  padding: 12px clamp(16px, 2.4vw, 32px) 22px;
  text-align: center;
  transition: transform 0.32s ease, background 0.32s ease;
}

.why-feature:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  width: 1px;
  height: calc(100% - 64px);
  background: rgba(0, 94, 90, 0.2);
}

.why-feature:nth-child(n + 5) {
  border-top: 1px solid rgba(0, 94, 90, 0.11);
}

.why-feature:hover {
  background: rgba(0, 94, 90, 0.035);
  transform: translateY(-8px);
}

.why-feature-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0 18%, #edf4ff 19% 100%);
  box-shadow: 0 18px 42px rgba(0, 94, 90, 0.09);
  color: var(--why-blue);
  font-size: 34px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, color 0.32s ease;
}

.why-feature:hover .why-feature-icon {
  color: #005E5A;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 22px 52px rgba(0, 94, 90, 0.16);
}

.why-feature h3 {
  color: var(--why-blue);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 800;
}

.why-feature h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 12px auto 12px;
  border-radius: 99px;
  background: var(--why-blue);
  transition: width 0.32s ease;
}

.why-feature:hover h3::after {
  width: 68px;
}

.why-feature p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--why-muted);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.4;
}

.why-trust-strip {
  width: min(780px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.why-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--why-blue);
}

.why-trust-item+.why-trust-item {
  border-left: 1px solid rgba(0, 94, 90, 0.24);
}

.why-trust-item i {
  font-size: 32px;
}

.why-trust-item strong,
.why-trust-item span {
  display: block;
}

.why-trust-item strong {
  color: var(--why-blue);
  font-size: 1.02rem;
  line-height: 1.15;
}

.why-trust-item span {
  color: #2f3849;
  font-size: 0.95rem;
}

.why-fastener {
  position: absolute;
  z-index: 1;
  width: clamp(170px, 20vw, 330px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(18, 32, 48, 0.16));
  animation: whyFloat 5.8s ease-in-out infinite;
}

.why-fastener-left {
  top: 56px;
  left: clamp(16px, 4vw, 80px);
}

.why-fastener-right {
  right: clamp(8px, 3vw, 60px);
  bottom: 18px;
  width: clamp(160px, 18vw, 300px);
  animation-delay: -2.3s;
}

.why-blueprint {
  position: absolute;
  top: 90px;
  right: 7vw;
  z-index: 0;
  width: 270px;
  height: 150px;
  color: rgba(0, 94, 90, 0.13);
  border: 1px solid rgba(0, 94, 90, 0.12);
  transform: rotate(-18deg);
  pointer-events: none;
}

.why-blueprint::before,
.why-blueprint::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(0, 94, 90, 0.12);
}

.why-blueprint i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 94px;
}

.why-dot {
  position: absolute;
  z-index: 0;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 94, 90, 0.36) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.why-dot-left {
  top: 18px;
  left: 18px;
}

.why-dot-right {
  right: 28px;
  bottom: 205px;
}

@keyframes whyFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1180px) {
  .why-fastener-left {
    opacity: 0.28;
  }

  .why-fastener-right {
    opacity: 0.24;
  }

  .why-blueprint {
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  .why-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-feature:not(:nth-child(4n))::after {
    display: none;
  }

  .why-feature:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    top: 32px;
    right: 0;
    width: 1px;
    height: calc(100% - 64px);
    background: rgba(0, 94, 90, 0.18);
  }

  .why-feature:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 94, 90, 0.11);
  }

  .why-trust-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-trust-item {
    justify-content: flex-start;
    width: min(360px, 100%);
    margin: 0 auto;
    padding: 0;
  }

  .why-trust-item+.why-trust-item {
    border-left: 0;
  }
}

@media (max-width: 640px) {
.why-raj-section {
    padding: 42px 0 40px;
  }

  .why-mini-title {
    gap: 12px;
    letter-spacing: 5px;
  }

  .why-mini-title span {
    width: 28px;
  }

  .why-mini-title::before {
    width: 18px;
    height: 18px;
    transform: translateY(-36px) rotate(18deg);
  }

  .why-raj-header {
    margin-bottom: 22px;
  }

  .why-raj-header h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .why-feature-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(0, 94, 90, 0.12);
  }

  .why-feature,
  .why-feature:nth-child(n + 3),
  .why-feature:nth-child(n + 5) {
    min-height: auto;
    padding: 22px 16px;
    border-top: 1px solid rgba(0, 94, 90, 0.1);
  }

  .why-feature:first-child {
    border-top: 0;
  }

  .why-feature:nth-child(odd)::after,
  .why-feature::after {
    display: none;
  }

  .why-feature-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
    margin-bottom: 12px;
  }

  .why-fastener,
  .why-blueprint {
    display: none;
  }

  .why-dot {
    width: 88px;
    height: 88px;
    opacity: 0.45;
  }
}

.gallery-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 48%, #ffffff 100%);
}

.gallery-section {
  padding: 76px 0 82px;
}

.gallery-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.gallery-header p {
  max-width: 760px;
  margin: 14px auto 0;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-tile {
  position: relative;
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 90, 0.14);
  border-radius: var(--radius);
  background: #eef5f4;
  box-shadow: 0 14px 32px rgba(0, 94, 90, 0.08);
  cursor: pointer;
  text-align: left;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gallery-tile:nth-child(1),
.gallery-tile:nth-child(6),
.gallery-tile:nth-child(10) {
  grid-column: span 2;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(168, 115, 10, 0.52);
  box-shadow: 0 22px 46px rgba(0, 94, 90, 0.15);
  outline: none;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(32, 41, 54, 0.72));
  pointer-events: none;
}

.gallery-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 82px;
  background: rgba(12, 22, 32, 0.88);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox-frame {
  width: min(980px, 100%);
  margin: 0;
  color: var(--white);
  text-align: center;
}

.gallery-lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-frame figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-2px);
  outline: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.gallery-lightbox-prev {
  left: 22px;
}

.gallery-lightbox-next {
  right: 22px;
}

.machinery-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 48%, #ffffff 100%);
}

.machinery-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}

.machinery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}

.machinery-section .container {
  position: relative;
  z-index: 1;
}

.machinery-header {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.machinery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.machinery-header p {
  max-width: 760px;
  margin: 14px auto 0;
}

.machinery-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.machinery-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 94, 90, 0.14);
  border-radius: var(--radius);
  background: #eef5f4;
  box-shadow: 0 18px 44px rgba(0, 94, 90, 0.12);
  isolation: isolate;
}

.machinery-gallery-item::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(10, 25, 35, 0.82));
  pointer-events: none;
}

.machinery-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.machinery-gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.machinery-gallery-item:hover img,
.machinery-gallery-item:focus-visible img {
  transform: scale(1.045);
}

.machinery-gallery-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.machinery-gallery-empty {
  margin: 44px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
}

.machinery-zigzag {
  display: grid;
  gap: 38px;
}

.machinery-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.machinery-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.machinery-row:nth-child(even) .machinery-image {
  order: 2;
}

.machinery-row:nth-child(even) .machinery-content {
  order: 1;
}

.machinery-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 94, 90, 0.14);
  background: #eef5f4;
  box-shadow: 0 18px 44px rgba(0, 94, 90, 0.12);
}

.machinery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.machinery-image img {
  width: 100%;
  height: 253px;

  object-fit: cover;
  transition: transform 0.35s ease;
}

.machinery-row:hover .machinery-image img {
  transform: scale(1.04);
}

.machinery-content {
  position: relative;
  padding: 8px 0;
}

.machinery-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 94, 90, 0.18);
}

.machinery-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

.machinery-content p {
  max-width: 680px;
  font-size: 1.02rem;
}

@media (max-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-tile:nth-child(10) {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .gallery-section {
    padding: 62px 0 68px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-tile,
  .gallery-tile img {
    min-height: 190px;
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(6) {
    grid-column: span 1;
  }

  .gallery-lightbox {
    padding: 76px 16px 24px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .gallery-lightbox-nav:hover,
  .gallery-lightbox-nav:focus-visible {
    transform: translateY(-2px);
  }

  .gallery-lightbox-prev {
    left: calc(50% - 62px);
  }

  .gallery-lightbox-next {
    right: calc(50% - 62px);
  }

  .gallery-lightbox-frame img {
    max-height: 68vh;
  }
}

@media (max-width: 520px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile img {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .machinery-section {
    padding: 64px 0 70px;
  }

  .machinery-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .machinery-row,
  .machinery-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .machinery-row:nth-child(even) .machinery-image,
  .machinery-row:nth-child(even) .machinery-content {
    order: initial;
  }

  .machinery-image img {
    height: 320px;
  }

  .machinery-zigzag {
    gap: 42px;
  }
}

@media (max-width: 560px) {
  .machinery-section {
    padding: 56px 0 62px;
  }

  .machinery-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .machinery-image img {
    height: 245px;
  }

  .machinery-count {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .machinery-content h3 {
    font-size: 1.32rem;
  }

  .machinery-content p {
    font-size: 0.98rem;
  }
}

.contact-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 52%, #ffffff 100%);
}

.contact-main-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
}

.contact-main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}

.contact-main-section .container {
  position: relative;
  z-index: 1;
}

.contact-page-header,
.contact-map-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-page-header h2,
.contact-map-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-page-header p {
  max-width: 760px;
  margin: 14px auto 0;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  border: 1px solid rgba(0, 94, 90, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 94, 90, 0.08);
}

.contact-info-panel {
  padding: 28px;
}

.contact-form-panel {
  padding: 30px;
}

.contact-info-panel h3,
.contact-form-panel h3 {
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 94, 90, 0.11);
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-info-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 12px 24px rgba(0, 94, 90, 0.14);
}

.contact-info-item strong,
.contact-info-item a,
.contact-info-item span,
.contact-info-item address {
  display: block;
}

.contact-info-item strong {
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 0.96rem;
}

.contact-info-item a,
.contact-info-item span,
.contact-info-item address {
  color: var(--gray-700);
  font-style: normal;
  line-height: 1.55;
}

.contact-info-item a {
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--orange);
}

.contact-enquiry-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-enquiry-form input,
.contact-enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 94, 90, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--gray-900);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.contact-upload-row,
.contact-captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-upload-row label,
.contact-captcha-row span {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-upload-row input[type="file"] {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 9px;
  border: 1px solid rgba(0, 94, 90, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
}

.contact-captcha-row strong {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-900);
}

.contact-captcha-row input {
  width: 70px;
  flex: 0 0 70px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-enquiry-form input:focus,
.contact-enquiry-form textarea:focus {
  border-color: rgba(168, 115, 10, 0.62);
  box-shadow: 0 0 0 4px rgba(168, 115, 10, 0.12);
  transform: translateY(-1px);
}

.contact-submit {
  width: fit-content;
}

.contact-map-section {
  padding: 34px 0 82px;
}

.contact-page-map {
  width: 100%;
  min-height: 390px;
  border: 1px solid rgba(0, 94, 90, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 94, 90, 0.1);
}

@media (max-width: 920px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
.contact-main-section {
    padding: 58px 0 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 22px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-item i {
    width: 38px;
    height: 38px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-map-section {
    padding: 24px 0 64px;
  }

  .contact-page-map {
    min-height: 300px;
  }
}

.certifications-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 52%, #ffffff 100%);
}

.certifications-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}

.certifications-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 94, 90, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 94, 90, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}

.certifications-section .container {
  position: relative;
  z-index: 1;
}

.certifications-header {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.certifications-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.certifications-header p {
  max-width: 760px;
  margin: 14px auto 0;
}

.certificate-showcase {
  display: flex;
  justify-content: center;
  margin: 42px auto 54px;
  padding: 0 10px;
}

.certificate-frame {
  position: relative;
  width: min(100%, 880px);
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(0, 94, 90, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 94, 90, 0.38), rgba(168, 115, 10, 0.42)) border-box;
  box-shadow:
    0 28px 70px rgba(0, 94, 90, 0.14),
    0 10px 24px rgba(15, 23, 42, 0.08);
}

.certificate-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(168, 115, 10, 0.24);
  border-radius: 5px;
  pointer-events: none;
  z-index: 1;
}

.certificate-frame::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 94, 90, 0.08);
  pointer-events: none;
  z-index: 1;
}

.certificate-frame img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.certification-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 90, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(0, 94, 90, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.certification-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 115, 10, 0.48);
  box-shadow: 0 26px 56px rgba(0, 94, 90, 0.15);
}

.certification-image {
  position: relative;
  overflow: hidden;
  background: #eef5f4;
}

.certification-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.certification-image img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.certification-card:hover .certification-image img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.certification-content {
  position: relative;
  padding: 24px;
}

.certification-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 14px 28px rgba(0, 94, 90, 0.16);
  transition: transform 0.24s ease;
}

.certification-card:hover .certification-icon {
  transform: translateY(-3px) rotate(-4deg);
}

.certification-content h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.certification-content p {
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
.certifications-section {
    padding: 58px 0 64px;
  }

  .certificate-showcase {
    margin: 30px auto 38px;
    padding: 0;
  }

  .certificate-frame {
    padding: 12px;
    border-radius: 7px;
    box-shadow:
      0 18px 42px rgba(0, 94, 90, 0.13),
      0 6px 16px rgba(15, 23, 42, 0.07);
  }

  .certificate-frame::before {
    inset: 6px;
    border-radius: 4px;
  }

  .certificate-frame::after {
    inset: 12px;
  }

  .certificate-frame img {
    max-height: none;
  }

  .certification-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .certification-image img {
    height: 210px;
  }

  .certification-content {
    padding: 22px;
  }
}

/* ===============================
   Teerham Manufacturing Facility
================================== */

.teerham-facility-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.tube-flaring-video-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.tube-flaring-video-header {
  margin: 0 auto 32px;
  text-align: center;
}

.tube-flaring-video-header .eyebrow {
  justify-content: center;
}

.tube-flaring-video-frame {
  width: min(100%, 960px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 90, 0.14);
  border-radius: 14px;
  background: #102525;
  box-shadow: 0 16px 36px rgba(15, 37, 37, 0.14);
}

.tube-flaring-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  background: #102525;
}

@media (max-width: 640px) {
  .tube-flaring-video-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .tube-flaring-video-header {
    margin-bottom: 24px;
  }

  .tube-flaring-video-frame {
    border-radius: 10px;
  }
}

.teerham-facility-title {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.teerham-sub-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
     color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.teerham-facility-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #222;
}

.teerham-facility-title p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ===============================
   Teerham Manufacturing Facility carousel
================================== */

.facility-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.facility-image-grid .facility-image-card {
  position: relative;
  min-width: 0;
  min-height: 380px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facility-image-grid .facility-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.facility-image-grid .facility-image-card > img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-image-grid .facility-image-card:hover > img {
  transform: scale(1.08);
}

.facility-image-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--white);
}

.facility-image-content h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: 21px;
}

.facility-image-content p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.facility-image-empty {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
}

/* remove old grid behavior so it won't conflict */
.teerham-facility-slider {
  width: 100%;
  overflow: hidden;
}

.teerham-facility-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
}

.teerham-facility-card {
  flex: 0 0 calc((100% - 60px) / 3);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.teerham-img,
.teerham-img img {
  width: 100%;
  height: 380px;
}

.teerham-img img {
  object-fit: cover;
  transition: 0.5s ease;
}

.teerham-facility-card:hover img {
  transform: scale(1.08);
}

.teerham-facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.teerham-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
}

.teerham-content h3,
.teerham-content p {
  color: #fff;
}

.teerham-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.teerham-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .facility-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .teerham-facility-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 767px) {
  .facility-image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility-image-grid .facility-image-card {
    min-height: 300px;
  }

  .facility-image-grid .facility-image-card > img {
    height: 300px;
  }

  .teerham-facility-track {
    gap: 20px;
  }

  .teerham-facility-card {
    flex: 0 0 100%;
    min-height: 300px;
  }

  .teerham-img,
  .teerham-img img {
    height: 300px;
  }
}.footer{
    background:#202936;
    padding:40px 0 15px;
    color:#fff;
}

.teerham-footer-layout{
    display:grid;
    grid-template-columns:4fr 3fr 5fr;
    gap:30px;
    align-items:start;
}

.contact-card{
    background:#202936;
    height:100%;
}

.contact-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
}

.contact-line{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

.contact-line i{
    width:36px;
    height:36px;
    min-width:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0080cc;
    color:#fff;
    border-radius:6px;
}

.contact-line a,
.contact-address{
    color:#fff;
    text-decoration:none;
    font-style:normal;
    line-height:1.7;
}

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

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#0080cc;
    padding-left:5px;
}

.teerham-map-wrap{
    width:100%;
}

.map{
    width:100%;
    height:250px;
    border:0;
    border-radius:8px;
    display:block;
}

.footer-bottom{
    margin-top:25px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:14px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#0080cc;
}

/* Tablet */
@media(max-width:991px){

    .teerham-footer-layout{
        grid-template-columns:1fr 1fr;
    }

    .teerham-map-wrap{
        grid-column:1 / -1;
    }

    .map{
        height:300px;
    }
}

/* Mobile */
@media(max-width:767px){

    .teerham-footer-layout{
        grid-template-columns:1fr;
        gap:25px;
    }

    .map{
        height:250px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
        flex-direction:column;
    }
}







/* Products page */
.products-breadcrumb {
  min-height: 330px;
  background-position: center;
}

.products-intro-section,
.products-listing-section,
.raw-materials-section {
  padding: 82px 0;
}

.products-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: stretch;
}

.products-intro-copy h2 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--gray-900);
}

.products-intro-copy p {
  max-width: 760px;
  color: var(--gray-700);
  font-size: 1.03rem;
  line-height: 1.75;
}

.products-intro-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f8fbff);
  box-shadow: var(--shadow);
}

.products-intro-panel span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gray-900);
  font-weight: 700;
}

.products-intro-panel i,
.product-list-card span,
.material-card-head i,
.material-list i {
  color: var(--blue);
}

.products-listing-section {
  background: var(--gray-100);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-list-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(32, 41, 54, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-list-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  background: #f4f8fc;
}

.product-list-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-list-card span {
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.product-list-card h3 {
  margin-bottom: 10px;
  color: var(--gray-900);
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-list-card p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.65;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.material-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.material-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.material-card-head i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gray-100);
  font-size: 1.2rem;
}

.material-card-head h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 1.25rem;
}

.material-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  display: block;
}

.material-list a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-900);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.material-list a:hover {
  color: var(--blue-dark);
  background: #eef7fb;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .products-intro,
  .products-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-breadcrumb {
    min-height: 260px;
  }

  .products-intro-section,
  .products-listing-section,
  .raw-materials-section {
    padding: 56px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-intro-panel,
  .product-list-card div,
  .material-card {
    padding: 20px;
  }

  .product-list-card h3,
  .material-card-head h3 {
    font-size: 1.05rem;
  }
}
