* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --brand-blue: #1b82c6;
  --brand-blue-dark: #14669d;
  --secondary-blue: #1b82c6;
  --accent-gold: #dcdaf0;
  --dark-navy: #14314a;
  --light-lavender: #dcdaf0;
  --neutral-dark: #333;
  --neutral-light: #f9f9fb;

  --header-transition: 0.35s ease;
}

body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

.page-content {
  padding-top: 40px;
}

/* =========================================================
   #header wraps EVERYTHING: top bar, logo row, and navbar.
   ========================================================= */
#header {
  position: relative;
  z-index: 999;
  width: 100%;
  background: #fff;
  transition:
    box-shadow var(--header-transition),
    background var(--header-transition);
}

#header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ----------------------------- */
/* LOGO ROW                      */
/* ----------------------------- */
.header-main {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 8px 0 35px;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Desktop-only collapse-on-scroll (guarded in JS to only fire on desktop,
   but kept scoped here too so it never accidentally applies on mobile) */
@media (min-width: 992px) {
  .header-main.hide-header {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
  }
}

.header-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
}

.navbar-brand img.logo {
  width: 110px;
  max-width: 100%;
  height: auto;
  transition: width var(--header-transition);
}

#header.scrolled .navbar-brand img.logo {
  width: 80px;
}

.nav-top-media img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
    NAVBAR
   =========================== */
.navbar {
  padding: 0 !important;
  background: var(--brand-blue) !important;
  width: 100%;
}

@media (min-width: 992px) {
  .navbar {
    margin-top: -25px; /* floating overlap effect */
  }
}

#header.scrolled .navbar {
  margin-top: 0;
}

.navbar-nav {
  width: 100%;
  justify-content: start;
}

.navbar .nav-link {
  color: #fff !important;
  padding: 16px 14px !important;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}

.dropdown-toggle::after {
  border-top: none !important;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 13px;
  color: var(--neutral-dark);
}

.dropdown-item:hover {
  background: var(--brand-blue);
  color: #fff;
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropend:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: -0.5rem;
    left: 100%;
  }
}

/* =========================================================
   MOBILE — logo row + toggler
   ========================================================= */
@media (max-width: 991px) {
  .header-main {
    padding: 10px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
  }
  .header-main-wrapper {
    justify-content: space-between;
    width: 100%;
  }
  .nav-top-media {
    display: none !important;
  }

  /* Navbar sits invisibly on top of the logo row so the toggler
     lands on the right, in line with the logo on the left. */
  .navbar {
    background: transparent !important;
    padding: 0 !important;
    margin-top: -70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    pointer-events: none;
  }

  .navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    pointer-events: none;
  }

  .navbar-toggler {
    border: none;
    box-shadow: none !important;
    background: transparent;
    pointer-events: auto;
  }

  .navbar-toggler i {
    color: var(--brand-blue);
    font-size: 24px;
  }

  .offcanvas {
    pointer-events: auto !important;
  }

  /* Fix: the mega menu's inner .container also matches
     `.navbar .container { pointer-events: none; }`,
     which kills clicks on its links. Force it back on. */
  .offcanvas .container {
    pointer-events: auto !important;
  }

  /* Compact scrolled state on mobile: shrink the logo instead of
     collapsing the whole row (row height is load-bearing for the
     toggler's overlay position) */
  #header.scrolled .header-main {
    padding: 6px 0;
    min-height: 56px;
  }
  #header.scrolled .navbar-brand img.logo {
    width: 110px;
  }
  #header.scrolled .navbar {
    margin-top: -56px;
    min-height: 56px;
  }
}

/* =========================================================
   MOBILE OFFCANVAS — tuned
   ========================================================= */
