/* navbar */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

:root {
  --primary: #0fb4b4;
  --primary-dark: #0a9a9a;
  --primary-light: #4edede;
}

/* ── NAVBAR ── */
#mainNav {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  transition:
    top 0.35s ease,
    padding 0.35s ease;
}
#mainNav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  border-radius: 14px;
  margin: 10px 20px;
  transition: all 0.35s ease;
}
#mainNav.scrolled .nav-inner {
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  margin: 0;
  padding: 13px 40px;
}

.nav-logo img {
  height: 9rem;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burger */
.burger {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
  z-index: 1060;
}
.burger:hover {
  background: var(--primary-dark);
}
.burger span {
  display: block;
  width: 20px;
  height: 2.2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scale(0.3);
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── OFFCANVAS — WHITE THEME ── */
.offcanvas.offcanvas-end {
  width: 350px !important;
  background: #ffffff !important;
  border-left: 1px solid #e8f7f7 !important;
  box-shadow: -8px 0 40px rgba(15, 180, 180, 0.1);
}

.oc-head {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid #eaf7f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oc-head img {
  height: 7rem;
}

.oc-close {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #d0eeee;
  background: transparent;
  color: #0fb4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.oc-close:hover {
  background: var(--primary);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
           INQUIRY STICKY BUTTON & MODAL STYLES
           ════════════════════════════════════════════════════════════ */

/* Sticky Inquiry Button */
.inquiry-sticky-btn {
  position: fixed;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: #0f3336;
  color: #fff;
  border: none;
  height: 171px;
  width: 45px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  /* box-shadow: -4px 8px 20px rgba(15, 180, 180, 0.4); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInRight 0.6s ease-out;
  padding: 12px 8px;
}

.inquiry-sticky-btn:hover {
  width: 50px;
  /* box-shadow: -6px 12px 28px rgba(15, 180, 180, 0.5); */
  /* background: linear-gradient(135deg, #0d9a9a 0%, #0a7f7f 100%); */
}

.inquiry-sticky-btn i {
  font-size: 1.8rem;
  display: block;
}

.inquiry-sticky-btn span {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Inquiry Modal */
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease;
}

.inquiry-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.inquiry-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden; /* ADD THIS */
}
.inquiry-form-group select option {
  white-space: normal; /* ADD THIS — allows option text to wrap */
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inquiry-modal-header {
  background: linear-gradient(135deg, #0fb4b4, #0a9a9a);
  color: #fff;
  padding: 28px 24px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inquiry-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.inquiry-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.inquiry-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.inquiry-modal-body {
  padding: 28px;
}

.inquiry-form-group {
  margin-bottom: 20px;
}

.inquiry-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2e2e;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.inquiry-form-group input,
.inquiry-form-group textarea,
.inquiry-form-group select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px 14px;
  border: 1.5px solid #d6f0f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s;
  background: #f8fefe;
}

.inquiry-form-group input:focus,
.inquiry-form-group textarea:focus,
.inquiry-form-group select:focus {
  outline: none;
  border-color: #0fb4b4;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 180, 180, 0.1);
}

.inquiry-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-form-row .inquiry-form-group {
  margin-bottom: 0;
}

.inquiry-required::after {
  content: " *";
  color: #e74c3c;
  font-weight: 700;
}

.inquiry-submit-btn {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0fb4b4, #0a9a9a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.inquiry-submit-btn:hover {
  background: linear-gradient(135deg, #0a9a9a, #087f7f);
  box-shadow: 0 6px 20px rgba(15, 180, 180, 0.3);
  transform: translateY(-2px);
}

.inquiry-submit-btn:active {
  transform: translateY(0);
}

.inquiry-success-message {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .inquiry-sticky-btn {
    width: 30px;
    height: 121px;
    right: 2px;
    font-size: 1.2rem;
  }

  .inquiry-sticky-btn i {
    font-size: 1.4rem;
  }

  .inquiry-sticky-btn span {
    font-size: 0.8rem;
  }

  .inquiry-modal-content {
    width: 95%;
    max-width: 100%;
  }

  .inquiry-form-row {
    grid-template-columns: 1fr;
  }
}

/* Nav links — teal on white */
.oc-nav {
  padding: 0.6rem 0;
}
.oc-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  padding: 12px 1.6rem;
  color: #3a5a5a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.22s ease;
}
.oc-nav a:hover,
.oc-nav a.active {
  color: var(--primary-dark);
  background: #f0fdfd;
  border-left-color: var(--primary);
}
.oc-nav a .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #eaf7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  transition: all 0.22s ease;
}
.oc-nav a:hover .ic,
.oc-nav a.active .ic {
  background: var(--primary);
  color: #fff;
}

/* Divider line between nav items */
.oc-nav a + a {
  border-top: 1px solid #f2fbfb;
}

.oc-sub-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.oc-link {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  color: #3a5a5a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.22s ease;
}
.oc-link:hover,
.oc-link.active {
  color: var(--primary-dark);
  background: #f0fdfd;
  border-left-color: var(--primary);
}
.oc-link .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #eaf7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary);
  transition: all 0.22s ease;
}
.oc-link:hover .ic,
.oc-link.active .ic {
  background: var(--primary);
  color: #fff;
}

.oc-sub-trigger {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
}
.oc-sub-trigger .arr {
  font-size: 1rem;
  transition: transform 0.4s ease;
}
.oc-sub-trigger[aria-expanded="true"] .arr {
  transform: rotate(180deg);
}

.oc-sub {
  display: none;
  background: #f8fefe;
  transition: max-height 0.4s ease;
}
.oc-sub.show {
  display: block !important;
}
.oc-sub a {
  display: block;
  padding: 10px 1.6rem 10px 4.2rem;
  color: #5a8080;
  border-left: 3px solid transparent;
  border-top: 1px solid #edf8f8;
  text-decoration: none;
}
.oc-sub a:hover {
  color: var(--primary-dark) !important;
  background: #eaf7f7;
  border-left-color: var(--primary);
}

/* ── HERO ── */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/head.webp") center center / cover no-repeat;
  animation: zoomIn 14s ease-out both;
}

@keyframes zoomIn {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(255 254 254 / 48%) 0%,
    rgb(115 113 113 / 32%) 65%,
    rgba(0, 0, 0, 0.08) 100%
  );
  transition: opacity 0.35s ease;
}
body.oc-open .hero-ov {
  opacity: 0;
}

