:root {
  --primary: #173c73;
  --primary-dark: #0f2c57;
  --primary-soft: #3d69a7;
  --accent: #5f87bd;
  --text: #13243a;
  --muted: #6b7688;
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --border: rgba(18, 45, 83, 0.1);
  --shadow-sm: 0 10px 24px rgba(14, 39, 77, 0.08);
  --shadow-md: 0 18px 40px rgba(14, 39, 77, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1320px;
  --section-space: clamp(72px, 7vw, 110px);
}
b {
    font-weight: 400 !important;
}
@media screen and (max-width: 991px){
  .topbar-right{
    display: none;
  }
   .nav-toggle-label {
    display: block !important;
    width: auto;
    width: fit-content;
    text-align: right;
    position: absolute;
    z-index: 999;
    right: 15px;
    top: -37px;
  }
}
body {
  font-family:'Arial';
}
.container{
  max-width: 1440px;
} 
@media screen and (max-width: 1600px){
  .container {
    max-width: 1350px;
  } 
}
@media screen and (max-width: 1400px){
  .container{
    max-width: 1240px;
  }
}
@media screen and (max-width: 1300px){
  .container{
    max-width: 1150px;
  }
}
@media screen and (max-width: 1199px){
  .container{
    max-width: 95%;
  }
}
.custom-nav {
  background: #ffffff;
  padding: 14px 0;
}

.custom-nav .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

#quality{
    padding-top:40px;
}
#other-products .read-more-btn{
    float:right;
}
.custom-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.custom-nav-menu > li {
  flex: 1;
  position: relative;
}
.custom-header-inner{
width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  max-width: 90% !important;
}
.custom-nav-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  background: #2f67a3;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 5px;
  transition: 0.3s ease;
}

.custom-nav-menu > li > a:hover {
  background: #1d4571;
  color: #fff;
}

/* dropdown */
.custom-nav-menu .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 999;
}

.custom-nav-menu .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.custom-nav-menu .dropdown-menu li a:hover {
  background: #f3f6fa;
  color: #2f67a3;
}

.custom-nav-menu .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* responsive */
@media (max-width: 991px) {
  .custom-nav-menu {
    flex-wrap: wrap;
  }

  .custom-nav-menu > li {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .custom-nav-menu > li {
    flex: 1 1 100%;
  }

  .custom-nav-menu > li > a {
    font-size: 13px;
    min-height: 46px;
  }
}
* {
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}




/* Mobile */
@media (max-width: 767px) {
  .container { max-width: 100%; padding: 0 16px; }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
    font-family: 'Arial', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.section {
  padding: var(--section-space) 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 400;
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;

}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}
.topbar {
  background: #f4f4f4;
  border-bottom: 1px solid #d9d9d9;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 98px;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.topbar-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: nowrap;
  flex: 1;
  white-space: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #234f8d;
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  color: #2b5f9f;
  flex-shrink: 0;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #4d79b8;
  background: transparent;
  color: #2b5f9f;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.25s ease;
}

.topbar-btn:hover {
  background: #2b5f9f;
  color: #fff;
}

.topbar-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2b5f9f;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.topbar-search:hover {
  opacity: 0.8;
}

@media (max-width: 1400px) {
  .topbar-logo {
    width: 260px;
  }

  .topbar-right {
    gap: 18px;
  }

  .topbar-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 1199px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: auto;
  }

  .topbar-right {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }

  .topbar-logo {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .topbar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .topbar-item,
  .topbar-btn,
  .topbar-search {
    width: 100%;
  }

  .topbar-btn {
    justify-content: center;
  }

  .topbar-search {
    justify-content: flex-start;
    font-size: 1.7rem;
  }

  .topbar-logo {
    width: 220px;
  }
}
/*
.utility-bar {
  background: white;
  color: black;
}
/*
.utility-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0;
  align-items: center;
}*/
/*.utility-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-left:100px;
  padding: 12px 0;
  align-items: center;
}
.utility-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}

.utility-item span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2680de, #0f62bc);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}*/*/
.review-nav {
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-nav:hover {
  transform: scale(1.1);
  background: #7e9ecb;
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 56, 107, 0.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 106px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(190px, 19vw, 220px);
  height: auto;
}

.nav {
  justify-self: center;
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 400;
  color: var(--primary);
  transition: 0.25s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus-visible {
  background: #edf3fb;
  outline: none;
}

.has-dropdown > a::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 400;
}

.dropdown-menu a:hover {
  background: #f3f7fc;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 400;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #234d95, #173c73);
  box-shadow: 0 14px 30px rgba(22, 58, 112, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #edf3fb;
  border-color: rgba(23, 60, 115, 0.12);
  color: var(--primary);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}


.hero {
  position: relative;
  padding: 65px 0 50px;

  overflow: hidden;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 50, 0.5); /* increase this value */
}
.showcase-image {
  overflow: hidden; /* IMPORTANT: prevents image overflow */
}

.showcase-image {
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0;
  z-index: 1;
  transform: scale(1);
}

/* Active image always zooms IN */
.showcase-image img.active {
  opacity: 1;
  z-index: 2;
  animation: zoomInOnly 4.5s linear forwards;width: 100% !important;
  text-align: center;
}
.contact-item{
    transition: 0.5s ease;
}
.contact-item:hover{
    transform: translateY(-10px);
  transition: 0.5s ease;
  background: #dee4ed;
}
@keyframes zoomInOnly {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-heading {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.hero-heading-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 420px;
  margin-bottom: 6px;
}

.hero-heading-lines span {
  width: 180px;
  height: 6px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
/*.hero-kicker {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 14px;
}*/
.product-media img {
  transition: transform 0.5s ease;
}
/*
.product-card:hover .product-media img {
  transform: scale(1.08);
}.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 22px 44px rgba(18, 45, 83, 0.22);
}.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::after {
  opacity: 1;
}.chip {
  transition: all 0.3s ease;
}*/
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 45, 83, 0.08);
 box-shadow: 0 10px 28px rgba(3, 3, 3, 0.29);
  overflow: hidden;
  border: 1px solid #e1e1e1 !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 18px 34px rgba(18, 45, 83, 0.16);
  border-color: rgba(23, 60, 115, 0.16);
  transform: none;
}
/* --- IMAGE CONTAINER FIX --- */
.product-media {
  position: relative;
  overflow: hidden; /* 🔥 critical */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* --- IMAGE DEFAULT --- */
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  transform: scale(1);
  transition: transform 0.6s ease; /* smooth zoom */
}

/* --- HOVER ZOOM EFFECT --- */
/* IMAGE CONTAINER */
.facility-media {
  position: relative;
  overflow: hidden; /* 🔥 important */
  border-radius: 12px; /* optional but looks premium */
}

/* IMAGE DEFAULT */
.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 0.7s ease; /* smoother than products */
}

/* HOVER ZOOM */
.facility-card:hover .facility-media img {
  transform: scale(1.08); /* 🔥 subtle zoom */
}
/*.product-media {
  aspect-ratio: 1.16 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 8px;
  overflow: hidden;
}*/

/*.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  transform-origin: center center;
}*/

/*.product-card:hover .product-media img {
  transform: scale(1.03);
}*/
.product-card:hover .chip {
  background: #173c73;
  color: #fff;
}

/*.product-card:hover .product-arrow {
  transform: translateX(8px);
  color: #173c73;
}*/
.hero-heading h1 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;

  color: #ffffff;

  text-shadow: 
    0 4px 18px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.6);

  margin: 0 auto;
}

.hero-showcase-shell {
  margin: 0 auto;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #254f96 0%, #1c4484 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(10, 28, 57, 0.18);
  text-decoration: none;
  padding: 18px 18px 20px;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.showcase-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 16px;
}

.showcase-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
}

.showcase-label {
  position: static;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 260px;
    padding: 14px 14px 16px;
  }

  .showcase-image {
    padding: 12px;
  }

  .showcase-image img {
    max-height: 160px;
  }

  .showcase-label {
    font-size: 1.35rem;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .showcase-card {
    min-height: 220px;
  }

  .showcase-image img {
    max-height: 130px;
  }

  .showcase-label {
    font-size: 1.15rem;
  }
}
/*
.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  min-height: 370px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #254f96 0%, #1c4484 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(10, 28, 57, 0.18);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.showcase-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 72px;
  height: 100%;
}

.showcase-image img {
  width: 100%;
  max-width: 480px;
  max-height: 230px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
}

.showcase-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
  z-index: 2;
}*/

/*.hero-highlights {
  max-width: 1160px;
  margin: 18px auto 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: rgba(147, 164, 186, 0.22);
  border: 2px solid rgba(138, 181, 230, 0.46);
  backdrop-filter: blur(4px);
}

.hero-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f5f7fb;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}*/

/*.hero-highlight__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: #677383;
  font-weight: 400;
  flex-shrink: 0;
}*/
.hero-highlights {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 12px;

  /* Clean glass effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;

  /* FIXED TEXT VISIBILITY */
  color: #ffffff;
  font-weight: 400;
  font-size: 0.95rem;

  letter-spacing: 0.2px;
}

.hero-highlight__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Professional icon style */
  background: linear-gradient(135deg, #2f6fed, #1c4ed8);
  color: #fff;
  font-size: 14px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}/* Tablet */
@media (max-width: 992px) {
  .hero {
    padding: 34px 0 24px;
  }

  .hero-heading {
    margin-bottom: 24px;
  }

  .hero-heading-lines {
    gap: 140px;
  }

  .hero-heading-lines span {
    width: 120px;
    height: 5px;
  }

  .showcase-card {
    min-height: 320px;
  }

  .showcase-image img {
    max-height: 200px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-heading {
    margin-bottom: 20px;
  }

  .hero-heading-lines {
    gap: 30px;
  }

  .hero-heading-lines span {
    width: 70px;
    height: 4px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 280px;
  }

  .showcase-image {
    padding: 20px 20px 66px;
  }

  .showcase-image img {
    max-height: 180px;
  }

  .showcase-label {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 2rem;
  }

  .hero-highlight {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    padding: 28px 0 18px;
  }

  .hero-heading {
    padding: 0 14px;
  }

  /*.hero-kicker {
    font-size: 1.2rem;
  }*/
/*
  .hero-heading h1 {
    font-size: 1.35rem;
  }*/

  .showcase-card {
    min-height: 240px;
  }

  .showcase-image img {
    max-height: 150px;
  }

  .showcase-label {
    font-size: 1.55rem;
  }

  .hero-highlights {
    padding: 12px 14px;
  }
}

.showcase-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.section-products {
  padding-top: 42px;
}

.section-title {
  margin-bottom: 24px;
}

.center-align {
  text-align: center;
}

.compact-title {
  margin-bottom: 18px;
}

.mini-title {
  display: inline-block;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  color: #2a2a2a;
  letter-spacing: 0.01em;
}

.mini-title strong {
  color: #255193;
  font-weight:400 !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 45, 83, 0.08);
  box-shadow: 0 10px 28px rgba(18, 45, 83, 0.14);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 45, 83, 0.16);
}