@media (max-width: 991px) {
  .offcanvas {
    width: min(300px, 85vw);
  }

  .offcanvas-header {
    background: #d6efff;
    padding: 16px 20px;
    align-items: center;
  }

  .offcanvas-header .navbar-brand img {
    width: 90px;
    height: auto;
  }

  .offcanvas-header .btn-close {
    opacity: 0.9;
  }

  .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .offcanvas-body .navbar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
  }

  .offcanvas .nav-item {
    border-bottom: 1px solid #eee;
  }

  .offcanvas .nav-link {
    color: var(--neutral-dark) !important;
    padding: 14px 20px !important;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .offcanvas .dropdown-toggle::after {
    display: inline-block;
    content: "\f107"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--brand-blue);
    transition: transform 0.25s ease;
  }

  .offcanvas .dropdown-toggle.show::after,
  .offcanvas .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Inside offcanvas, dropdowns expand inline instead of floating */
  .offcanvas .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border: none;
    background: var(--neutral-light);
    display: none;
    width: 100%;
    margin: 0;
    padding: 4px 0;
  }

  .offcanvas .dropdown-menu.show {
    display: block;
  }

  .offcanvas .dropdown-item {
    padding: 10px 20px 10px 32px;
    font-size: 13px;
    color: #555;
    white-space: normal;
  }

  .offcanvas .dropdown-item:hover,
  .offcanvas .dropdown-item:active {
    background: var(--brand-blue);
    color: #fff;
  }

  /* Mega menu collapses into a single-column list on mobile */
  .offcanvas .mega-menu {
    position: static !important;
  }
  .offcanvas .mega-menu .container {
    padding: 0;
  }
  .offcanvas .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .offcanvas .mega-menu-item {
    padding: 10px 20px 10px 32px;
    font-size: 13px;
    line-height: 1.4;
  }

  /* Sticky enquiry button at the bottom of the panel */
  .offcanvas-enquiry {
    border-top: 1px solid #eee;
    background: #fff;
  }

  .offcanvas-enquiry .ui-border-btn-wrap {
    width: 100%;
    display: block;
    background: none;
    border: none;
    padding: 0;
  }

  .offcanvas-enquiry .ui-border-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background: var(--brand-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.2s ease;
  }

  .offcanvas-enquiry .ui-border-btn:hover {
    background: var(--brand-blue-dark);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  #header,
  .header-main,
  .navbar,
  .navbar-brand img.logo,
  .offcanvas {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------------------------------------- */
/* ------------Banner-Section------------- */
/* -------------------------------------- */
.banner-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../images/home/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0d0d0d 0%,
    rgba(13, 13, 13, 0.92) 25%,
    rgba(13, 13, 13, 0.6) 45%,
    rgba(13, 13, 13, 0.15) 62%,
    rgba(13, 13, 13, 0) 75%
  );
  z-index: 1;
}

.banner-hero .container {
  position: relative;
  z-index: 2;
}

.banner-hero h1 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 600px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.banner-hero a {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-right: 12px;
  margin-top: 20px;
}

/* Filled Button */
.banner-hero .btn-primary-hero {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.banner-hero .btn-primary-hero:hover {
  background: transparent;
  color: #fff;
}

/* Outline Button */
.banner-hero .btn-outline-hero {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.banner-hero .btn-outline-hero:hover {
  background: #fff;
  color: #000;
}

/* Tablet & below */
@media (max-width: 991px) {
  .banner-hero::before {
    background: linear-gradient(
      90deg,
      #0d0d0d 0%,
      rgba(13, 13, 13, 0.85) 50%,
      rgba(13, 13, 13, 0.5) 100%
    );
  }
}

/* Mobile: different image + bottom-aligned content */
@media (max-width: 767px) {
  .banner-hero {
    background-image: url("../images/home/banner-mobile.webp");
    align-items: flex-end;
    min-height: 480px;
    padding-bottom: 40px;
  }

  .banner-hero::before {
    background: linear-gradient(
      180deg,
      rgba(13, 13, 13, 0) 0%,
      rgba(13, 13, 13, 0.55) 45%,
      rgba(13, 13, 13, 0.9) 100%
    );
  }

  .banner-hero h1 {
    font-size: 1.5rem;
    max-width: 100%;
  }

  .banner-hero a {
    margin-right: 8px;
    margin-top: 12px;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }
}

.ui-border-btn {
  position: relative;
  display: inline-block;
  padding: 5px 30px;
  border: 2px solid #fefefe;
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
}

.ui-border-btn::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background: var(--brand-blue);
  transition: 0.3s ease-in-out;
  transform: scaleY(1);
}

.ui-border-btn:hover::before {
  transform: scaleY(0);
}

.ui-border-btn::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background: var(--brand-blue);
  transition: 0.3s ease-in-out;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.ui-border-btn:hover::after {
  transform: scaleX(0);
}

.ui-border-btn span {
  position: relative;
  z-index: 3;
}

.ui-border-btn-wrap {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mega-dropdown {
    position: static;
  }

  .mega-menu {
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  }

  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(
      3,
      1fr
    ); /* CHANGE column count here if the item count changes a lot */
    gap: 6px 30px;
  }

  .mega-menu-item {
    white-space: normal; /* let longer product names wrap instead of overflowing a column */
  }
}

@media (max-width: 991px) {
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    padding: 0;
  }

  .mega-menu-grid {
    display: block;
  }
}

/* ---------------------------------------- */
/* -----------ABOUT_US_HOMEPAGE----------- */
/* -------------------------------------- */

.about-us-section {
  padding: 80px 0;
  background: #fff;
}

.about-us-section h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-navy);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.about-us-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--brand-blue);
  margin-top: 18px;
}

/* Counter */
.counter-area-about {
  padding-right: 20px;
}

.counter-box-about h5 {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 5px;
}