.hero-body {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(
    -50%
  ); /* no padding-top here — it offsets the centering */
  left: clamp(2.5rem, 7vw, 8rem);
  width: clamp(280px, 55%, 720px);
}

.hero-body h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #0f3336;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: riseUp 0.9s cubic-bezier(0.25, 1, 0.3, 1) 0.5s both;
}

.hero-body p {
  font-size: 1.4rem;
  color: #263031;
  max-width: 500px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  opacity: 0;
  animation: riseUp 0.9s cubic-bezier(0.25, 1, 0.3, 1) 0.7s both;
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── OFFCANVAS ── */
.offcanvas-backdrop {
  display: none !important;
}

/* ── RESPONSIVE — largest to smallest ── */
@media (max-width: 991px) {
  #mainNav .nav-inner {
    margin: 8px 12px;
    padding: 8px 14px;
  }
  #mainNav.scrolled .nav-inner {
    padding: 10px 16px;
  }
  .nav-logo img {
    height: 8rem;
  }
}

@media (max-width: 768px) {
  .hero-body {
    left: clamp(1rem, 4vw, 2rem);
    width: calc(100% - 5rem);
    top: 40%;
  }
  .hero-logo {
    width: 180px;
  }
  .hero-inner {
    gap: 1.5rem;
  }
  .hero-bg {
    background-image: url("img/headmobile.webp");
  }
  .hero-ov{
    background: linear-gradient(90deg, rgb(226 224 224 / 48%) 0%, rgb(229 226 226 / 32%) 65%, rgb(80 78 78 / 8%) 100%);
  }
}