.product-media {
  aspect-ratio: 1.16 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 8px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 0 28px 78px;
}

.product-title {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #edf5fc;
  color: #5378a7;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 45, 83, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 28px 28px;
}
.product-body:hover{
  border-top: 10px solid #32659A !important;
}
.product-body{
  border-top: 10px solid transparent; !important;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 18px;
}
/*.custom-nav-menu > li:first-child > a {*/
/*  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%);*/
/*}.custom-nav-menu > li:last-child > a {*/
/*  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);*/
/*}*/
.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid #6e8fb8;
  background: transparent;
  color: #6e8fb8;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.product-card:hover .read-more-btn {
  background: #6e8fb8;
  color: #fff;
}
/*.product-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 400;
}
*/
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content:center;
  gap: 24px;
  margin-bottom: 28px;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #466ea6;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.review-tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.review-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-dark);
  max-width: 100% !important;
}

.review-title span {
  color: #4d76b0;
}
.showcase-image {
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Show active image */
.showcase-image img.active {
  opacity: 1;
  position: relative;
}
.google-rating {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 400;
  color: #121212;
  padding-top: 4px;font-size: 15px !important;
}

.google-rating span {
  display: block;
  font-size: 1em;
  font-weight: 500;
}

.review-area {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 24px;
  align-items: center;
}

.review-nav {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid #7e9ecb;
  color: #7e9ecb;
  font-size: 2rem;
  font-weight: 400;
}

/*.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}*/
.review-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
}

/* hide scrollbar */
.review-grid::-webkit-scrollbar {
  display: none;
}

.review-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}.review-card {
  position: relative;
  min-width: 320px;
  max-width: 360px;
  flex: 0 0 auto;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 45, 83, 0.1);
  border-radius: 18px;
  padding: 34px 42px 32px;
}
/*.review-card {
  position: relative;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 45, 83, 0.1);
  border-radius: 18px;
  padding: 34px 42px 32px;
}*/

.review-quote {
  position: absolute;
  left: 28px;
  top: 6px;
  font-size: 5rem;
  line-height: 1;
  color: #edf3fb;
  font-family: Georgia, serif;
}

.stars {
  color: #2d3d55;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-size: 1rem;
}

.review-card p {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  color: #4f5562;
  margin-bottom: 30px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #3b62a1;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.review-author strong {
  display: block;
  color: var(--primary-dark);
}

.review-author span {
  color: #667080;
  font-size: 0.96rem;
}

.eyebrow {
     display: inline-block;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    color: #2a2a2a;
    font-weight: 400;
    text-transform:uppercase;
    letter-spacing: 0.01em;
}
.eyebrow span {
    color: #255193;
    font-weight: 400 !important;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.light,
.light-copy,
.facility-section h2,
.facility-section h3 {
  color: #fff;
}
.facility-section h2{
  font-size: 26px;
  margin-bottom: 20px;
}
.split-about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.about-large,
.about-small {
  overflow: hidden;
  border-radius: 24px;
  background: #e4ebf4;
}

.about-build {
  grid-row: span 2;
  min-height: 520px;

}

.about-small {
  min-height: 252px;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
}

.about-copy > * + * {
  margin-top: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.trust-card {
  padding: 20px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(18,45,83,0.08);
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
}

.about-action {
  margin-top: 24px;
}

.facility-section {
  background: linear-gradient(180deg, #183c71, #102d57);
  position: relative;
  overflow: hidden;padding: 60px 0 90px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.facility-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 16px;
}

.facility-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 14px;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 34px);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(18,45,83,0.08);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e9f0fb;
}

.form-intro {
  margin-top: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 400;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18,45,83,0.14);
  background: #f9fbfe;
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(34, 86, 159, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 86, 159, 0.08);
  background: #fff;
}

.full-width {
  width: 100%;
}

.detail-page {
  padding: 56px 0 80px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 42px;
}

.detail-copy,
.detail-media,
.detail-panel {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-copy {
  padding: 38px;
}

.detail-copy h1 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.detail-copy p + p {
  margin-top: 14px;
}

.detail-media {
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-panel {
  padding: 28px;
}

.detail-panel h3 {
  margin-bottom: 14px;
}

.detail-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 10px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 1180px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .desktop-quote {
    display: none;
  }

  .hero-showcase,
  .product-grid,
  .facility-grid,
  .footer-grid,
  .detail-hero,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .split-about,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .utility-bar__inner,
  .hero-showcase,
  .product-grid,
  .review-grid,
  .facility-grid,
  .footer-grid,
  .form-grid,
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-heading-frame {
    height: 74px;
    margin-bottom: -48px;
  }

  .review-header,
  .review-area {
    grid-template-columns: 1fr;
    display: grid;
  }

  .review-area {
    gap: 18px;
  }

  .review-nav {
    width: 52px;
    height: 52px;
  }

  .review-area .review-nav:first-child {
    order: 2;
  }

  .review-area .review-nav:last-child {
    order: 3;
  }

 /* .review-grid {
    order: 1;
  }*/

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-build,
  .about-small {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
/*.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}*/

 .utility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  white-space: nowrap;
}
/*.utility-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2680de, #0f62bc);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  color: #fff;
   
}*/
.utility-bar {
  background: #14325e;
  color: #fff;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.utility-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  flex: 1 1 250px;
}

.utility-item span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2680de, #0f62bc);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  color: #fff;
  margin-left: 0;
}

@media (max-width: 767px) {
  .utility-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .utility-item {
    flex: none;
    width: 100%;
  }
}
.utility-icon svg {
  display: block;
}
/*  .utility-icon {
    width: 34px;
    height: 34px;
  }*/

  .nav-wrap {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 210px;
  }

  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(18,45,83,0.1);
  }

  .nav-toggle-label span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    display: block;
  }

  .nav {
    display: none;
    padding-bottom: 14px;
  }

  .nav-toggle:checked ~ .nav {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-menu > li > a {
    padding: 12px 14px;
  }
.about-gallery--reference {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  justify-items: center;   /* 🔥 IMPORTANT */
}
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 6px;
    display: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-heading {
    padding: 30px 8px 8px;
  }

  .hero-showcase {
    gap: 14px;
  }


  .showcase-card--large .showcase-image,
  .showcase-image--joint-bottom,
  .showcase-image {
    padding: 20px;
  }

  .showcase-label {
    font-size: 1.7rem;
    padding: 18px 20px;
  }

  .product-body,
  .review-card,
  .about-copy,
  .contact-card,
  .form-card,
  .detail-copy,
  .detail-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-title {
    font-size: 2.2rem;
  }

  .google-rating {
    padding-top: 0;
    font-size: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


.section-about-refined {
  padding-top: clamp(84px, 8vw, 120px);
}

.split-about--reference {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(38px, 4vw, 74px);
  align-items: start;
}

.about-gallery--reference {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width:96%;
}

.about-large--reference,
.about-small--reference {
  position: relative;
  border: 1px solid rgba(18, 45, 83, 0.12);
  box-shadow: 0 16px 32px rgba(18, 45, 83, 0.08);
  background: #fff;
  margin: 0;
}

/*.about-large--reference {
  grid-column: 1 / -1;
  min-height: 620px;
  border-radius: 15px;
  overflow: hidden;
}*/

.about-small--reference {
  min-height: 270px;
  border-radius: 14px;
  overflow: hidden;
}
.about-large--reference {
  grid-column: 1 / -1;
  border-radius: 15px;
  overflow: hidden;
  min-height: auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.about-large--reference img {
  width: 100%;
  height: auto;
  
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
/*
.about-large--reference img{
   width: 100%;
  height: 620px;
  object-fit: cover;
}*/
.about-small--reference img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy--reference {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: clamp(10px, 1vw, 16px) 0 0;
}

.about-copy--reference h2 {
  margin-top: 8px;
    font-size: 36px;
    line-height: 1.05;
    color: #000000;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom:30px;
}

.about-copy--reference h2 span {
  color: #255193;
}

.about-copy--reference .lead,
.about-copy--reference .muted {
  font-size: clamp(1.08rem, 1.45vw, 1.18rem);
  line-height: 1.85;
  color: #6f7888;
}

.trust-grid--reference {
  margin-top: 36px;
  gap: 18px;
}

.trust-card--reference {
  padding: 22px 24px;
  background: #f5f7fb;
  border-radius: 14px;
  border-top: 4px solid #5d84bb;
  box-shadow: none;
}

.trust-card--reference strong {
  position: relative;
  padding-left: 26px;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.trust-card--reference strong::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #5a7fb5;
  font-weight: 400;
}

.trust-card--reference .muted {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .split-about--reference {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy--reference {
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .about-gallery--reference {
    grid-template-columns: 1fr;
  }

  .about-large--reference,
  .about-small--reference {
    grid-column: auto;
    min-height: 220px;
    border-radius: 24px;
  }

  .trust-grid--reference {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hero-heading-lines {
    gap: clamp(140px, 26vw, 280px);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .hero-heading-lines {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 0;
  }

  .hero-heading-lines span {
    height: 6px;
  }

  .hero-kicker {
    letter-spacing: 0.03em;
  }

  .hero-showcase-shell {
    padding: 8px;
  }

  .showcase-stack {
    grid-template-rows: 1fr 1fr;
  }

  .hero-highlight {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 28px 0 18px;
  }

  .hero-heading h1 {
    line-height: 1.15;
  }

  .showcase-card--top,
  .showcase-card--bottom,
  .showcase-card--large,
  .showcase-card {
    min-height: 210px;
  }

  .hero-highlights {
    padding: 12px 14px;
  }

  .hero-highlight {
    font-size: 0.98rem;
    gap: 10px;
  }

  .hero-highlight__icon {
    width: 26px;
    height: 26px;
  }
}
.applications-page {
      padding: 56px 0 80px;
      background: #f3f3f3;
      margin: 0px;
    }

    .applications-head {
      text-align: center;
      margin-bottom: 34px;
    }

    .applications-head h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #173c73;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .applications-head p {
      max-width: 760px;
      margin: 0 auto;
      color: #667085;
      font-size: 1.04rem;
      line-height: 1.75;
    }

    .applications-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
    }

    .application-card {
      background: #f7f7f7;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      padding: 24px 24px 28px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .application-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .application-card-title {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      border-radius: 6px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #eef0f3;
      margin-bottom: 30px;
      text-align: center;
      padding: 10px 16px;
    }

    .application-card-title h2 {
      margin: 0;
      font-size: clamp(1.15rem, 2vw, 1.55rem);
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #3c3c3c;
      line-height: 1.2;
    }

    .application-card-media {
      width: 100%;
      height: 290px;
      overflow: hidden;
      border-radius: 6px;
      margin-bottom: 26px;
      background: #e9edf2;
    }

    .application-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }

    .application-card:hover .application-card-media img {
      transform: scale(1.05);
    }

    .application-card p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.7;
      color: #5b5b5b;
    }

    @media (max-width: 1100px) {
      .applications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .applications-page {
        padding: 40px 0 56px;
      }

      .applications-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .application-card {
        padding: 18px 18px 22px;
      }

      .application-card-media {
        height: 220px;
        margin-bottom: 20px;
      }

      .application-card-title {
        margin-bottom: 20px;
      }

      .application-card-title h2 {
        font-size: 1.1rem;
      }
    }

    .nav-menu > li > a.active {
  background: #edf3fb;
  color: var(--primary);
}

/* ---------- Responsive hardening fixes ---------- */
.product-card,
.review-card,
.contact-card,
.form-card,
.footer-card,
.about-copy,
.facility-card,
.application-card {
  min-width: 0;
}

.hero-showcase-shell,
.about-copy--reference,
.contact-card,
.form-card,
.footer-card {
  width: 100%;
}

.review-grid {
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .utility-bar__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .utility-item {
    justify-content: flex-start;
  }

  .hero-highlights {
    justify-content: flex-start;
  }

  .review-header {
    flex-direction: column;
  }

  .google-rating {
    padding-top: 0;
  }

 /* .about-large--reference {
    min-height: 420px;
  }*/

  .about-large--reference img {
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    position: sticky;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-kicker {
    font-size: clamp(1.05rem, 5vw, 1.5rem);
  }

  .hero-heading h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .showcase-label {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .product-grid,
  .facility-grid,
  .footer-grid,
  .applications-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 85%;
    max-width: 85%;
    padding: 26px 20px 24px;
  }

  .review-area {
    grid-template-columns: 1fr;
  }

  .review-area .review-nav {
    display: none;
  }

  .contact-item {
    grid-template-columns: 40px 1fr;
  }

/*  .about-large--reference,
  .about-small--reference {
    min-height: 220px;
  }*/

  .about-large--reference img,
  .about-small--reference img {
    height: 100%;
  }

  .footer-grid {
    padding-top: 18px;
  }
}
/*.about-large--reference {
  grid-column: 1 / -1;
  min-height: 620px;
  border-radius: 15px;
  overflow: hidden;
}
*/
.about-small--reference {
  min-height: 270px;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .brand-logo {
    width: 180px;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    min-height: 50px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-body {
    padding: 0 20px 64px;
  }

  .chip-row {
    gap: 8px;
  }

  .chip {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .review-title {
    font-size: 1.8rem;
  }

  .applications-head h1 {
    font-size: 1.8rem;
  }
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.hero,
.section,
.footer,
.site-header,
.utility-bar {
  overflow-x: clip;
}

/* Kill forced overflow in about section */
.about-large--reference,
.about-small--reference {
  min-width: 0 !important;
  width: 100%;
  max-width: 100%;
}

/* Prevent grid/flex children from pushing out */
.product-grid > *,
.hero-showcase > *,
.split-about > *,
.contact-grid > *,
.footer-grid > *,
.facility-grid > *,
.about-gallery > * {
  min-width: 0;
}

/* Safer container on mobile */
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#facility .lead{
  margin-bottom: 20px;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 8px;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 400;
  color: #121212;
}

.google-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 5px;
}

@media screen and (max-width: 767px){
  .utility-bar{
    display: none;
  }
}/* ================================
   Supreme Engineers Full Banner Hero
================================ */

.se-hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("assets/images/build.jpeg") center center / cover no-repeat;
}

.se-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(28, 52, 90, 0.92) 0%,
      rgba(48, 74, 112, 0.86) 36%,
      rgba(106, 129, 161, 0.70) 68%,
      rgba(190, 198, 210, 0.42) 100%
    );
  z-index: 1;
}

.se-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 46, 0.18);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.se-hero-banner__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.se-hero-banner__inner {
  max-width: 900px;
}

.se-hero-banner__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.se-hero-banner__eyebrow-line {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.se-hero-banner__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.se-hero-banner__title {
  margin: 0;
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.se-hero-banner__title span {
  color: #dfc07b;
}

.se-hero-banner__text {
  margin: 26px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.38rem);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .se-hero-banner {
    min-height: 480px;
  }

  .se-hero-banner__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .se-hero-banner__inner {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .se-hero-banner {
    min-height: auto;
    background-position: center;
  }

  .se-hero-banner::before {
    background:
      linear-gradient(
        180deg,
        rgba(28, 52, 90, 0.90) 0%,
        rgba(52, 75, 108, 0.78) 100%
      );
  }

  .se-hero-banner__container {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .se-hero-banner__inner {
    max-width: 100%;
  }

  .se-hero-banner__eyebrow-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .se-hero-banner__eyebrow-line {
    width: 18px;
  }

  .se-hero-banner__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .se-hero-banner__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  color: #ffffff;
  max-width: 900px;   /* prevents early wrapping */
}

.se-hero-banner__title span {
  color: #e2c07a;     /* gold highlight */
}

.se-hero-banner__title br {
  display: block;
}

  .se-hero-banner__text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }
}.hero-kicker-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  flex-wrap: nowrap;
}

.kicker-line {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.55);
  display: inline-block;
  flex-shrink: 0;
}
.section-head, .facility-title{
  text-align: center;display: block !important;
}

.hero-kicker-text {
  color: #f0d08a;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
  font-size: 32px;
}

.hero-title {
  margin: 0;
  font-family: 'Arial', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 1100px;
  text-align: center;
}

#products{
  padding-bottom: 20px;
}
#about, #quote{
  padding-top: 20px;
}
.hero-title-gold {
  color: #e2c07a;
  white-space: nowrap;
}.facility-title {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facility-white {
  color: #ffffff;
}
.hero-highlight b{
    color: #f0d08a;
}

.facility-gold {
  color: #e2c07a;
}.topbar-icon,
.topbar-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #2f5fa3; /* blue like image */
}