.counter-box-about p {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Content */
.text-about-preveen {
  padding: 0 20px;
}

.text-about-preveen p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.text-about-preveen p strong {
  color: var(--dark-navy);
}

.know-more {
  display: inline-block;
  padding: 8px 18px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s ease;
}

.know-more:hover {
  background: var(--dark-navy);
  color: #fff;
}

/* Image */
.about-us-section img {
  border-radius: 8px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
  .about-us-section {
    padding: 60px 0;
  }

  .about-us-section h2 {
    font-size: 25px;
    margin-bottom: 35px;
  }

  .counter-area-about {
    margin-bottom: 30px;
  }

  .text-about-preveen {
    padding: 25px 0;
  }

  .about-us-section img {
    margin-top: 20px;
  }
}

/* ------------------------------ */
.group-of-companies {
  background: #fff;
}

.logo-grid {
  --border: #dddddd;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Desktop */
@media (min-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

  .group-intro {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .logo-tile:first-of-type {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Intro */

.group-intro {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-subtitle {
  color: #004777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.group-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-navy);
  text-transform: uppercase;
}

.group-intro p {
  color: #5d6774;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

/* Logo cards */

.logo-tile {
  background: #fff;
}

.logo-tile a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  padding: 25px;
  background: #fff;
}

.logo-tile img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;

  transition: 0.35s;
}

.logo-tile:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Bottom Label */

.logo-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #2d6f9d, #004777);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transform: translateY(100%);
  transition: 0.35s;
}

.logo-tile:hover .logo-label {
  transform: translateY(0);
}

.logo-label i {
  font-size: 13px;
}

/* Tablet */

@media (max-width: 991px) {
  .group-intro {
    grid-column: 1/-1;
    padding: 35px;
  }

  .group-intro h2 {
    font-size: 38px;
  }

  .group-intro p {
    font-size: 16px;
  }

  .logo-tile a {
    min-height: 150px;
  }
}

/* Mobile */

@media (max-width: 575px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .group-intro {
    padding: 25px;
  }

  .group-intro h2 {
    font-size: 30px;
  }

  .logo-tile a {
    min-height: 130px;
  }
}

/* ------------------------------------------ */

.cj {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.cj-para {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------------------------------ */
/* ----------------FAQ---------------------- */
/* ---------------------------------------- */

.faq-section {
  padding: 60px 15px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-navy);
  text-transform: uppercase;
}

.faq-header p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

.faq-accordion .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: #1f2937;
  background-color: #ffffff;
  padding: 18px 20px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--brand-blue);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-blue);
}

.faq-accordion .accordion-button::after {
  filter: none;
  transition: transform 0.35s ease;
}

.faq-accordion .accordion-collapse {
  transition: height 0.35s ease;
}

.faq-accordion .accordion-body {
  padding: 18px 20px;
  color: #4b5563;
  line-height: 1.6;
  background-color: #ffffff;
}

.faq-accordion .accordion-collapse.collapse {
  transition: height 0.35s ease;
}

/* ------------------------------- */

.footer-sec {
  background: #181817;
  color: #b9b9b8;
  padding: 60px 0px 0px 0px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-sec h5 {
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-box {
  margin-bottom: 35px;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-box ul li:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-box p,
.footer-box span {
  display: block;
  margin-bottom: 10px;
  color: #b9b9b8;
}

.footer-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9b9b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #fff;
}

.footer-box i {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #b9b9b8;
  margin: 0;
}

.footer-bottom a {
  color: #b9b9b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.back-top i {
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-sec {
    padding: 50px 0px 0px 0px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-box {
    margin-bottom: 30px;
  }
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-location i {
  color: #fff;
  font-size: 15px;
}

/* --------------------------- */
/* ------Enquiry-Modal------- */
/* ------------------------- */

.custom-modal {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16, 40, 60, 0.18);
  background: #ffffff;
}

.custom-modal .modal-header {
  padding: 28px 28px 0;
  border: 0;
  position: relative;
  display: block;
}

.custom-modal .eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  color: #0d5e96;
  margin: 0 0 4px;
}

.custom-modal .modal-title {
  font-size: 23px;
  font-weight: 700;
  color: #16232f;
  letter-spacing: -0.2px;
  margin: 0;
}

.custom-modal .modal-subtitle {
  font-size: 14px;
  color: #5b6b78;
  margin: 6px 0 0;
  line-height: 1.5;
}

.custom-modal .btn-close {
  position: absolute;
  right: 22px;
  top: 24px;
  width: 30px;
  height: 30px;
  background-size: 12px;
  border-radius: 8px;
  opacity: 1;
  background-color: #eef1f4;
  transition: background-color 0.2s ease;
}
.custom-modal .btn-close:hover {
  background-color: #e3e8ec;
}
.custom-modal .btn-close:focus {
  box-shadow: 0 0 0 3px rgba(13, 94, 150, 0.18);
}

.custom-modal .modal-body {
  padding: 24px 28px 28px;
}

/* Fields */
.field {
  position: relative;
  margin-bottom: 18px;
}

.field label {
  position: absolute;
  left: 15px;
  top: 14px;
  font-size: 15px;
  color: #5b6b78;
  pointer-events: none;
  transition: 0.15s ease;
  background: #ffffff;
  padding: 0 4px;
}

.custom-modal .form-control,
.custom-modal textarea.form-control {
  border-radius: 9px;
  border: 1.5px solid #e3e8ec;
  padding: 14px 15px;
  font-size: 15px;
  color: #16232f;
  box-shadow: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  background: #ffffff;
}

.custom-modal .form-control {
  height: 50px;
}

.custom-modal textarea.form-control {
  height: auto;
  min-height: 96px;
  resize: vertical;
}

.custom-modal .form-control::placeholder {
  color: transparent;
}

.custom-modal .form-control:focus {
  border-color: #0d5e96;
  box-shadow: 0 0 0 4px rgba(13, 94, 150, 0.1);
}

.field .form-control:focus + label,
.field .form-control:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 12px;
  font-weight: 600;
  color: #0d5e96;
}

.field .invalid-msg {
  font-size: 12.5px;
  color: #c2483a;
  margin-top: 6px;
  display: none;
}

/* Dummy captcha block */
.captcha-box {
  border: 1.5px solid #e3e8ec;
  border-radius: 9px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  background: #fafbfc;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 2px solid #c6cdd3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.15s ease;
}

.captcha-checkbox svg {
  opacity: 0;
  transition: 0.15s ease;
}

.captcha-checkbox.checked {
  background: #0d5e96;
  border-color: #0d5e96;
}
.captcha-checkbox.checked svg {
  opacity: 1;
}

.captcha-text {
  font-size: 14px;
  color: #16232f;
  user-select: none;
  cursor: pointer;
}

.captcha-badge {
  text-align: right;
  line-height: 1.2;
}

.captcha-badge .g {
  font-size: 14px;
  font-weight: 700;
  color: #4285f4;
}
.captcha-badge .g span:nth-child(2) {
  color: #ea4335;
}
.captcha-badge .g span:nth-child(3) {
  color: #fbbc05;
}
.captcha-badge .g span:nth-child(4) {
  color: #4285f4;
}
.captcha-badge .g span:nth-child(5) {
  color: #34a853;
}
.captcha-badge .g span:nth-child(6) {
  color: #ea4335;
}

.captcha-badge small {
  font-size: 9.5px;
  color: #5b6b78;
  display: block;
}

/* Submit button */
.custom-modal .btn-primary {
  height: 50px;
  border: none;
  border-radius: 9px;
  background: #0d5e96;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1px;
  transition:
    background 0.2s ease,
    transform 0.05s ease;
}

.custom-modal .btn-primary:hover {
  background: #094573;
}
.custom-modal .btn-primary:active {
  transform: translateY(1px);
}

.custom-modal .fine-print {
  font-size: 12px;
  color: #5b6b78;
  text-align: center;
  margin: 14px 0 0;
}

/* ------------------------------------ */
/* -----------Products_Page----------- */
/* ---------------------------------- */

.hsm-pdp__full-img-wrap {
  padding: 20px 0;
}

.hsm-pdp__full-img {
  display: flex;
  justify-content: center;
}

.hsm-pdp__full-img img {
  width: 100%;
  min-width: 280px;
  max-width: 700px !important;
  height: auto;
  display: block;
  margin-bottom: 60px;
}

.hsm-pdp__extra-img-wrap {
  padding: 10px 0;
}

.hsm-pdp__extra-img {
  display: flex;
  justify-content: center;
}

.hsm-pdp__extra-img img {
  width: 300px; /* fixed, won't stretch */
  height: auto;
  flex: 0 0 auto; /* prevents flex from resizing it */
  display: block;
}

#productCarousel .carousel-control-prev-icon,
#productCarousel .carousel-control-next-icon {
  background-color: transparent;
  filter: none;
}

#productCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23146c94' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#productCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23146c94' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.rx-page {
  --rx-ink: #0e2a3f;
  --rx-ink-soft: #4c5c68;
  --rx-accent: #146c94;
  --rx-accent-dark: #0e5476;
  --rx-brass: #b8793b;
  --rx-bg: #f6f9fa;
  --rx-panel: #ffffff;
  --rx-line: #dde4e8;
  --rx-line-strong: #c4cfd5;
  --rx-radius: 10px;
  --rx-font-display: "Space Grotesk", sans-serif;
  --rx-font-body: "Inter", sans-serif;
  --rx-font-mono: "IBM Plex Mono", monospace;

  font-family: var(--rx-font-body);
  color: var(--rx-ink);
  background: var(--rx-bg);
  -webkit-font-smoothing: antialiased;
}

.rx-page * {
  box-sizing: border-box;
}
.rx-page img {
  max-width: 100%;
  display: block;
}
.rx-page a {
  text-decoration: none;
}

.rx-page .rx-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.rx-page .rx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rx-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rx-accent-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.rx-page .rx-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--rx-brass);
  display: inline-block;
}