@media (max-width: 576px) {
  #mainNav .nav-inner {
    margin: 6px 8px;
    padding: 6px 10px;
  }
  .offcanvas.offcanvas-end {
    width: 300px !important;
  }
  .burger {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .hero-body {
    left: 1rem;
    width: calc(100% - 5rem);
  }
  .hero-logo {
    width: 140px;
  }
  .hero-inner {
    gap: 1rem;
  }
}

/* ===== Why Section ===== */
.why-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 767.98px) {
  .why-section svg {
    transform: translateY(-50%) rotate(90deg);
  }
}

.why-section h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-card.active {
  background: #12aeae;
  color: #fff;
}

.why-card.active h5,
.why-card.active p {
  color: #fff;
}

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #12aeae;
}

.why-card.active .why-icon {
  color: #fff;
}

@media (max-width: 768px) {
  .why-section h2 {
    font-size: 2rem;
  }
}

/* =========================================================
       DOUBLE-SLIDER SECTION  –  re-themed to match site palette
       ========================================================= */

.plumbing-slider-section-wrap {
  padding: 60px 0;
}

.plumbing-slider-section-wrap h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a2e;
}

/* Container */
.slider-section {
  position: relative;
  overflow: hidden;
  width: 100%;
 height: 660px;
  border-radius: 2.5rem;
}