.topbar-icon svg,
.topbar-search svg {
  width: 22px;
  height: 22px;
}.help-title {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1f2f4a; /* dark base */
  margin: 0;
  margin-bottom: 10px;
}

.help-title span {
  color: #4f6f9f; /* blue like image */
  font-weight: 400;
}.hero-subtext {
  font-family: 'Arial', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.85);

  max-width: 720px;

  margin: 18px auto 0;   /* 🔥 THIS centers the block */
  text-align: center;    /* 🔥 THIS centers text */
}.container{
  max-width: 1440px;
} 
@media screen and (max-width: 1600px){
  .container {
    max-width: 1350px;
  } 
}
@media screen and (max-width: 1400px){
  .container{
    max-width: 1240px;
  }
}
@media screen and (max-width: 1300px){
  .container{
    max-width: 1150px;
  }
}
@media screen and (max-width: 1199px){

}.footer{
  background:#123452;
  color:#8fa2b5;
  padding:80px 0 26px;
  font-family:'Arial',sans-serif;
}

.footer .container{

  margin:auto;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.15fr;
  gap:70px;
}

.footer-card h4{
  color:#fff;
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin:0 0 28px;
  font-weight:700;
}

.footer-card:first-child h4{
  font-size:20px;
  letter-spacing:2px;
}

.footer-card p{
  max-width:330px;
  line-height:1.75;
  font-size:15px;
  margin:0 0 28px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li,
.footer-links a{
  display:block;
  color:#8fa2b5;
  text-decoration:none;
  font-size:15px;
  margin-bottom:20px;
  transition:.25s;
}

.footer-links a:hover{
  color:#d7b98c;
}

.footer-links-text a{
  margin-bottom:14px;
}

.whitelogo{
  filter: brightness(0) invert(1);
  height: 80px;
  margin-bottom: 15px;
}
.footer-card:last-child .footer-links a::before{
  content:"→ ";
}

.footer-card .am{
  color:#d7b98c;
  font-weight:700;
}
.showcase-image{
  width:100%;
  height:260px;
  overflow:hidden;
  border-radius:6px;
  position:relative;
}


@keyframes zoomIn{
  0%{
    transform:scale(1);
  }
  100%{
    transform:scale(1.18); /* smaller zoom so it won't feel cropped */
  }
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:60px;
  padding-top:25px;
  display:flex;
  justify-content:space-between;
  color:#6f8294;
  font-size:14px;
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

@media(max-width:600px){
  .footer{
    padding:55px 0 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
  }
}


@media screen and (max-width: 1400px){
  .custom-nav-menu > li > a{
    font-size: 12px;
    padding: 12px 2px;
  }
}

@media (max-width: 1199px) {
  .topbar-logo {
    width: 160px;
  }
    .custom-nav-menu > li > a{
   font-size: 11px;
    padding: 4px 10px;
    width: 100%;
  }
}
/* ===== MOBILE NAV ===== */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
}

/* Default desktop menu */
.custom-nav-menu {
  display: flex;
  gap: 1px;
  list-style: none;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 992px) {

  .nav-toggle-label {
    display: flex;
  }

  .custom-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .custom-nav-menu {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .custom-nav-menu li a {
    display: block;
    padding: 10px 0;
  }

  /* SHOW MENU WHEN CHECKED */
  .nav-toggle:checked ~ .custom-nav {
    max-height: 500px; /* enough height to show menu */
  }

  /* Dropdown inside mobile */
  .has-dropdown .dropdown-menu {
    position: static;
    display: none;
    padding-left: 15px;
  }

  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
}.dropdown-menu {
  display: none;
}

.dropdown-menu.open {
  display: block;
}
  .nav-toggle-label {
    width: auto;
    width: fit-content;
    text-align: right;
    position: absolute;
    z-index: 999;
    right: 15px;
    top: -37px;
  }
@media screen and (max-width: 991px){
  .topbar-right{
    display: none;
  }
   .nav-toggle-label {
    display: block !important;
    width: auto;
    width: fit-content;
    text-align: right;
    position: absolute;
    z-index: 999;
    right: 15px;
    top: -37px;
  }
  .custom-nav-menu > li > a{
    min-height: auto !important;
  background: transparent;
  color: #212121; font-size: 14px;
  text-decoration: none;
  text-align: left;
  clip-path: none !important;padding: 0;
  }
  .custom-nav-menu .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0px 0;
    padding-left: 0px;
  min-width: auto;
  background: transparent;
  box-shadow: none;
  transition: 0.25s ease;
  border: none;
  min-height: auto;
  display: block !important;opacity: 1;
}.custom-nav-menu .dropdown-menu {
  visibility: visible;
}.custom-nav-menu .dropdown-menu li a {
  display: block;
  padding: 6px 0;
  color: #212121;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}element {
}
.custom-nav-menu > li > a:hover {
  background: transparent;

  color: #212121;
} .nav-toggle:checked ~ .custom-nav {
    max-height: 555px;
  }
}

@media screen and (max-width: 767px)
{ 
  .nav-toggle-label {
    display: flex;
    width: auto;
    width: fit-content;
    text-align: right;
    position: absolute;
    z-index: 999;
    right: 15px;
    top: -49px;
  }.hero-kicker-text {
  color: #f0d08a;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  white-space: wrap;
  font-size: 16px;
}.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  padding-top: 18px;
}
.read-more-btn{
  min-height: 40px;
  font-size: 14px;
}
.custom-nav{
  background: transparent;
}
.about-copy--reference h2, .facility-section h2, .help-title{
  font-size: 20px;
  line-height: 1.5;
}
p{
  font-size: 15px;
}.section-about-refined {
  padding-top: 0;
}.section-products {
  padding-top: 42px;
  padding-bottom: 40px;
}
.eyebrow{
  font-size: 26px;
}  .eyebrow {
    font-size: 21px;
    margin-bottom: 0;
  }
  section{
    padding: 40px 0 !important;
  }
  .facility-title{
    font-size: 21px;
  }
  .facility-media{
    min-height: auto;
  }
  .google-rating span, .google-rating{
    font-size: 15px;
  }
  #quote, #about, #other-products{
    padding-top: 0 !important;
  }.nav-toggle:checked ~ .custom-nav {
    max-height: 555px;
    background: #fff;
  }
}.fixedbtn{
 position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999 !important;
  width: 60px;
  height: 60px;
}