/* =========================================================
   HERO / PRODUCT DETAIL
   ========================================================= */
.rx-page .rx-hero {
  position: relative;
  background: linear-gradient(180deg, var(--rx-bg) 0%, var(--rx-bg) 100%);
  padding: 88px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--rx-line);
}

/* faint blueprint grid, contained and subtle */
.rx-page .rx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rx-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--rx-line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 12%,
    #000 60%,
    transparent
  );
  pointer-events: none;
}

.rx-page .rx-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.rx-page .rx-title {
  font-family: var(--rx-font-display);
  font-size: clamp(32px, 4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--rx-ink);
  margin: 0 0 10px;
}
.rx-page .rx-title-sub {
  display: block;
  font-family: var(--rx-font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--rx-accent-dark);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.rx-page .rx-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--rx-ink-soft);
  max-width: 46ch;
  margin: 20px 0 32px;
}

.rx-page .rx-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 16px;
}
.rx-page .rx-list li {
  position: relative;
  padding-left: 32px;
  line-height: 1.6;
  font-size: 14.5px;
  color: var(--rx-ink);
}
.rx-page .rx-list li strong {
  font-weight: 600;
}
.rx-page .rx-list .rx-check {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(20, 108, 148, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rx-page .rx-list .rx-check svg {
  width: 11px;
  height: 11px;
}

.rx-page .rx-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.rx-page .rx-btn {
  font-family: var(--rx-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.rx-page .rx-btn-primary {
  background: var(--rx-ink);
  color: #fff;
}
.rx-page .rx-btn-primary:hover {
  background: var(--rx-accent-dark);
}
.rx-page .rx-btn-ghost {
  background: transparent;
  color: var(--rx-ink);
  border-color: var(--rx-line-strong);
}
.rx-page .rx-btn-ghost:hover {
  border-color: var(--rx-ink);
}

/* ---- image / technical frame ---- */
.rx-page .rx-media {
  position: relative;
}
.rx-page .rx-media-frame {
  position: relative;
  border-radius: var(--rx-radius);
  overflow: hidden;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  box-shadow: 0 20px 44px -18px rgba(14, 42, 63, 0.22);
}
.rx-page .rx-media-frame img {
  width: 100%;
  object-fit: cover;
}

/* corner brackets — technical-drawing motif */
.rx-page .rx-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--rx-brass);
  z-index: 2;
}
.rx-page .rx-corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.rx-page .rx-corner-br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.rx-page .rx-nameplate .rx-nameplate-label {
  color: #9fd2e8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  margin-bottom: 4px;
}
.rx-page .rx-nameplate b {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991px) {
  .rx-page .rx-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .rx-page .rx-nameplate {
    left: 16px;
    bottom: -24px;
  }
}
@media (max-width: 560px) {
  .rx-page .rx-hero {
    padding: 60px 0 64px;
  }
}

/* =========================================================
   SPEC DATASHEET
   ========================================================= */
.rx-page .rx-datasheet {
  background: var(--rx-panel);
  padding: 64px 0;
  border-bottom: 1px solid var(--rx-line);
}
.rx-page .rx-datasheet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.rx-page .rx-datasheet-title {
  font-family: var(--rx-font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.rx-page .rx-datasheet-note {
  font-size: 13px;
  color: var(--rx-ink-soft);
  font-family: var(--rx-font-mono);
}

.rx-page .rx-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  overflow: hidden;
}
.rx-page .rx-spec-table tr {
  border-bottom: 1px solid var(--rx-line);
}
.rx-page .rx-spec-table tr:last-child {
  border-bottom: none;
}
.rx-page .rx-spec-table tr:nth-child(even) {
  background: #fafcfd;
}
.rx-page .rx-spec-table td {
  padding: 16px 22px;
  font-size: 14px;
  vertical-align: top;
}
.rx-page .rx-spec-table td:first-child {
  width: 34%;
  font-weight: 600;
  color: var(--rx-ink);
  font-family: var(--rx-font-body);
}
.rx-page .rx-spec-table td:last-child {
  font-family: var(--rx-font-mono);
  color: var(--rx-accent-dark);
  font-weight: 500;
}

@media (max-width: 640px) {
  .rx-page .rx-spec-table td {
    padding: 14px 16px;
    font-size: 13px;
  }
  .rx-page .rx-spec-table td:first-child {
    width: 44%;
  }
}

/* =========================================================
   PRODUCT RANGE / SLIDER
   ========================================================= */
.rx-products {
  background: var(--rx-bg);
  padding: 80px 0 88px;
}
.rx-products-head {
  text-align: left;
  max-width: 560px;
  margin-bottom: 44px;
}
.rx-products-title {
  font-family: var(--rx-font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 10px;
}
.rx-products-sub {
  color: var(--rx-ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
.rx-product-slider {
  padding-bottom: 8px;
}
.rx-product-card {
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.rx-product-card:hover {
  border-color: var(--rx-line-strong);
  box-shadow: 0 18px 34px -20px rgba(14, 42, 63, 0.28);
  transform: translateY(-3px);
}
.rx-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/0.82;
}
.rx-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rx-product-card:hover .rx-card-media img {
  transform: scale(1.05);
}
.rx-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 42, 63, 0.88);
  color: #fff;
  font-family: var(--rx-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 5px;
}
.rx-card-body {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--rx-line);
}
.rx-card-name {
  font-family: var(--rx-font-display);
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--rx-ink);
}
.rx-card-spec {
  font-family: var(--rx-font-mono);
  font-size: 12.5px;
  color: var(--rx-ink-soft);
  margin: 0 0 14px;
}
.rx-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rx-accent-dark);
}
.rx-card-link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}
.rx-product-card:hover .rx-card-link svg {
  transform: translateX(3px);
}
.rx-nav-btn {
  width: 46px !important;
  height: 46px !important;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line-strong);
  border-radius: 50%;
  box-shadow: 0 6px 16px -8px rgba(14, 42, 63, 0.25);
  transition: 0.25s ease;
}
.rx-nav-btn::after {
  color: var(--rx-ink);
  font-size: 15px !important;
  font-weight: 700;
}