/* Border glow – teal tint */
.slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  border: 1px solid transparent;
  background-image: linear-gradient(
      70deg,
      rgba(18, 174, 174, 0.7),
      rgba(180, 220, 220, 0.5)
    )
    border-box;
  mask:
    linear-gradient(#fff 0, #fff 100%) padding-box,
    linear-gradient(#fff 0, #fff 100%);
  mask-composite: exclude;
  mix-blend-mode: multiply;
  transition: background-color 0.6s ease-in-out;
}

/* Background Swiper */
.background-swiper {
  width: 100%;
  height: 100%;
}

.background-swiper .swiper-wrapper {
  align-items: center;
}

.slide {
  position: relative;
  overflow: hidden;
    max-width: 340px; /* was 280px */
  max-height: 340px; /* was 280px */
  width: 100%;
  border-radius: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.slide img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.slide-title {
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0d7a7a;
  background: #f8f9fa;
  border-top: 1px solid #e0f0f0;
}

/* Centered Swiper */
.centered-swiper {
  position: absolute !important;
  top: 50%;
  left: 50%;
  overflow: hidden;
  z-index: 10;
  max-width: 360px; /* was 300px */
  max-height: 520px; /* was 460px */
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 1.25rem;
  box-shadow:
    0 0 20px rgba(18, 174, 174, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.1);
  pointer-events: auto !important;
  cursor: pointer;
}

.centered-swiper__slide {
  width: 100%;
  transition: transform 0.6s ease;
}
.background-swiper img {
  display: block;
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.centered-swiper img {
  display: block;
  width: 100%;
  height: 78%;
  object-fit: cover;
}

/* Slide Title & Text */
.slider-section__title {
  margin: 0;
  position: absolute;
  top: 12.5%;
  left: 50%;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  transform: translateX(-50%);
  color: #0d7a7a;
  /* dark teal instead of white */
  white-space: nowrap;
}

.slider-section__text {
  margin: 0;
  position: absolute;
  bottom: 10%;
  left: 50%;
  max-width: 300px;
  height: 50px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #4a7c7c;
  /* muted teal-grey */
  transform: translateX(-50%);
}

/* Animations */
@keyframes slideOutLeft {
  0% {
    transform: translateX(-50%);
    opacity: 1;
  }

  100% {
    transform: translateX(calc(-50% - 50px));
    opacity: 0;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(calc(-50% + 50px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

.hidden-out {
  animation: slideOutLeft 0.4s forwards;
}

.hidden-in {
  animation: slideInRight 0.4s forwards;
}

.hidden {
  opacity: 0;
}

/* Navigation Buttons */
.slider-section__next-button {
  position: absolute;
  right: 2.5%;
  top: 50%;
  transform: translate(-50%, 2.5%);
}

.slider-section__prev-button {
  position: absolute;
  left: 2.5%;
  top: 50%;
  transform: translate(-50%, 2.5%);
}

.slider-section__next-button,
.slider-section__prev-button {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 500;
  background-color: #12aeae;
  backdrop-filter: blur(0.25rem);
  color: #ffffff;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    opacity 0.35s ease;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.slider-section__next-button.disabled,
.slider-section__prev-button.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.slider-section__next-button:hover,
.slider-section__prev-button:hover {
  background-color: #12aeae;
  color: #ffffff;
}

.slider-section__next-button:active,
.slider-section__prev-button:active {
  background-color: #0d8f8f;
  color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .slider-section {
    height: 560px; /* was 420px */
  }

 .slide {
    max-width: 250px; /* was 200px */
    max-height: 250px; /* was 200px */
  }


 .centered-swiper {
    max-width: 290px; /* was 240px */
    max-height: 490px; /* was 360px / 340px */
  }

  .slider-section__next-button,
  .slider-section__prev-button {
    width: 50px;
    height: 50px;
    font-size: 0.7rem;
  }

  .slider-section__title {
    top: 15%;
    font-size: 1.5rem;
  }

  .slider-section__text {
    bottom: 10%;
    height: 3.75rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .slider-section__title {
    top: 10%;
  }

  .slider-section__text {
    bottom: 7.5%;
  }

  .slider-section__prev-button {
    top: 50%;
    left: 5%;
  }

  .slider-section__next-button {
    top: 50%;
    right: 5%;
  }
}

/* Product name below image in centered slider */
.centered-swiper__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
  overflow: hidden;
}

.centered-swiper__slide img {
  width: 100%;
  height: 78%;
  /* adjust ratio – leaves room for title */
  object-fit: cover;
}

.product-name {
  margin: 0;
  padding: 14px 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d7a7a;
  text-align: center;
  background: #f8f9fa;
  width: 100%;
  border-top: 1px solid #e0f0f0;
}

/* Smoother continuous autoplay feel */
.background-swiper .swiper-wrapper,
.centered-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Adjust height if title makes it taller */
@media screen and (max-width: 767px) {
  .slider-section {
    height: 420px;
    /* increased a bit for title */
  }

  .centered-swiper {
    max-height: 400px;
  }
}

/* Animation */
@keyframes plumbingFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plumbing-panel:not(.d-none) {
  animation: plumbingFadeUp 0.35s ease;
}

/* Section Styles */
.why-choose-section {
  /* background: #e1efed; */
}

.section-title {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.divider-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
}

.divider-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: #12aeae;
  border-radius: 50%;
}

/* Accordion Styles */
.faq-item {
  margin-bottom: 16px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(18, 174, 174, 0.12);
}

.accordion-button {
  font-size: 17px;
  color: #1a1a1a;
  background: #fff;
  border-radius: 16px !important;
  padding: 20px 24px;
  font-weight: 500;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  font-size: 1.2rem;
  background: #e6f7f7 !important;
  color: #0d8e8e !important;
  box-shadow: none !important;
}

.accordion-button .faq-num {
  min-width: 32px;
  height: 32px;
  background: #e6f7f7;
  color: #12aeae;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-right: 16px;
}

.accordion-button:not(.collapsed) .faq-num {
  background: #12aeae !important;
  color: #fff !important;
}

.accordion-button::after {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2312aeae'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.accordion-body {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  padding: 20px 24px 24px 72px;
}

/* FAQ List Styling */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #000;
}

.faq-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #12aeae;
  font-weight: bold;
}

.faq-list li:last-child {
  margin-bottom: 0;
}

/* about page strength cards */
.strength-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.strength-card:hover {
  transform: translateY(-6px);
  border-color: #12aeae;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.12);
}

.card-img-wrap img {
  transition: transform 0.4s ease;
}

.strength-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #12aeae;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.card-divider {
  width: 32px;
  height: 3px;
  background: #12aeae;
  border-radius: 2px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #12aeae;
}

/* about page vision mission */

.vmv {
  display: grid;
  grid-template-columns: 420px 1fr;
  height: 100vh;
}

/* ── LEFT ── */
.vmv-l {
  background: linear-gradient(
    rgba(240, 250, 250, 0.92),
    rgba(240, 250, 250, 0.92)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 55px;
  position: relative;
  overflow: hidden;
}

.vmv-l-circle1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(15, 110, 86, 0.1);
  top: -80px;
  right: -80px;
}

.vmv-l-circle2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 30px solid rgba(93, 202, 165, 0.07);
  bottom: -50px;
  left: -40px;
}

.vmv-l-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #5dcaa5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vmv-l-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #5dcaa5;
  flex-shrink: 0;
}

.vmv-l-h {
  font-size: 75px;
  font-weight: 900;
  color: #000;
  line-height: 1.08;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.vmv-l-h em {
  font-style: normal;
  color: #5dcaa5;
}

/* 3 items stacked */
.vmv-l-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.vmv-l-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vmv-l-item:last-child {
  border-bottom: none;
}

.vmv-l-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(93, 202, 165, 0.1);
  border: 1.5px solid rgba(93, 202, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vmv-l-icon svg {
  width: 20px;
  height: 20px;
  stroke: #5dcaa5;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vmv-l-item-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 0 3px;
}

.vmv-l-item-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  letter-spacing: 0.5px;
}

.vmv-l-num {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
}

/* ── RIGHT ── */
.vmv-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.vmv-r-deco {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 55px solid rgba(15, 110, 86, 0.05);
}

/* Each block */
.vmv-block {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 32px 0;
  border-bottom: 1px solid #c5e8e4;
  position: relative;
}

.vmv-block:last-child {
  border-bottom: none;
}

.vmv-block:hover {
  transform: translateX(15px);
  background: rgba(15, 110, 86, 0.03);
  border-radius: 12px;
}

.vmv-block-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.vmv-block-icon svg {
  width: 100px;
  height: 100px;
  stroke: #0f6e56;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vmv-block-body {
  flex: 1;
}

.vmv-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #12aeae;
  margin-bottom: 6px;
}

.vmv-block-title {
  font-size: 20px;
  font-weight: 800;
  color: #0a2e2e;
  margin-bottom: 10px;
  line-height: 1.2;
}

.vmv-block-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: #4a6060;
  margin: 0;
}

/* Values inline */
.vmv-val-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.vmv-val-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #b2e0db;
  border-radius: 50px;
  padding: 8px 16px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.vmv-val-chip:hover {
  background: #d8f0f0;
  border-color: #0f6e56;
}

.vmv-val-chip-n {
  font-size: 10px;
  font-weight: 800;
  color: #0f6e56;
  letter-spacing: 0.5px;
}

.vmv-val-chip-name {
  font-size: 13px;
  font-weight: 700;
  color: #0a2e2e;
}

@media (max-width: 991.98px) {
  .vmv {
    grid-template-columns: 1fr;
    height: auto;
  }

  .vmv-l {
    padding: 60px 32px;
  }

  .vmv-l-h {
    font-size: 42px;
    margin-bottom: 32px;
  }

  .vmv-r {
    padding: 50px 32px;
  }

  .vmv-block {
    padding: 24px 0;
  }
}

@media (max-width: 575.98px) {
  .vmv-r {
    padding: 40px 20px;
  }

  .vmv-l {
    padding: 50px 24px;
  }

  .vmv-l-h {
    font-size: 36px;
  }

  .vmv-block-title {
    font-size: 17px;
  }
}

.app-section {
  padding: 60px 0;
}

.app-heading {
  text-align: center;
  margin-bottom: 32px;
}

.app-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.app-heading h2 span {
  color: var(--primary);
}

.app-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

/* Container */
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Slider */
.app-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
}