@media screen and (max-width:767px){
  .fixedbtn{
    width:40px;
    height: 40px;
  }
}
  #video .col-md-4 {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;padding-right: 15px;
  padding-left: 15px;
  }#video .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-12{
   -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
 #video iframe{
  height: 305px;
 }
 #products .read-more-btn{
  float: right;
 }
 #video{
  padding-bottom: 0 !important;
 }.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease;transition: 0.5s ease;
}

/* Hover image hidden by default */
.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card:hover img {
  transform: scale(1.05);
}
.review-card:hover{
background: #3b62a129;
transform: 0.5s ease;
}
.review-card{
  transform: 0.5s ease;
}
#quote .btn-primary{
  transition: 0.5s ease;
}
#quote .btn-primary:hover{
transform: translateY(-2px);
transition: 0.5s ease;
  background: #fff;
  color: #255193;
  border: 1px solid #255193;
}
.review-card:hover .review-quote{
  color: #3b62a1;
}
/* On hover: show hover image */
.product-card:hover .img-hover {
  opacity: 1;
}

/* On hover: hide default image */
.product-card:hover .img-default {
  opacity: 0;
}

@media  screen and (max-width: 767px){
  #video .col-md-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;padding-right: 15px;
  padding-left: 15px;
  }
  .product-title{
    padding-top: 20px;
  }
}

.container{
  max-width: 90%;
}
.floating-contact {
  position: fixed;
  bottom: 200px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.fc-btn:hover {
  transform: scale(1.1);
}#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px; /* opposite side of your contact buttons */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #255193;
  color: #fff;
  border: none;
  font-size: 18px;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: scale(1.1);
  background: #000;
}

/* Colors */
.fc-btn.phone {
  background: #007bff;
}

.fc-btn.email {
  background: #ff5722;
}

.fc-btn.whatsapp {
  background: #25D366;
}
.industry-slider-section{
  width:100%;
  overflow:hidden;
  padding:35px 0 70px;
  background:#fff;
}

.industry-slider{
  width:100%;
  overflow:hidden;
}

.slider-track{
  display:flex;
  gap:50px;
  width:max-content;
  animation:industryScroll 18s linear infinite;
}

.industry-card{
  width:506px;
  background:#fff;
  border:1px solid #ddd;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  flex:0 0 auto;
  text-align:center;
}

.industry-card img{
  width:100%;
  height:345px;
  object-fit:cover;
  display:block;
}

.industry-card h3{
  margin:0;
  padding:28px 15px 66px;
  font-size:25px;
  font-weight:400;
  color:#4b5558;
  text-transform:uppercase;
  background:#fff;
}

.industry-slider:hover .slider-track{
  animation-play-state:paused;
}

@keyframes industryScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(calc(-506px * 2 - 50px * 2));
  }
}

@media(max-width:768px){
  .slider-track{
    gap:25px;
    animation-duration:14s;
  }

  .industry-card{
    width:310px;
  }

  .industry-card img{
    height:220px;
  }

  .industry-card h3{
    font-size:20px;
    padding:22px 10px 45px;
  }

  @keyframes industryScroll{
    from{
      transform:translateX(0);
    }
    to{
      transform:translateX(calc(-310px * 2 - 25px * 2));
    }
  }
}.about-page{
      padding:45px 0 80px;
    }

    .breadcrumb{
      font-size:17px;
      font-weight:400;
      letter-spacing:2px;
      margin-bottom:80px;
    }

    .about-intro{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
      margin-bottom:70px;
    }

    .about-media{
      border-top:3px solid #111;
      height:360px;
      overflow:hidden;
      background:#ddd;
    }

    .about-media video,
    .about-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .section-title{
      text-align:center;
      font-size:36px;
      font-weight:400 !important;
      letter-spacing:1px;
      margin:45px 0 35px;
      text-transform:uppercase;
    }

    .section-title span,
    .about-copy h1 span{
      color:#32699f !important;
      font-weight:400 !important;
    }

    .about-copy h1{
      font-size:36px;
      font-weight:400;
      margin:0 0 18px;
      text-transform:uppercase;
    }

    .about-copy p{
      font-size:21px;
      line-height:1.55;
      text-align:justify;
      margin:0;
    }

    .info-table{
      width:100%;
      border-collapse:collapse;
      margin-bottom:55px;
      font-size:20px;
    }

    .info-table th{
      background:var(--blue);
      color:#fff;
      text-align:left;
      padding:18px 16px;
      font-size:18px;
      text-transform:uppercase;
      border:1px solid var(--border);
    }

    .info-table td{
      padding:18px 16px;
      border:1px solid var(--border);
      line-height:1.45;
    }

     .section-title{
      text-align:center;
      font-size:36px;
      font-weight:400;
      letter-spacing:1px;
      margin:45px 0 35px;
      text-transform:uppercase;
    }
.section-title{
    
}
    .section-title span,
    .about-copy h1 span{
      color:var(--blue);
      font-weight:400;
    }


    .company-table td:first-child{
      width:180px;
    }

    .machinery-table th:nth-child(1),
    .machinery-table td:nth-child(1){
      width:70px;
      text-align:left;
    }

    .legal-table th{
      width:50%;
    }

    .industries-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:48px;
      margin-top:50px;
      margin-bottom:90px;
    }

    .industry-card{
      border:1px solid #e2e2e2;
      box-shadow:0 6px 16px rgba(0,0,0,.12);
      background:#fff;
      min-height:360px;
      text-align:center;
    }

    .industry-card img{
      width:100%;
      height:230px;
      object-fit:cover;
      display:block;
    }

    .industry-card h3{
      font-size:24px;
      margin:28px 10px;
      text-transform:uppercase;
      color:#455052;
      font-weight:400;
    }

    .stats-row{
      border-top:1px solid #ddd;
      padding-top:55px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      text-align:center;
      gap:30px;
    }

    .stat svg{
      width:42px;
      height:42px;
      color:#4f5b5d;
      margin-bottom:15px;
    }

    .stat strong{
      display:block;
      font-size:23px;
      font-weight:400;
    }

    .stat span{
      display:block;
      font-size:21px;
      font-weight:400;
      text-transform:uppercase;
    }


    .breadcrumb{
  font-size:17px;
  font-weight:400;
  letter-spacing:2px;
  margin-bottom:80px;
  text-transform:uppercase;
}

.breadcrumb a{
  color:var(--dark);
  text-decoration:none;
}

.breadcrumb .active,
.breadcrumb a:hover{
  color:var(--blue);
}

/* CARD HOVER */
.card-grid.machine-grid .facility-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-grid.machine-grid .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM */
.card-grid.machine-grid .facility-card img {
  transition: transform 0.4s ease;
}

.card-grid.machine-grid .facility-card:hover img {
  transform: scale(1.05);
}

/* TITLE COLOR SHIFT */
.card-grid.machine-grid .facility-card h3 {
  transition: color 0.3s ease;
}

.card-grid.machine-grid .facility-card:hover h3 {
  color: #0e3a78;
}

/* LIST SLIDE EFFECT */
.card-grid.machine-grid .facility-card li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card-grid.machine-grid .facility-card:hover li {
  transform: translateX(4px);
  color: #263241;
}/* ============================= */
/* FACTORY GALLERY HOVER */
/* ============================= */

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}/* ============================= */
/* INSTRUMENT GRID (SCOPED) */
/* ============================= */

.card-grid.instrument-grid .facility-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* CARD LIFT */
.card-grid.instrument-grid .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM */
.card-grid.instrument-grid .facility-card img {
  transition: transform 0.4s ease;
}

.card-grid.instrument-grid .facility-card:hover img {
  transform: scale(1.05);
}

/* TITLE EFFECT */
.card-grid.instrument-grid .facility-card h3 {
  transition: color 0.3s ease;
}

.card-grid.instrument-grid .facility-card:hover h3 {
  color: #0e3a78;
}/* Force ONLY "OUR PRODUCTS" in one line */
.custom-nav-menu .has-dropdown > a {
  white-space: nowrap;
}

/* TOPBAR FINAL FIX */
.topbar-inner {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.topbar-brand {
  flex: 0 0 auto;
}

.topbar-right {
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.topbar-item,
.topbar-btn,
.topbar-search {
  flex: 0 0 auto;
  white-space: nowrap;
}

.topbar-search {
  width: auto !important;
  margin-left: 4px;
}

.topbar-search svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1400px) {
  .topbar-logo {
    width: 260px;
  }

  .topbar-right {
    gap: 18px !important;
  }

  .topbar-item {
    font-size: 14px;
  }

  .topbar-btn {
    min-height: 54px;
    padding: 0 24px;
  }
}

@media (max-width: 1199px) {
  .topbar-logo {
    width: 220px;
  }

  .topbar-right {
    gap: 14px !important;
  }

  .topbar-item {
    font-size: 13px;
  }

  .topbar-btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }
}