/* ------------------------------------- */

.hs-martin-usa {
  padding: 60px 0;
  background-color: #ffffff;
}

.hs-martin-usa .hsu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hs-martin-usa .logo-hs-martin-usa {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.hs-martin-usa .logo-hs-martin-usa img {
  max-width: 220px;
  height: auto;
}

.hs-martin-usa .about-hs-martin-usa {
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
}

.hs-martin-usa .about-hs-martin-usa p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin: 0;
    padding-top: 20px;
}

/* Grid layout - 3 images in a row, centered */
.hs-martin-usa .hsu-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card styling shared by all three product cards */
.hs-martin-usa .img-one-hsu,
.hs-martin-usa .img-two-hsu,
.hs-martin-usa .img-three-hsu {
  background-color: #f7f9fb;
  border: 1px solid #e2e8ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(27, 130, 198, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  display: grid;
  grid-template-rows: auto auto;
}

.hs-martin-usa .img-one-hsu:hover,
.hs-martin-usa .img-two-hsu:hover,
.hs-martin-usa .img-three-hsu:hover {
  box-shadow: 0 6px 18px rgba(27, 130, 198, 0.18);
  transform: translateY(-3px);
}

.hs-martin-usa .hsu-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.hs-martin-usa .hsu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hs-martin-usa .hsu-caption {
  padding: 15px 18px 20px;
  text-align: center;
}