.app-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.app-slide {
  min-width: 100%;
  height: 550px;
  flex-shrink: 0;
}

.app-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Buttons */
.app-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.app-btn-prev {
  left: 16px;
}

.app-btn-next {
  right: 16px;
}

/* Dots */
.app-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.app-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .app-slide {
    height: 280px;
  }

  .app-btn {
    width: 36px;
    height: 36px;
    font-size: 1.8rem;
  }
}
.gallery-img {
  height: 350px !important;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .gallery-img {
    height: 150px !important;
  }
}

/* new product page */
/* ── Navbar spacer: pushes content below the absolute navbar ── */
.pd-navbar-spacer {
  /* Match your navbar logo height (9rem) + top margin (10px) + padding (11px*2) ≈ 170px */
  height: 170px;
}

/* ── Breadcrumb ── */
.pd-breadcrumb-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 26px 0;
}

.pd-breadcrumb-bar .breadcrumb {
  margin: 0;
  font-size: 1rem;
  justify-content: center;
  /* centred */
}

.pd-breadcrumb-bar .breadcrumb-item a {
  color: #0d7a7a;
  text-decoration: none;
}

.pd-breadcrumb-bar .breadcrumb-item.active {
  color: #555;
}

/* ── Product intro ── */
.pd-section {
  padding: 48px 0 48px;
}