/*Product page style*/
/*Time product*/
:root{
  --blue:#2f669e;
  --dark:#455052;
  --teal:#155f72;
  --light:#f7f7f7;
}

body{

  background:#fff;
}

.tp-section{
  padding:45px 0;
}

.tp-container, .belt-container{
  max-width: 90% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.tp-title{
  text-align:center;
  color:var(--blue);
  font-weight:400 !important;
  font-size:32px;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin:15px 0 48px;
}

/* TOP PRODUCT */
.top-products{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:42px;
  margin-bottom:35px;
}

.top-product-card{
  background:var(--blue);
  min-height:490px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.top-product-card img{
  width:75%;
  max-height:410px;
  object-fit:contain;
  transition:.35s;
}

.top-product-card:hover img{
  transform:scale(1.05);
}

.top-product-card h2{
  color:#fff;
  font-size:30px !important;
  font-weight:400;
  margin-top:25px;
}

/* PITCH PROFILE */
.profile-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.profile-card,
.type-card,
.gallery-card,
.report-card,
.spec-card{
  background:#fff;
  box-shadow:0 0 14px rgba(0,0,0,.28);
  overflow:hidden;
}

.profile-img{
  background:#a6a6a6;
  height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.profile-body th{
    font-weight:600 !important;
}
.profile-img img{
  width:80%;
  height:100%;
  object-fit:contain;
}.profile-img {
  overflow: hidden;
}
.product-slider .type-card,
.product-slider .gallery-card {
  overflow: hidden;
}

.product-slider .type-card img,
.product-slider .gallery-card img {
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.product-slider .type-card:hover img,
.product-slider .gallery-card:hover img {
  transform: scale(1.2);
}.product-img,
.product-img.gray,
.product-img.white,
.spec-img,
.shape-img,
.common-img,
.common-graph {
  overflow: hidden;
}
.belt-img {
  overflow: hidden;
}

.belt-img img {
  transition: transform 0.4s ease;
}
.gear-img {
  overflow: hidden;
}

.gear-img img {
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.gear-img:hover img {
  transform: scale(1.2);
}
/* Hover Zoom Effect */
.belt-img:hover img {
  transform: scale(1.2);
}
.product-img img,
.product-img.gray img,
.product-img.white img,
.spec-img img,
.shape-img img,
.common-img img,
.common-graph img {
  transition: transform 0.4s ease;
}
.report-img {
  overflow: hidden;
}

.report-img img {
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.report-img:hover img {
  transform: scale(1.2);
}
/* Hover Zoom Effect */
.product-img:hover img,
.product-img.gray:hover img,
.product-img.white:hover img,
.spec-img:hover img,
.shape-img:hover img,
.common-img:hover img,
.common-graph:hover img {
  transform: scale(1.2);
}
.profile-img img{
  width: 85%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.profile-img img:hover{
  transform: scale(1.2);
}
/*.profile-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px 32px;
  min-height:260px;
  overflow:hidden;
}*/

/*.profile-body table{
  border-collapse:collapse;
  width:58%;
  font-size:17px;
  text-align:center;
  flex-shrink:0;
}*/

.profile-body th,
.profile-body td{
  border:1px solid #d9e0e5;
  padding:10px;
}

.profile-body th{
  font-weight:400;
  color:#000;
}

/*.profile-body img{
  width:40%;
  height:210px;       
  max-width:none;
  object-fit:contain;
  display:block;
}*/
.profile-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px 32px;
  min-height:280px;
  overflow:hidden;
}

.profile-body table{
  border-collapse:collapse;
  width:55%;
  font-size:17px;
  text-align:center;
  flex-shrink:0;
}

.profile-body img{
  width:42%;
  height:230px;
  object-fit:contain;
  display:block;
}
.card-name{

  text-align:center;
  padding:24px 10px;
  font-size:24px;
  font-weight:400;
  color:var(--dark);
  text-transform:uppercase;
}
.profile-card:hover .card-name{
  border-top:10px solid var(--blue);
}

/* TYPES / GALLERY / REPORTS */

.slider-wrap{
  position:relative;
}

.common-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
/* REAL SLIDER STRUCTURE */
.product-slider-wrap{
  position:relative;
  overflow:hidden;
}

.product-slider{
  display:flex;
  gap:36px;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

.product-slider .type-card,
.product-slider .gallery-card{
  min-width:calc((100% - 72px) / 3);
  flex-shrink:0;
  background:#fff;
  box-shadow:0 0 14px rgba(0,0,0,.28);
  overflow:hidden;
}

.common-img img{
  width:80%;
  height:85%;
  object-fit:contain;
}

.common-graph{
  background:#fff;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.common-graph img{
  width:90%;
  height:90%;
  object-fit:contain;
}

.product-slider .common-title{
  border-top:10px solid transparent;
  transition:.3s;
}

.product-slider .type-card:hover .common-title,
.product-slider .gallery-card:hover .common-title{
  border-top:10px solid var(--blue);
}

.arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  font-size:48px;
  color:#007bff;
  cursor:pointer;
  z-index:20;
  user-select:none;
}

.arrow.left{ left:20px; }
.arrow.right{ right:20px; }

@media(max-width:1200px){
  .product-slider .type-card,
  .product-slider .gallery-card{
    min-width:calc((100% - 36px) / 2);
  }
}

@media(max-width:768px){
  .product-slider .type-card,
  .product-slider .gallery-card{
    min-width:100%;
  }
}
.common-img{
  background:#d2d2d2;
  height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.common-graph img{
  width:80%;
  height:85%;
  object-fit:contain;
}
.type-card:hover .common-title{
  border-top:10px solid var(--blue);
}
.common-title{
  text-align:center;
  padding:22px 10px;
  color:var(--dark);
  font-size:22px;
  font-weight:400;
  text-transform:uppercase;
}

.report-img{
  background:#d2d2d2;
  padding:50px 35px;
  height:660px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.report-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
}

.arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  font-size:42px;
  color:#007bff;
  cursor:pointer;
  z-index:5;
  user-select:none;
}

.gf{
  margin-top: 60px;
  margin-bottom: 30px;
}

/* SPECIFICATION */
.spec-box{
  background:#fff;
  padding:22px;
  border-radius:6px;
  box-shadow:0 0 15px rgba(0,0,0,.12);
}

.tabs{
  display:flex;
  justify-content:center;
  gap:0;
  margin-bottom:0;
}

.tab-btn{
  border:0;
  background:#fff;
  padding:18px 30px;
  font-size:18px;
  font-weight:400;
  color:var(--blue);
  cursor:pointer;
}

.tab-btn.active{
  color:#111;
  border:1px solid #d5dde4;
  border-bottom:0;
  border-radius:6px 6px 0 0;
}

.spec-inner{
  border:2px solid var(--blue);
  padding:20px 25px 55px;
}

.spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.spec-img{
  background:#d2d2d2;
  height:510px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.spec-img img{
  width:88%;
  height:88%;
  object-fit:contain;
}

.spec-card .common-title{
  background:#fff;
}

/* ABOUT SECTION */
.info-section{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:40px;
  margin-top:80px;
}

.side-tabs{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.side-tabs button{
  background:#858585;
  color:#fff;
  border:0;
  text-align:left;
  padding:22px 28px;
  font-weight:400;
  font-size:16px;
  cursor:pointer;
  position:relative;
}

.side-tabs button.active{
  background:var(--blue);
}

.side-tabs button.active:after{
  content: "";
  position: absolute;
  right: -37px;
  top: 0px;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 38px solid var(--blue);
}
.info-section .info-content{
  padding-left: 30px;
}

.info-content h2{
  color:var(--blue);
  font-size:34px;
  font-weight:400;
  margin-bottom:15px;
}

.info-content p,
.info-content li{
  font-size:18px;
  line-height:1.75;
  color:#222;
}

.info-content h3{
  font-size:29px;
  margin:34px 0 18px;
}
@media(max-width:768px){
  #typesSlider .type-card{
    min-width:100%;
  }
}
/* FLOAT BUTTONS */
.float-contact{
  position:fixed;
  right:18px;
  top:52%;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.float-contact a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  text-decoration:none;
}

.call{ background:#d85b22; }
.mail{ background:#222; }
.whatsapp{ background:#16c85d; }

.back-top{
  position:fixed;
  right:25px;
  bottom:28px;
  width:52px;
  height:52px;
  background:#034b93;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:27px;
  text-decoration:none;
  z-index:999;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .profile-grid,
  .common-grid,
  .spec-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .info-section{
    grid-template-columns:1fr;
  }

  .side-tabs button.active:after{
    display:none;
  }
}

@media(max-width:768px){
  .top-products,
  .profile-grid,
  .common-grid,
  .spec-grid{
    grid-template-columns:1fr;
  }

  .top-product-card{
    min-height:360px;
  }

  .top-product-card img{
    width:75%;
  }

  .top-product-card h2{
    font-size:22px;
  }

  .profile-body{
    flex-direction:column;
  }

  .profile-body table,
  .profile-body img{
    width:100%;
  }

  .tp-title{
    font-size:25px;
  }

  .common-img,
  .profile-img{
    height:300px;
  }

  .report-img{
    height:480px;
  }

  .float-contact{
    right:8px;
  }
}
/*FOQ*/

.adv-table table{
  width:100%;
  border-collapse:collapse;
  font-size:16px;
  font-weight:500;
}

/* HEADER */
.adv-table thead th{
  background:#3f6b9a;
  color:#fff;
  text-align:left;
  padding:16px 18px;
  font-weight:700;
  border-right:1px solid rgba(255,255,255,0.3);
}

.adv-table thead th:last-child{
  border-right:none;
}

/* BODY CELLS */
.adv-table tbody td{
  padding:16px 18px;
  border:1px solid #d2d6db;
  color:#333;
}

/* STRIPED ROWS (important) */
.adv-table tbody tr:nth-child(odd){
  background:#f3f4f6;
}

.adv-table tbody tr:nth-child(even){
  background:#e6e8eb;
}

/* FIRST COLUMN STYLE */
.adv-table tbody td:first-child{
  font-weight:400;
  color:#2f2f2f;
}



.adv-table table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
}

.adv-table th{
  background:#3f6b9a;
  color:#fff;
  padding:14px;
  text-align:left;
  font-weight:700;
}

.adv-table td{
  padding:14px;
  border:1px solid #ccc;
}

.adv-table tr:nth-child(even){
  background:#f2f2f2;
}

.adv-list{
  margin:15px 0;
  padding-left:0;
  list-style:none;
}

.adv-list li{
  margin:10px 0;
  font-size:17px;
}

.adv-perf{
  margin-top:10px;
} 


.joint-card{
  background:#fff;
  box-shadow:0 0 14px rgba(0,0,0,.28);
  overflow:hidden;
  transition:.3s ease;
}

.joint-card:hover{
  transform:translateY(-5px);
}

.joint-img{
  background:var(--teal);
  height:620px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:55px;
}

.joint-img img{
  width:72%;
  height:auto;
  max-height:360px;
  object-fit:contain;
}

.joint-footer{
  min-height:95px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 45px;
  background:#fff;
}

.joint-footer h3{
  margin:0;
  color:var(--dark);
  font-size:24px;
  font-weight:400;
  text-transform:uppercase;
}

.download-icon{
  color:#000;
  font-size:42px;
  font-weight:400;
  text-decoration:none;
  line-height:1;
}

@media(max-width:1200px){
  .joint-img{
    height:520px;
  }
}

@media(max-width:768px){
  .joint-img{
    height:420px;
    padding-top:35px;
  }

  .joint-footer{
    padding:0 28px;
  }

  .joint-footer h3{
    font-size:20px;
  }
}

/*Joint*/
.shapes-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-bottom:60px;
}

.shape-card{
  background:#fff;
  box-shadow:0 0 14px rgba(0,0,0,.28);
  overflow:hidden;
  transition:.3s ease;
}

.shape-card:hover{
  transform:translateY(-5px);
}

.shape-img{
  height:330px;
  background:#f7f7f7;
  display:flex;
  align-items:center;
  justify-content:center;
}

.shape-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.shape-title{
  background:#fff;
  color:var(--dark);
  text-align:center;
  font-size:22px;
  font-weight:400;
  text-transform:uppercase;
  padding:18px 10px;
}

.shape-card:hover .shape-title{
  border-top:8px solid var(--blue);
}

@media(max-width:1200px){
  .shapes-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .shapes-grid{
    grid-template-columns:1fr;
  }

  .shape-img{
    height:260px;
  }

  .shape-title{
    font-size:18px;
  }
}


/*Scroll*/
/* UNIVERSAL IMAGE SECTION SLIDER */
.scroll-section{
  position:relative;
  width:100%;
  overflow:hidden;
  margin-bottom:70px;
}

.scroll-row{
  display:flex !important;
  gap:28px;
  overflow-x:auto !important;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  cursor:grab;
  padding:6px 4px 18px;
}

.scroll-row::-webkit-scrollbar{
  display:none;
}

.scroll-row.dragging{
  cursor:grabbing;
  scroll-behavior:auto;
}

.scroll-row > *{
  min-width:calc((100% - 56px) / 3);
  flex-shrink:0;
}

.slider-arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  z-index:50;
  font-size:46px;
  color:#007bff;
  cursor:pointer;
  user-select:none;
}

.slider-arrow.left{
  left:10px;
}

.slider-arrow.right{
  right:10px;
}

@media(max-width:1200px){
  .scroll-row > *{
    min-width:calc((100% - 28px) / 2);
  }
}

@media(max-width:768px){
  .scroll-row > *{
    min-width:100%;
  }

  .slider-arrow{
    font-size:38px;
  }
}


@media screen and (max-width:767px){
      .top-product-card h2 {
    font-size: 19px;
  }
    .top-product-card {
    min-height: 250px !important;height: 250px !important;
  } .top-product-card h2 {
    font-size: 23px;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }  .tp-title {
    font-size: 25px;
    margin-bottom: 20px !important;
  }
  .shape-title{
      font-size:16px !important;
  }
}/* ===== TOPBAR RESPONSIVE FIX - FINAL ===== */

.topbar {
  overflow: visible !important;
}



.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.topbar-logo {
  width: clamp(210px, 19vw, 300px);
  height: auto;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.2vw, 22px);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.topbar-item {
  gap: 8px;
  font-size: clamp(11px, 0.85vw, 14px);
  min-width: 0;
}

.topbar-item span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.topbar-icon svg {
  width: 18px;
  height: 18px;
}

.topbar-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 20px;
  font-size: clamp(11px, 0.85vw, 14px);
}

.topbar-search {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.topbar-search svg {
  width: 22px;
  height: 22px;
}

/* laptop/tablet */
@media (max-width: 1199px) {
  .topbar-inner {
    flex-direction: row !important;
    align-items: center !important;
  }

  .topbar-logo {
    width: 230px;
  }

  .topbar-item:first-child {
    max-width: 330px;
  }
}

/* smaller laptop */
@media (max-width: 1050px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-brand {
    width: 100%;
    justify-content: center;
  }

  .topbar-right {
 display: none;
  }
}

/* mobile */
@media (max-width: 767px) {
  .topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
  }

  .topbar-right {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .topbar-item {
    width: auto !important;
    font-size: 12px;
  }

  .topbar-item:first-child {
    display: none;
  }

  .topbar-btn {
    width: auto !important;
    min-height: 40px;
    padding: 0 16px;
  }

  .topbar-search {
    width: 34px !important;
    flex: 0 0 34px;
    justify-content: center !important;
  }
}
/* ===== iOS SAFE MOBILE NAV ===== */
/* ===== MOBILE TOPBAR CLEAN FIX ===== */

@media (max-width: 767px) {
  .topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    min-height: auto;
  }

  .topbar-brand {
    width: 100%;
    justify-content: center;
  }

  .topbar-logo {
    width: 250px;
    max-width: 90%;
  }

  .topbar-right {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    justify-content: center;
    align-items: center;
    white-space: normal;
  }

  .topbar-item:first-child {
    display: none !important;
  }

  .topbar-item {
    width: 100%;
    justify-content: center;
    font-size: 11px;
    gap: 5px;
    white-space: nowrap;
  }

  .topbar-icon,
  .topbar-icon svg {
    width: 14px;
    height: 14px;
    font-size: 14px;
  }

  .topbar-btn {
    grid-column: 1 / -1;
    width: 140px !important;
    min-height: 38px;
    justify-self: center;
    padding: 0 14px;
    font-size: 11px;
  }

  .topbar-search {
    display: none !important;
  }
}.belt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.belt-title {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.download-btn {
  padding: 6px 14px;
  margin-right: 15px;
  background: #173c73;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: 0.3s;
}

.download-btn:hover {
  background: #0d2c55;
}

/*Add button in  3 card*/
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.read-card {
  background: #154e8a;
  color: #fff;
  padding: 50px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.read-card.gray {
  background: #cfcfcf;
  color: #222;
}

/* TITLE */
.read-card h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: 0.3s;
}

.read-card:not(.gray) .read-btn {
  border-color: #fff;
  color: #fff;
}

/* HOVER */
.read-btn:hover {
  background: white;
  color: #fff;
}

.read-card:not(.gray) .read-btn:hover {
  background: #fff;
  color: #154e8a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }
}

/*Update card joint*/
/* ===== ONLY GALLERY SLIDER LAYOUT FIX ===== */

.product-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

/*#gallerySlider.product-slider {*/
/*  display: flex;*/
/*  flex-wrap: nowrap;*/
/*  gap: 35px;*/
/*  overflow-x: auto;*/
/*  scroll-behavior: smooth;*/
/*  scrollbar-width: none;*/
/*  padding: 12px 0 28px;*/
/*}*/

#gallerySlider.product-slider::-webkit-scrollbar {
  display: none;
}

#gallerySlider .product-card {
  flex: 0 0 calc((100% - 70px) / 3);
  max-width: calc((100% - 70px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

#gallerySlider .product-img {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallerySlider .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#gallerySlider .product-title {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 0 28px;
}

/* arrows */
.product-slider-wrap .arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
}

.product-slider-wrap .arrow.left {
  left: 10px;
}

.product-slider-wrap .arrow.right {
  right: 10px;
}

/* tablet: 2 cards */
@media (max-width: 992px) {
  #gallerySlider .product-card {
    flex: 0 0 calc((100% - 35px) / 2);
    max-width: calc((100% - 35px) / 2);
  }

  #gallerySlider .product-img {
    height: 340px;
  }
}

/* mobile: 1 card */
@media (max-width: 576px) {
  .product-slider-wrap {
    padding: 0 32px;
  }

  #gallerySlider.product-slider {
    gap: 16px;
  }

  #gallerySlider .product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #gallerySlider .product-img {
    height: 280px;
  }

  #gallerySlider .product-title {
    min-height: 70px;
    font-size: 15px;
    padding: 0 18px;
  }
}

/*Specification Download button*/

/* ALIGN TITLE + BUTTON */
#specSlider .product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* BUTTON STYLE */
.download-btn {
  font-size: 12px;
  padding: 6px 12px;
  background: #173c73;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;
}

.download-btn:hover {
  background: #0f2c57;
}.gear-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 45px;
}