.hs-martin-usa .hsu-caption p {
  font-size: 15px;
  font-weight: 600;
  color: #1b82c6;
  margin: 0 0 5px;
  line-height: 1.4;
}

.hs-martin-usa .hsu-caption span {
  display: block;
  font-size: 13px;
  color: #666666;
}

/* More details link section */
.hs-martin-usa .hsu-more-details {
  max-width: 1100px;
  margin: 0px auto 0;
  text-align: center;
  padding-top: 0px;
}

.hs-martin-usa .hsu-more-details p {
  font-size: 15px;
  color: #444444;
  margin: 0;
}

.hs-martin-usa .hsu-more-details a {
  color: #1b82c6;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #1b82c6;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.hs-martin-usa .hsu-more-details a:hover {
  color: #146ba3;
  border-color: #146ba3;
}

/* Responsive */
@media (max-width: 991px) {
  .hs-martin-usa .hsu-products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
  }

  .hs-martin-usa .hsu-img-wrap {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .hs-martin-usa {
    padding: 40px 0;
  }

  .hs-martin-usa .hsu-img-wrap {
    height: 200px;
  }

  /* .hs-martin-usa .hsu-more-details {
    margin-top: 30px;
    padding-top: 20px;
  } */

  .hs-martin-usa .hsu-more-details p {
    font-size: 14px;
  }
}

/* -------------------------------- */
/* ------------Three_Cards-------- */
/* ------------------------------ */