.pd-image-wrap {
  background: #f5fafa;
  border: 1px solid #e0f0f0;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.pd-image-wrap img {
  max-width: 100%;
  height: 350px;
  object-fit: contain;
}

.pd-product-name {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pd-product-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Section headings ── */
.pd-section-heading {
  font-size: 2.2rem;
  font-weight: 500;
  color: #0d7a7a;
  /* text-transform: uppercase; */
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  text-align: center;
}

.pd-features-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.pd-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
}

.pd-feat-arrow {
    color: #0d7a7a;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0; /* never squishes when text is long */
}

.pd-feat-text {
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
    margin: 0;
}

/* ── Specifications ── */
.pd-spec-section {
  padding: 48px 0 64px;
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2eded;
  border-radius: 10px;
  overflow: hidden;
}

.pd-spec-table thead tr {
  background: #969b9b;
}

.pd-spec-table thead th {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  /* text-transform: uppercase; */
  letter-spacing: 0.07em;
  padding: 13px 20px;
}

.pd-spec-table tbody tr {
  border-bottom: 1px solid #eef5f5;
}

.pd-spec-table tbody tr:last-child {
  border-bottom: none;
}

.pd-spec-table tbody tr:nth-child(even) {
  background: #f7fdfd;
}

.pd-spec-table tbody td {
  padding: 13px 20px;
  font-size: 0.9rem;
  vertical-align: middle;
}

.pd-spec-table tbody td:first-child {
  color: #666;
  font-weight: 500;
  width: 30%;
  border-right: 1px solid #eef5f5;
}

.pd-spec-table tbody td:last-child {
  color: #111;
  font-weight: 600;
}

@media (max-width: 767px) {
  .pd-navbar-spacer {
    height: 140px;
  }

  .pd-product-name {
    font-size: 1.4rem;
    margin-top: 24px;
  }

  .pd-image-wrap {
    min-height: 200px;
    padding: 20px;
  }

  .pd-spec-table tbody td:first-child {
    width: 40%;
  }
}

/* centered slider */
a.centered-swiper__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

/* View Details button — centered below the title */
.slide-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #0d7a7a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 20px;
  border-radius: 20px;
  margin: 16px;
  transition: background 0.2s;
  text-decoration: none;
}

a.centered-swiper__slide:hover .slide-view-btn {
  background: #0a6060;
}
/* applications in product page */
/* ── Applications ── */
.pd-applications-section {
    padding: 100px 0;
    background: #fff;
}

.pd-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e0f0f0;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pd-app-card:hover {
    border-color: #12aeae;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(13, 122, 122, 0.1);
}

.pd-app-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.pd-app-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pd-app-card:hover .pd-app-img-wrap img {
    transform: scale(1.06);
}

.pd-app-label {
    color: #1a1a2e;
    margin: 0;
    padding: 12px 10px;
    line-height: 1.4;
}