.gear-slider {
  display: flex;
  gap: 35px;    
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
 padding: 12px 4px 28px !important;
}

.gear-slider::-webkit-scrollbar {
  display: none;
}

.gear-card {
  flex: 0 0 calc((100% - 70px) / 3);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  overflow: hidden;
}

.gear-img {
  height: 245px;
  background: #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.gear-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gear-title {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #455052;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  border-top: 7px solid transparent;
}

.gear-card:hover .gear-title {
  border-top-color: #2f669e;
}

.gear-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #0d82ff;
  font-size: 46px;
  cursor: pointer;
  z-index: 20;
}

.gear-left {
  left: 8px;
}

.gear-right {
  right: 8px;
}

@media (max-width: 992px) {
  .gear-card {
    flex: 0 0 calc((100% - 35px) / 2);
  }
}

@media (max-width: 576px) {
  .gear-slider-wrap {
    padding: 0 32px;
  }

  .gear-slider {
    gap: 16px;
  }

  .gear-card {
    flex: 0 0 100%;
  }

  .gear-img {
    height: 230px;
  }
}.gear-img {
  background: #ffffff !important;
}

.facility-card{
  background:#ffffff !important;
}.facility-card img{
  background:#ffffff !important;
}
/*Responsive timepulley Types and gallery*/
/* ===== TYPES + GALLERY RESPONSIVE FIX ===== */

.product-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0 ;
  box-sizing: border-box;
}

.product-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 0 28px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.type-card,
.gallery-card {
  flex: 0 0 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  overflow: hidden;
}