.three-cards-hs {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 20px auto;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.left-side-image-tc {
  flex: 0 0 300px;
}

.left-side-image-tc img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.right-side-content-tc {
  flex: 1;
}

.right-side-content-tc h5 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.right-side-content-tc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.right-side-content-tc ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.right-side-content-tc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #0077b6;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .three-cards-hs {
    flex-direction: column;
  }

  .left-side-image-tc {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* ------------------------ */

.one-image-hs {
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.one-image-hs img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.one-image-hs-flow-content {
  padding: 24px;
}

.one-image-hs-flow-content h5 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.one-image-hs-flow-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.one-image-hs-flow-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.one-image-hs-flow-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #0077b6;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .one-image-hs img {
    height: 220px;
  }

  .one-image-hs-flow-content ul {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------- */

.ss-two-images {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  align-items: stretch;
}

.big_landscape-pic {
  flex: 2;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.big_landscape-pic img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.portiat-image-ss {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portiat-image-ss img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.big_landscape-pic h5,
.portiat-image-ss h5 {
  margin: 0;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-two-images {
    flex-direction: column;
  }

  .big_landscape-pic img,
  .portiat-image-ss img {
    height: 220px;
  }
}

/* --------------------------------- */

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

/* Hero / intro */
.contact-hero {
  color: #1a1a1a;
  padding: 60px 20px 30px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  color: #666;
}

/* Section heading (shared) */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 50px 0 24px;
  border-left: 4px solid #0077b6;
  padding-left: 12px;
}

/* Address cards */
.address-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}

.address-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.address-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0077b6;
  background: #e8f4fb;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.address-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.address-card .sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.address-card p {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 10px;
}

.address-card .email {
  font-size: 14.5px;
  font-weight: 500;
}

/* Map + form layout */
.map-form-grid {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}

.map-card {
  flex: 1.1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.form-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 28px;
}

.form-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.form-card .form-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fafafa;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0077b6;
  background: #fff;
}

.submit-btn {
  width: 100%;
  background: #0077b6;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.submit-btn:hover {
  background: #005f8f;
}

footer.page-footer {
  text-align: center;
  font-size: 13px;
  color: #999;
  padding: 40px 20px 30px;
}

/* Responsive */
@media (max-width: 800px) {
  .address-grid,
  .map-form-grid {
    flex-direction: column;
  }

  .map-card {
    min-height: 300px;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .about-section {
    padding: 28px 22px;
  }

  .contact-hero h1 {
    font-size: 26px;
  }
}

/* ---------------------------------- */

.va-career {
  background: #fff;
  padding: 60px 20px;
}

.va-career .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.career-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.career-content .intro-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  max-width: 720px;
  margin: 0 auto 32px;
}

.career-content .intro-text strong {
  color: #0077b6;
}

.career-apply {
  background: #f7f8fa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.career-apply h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.career-apply p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 14px;
}

.career-mail {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #0077b6;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.career-mail:hover {
  background: #005f8f;
  text-decoration: none;
}

@media (max-width: 600px) {
  .va-career {
    padding: 40px 20px;
  }

  .career-content h2 {
    font-size: 22px;
  }
}

/* =========================================================
   H.S. MARTIN — PRODUCT DETAIL PAGE
   Scoped under .hsm-pdp — safe to drop into any product page
   ========================================================= */

.hsm-pdp {
  --hsm-ink: #1a1e22;
  --hsm-ink-soft: #59636c;
  --hsm-line: #d9dee1;
  --hsm-line-strong: #bcc4c9;
  --hsm-bg: #eef1f2;
  --hsm-panel: #ffffff;
  --hsm-steel: #2f5d73;
  --hsm-steel-dark: #234555;
  --hsm-steel-tint: rgba(47, 93, 115, 0.07);
  --hsm-copper: #a9662f;
  --hsm-radius: 4px;
  --hsm-font-display: "Space Grotesk", sans-serif;
  --hsm-font-body: "Inter", sans-serif;
  --hsm-font-mono: "IBM Plex Mono", monospace;

  font-family: var(--hsm-font-body);
  color: var(--hsm-ink);
  background: var(--hsm-bg);
  -webkit-font-smoothing: antialiased;
}

.hsm-pdp * {
  box-sizing: border-box;
}
.hsm-pdp img {
  max-width: 100%;
  display: block;
}
.hsm-pdp a {
  text-decoration: none;
}

.hsm-pdp__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hsm-pdp__section-title {
  font-family: var(--hsm-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--hsm-ink);
}

/* =========================================================
   HERO
   ========================================================= */
.hsm-pdp__hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--hsm-line);
}

.hsm-pdp__hero-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.hsm-pdp__title {
  font-family: var(--hsm-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--hsm-ink);
  margin: 0 0 8px;
}

.hsm-pdp__title-range {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--hsm-copper);
  margin-top: 8px;
}

.hsm-pdp__intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--hsm-ink-soft);
  max-width: 62ch;
  margin: 20px 0 0;
}

/* ---- stat strip: pulls the key numbers from the copy up front ---- */
.hsm-pdp__stats {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 36px;
  border-top: 1px solid var(--hsm-line);
  border-bottom: 1px solid var(--hsm-line);
}

.hsm-pdp__stat {
  flex: 1 1 0;
  min-width: 150px;
  padding: 18px 24px 18px 0;
  margin-right: 24px;
  border-right: 1px solid var(--hsm-line);
}
.hsm-pdp__stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hsm-pdp__stat-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--hsm-steel-dark);
  line-height: 1.3;
}

.hsm-pdp__stat-label {
  display: block;
  font-size: 12.5px;
  color: var(--hsm-ink-soft);
  margin-top: 4px;
}

.hsm-pdp__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hsm-pdp__btn {
  font-family: var(--hsm-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--hsm-radius);
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.hsm-pdp__btn--primary {
  background: var(--hsm-ink);
  color: #fff;
}
.hsm-pdp__btn--primary:hover {
  background: var(--hsm-steel-dark);
}
.hsm-pdp__btn--ghost {
  background: transparent;
  color: var(--hsm-ink);
  border-color: var(--hsm-line-strong);
}
.hsm-pdp__btn--ghost:hover {
  border-color: var(--hsm-ink);
}

/* ---- media panel ---- */
.hsm-pdp__hero-media {
  position: relative;
  height: 100%;
}
.hsm-pdp__media-frame {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: var(--hsm-radius);
  overflow: hidden;
  background: var(--hsm-panel);
  border: 1px solid var(--hsm-line);
}
.hsm-pdp__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hsm-pdp__media-tick {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--hsm-copper);
  z-index: 2;
}
.hsm-pdp__media-tick--tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.hsm-pdp__media-tick--br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

@media (max-width: 991px) {
  .hsm-pdp__hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hsm-pdp__hero-media {
    order: -1;
    height: auto;
  }
  .hsm-pdp__media-frame {
    height: auto;
    min-height: 0;
  }
  .hsm-pdp__media-frame img {
    height: auto;
  }
}
@media (max-width: 640px) {
  .hsm-pdp__hero {
    padding: 48px 0 44px;
  }
  .hsm-pdp__stats {
    flex-direction: column;
    border-bottom: none;
  }
  .hsm-pdp__stat {
    border-right: none;
    border-bottom: 1px solid var(--hsm-line);
    margin-right: 0;
    padding: 16px 0;
  }
  .hsm-pdp__stat:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   KEY FEATURES
   ========================================================= */
.hsm-pdp__features {
  background: var(--hsm-panel);
  padding: 56px 0;
  border-bottom: 1px solid var(--hsm-line);
}

.hsm-pdp__feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  border-top: 1px solid var(--hsm-line);
}

.hsm-pdp__feature-item {
  position: relative;
  padding: 20px 0 20px 26px;
  border-bottom: 1px solid var(--hsm-line);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hsm-ink);
}

.hsm-pdp__feature-item strong {
  font-weight: 600;
  color: var(--hsm-ink);
}

.hsm-pdp__feature-tick {
  position: absolute;
  left: 2px;
  top: 29px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hsm-copper);
}

@media (max-width: 768px) {
  .hsm-pdp__feature-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CUSTOMIZATION CALLOUT
   ========================================================= */
.hsm-pdp__callout {
  padding: 56px 0;
  border-bottom: 1px solid var(--hsm-line);
}

.hsm-pdp__callout-box {
  background: var(--hsm-steel-tint);
  border-left: 3px solid var(--hsm-copper);
  border-radius: var(--hsm-radius);
  padding: 32px 40px;
}

.hsm-pdp__callout-title {
  font-family: var(--hsm-font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--hsm-ink);
}

.hsm-pdp__callout-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hsm-ink-soft);
  margin: 0;
}

.hsm-pdp__callout-text strong {
  color: var(--hsm-ink);
  font-weight: 600;
}

.hsm-pdp__callout-actions {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .hsm-pdp__callout-box {
    padding: 26px 24px;
  }
}

/* =========================================================
   TECHNICAL SPECIFICATION
   ========================================================= */
.hsm-pdp__specs {
  padding: 56px 0 72px;
}

.hsm-pdp__spec-grid {
  margin: 0;
  border: 1px solid var(--hsm-line);
  border-radius: var(--hsm-radius);
  overflow: hidden;
}

.hsm-pdp__spec-row {
  display: flex;
  border-bottom: 1px solid var(--hsm-line);
}
.hsm-pdp__spec-row:last-child {
  border-bottom: none;
}
.hsm-pdp__spec-row:nth-child(even) {
  background: #fafcfd;
}

.hsm-pdp__spec-row dt {
  flex: 0 0 34%;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hsm-ink);
}
.hsm-pdp__spec-row dd {
  flex: 1;
  margin: 0;
  padding: 16px 22px;
  font-size: 13.5px;
  color: var(--hsm-steel-dark);
  border-left: 1px solid var(--hsm-line);
}

@media (max-width: 640px) {
  .hsm-pdp__spec-row {
    flex-direction: column;
  }
  .hsm-pdp__spec-row dt {
    padding: 14px 16px 4px;
  }
  .hsm-pdp__spec-row dd {
    padding: 0 16px 14px;
    border-left: none;
  }
}




.hsu-more-details p {
    font-size: 0.9rem;
	  border-bottom: 1px solid #e2e8ee;
    padding-bottom: 20px;
}