.common-img {
  height: 280px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.common-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.common-graph {
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.common-graph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.common-title {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 18px;
  font-weight: 400;
  color: #455052;
  text-transform: uppercase;
  border-top: 7px solid transparent;
}

.type-card:hover .common-title,
.gallery-card:hover .common-title {
  border-top-color: #2f669e;
}

.product-slider-wrap .arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  font-size: 44px;
  color: #0d82ff;
}

.product-slider-wrap .arrow.left {
  left: 10px;
}

.product-slider-wrap .arrow.right {
  right: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .type-card,
  .gallery-card {
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .common-img {
    height: 240px;
  }

  .common-graph {
    height: 190px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-slider-wrap {
    padding: 0 32px;
  }

  .product-slider {
    gap: 16px;
  }

  .type-card,
  .gallery-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .common-img {
    height: 220px;
    padding: 18px;
  }

  .common-graph {
    height: 170px;
    padding: 14px;
  }

  .common-title {
    font-size: 14px;
    min-height: 60px;
  }

  .product-slider-wrap .arrow {
    font-size: 36px;
  }
}

/* ===== INFO SECTION RESPONSIVE: MOBILE / iOS / ANDROID / TABLET ===== */

.info-section {
  display: flex;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.side-tabs {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-btn {
  width: 100%;
  min-height: 48px;
  border: 1px solid #2f669e;
  background: #fff;
  color: #2f669e;
  font-weight: 400;
  cursor: pointer;
}

.info-btn.active,
.info-btn:hover {
  background: #2f669e;
  color: #fff;
}

.info-content {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.info-tab h2,
.info-tab h3 {
  margin-bottom: 14px;
}

.info-tab p {
  line-height: 1.7;
  margin-bottom: 12px;
}

/* table safe scroll */
.adv-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.adv-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.adv-table th,
.adv-table td {
  border: 1px solid #ddd;
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
}

.adv-table th {
  background: #2f669e;
  color: #fff;
}

.adv-list,
.adv-perf {
  padding-left: 22px;
  line-height: 1.7;
}

/* tablet */
@media (max-width: 992px) {
  .info-section {
    flex-direction: column;
  }

  .side-tabs {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .side-tabs::-webkit-scrollbar {
    display: none;
  }

  .info-btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
    padding: 0 18px;
  }

  .info-content {
    padding: 22px;
  }
}

/* mobile */
@media (max-width: 576px) {
  .info-section {
    gap: 16px;
  }

  .info-content {
    padding: 18px 14px;
    box-shadow: none;
    border: 1px solid #eee;
  }

  .info-tab h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .info-tab h3 {
    font-size: 16px;
  }

  .info-tab p,
  .adv-list li,
  .adv-perf li {
    font-size: 14px;
  }

  .info-btn {
    min-width: 120px;
    min-height: 42px;
    font-size: 13px;
  }

  .adv-table table {
    min-width: 650px;
  }

  .adv-table th,
  .adv-table td {
    font-size: 12px;
    padding: 8px 6px;
  }
}.belt-footer {
  position: relative;
}

/* hidden line */
.belt-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #2f669e;
  transition: 0.3s ease;
}

/* on hover → full width */
.belt-card:hover .belt-footer::before {
  width: 100%;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

body::after {
  display: none !important;
}@media (max-width: 576px) {
  .floating-contact {
    right: 10px !important;
    bottom: 80px !important;
    top: auto !important;
  }

  .fc-btn {
    width: 44px !important;
    height: 44px !important;
  }
}/* =====================================================
   PROFESSIONAL BLOG DETAIL PAGE - FINAL VERSION
   Supreme Engineers
   Put this at the VERY END of style.css
===================================================== */

html,
body {
  overflow-x: hidden;
}

.se-blog-detail-page {
  width: 100%;
  background: #f4f6f8;
  color: #17202a;
  font-family: inherit;
}

/* Wider professional container */
.blog-detail-container {
 max-width: 90% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ================= HERO ================= */

.blog-detail-hero {
  position: relative;
  min-height: 340px !important;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 18, 32, 0.94), rgba(8, 18, 32, 0.72)),
    url("assets/images/banner.png") center/cover no-repeat;
  overflow: hidden;
}

.blog-detail-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border: 48px solid rgba(246, 178, 26, 0.08);
  border-radius: 50%;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px !important;
  padding: 58px 0 !important;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.detail-breadcrumb a:hover {
  color: #2f67a3;
}

.detail-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.detail-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 16px !important;
  border-left: 4px solid #2f67a3;
  background: rgba(255, 255, 255, 0.1);
  color: #2f67a3;
  font-size: 12px;
  font-weight:400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-detail-hero h1 {
  max-width: 920px;
  margin: 0 0 14px !important;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.08 !important;
  font-weight:400;
}

.blog-detail-hero p {
  max-width: 820px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px !important;
  line-height: 1.7 !important;
}

/* ================= MAIN SECTION ================= */

.blog-detail-section {
  padding: 46px 0 70px !important;
  background:
    radial-gradient(circle at top left, rgba(246, 178, 26, 0.08), transparent 28%),
    linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
}

/* Full readable layout */
.blog-detail-layout {
  display: block !important;
  width: 100% !important;
}

.blog-detail-article {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Top image card */
.blog-detail-main-img {
  width: 100% !important;
  height: 360px !important;
  min-height: unset !important;
  margin: 0 0 22px !important;
  padding: 22px !important;
  border-radius: 22px !important;
  border: 1px solid #e1e7ee !important;
  background:
    linear-gradient(135deg, #ffffff, #f7f9fb);
  box-shadow: 0 18px 45px rgba(16, 32, 48, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.blog-detail-main-img img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

/* Content card */
.blog-detail-content {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  padding: 42px 48px !important;
  border-radius: 22px !important;
  border: 1px solid #e1e7ee !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(16, 32, 48, 0.08) !important;
}

/* Make content more visible and premium */
.detail-content-block {
  position: relative;
  padding-left: 22px;
}

.detail-content-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 38px;
  border-radius: 50px;
  background: #2f67a3;
}

.detail-content-block:not(:last-child) {
  margin-bottom: 30px !important;
  padding-bottom: 28px !important;
  border-bottom: 1px solid #e9edf2 !important;
}

.detail-content-block h2 {
  margin: 0 0 12px !important;
  color: #111a24 !important;
  font-size: clamp(28px, 2.6vw, 40px) !important;
  line-height: 1.18 !important;
  font-weight:400 !important;
  letter-spacing: -0.02em;
}

.detail-content-block p {
  max-width: 1120px !important;
  margin: 0 !important;
  color: #4d5967 !important;
  font-size: 17px !important;
  line-height: 1.85 !important;
  font-weight: 500;
}

/* Highlight CTA */
.blog-detail-highlight {
  position: relative;
  margin-top: 38px !important;
  padding: 36px 40px !important;
  border-radius: 20px !important;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 26, 36, 0.96), rgba(35, 48, 62, 0.94)),
    url("assets/images/banner.png") center/cover no-repeat !important;
}

.blog-detail-highlight::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 30px solid rgba(246, 178, 26, 0.12);
}

.blog-detail-highlight h2,
.blog-detail-highlight p,
.blog-detail-highlight a {
  position: relative;
  z-index: 2;
}

.blog-detail-highlight h2 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.2 !important;
  font-weight:400 !important;
}

.blog-detail-highlight p {
  max-width: 980px;
  margin: 0 0 24px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.blog-detail-highlight a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 9px;
  background: #2f67a3;
  color: #111a24;
  text-decoration: none;
  font-size: 14px;
  font-weight:400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.3s ease;
}

.blog-detail-highlight a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .blog-detail-container {
    width: min(100% - 36px, 1320px) !important;
  }

  .blog-detail-main-img {
    height: 310px !important;
    padding: 18px !important;
  }

  .blog-detail-content {
    padding: 34px 32px !important;
  }

  .detail-content-block h2 {
    font-size: clamp(26px, 4vw, 34px) !important;
  }

  .detail-content-block p {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }
}

@media (max-width: 600px) {
  .blog-detail-container {
    width: min(100% - 28px, 1320px) !important;
  }

  .blog-detail-hero {
    min-height: 310px !important;
  }

  .blog-detail-hero-content {
    padding: 44px 0 !important;
  }

  .blog-detail-hero h1 {
    font-size: 30px !important;
  }

  .blog-detail-hero p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

  .blog-detail-section {
    padding: 34px 0 52px !important;
  }

  .blog-detail-main-img {
    height: 235px !important;
    padding: 14px !important;
    border-radius: 17px !important;
  }

  .blog-detail-content {
    padding: 25px 22px !important;
    border-radius: 17px !important;
  }

  .detail-content-block {
    padding-left: 16px;
  }

  .detail-content-block::before {
    width: 4px;
    height: 30px;
  }

  .detail-content-block:not(:last-child) {
    margin-bottom: 24px !important;
    padding-bottom: 22px !important;
  }

  .detail-content-block h2 {
    font-size: 25px !important;
    line-height: 1.22 !important;
  }

  .detail-content-block p {
    font-size: 15.5px !important;
    line-height: 1.72 !important;
  }

  .blog-detail-highlight {
    padding: 26px 22px !important;
  }

  .blog-detail-highlight a {
    width: 100%;
  }
}

/*For other products*/
/* =====================================================
   OTHER PRODUCTS SMOOTH SLIDER
===================================================== */

.products-slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 28px;
}

.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider .product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

/* Slider buttons */
.product-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ed2216;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;

  transition: 0.3s ease;
}

.product-slider-btn:hover {
  background: #111a24;
  transform: translateY(-50%) scale(1.08);
}

.product-prev {
  left: -24px;
}

.product-next {
  right: -24px;
}

/* Card polish for slider */
.product-slider .product-card {
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-slider .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-slider .product-footer {
  margin-top: auto;
}

/* Tablet */
@media (max-width: 991px) {
  .product-slider .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .product-prev {
    left: -10px;
  }

  .product-next {
    right: -10px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-slider {
    gap: 16px;
    padding: 8px 2px 18px;
  }

  .product-slider .product-card {
    flex: 0 0 88%;
  }

  .product-slider-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .product-prev {
    left: 4px;
  }

  .product-next {
    right: 4px;
  }
}/* =====================================================
   PRODUCT DETAIL IMAGE SLIDER FIX
   Only applies inside product detail pages
===================================================== */

.detail-page .detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 42px;
  align-items: center;
}

/* Main slider box fixed */
.detail-page .detail-hero .product-slider {
  position: relative;
  width: 100%;
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  border-radius: 22px;
  background: white;
  border: 1px solid #e3e8ef;
  box-shadow: 0 18px 45px rgba(16, 32, 48, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides wrapper must not resize */
.detail-page .detail-hero .product-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Every image stays same size area */
.detail-page .detail-hero .product-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Active image only fades */
.detail-page .detail-hero .product-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Buttons fixed on image box */
.detail-page .detail-hero .product-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #ed2216;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.detail-page .detail-hero .product-slider .slider-btn:hover {
  background: #111a24;
}

.detail-page .detail-hero .product-slider .slider-btn.prev {
  left: 16px;
}

.detail-page .detail-hero .product-slider .slider-btn.next {
  right: 16px;
}

/* Tablet */
@media (max-width: 991px) {
  .detail-page .detail-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-page .detail-hero .product-slider {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .detail-page .detail-hero .product-slider {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    border-radius: 16px;
  }

  .detail-page .detail-hero .product-slider .slide {
    padding: 18px;
  }

  .detail-page .detail-hero .product-slider .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .detail-page .detail-hero .product-slider .slider-btn.prev {
    left: 10px;
  }

  .detail-page .detail-hero .product-slider .slider-btn.next {
    right: 10px;
  }
}/* =====================================================
   OTHER PRODUCTS SLIDER RESPONSIVE FIX
   Shows only one product on mobile
===================================================== */

/* Desktop slider */
.products-slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}

.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 28px;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider > .product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

/* Arrow buttons */
.products-slider-wrap .product-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: blue;
  font-size: 24px;
  font-weight:400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);

}

.products-slider-wrap .product-prev {
  left: -22px;
}

.products-slider-wrap .product-next {
  right: -22px;
}

/* Tablet: 2 cards */
@media (max-width: 991px) {
  .product-slider > .product-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .product-slider {
    gap: 20px;
  }

  .products-slider-wrap .product-prev {
    left: -8px;
  }

  .products-slider-wrap .product-next {
    right: -8px;
  }
}

/* Mobile: exactly 1 card */
@media (max-width: 650px) {
  .products-slider-wrap {
    overflow: hidden;
    padding: 0 48px;
  }

  .product-slider {
    gap: 0;
    padding: 10px 0 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-slider > .product-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: center;
    margin: 0 !important;
  }

  .products-slider-wrap .product-slider-btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
    top: 50%;
  }

  .products-slider-wrap .product-prev {
    left: 2px;
  }

  .products-slider-wrap .product-next {
    right: 2px;
  }

  .product-slider .product-card {
    min-height: auto;
  }

  .product-slider .product-media {
    height: 220px;
  }

  .product-slider .product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .products-slider-wrap {
    padding: 0 42px;
  }

  .products-slider-wrap .product-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .product-slider .product-media {
    height: 190px;
  }

  .product-slider .product-title {
    font-size: 23px;
  }

  .product-slider .product-body p {
    font-size: 15px;
    line-height: 1.55;
  }
}/* =====================================================
   FACILITY SECTION TEXT VISIBILITY FIX
   Put at the VERY END of style.css
===================================================== */

.facility-card {
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 16px !important;
  overflow: hidden !important;
}

/* Force facility titles to black/dark */
.facility-card h3 {
  color: #111a24 !important;
  background: transparent !important;
  font-size: 24px !important;
  font-weight:400 !important;
  line-height: 1.25 !important;
  margin: 14px 0 6px !important;
  padding: 0 !important;
  text-align: center !important;
}

/* Better image sizing */
.facility-media {
  width: 100% !important;
  height: 280px !important;
  min-height: unset !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  background: #ffffff !important;
}

.facility-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Stop blue browser selection from confusing you while checking */
.facility-card h3::selection,
.facility-card p::selection,
.facility-card span::selection {
  background: #dbeafe;
  color: #111a24;
}

/* Mobile */
@media (max-width: 767px) {
  .facility-card h3 {
    font-size: 22px !important;
    text-align: center !important;
  }

  .facility-media {
    height: 230px !important;
  }
}/* =========================================
   TOP PRODUCT TITLE FULL BACKGROUND FIX
========================================= */
/*
.top-product-card {
  background: #ffffff !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}

.top-product-card img {
  width: 100% !important;
  height: 360px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff !important;
  padding: 22px !important;
  display: block !important;
  margin: 0 !important;
}*/

/* Full title bar */
/*.top-product-card h2 {
  width: 100% !important;
  margin: 0 !important;
  padding: 18px 20px !important;
  background: #1f5c99 !important;  
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight:400 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 78px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-sizing: border-box !important;
}*/

/* Better layout */
.top-products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .top-products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .top-product-card img {
    height: 250px !important;
    padding: 16px !important;
  }

  .top-product-card h2 {
    font-size: 19px !important;
    min-height: 64px !important;
    padding: 14px 16px !important;
  }
}/* =====================================================
   FINAL BLOG PAGE RESPONSIVE FIX
   Put this at the VERY END of blog.php style
===================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.se-blog-page {
  overflow-x: hidden;
}

.blog-container {
  width: min(1180px, 92%) !important;
  margin: 0 auto !important;
}

/* Desktop */
.blog-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px !important;
  gap: 28px !important;
  align-items: start !important;
}

.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.blog-grid-area {
  min-width: 0 !important;
}

.blog-detail-sidebar {
  min-width: 0 !important;
}

/* Featured blog responsive control */
.featured-blog-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

.featured-blog-img {
  min-height: 360px !important;
}

.featured-blog-img img {
  min-height: 360px !important;
  object-fit: cover !important;
}

/* Blog cards */
.blog-card {
  width: 100% !important;
  min-width: 0 !important;
}

.blog-card-img {
  height: 220px !important;
}

.blog-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Sidebar */
.blog-detail-sidebar {
  position: sticky !important;
  top: 95px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.detail-sidebar-box,
.detail-sidebar-cta {
  width: 100% !important;
  overflow: hidden !important;
}

/* Recent posts */
.detail-recent-post {
  display: grid !important;
  grid-template-columns: 72px 1fr !important;
  gap: 12px !important;
  align-items: center !important;
}

.detail-recent-post img {
  width: 72px !important;
  height: 62px !important;
  object-fit: contain !important;
  background: #eef1f5 !important;
  padding: 5px !important;
  border-radius: 10px !important;
}

.detail-recent-post span {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .blog-layout {
    grid-template-columns: 1fr !important;
  }

  .blog-detail-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .detail-sidebar-cta {
    grid-column: 1 / -1 !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .blog-container {
    width: min(100% - 28px, 1180px) !important;
  }

  .blog-hero-section {
    min-height: auto !important;
  }

  .blog-hero-content {
    padding: 52px 0 !important;
  }

  .blog-hero-content h1 {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }

  .blog-hero-content p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

  .featured-blog-section,
  .blog-main-section,
  .blog-enquiry-section {
    padding: 50px 0 !important;
  }

  .featured-blog-card {
    grid-template-columns: 1fr !important;
  }

  .featured-blog-img,
  .featured-blog-img img {
    min-height: 240px !important;
    height: 240px !important;
  }

  .featured-blog-content {
    padding: 24px !important;
  }

  .blog-layout {
    display: block !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .section-heading.left {
    text-align: left !important;
    margin-bottom: 22px !important;
  }

  .section-heading.left h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  .section-heading.left p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

  .blog-card-img {
    height: 210px !important;
  }

  .blog-card-content {
    padding: 20px !important;
  }

  .blog-card-content h3 {
    font-size: 22px !important;
    line-height: 1.28 !important;
  }

  .blog-card-content p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .blog-detail-sidebar {
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .detail-sidebar-box,
  .detail-sidebar-cta {
    padding: 22px !important;
    border-radius: 18px !important;
  }

  .detail-sidebar-box h3,
  .detail-sidebar-cta h3 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .blog-enquiry-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 26px !important;
  }

  .blog-enquiry-box h2 {
    font-size: 28px !important;
  }

  .enquiry-btn {
    width: 100% !important;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .blog-container {
    width: min(100% - 24px, 1180px) !important;
  }

  .blog-hero-content h1 {
    font-size: 30px !important;
  }

  .blog-eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }

  .blog-card-img {
    height: 190px !important;
  }

  .detail-recent-post {
    grid-template-columns: 64px 1fr !important;
  }

  .detail-recent-post img {
    width: 64px !important;
    height: 58px !important;
  }

 
}




@media screen and (max-width:767px){
    #products p, #other-products p{
        display:none;
    } .product-body {
    padding: 0 20px 26px;
  }
  #products .read-more-btn, #other-products .read-more-btn{
  float: right;
  float: none !important;
  justify-content: center;
  display: flex;
  margin-top: 20px;
}
.product-media{
    height:215px;
} .products-slider-wrap {
    padding: 0 0px;
  }
   #other-products .product-card{
      box-shadow:none;
  }

}
.showcase-image img {
  display: none !important;
}

.showcase-image img.active {
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  max-width: 75% !important;
  max-height: 75% !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

h1,h2,h3,h4,h5,h6{
    font-weight:400 !important;
}

 .topbar {
    transition: all 0.3s ease;
    z-index: 9999;
  }

  /* Fixed only after scroll */
  .topbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  
  
  @media screen and (max-width:767px){
      .section-title{
              margin: 0px 0 10px;
      }
      .products-slider-wrap{
              margin-top: 5px;
      }
      .about-large--reference{
          padding: 0;
              background: transparent;
      }    .about-copy--reference h2, .facility-section h2, .help-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 9px;
    }
    #video {
    padding-bottom: 0 !important;
    padding-top: 20px !important;
}
    .review-title {
        font-size: 1.4rem;
    }
    .review-header{
        margin-bottom: 10px;
    }    .review-card {
        min-width: 85%;
        max-width: 85%;
        padding: 42px 16px 14px;
    }
        .footer {
        padding: 30px 0 20px;
    }
        .footer-grid {
        gap: 20px;
    }
    .footer-bottom{
            padding-top: 25px;    padding-bottom: 20px;
    }
    .about-gallery--reference{
            width: 100%;
    }
        .breadcrumb {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .about-intro{
        margin-bottom: 19px !important;
    }
    .info-table{
        margin-bottom: 16px;
    }
    .industry-card h3{
            margin: 1px 10px;
    text-transform: uppercase;
    padding: 17px 10px 9px;
    }
      .stats-row {
        display: block;
        padding: 0 !important;
        border-top: none;
    }
    .about-page {
    padding: 45px 0 30px;
    }
    
  }
/* iPhone navbar final fix */
.nav-toggle {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  display: block !important;
}

@media (max-width: 991px) {
  .custom-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    z-index: 9998 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-toggle:checked ~ .custom-nav {
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  .nav-toggle-label {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    right: 15px !important;
    top: -45px !important;
    z-index: 9999 !important;
  }

  .custom-header-inner,
  .topbar,
  .site-header {
    position: relative !important;
    overflow: visible !important;
  }
  .topbar{
      z-index:9 !important;
  }
  .custom-nav-menu{
    background: #fff;
}
.custom-nav{
    background: transparent !important;
    margin-top: -32px !important;
}
.topbar {
  background: #fff;}
  .custom-nav{
      box-shadow: none;
  }
  .topbar-btn{
          margin-bottom: 10px;
  }
}









