/* =========================================================
   RESET & GLOBAL
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

html {
  overflow-x: clip; /* use clip instead of hidden — doesn't break sticky */
}

body {
  overflow-x: clip;
}


.sticky-circle-btn {
  position: fixed;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #00bdb6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2.5s infinite;
}

/* stacked positions */
.sticky-calc    { bottom: 1.5rem; }
.sticky-contact { bottom: 5.5rem; }
.sticky-download{ bottom: 9.5rem; }


.sticky-circle-btn:hover::before,
.sticky-circle-btn:hover::after {
  opacity: 1;
}

.sticky-circle-btn .material-symbols-outlined {
  font-size: 24px;
  color: white;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.sticky-circle-btn:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 24px rgba(0, 189, 182, 0.45);
  animation: none;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 189, 182, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(0, 189, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 189, 182, 0); }
}

@media (max-width: 768px) {
  .sticky-circle-btn { right: 1rem; width: 48px; height: 48px; }
  .sticky-calc    { bottom: 1rem; }
  .sticky-contact { bottom: 4.8rem; }
  .sticky-download{ bottom: 8.6rem; }
  .sticky-circle-btn::before,
  .sticky-circle-btn::after { display: none; }
}

/* =========================================================
   MOBILE SPACING FIXES — horizontal padding throughout
========================================================= */

/* ── Restore Bootstrap container gutters on mobile
   (overridden by products page layout rules) ── */

/* ── Shared mobile section padding ── */
@media (max-width: 767px) {
  /* Home page sections */
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .accessories-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .news-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* .technical-section {
    padding-left: 16px;
    padding-right: 16px;
  } */

  /* About page sections */
  .work-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .vision-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .engineering-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cta-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Product detail page */
  .product-detail {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features-left {
    padding-left: 0;
    padding-right: 0;
  } /* reset inner override */
  .tab-main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .downloads-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Products listing page */
  .gen-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Banner search box */
  .banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Extra small screens — slightly tighter but still breathing room ── */
@media (max-width: 480px) {
  .product-detail {
    padding-left: 12px;
    padding-right: 12px;
  }
  .features-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .downloads-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tab-main-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
  .gen-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Feat boxes — remove inner margin that was causing overflow */
  .feat-box {
    margin-left: 0;
    margin-right: 0;
  }

  /* Vision & engineering on very small screens */
  .vision-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .engineering-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --primary: #00022b;
  --teal: #00bdb6;
  --teal-dark: #006a66;
  --white: #ffffff;
  --light-bg: #f7f6ff;
  --text-muted-col: #47464f;
  --border-col: #e5e5e5;

  --secondary-color: #f5f5f5;
  --text-size: 14px;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --background-color: #ffffff;

  --bg: #f5f5f5;
  --bg2: #f5f5f5;
  --bg3: #f5f5f5;

  --text-muted: #6b7280;
  --text-dim: #9ca3af;

  --card-bg: #ffffff;

  --radius: 6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --container-width: 1184px;
}

/* =========================================================
   NAVBAR — GLOBAL COMPONENT (all pages)
========================================================= */

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img {
  height: 55px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  margin-left: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 30px;
}

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--teal); /* was --hover-color = #00bdb6 = --teal */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--teal);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--teal);
  font-weight: 600;
}
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary);
  transition: color 0.3s ease;
  padding: 0;
}

.search-btn:hover {
  color: var(--teal);
}

.contact-btn {
  cursor: pointer;
}

.prime-btn {
  background-color: var(--primary);
  width: 110px;
  height: 34px;
  border: none;
  text-decoration: none;
  padding: 5px 15px;
  font-size: 11px;
  color: #f5f5f5;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* ── Navbar Toggle (hamburger) ── */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 5px;
}

.navbar-toggle .hamburger {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ── Bootstrap .navbar-nav overrides ── */
.navbar-nav .nav-link {
  position: relative;
  color: var(--primary);
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--teal);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  color: var(--teal) !important;
}
.navbar-nav .nav-link.active {
  color: var(--teal) !important;
  font-weight: 600;
}

/* ══════════════════════════════════════
   DROPDOWN  —  prefix: dd-
   Hover on desktop  |  Click on mobile
══════════════════════════════════════ */

/* Wrapper li */
.dd-item {
  position: relative;
  list-style: none;
}

/* Toggle row */
.dd-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

/* Anchor inside toggle — not independently clickable */
.dd-toggle .nav-link {
  pointer-events: none;
}

/* Chevron */
.dd-chevron {
  font-size: 1.1rem;
  color: #475569;
  transition: transform 0.25s ease;
  line-height: 1;
  display: flex;
  align-items: center;
}

.dd-item.is-open .dd-chevron,
.dd-item:hover .dd-chevron {
  transform: rotate(180deg);
}

/* ── Bridge pseudo-element fills the gap so mouse
   can travel from the toggle into the panel ── */
.dd-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px; /* matches padding-top on .dd-menu */
  display: none; /* only shown on desktop */
}

@media (min-width: 992px) {
  .dd-item::after {
    display: block;
  }
}

/* Dropdown panel */
.dd-menu {
  position: absolute;
  top: 100%; /* flush — bridge handles the gap */
  left: 0;
  padding-top: 14px; /* visual gap lives inside the panel */
  min-width: 220px;
  list-style: none;
  margin: 0;
  z-index: 1050;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  pointer-events: none;
}

/* Inner card */
.dd-menu__inner {
  background: #ffffff;
  border: 1px solid #eef2ff;
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.13);
  padding: 6px 0;
  overflow: hidden;
}

/* Show on hover (desktop) */
.dd-item:hover .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Show via JS class */
.dd-item.is-open .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menu items */
.dd-menu li {
  list-style: none;
}

.dd-menu a {
  display: block;
  padding: 9px 20px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.18s,
    color 0.18s;
  white-space: nowrap;
}

.dd-menu a:hover {
  background: #f1f5f9;
  color: rgba(0, 189, 182, 1);
}

/* Divider */
.dd-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 5px 0;
}

/* ══════════════════════════════════════
   ACTIVE NAV LINK
══════════════════════════════════════ */
.nav-links .nav-link.active,
.nav-links li.active > .nav-link,
.nav-links li.dd-item.active .dd-toggle .nav-link {
  color: rgba(0, 189, 182, 1) !important;
  font-weight: 700;
  position: relative;
}

/* Underline indicator */
.nav-links .nav-link.active::after,
.nav-links li.active > .nav-link::after,
.nav-links li.dd-item.active .dd-toggle .nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 189, 182, 1);
  border-radius: 2px;
}

/* Active chevron color */
.nav-links li.dd-item.active .dd-chevron {
  color: rgba(0, 189, 182, 1);
}

/* Fix 2: mobile dropdown panel */

@media (max-width: 768px) {
  /* ── Hamburger show ── */
  .navbar-toggle {
    display: flex;
    order: 3;
  }

  /* ── Menu panel: block-level accordion ── */
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block; /* flex nahi — block chahiye accordion ke liye */
    flex: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  /* BAAD MEIN */
  .navbar-menu.active {
    max-height: calc(100dvh - 80px); /* 80px = teri navbar height */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  }

  /* ── Nav links column layout ── */
  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 0;
    margin: 0;
    width: 100%;
  }

  /* Plain nav link rows */
  .nav-links > li > .nav-link {
    display: block;
    padding: 13px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f8fafc;
  }

  /* ── DD Item: full width ── */
  .dd-item {
    position: static; /* absolute se static — critical fix */
    width: 100%;
  }

  /* ── DD Toggle: full row with space-between ── */
  .dd-toggle {
    padding: 13px 20px;
    justify-content: space-between;
    border-bottom: 1px solid #f8fafc;
  }

  /* ── DD Menu: accordion instead of absolute popup ── */
  .dd-menu {
    position: static; /* absolute remove */
    opacity: 1; /* opacity/visibility animation hata */
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    padding-top: 0; /* desktop gap remove */
    background: #f8fafc;
    min-width: unset;
    z-index: auto;
  }

  /* Open state via JS class */
  .dd-item.is-open .dd-menu {
    max-height: 400px;
  }

  /* ── DD Menu inner card: flat on mobile ── */
  .dd-menu__inner {
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 4px 0;
  }

  /* Menu links indented */
  .dd-menu a {
    padding: 11px 20px 11px 36px;
    font-size: 13px;
    border-radius: 0;
    white-space: normal;
    border-bottom: 1px solid #f1f5f9;
  }

  /* ── Bridge hide on mobile ── */
  .dd-item::after {
    display: none;
  }




  /* ── Actions ── */
  .navbar-actions {
    flex-direction: column;
    width: 100%;
    padding: 12px 16px 16px;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
  }

  .contact-btn,
  .prime-btn {
    width: 100%;
    text-align: center;
    /* padding: 11px 15px !important; */
    border-radius: 50px;
    font-size: 13px;
  }

  /* .navbar-container {
    padding: 10px 16px;
  }
 */
  .cart-icon {
    text-align: center;
  }
}

/* end dropdown code */

/* shopping icon */
.cart-section {
  padding: 80px 0;
}

.cart_product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* shopping icon — GLOBAL (desktop) */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: #00b5a9;
  transform: translateY(-2px);
}

.cart-icon .material-symbols-outlined {
  font-size: 22px;
  color: #222;
  transition: color 0.3s ease;
}

.cart-icon:hover .material-symbols-outlined {
  color: #fff;
}

.cart-icon .count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 1;
}

/* ── MOBILE OVERRIDE — must come AFTER global styles ── */
@media (max-width: 768px) {
  .cart-icon:hover {
    background: #f0fdfc !important;
    transform: none !important;
  }

  .cart-icon .material-symbols-outlined {
    font-size: 22px !important;
    color: #1f2937 !important;
  }

  .cart-icon:hover .material-symbols-outlined {
    color: #00bdb6 !important;
  }

  
}
/* =========================================================
   COMMON ICON
========================================================= */

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-material {
  line-height: 1;
  vertical-align: middle;
}

.icon {
  color: var(--teal);
}

.text_dec_glob {
  text-decoration: none;
  color: #000;
  margin-left: 20px;
}

/* =========================================================
   BANNER SECTION
========================================================= */

.banner-section {
  position: relative;
  height: 100vh;      /* desktop */
  min-height: 500px;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    76deg,
    rgba(0, 2, 43, 0.95) 0%,
    rgba(0, 2, 43, 0) 87%
  );
}

.banner-content {
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 2;
  width: min(850px, 92%);
  padding: clamp(20px, 4vw, 40px);

  color: #fff;

  border: 5px solid rgba(255, 255, 255, 1);
  border-left: 0 !important;

  backdrop-filter: blur(10px);

  background: linear-gradient(
    100deg,
    rgba(0, 2, 43, 0.85) 41%,
    rgba(0, 7, 145, 0.35) 100%
  );
}

.banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-heading {
  margin: 18px 0;

  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}

/* =========================================================
   SEARCH BOX
========================================================= */

.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-input-wrap {
  position: relative;
  width: 368px; /* matches input default width */
  max-width: 100%;
  box-sizing: border-box;
}

.search-input-wrap .myicon {
  position: absolute;
  top: 50%;
  left: 14px;

  transform: translateY(-50%);

  color: #fff;
  font-size: 18px;
}

.search-input-wrap input {
  width: 368px;
  max-width: 100%;
  height: 52px;
  padding: 0 14px 0 42px;

  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);

  color: #fff;
  outline: none;

  box-sizing: border-box;
}

.search-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-btn-cta {
  height: 52px;
  padding: 0 28px;

  border: none;
  border-radius: 6px;

  background: #fff;
  color: var(--teal);

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn-cta:hover {
  transform: translateY(-2px);
}


@media (max-width: 991px) {
  .banner-section { height: 85vh; }
}

@media (max-width: 767px) {
  .banner-section { height: 75vh; }
}

@media (max-width: 480px) {
  .banner-section { min-height: 420px; }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  padding: clamp(80px, 12vw, 160px) 0 80px;
}

.hero-box {
  padding: 20px;
}

.hero-box .icon {
  display: block;
  margin-bottom: 16px;
  font-size: 30px;
}

.hero-box h2 {
  margin-bottom: 12px;

  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
}

.hero-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align:justify;
}

/* =========================================================
   ACCESSORIES
========================================================= */

.accessories-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary);
}

.section-headline .line {
  width: 100px;
  height: 4px;
  margin-top: 14px;
  background: var(--teal);
  border-radius: 20px;
}

.sub-tag {
  color: var(--teal);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.sub-title {
  margin: 10px 0 14px;

  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
}

.body-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* =========================================================
   ACCESSORIES CARDS
========================================================= */

.acc-big-card,
.acc-small-card {
  background: #fff;

  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(25, 21, 67, 0.06);
}

.acc-big-card {
  /* height: 100%; */
}

.acc-big-card img,
.acc-small-card img {
  width: 100%;
  object-fit: cover;
}

.acc-big-card img {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.acc-small-card img {
  height: 220px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.acc-big-card .card-text,
.acc-small-card .card-text {
  padding: 24px;
}

.acc-small-card h3 {
  margin-bottom: 10px;

  font-size: 20px;
  font-weight: 800;
}

/* =========================================================
   BADGES
========================================================= */

.acc-badge-container {
  position: relative;
}

.acc-badge {
  position: absolute;
  top: 14px;
  left: 14px;

  z-index: 10;

  padding: 5px 10px;

  border-radius: 4px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.badge__1 {
  background: var(--teal);
  color: #fff;
}

.badge__2 {
  background: #3c0048;
  color: #ba68c6;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  margin-top: 14px;

  color: var(--teal);

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;
}

.explore-link:hover {
  color: var(--teal-dark);
}

/* =========================================================
   TECHNICAL SECTION
========================================================= */

.technical-section {
  background: linear-gradient(101deg, #3f59a7 24%, #744199 73%, #71ccd2 120%);
  padding: 80px 0;
}

.tech-accent {
  color: var(--teal);
}

.tech_para {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: white !important;
}

.tech-cards-row {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.tech-card {
  height: 100%;
  min-height: 100%;

  padding: 50px 34px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.3s ease;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tech-card .icon {
  margin-bottom: 16px;
  font-size: 32px;
}

.tech-card h3 {
  margin-bottom: 10px;

  color: #fff;

  font-size: 22px;
  font-weight: 700;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  width: 300px;
  text-align: justify;
}

.tech-main-heading {
  font-size: clamp(57px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 767px) {
  .tech-main-heading {
    font-size: 35px;
    line-height: 1.25;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tech-main-heading {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -0.5px;
  }

  .tech-main-heading br {
    display: none;
  }

  .tech-accent {
    display: inline !important;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .tech-main-heading {
    font-size: 35px;
    line-height: 1.4;
  }
}

/* =========================================================
   NEWS SECTION
========================================================= */

/* .news-section {
  padding: 90px 0;
} */

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 40px;
}

.news-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--primary);
}

.news-card {
  background: #ffffff;
  height: 100vh;
}

.news-subline {
  color: #666;
  font-size: 15px;
}

.news-card {
  text-decoration: none;
}

.news-card img {
  width: 100%;
  border-radius: 10px;
  /*aspect-ratio: 15 / 4;*/
  object-fit: cover;
}


.news-date {
  display: block;
  margin-top: 14px;

  color: var(--teal);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.news-card p {
  color: #555;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
  margin-top: 60px;
}

.contact-col {
  position: relative;
  overflow: hidden;

  height: clamp(320px, 45vw, 700px);
}

.contact-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-col::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-col.left::before {
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.9) 0%,
    rgba(0, 2, 43, 0.45) 55%,
    rgba(0, 2, 43, 0) 100%
  );
}

.contact-col.right::before {
  background: linear-gradient(
    270deg,
    rgba(0, 106, 102, 0.9) 0%,
    rgba(0, 106, 102, 0.45) 55%,
    rgba(0, 106, 102, 0) 100%
  );
}

.overlay-text {
  position: absolute;
  top: 50%;
  z-index: 2;

  transform: translateY(-50%);

  max-width: 400px;

  color: #fff;
}

.contact-col.left .overlay-text {
  left: clamp(24px, 6vw, 80px);
}

.contact-col.right .overlay-text {
  right: clamp(24px, 6vw, 80px);
}

.overlay-text h1 {
  margin-bottom: 16px;

  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.overlay-text p {
  margin-bottom: 28px;
  width: 300px;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
  font-size: 14px;
  line-height: 1.8;
}

/* refersh */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

#captchaImage {
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#captchaImage img {
    display: block;
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.refresh-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn .material-symbols-outlined {
    font-size: 22px;
}

.refresh-btn:hover {
    background: #f5f5f5;
    color: #0d6efd;
}

.refresh-btn:hover .material-symbols-outlined {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-pdf,
.btn-contact-cta {
  padding: 14px 30px;
  text-decoration: none;
  border: none;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;
  transition: 0.3s ease;
}

.btn-pdf {
  background: #fff;
  color: #041266;
}

.btn-contact-cta {
  background: #041266;
  color: #fff;
}

.btn-pdf:hover {
  transform: translateY(-2px);
}

.btn-contact-cta:hover {
  transform: translateY(-2px);
  color: white;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .banner-section {
    height: 85vh;
  }

  .tech-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .banner-section {
    height: 75vh;
  }

  .banner-content {
    bottom: 15px;
    width: calc(100% - 20px);
  }

  .contact-col.left .overlay-text,
  .contact-col.right .overlay-text {
    left: 50%;
    right: auto;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .banner-section {
    min-height: 420px;
  }

  .search-btn-cta {
    width: 100%;
  }

  .hero-box {
    text-align: center;
  }
}

/* =========================================================
   ROOT VARIABLES — CONFIGURE PAGE ADDITIONS
========================================================= */

:root {
  --navy-light: #1a1c45;
  --yellow: #ffb800;
  --yellow-hover: #e6a600;
  --purple-bg: #f6f1ff;
  --purple-muted: #eae5ff;
  --border: #c8c5d0;
  --text-dark: #1a1a2e;
  --card-shadow: 0 20px 60px rgba(25, 21, 67, 0.08);
  /* --navy        → use --primary  (#00022b) */
  /* --text-muted  → use --text-muted-col (#47464f) */
}

/* =========================================================
   CONFIGURE PAGE — BODY BACKGROUND
   Scoped so it doesn't affect other pages
========================================================= */

.configure-page {
  background: #f4f2fb;
  color: var(--text-dark);
  min-height: 100vh;
}

/* =========================================================
   CONFIGURE PAGE — LAYOUT
========================================================= */

.page-wrapper {
  padding: 40px 0 60px;
}

/* ── HEADER ── */
.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  /* flex-wrap: wrap; */
}

.config-title h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--primary); /* was --navy */
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1.1;
}

.config-title p {
  font-size: 14px;
  color: var(--text-muted-col); /* was --text-muted */
  margin: 0;
}

/* ── SUPPORT BADGE ── */
.support-badge {
  background: var(--purple-muted);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: var(--primary); /* was --navy */
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  max-width: 100%;
}

.support-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: orange;
  border-radius: 50%;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.support-badge p {
  margin: 0;
  line-height: 1.4;
}
.support-badge strong {
  font-weight: 600;
  text-decoration: underline;
}

/* ── MAIN CARD ── */
.config-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 40px 44px;
}

/* ── SECTION BLOCK ── */
.section-block {
  width: 100%;
  margin: 22px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary); /* was --navy */
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-label h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
  color: var(--primary); /* was --navy */
}

/* ── TOGGLE BUTTONS ── */
.btn-group-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.toggle-btn {
  padding: 9px 18px;
  height: 42px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
}

.toggle-btn:hover {
  border-color: var(--primary); /* was --navy */
  color: var(--primary);
  background: var(--purple-bg);
}

.toggle-btn.active {
  background: var(--primary); /* was --navy */
  color: #fff;
  border-color: var(--primary);
}

/* calculator toggle */

.cal_toggle-btn {
  padding: 9px 18px;
  height: 42px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal_toggle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--purple-bg);
}

.cal_toggle-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── SELECT WRAPPER ── */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after,
.small-select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted-col); /* was #47464f */
  border-bottom: 2px solid var(--text-muted-col);
  pointer-events: none;
}

.small-select-wrapper::after {
  right: 12px;
  width: 7px;
  height: 7px;
}

/* ── CONFIG SELECT ── */
.config-select {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 9px;
  background: var(--purple-bg);
  padding: 0 44px 0 16px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.config-select:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  margin-top: 7px;
  display: block;
}

/* ── SEGMENT CONTROL ── */
.segment-control {
  display: inline-flex;
  align-items: center;
  background: var(--purple-bg);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}

.segment-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #888;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.segment-btn.active {
  background: var(--primary); /* was --navy */
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 2, 43, 0.18);
}

.segment-btn:not(.active):hover {
  color: var(--primary);
}

/* ── SPEED ROW ── */
.speed-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.value-input {
  width: 90px;
  height: 52px !important;
  border: none;
  border-radius: 8px;
  background: var(--purple-bg);
  padding: 0 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.value-input::placeholder {
  color: #aaa;
}
.value-input:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

.small-select-wrapper {
  position: relative;
  flex: 1;
  min-width: 150px;
  max-width: 340px;
}

.small-select {
  width: 100%;
  height: 49px;
  border: none;
  border-radius: 8px;
  background: var(--purple-bg);
  padding: 0 36px 0 14px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.small-select:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

/* ── FOOTER ACTIONS ── */
.footer-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-actions-left {
  flex: 1;
  min-width: 220px;
}
.footer-actions-left > p {
  font-size: 13.5px;
  color: var(--text-muted-col); /* was --text-muted */
  margin-bottom: 14px;
}

.action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-add {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--primary); /* was --navy */
  color: #fff;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--navy-light);
}

.btn-reset {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-reset:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-show {
  height: 52px;
  padding: 0 28px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--primary); /* was --navy */
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-show:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}
.btn-show:active {
  transform: translateY(0);
}

.footer-actions-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
}

.tube-limit-note {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  text-align: right;
}

/* ── TRUST BADGES ── */
.trust-strip {
  margin-top: 24px;
}

.trust-card {
  background: var(--purple-muted);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 373px;
  height: 112px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary); /* was --navy */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon .material-symbols-outlined {
  font-size: 26px;
}

.trust-text h6 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary); /* was --navy */
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  margin: 0;
  line-height: 1.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.config-header {
  animation: fadeUp 0.45s ease both;
}
.config-card {
  animation: fadeUp 0.5s 0.1s ease both;
}
.trust-strip {
  animation: fadeUp 0.5s 0.2s ease both;
}

/* ── RESPONSIVE — CONFIGURE PAGE ── */
@media (max-width: 991.98px) {
  .config-card {
    padding: 28px 24px;
  }
  .support-badge {
    max-width: 100%;
    white-space: normal;
  }
  .footer-actions-right {
    align-items: flex-start;
  }
  .tube-limit-note {
    text-align: left;
  }
  .btn-show {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .page-wrapper {
    padding: 24px 0 40px;
  }
  .config-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 13px;
  }
  .config-card {
    padding: 22px 16px;
    border-radius: 12px;
  }
  .config-title h1 {
    font-size: 26px;
  }
  .support-badge {
    width: 100%;
  }
  .footer-actions {
    flex-direction: column;
  }
  .footer-actions-right {
    width: 100%;
    align-items: stretch;
  }
  .btn-show {
    width: 100%;
    text-align: center;
    height: 48px;
  }
  .small-select-wrapper {
    max-width: 100%;
  }
  .trust-card {
    margin: 0 13px;
  }
}

@media (max-width: 575.98px) {
  .config-card {
    padding: 18px 14px;
  }
  .toggle-btn {
    font-size: 12.5px;
    padding: 8px 14px;
    height: 38px;
  }
  .trust-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .trust-icon {
    width: 46px;
    height: 46px;
  }
  .segment-btn {
    padding: 0 14px;
    font-size: 12.5px;
  }
  .value-input {
    width: 70px;
  }
}

/* =========================================================
   ABOUT PAGE — HERO
========================================================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 620px;
}

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.92) 0%,
    rgba(0, 2, 43, 0.6) 45%,
    rgba(0, 2, 43, 0.08) 100%
  );
  z-index: 1;
}

.about-hero__card {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 2;
  border-top: 5px solid rgba(255, 255, 255, 0.75);
  border-right: 5px solid rgba(255, 255, 255, 0.75);
  border-bottom: 5px solid rgba(255, 255, 255, 0.75);
  border-left: none;
  background: linear-gradient(
    100.4deg,
    #00022b 41.43%,
    rgba(0, 7, 145, 0.34) 99.63%
  );
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(10px);
  width: clamp(300px, 55%, 800px);
  height: auto;
  min-height: 420px;
  padding: 44px 52px;
  color: #fff;
}

.about-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  display: block;
}

.about-hero__heading {
  font-size: clamp(32px, 5.5vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.sp-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.6;
}

.about-hero__text {
  font-size: clamp(16px, 3vw, 16.5px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 688px;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 1199.98px) {
  .about-hero {
    height: 580px;
  }
  .about-hero__card {
    width: clamp(300px, 65%, 680px);
    padding: 36px 40px;
    min-height: 380px;
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    height: 540px;
  }
  .about-hero__overlay {
    background: linear-gradient(
      140deg,
      rgba(0, 2, 43, 0.92) 0%,
      rgba(0, 2, 43, 0.7) 55%,
      rgba(0, 2, 43, 0.2) 100%
    );
  }
  .about-hero__card {
    width: clamp(280px, 80%, 560px);
    padding: 30px 32px;
    min-height: unset;
    bottom: -40px;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .about-hero__img {
    position: relative;
    inset: unset;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
  }
  .about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(
      180deg,
      rgba(0, 2, 43, 0.15) 0%,
      rgba(0, 2, 43, 0.55) 100%
    );
    z-index: 1;
  }
  .about-hero__card {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    width: 100%;
    min-height: unset;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
    padding: 28px 20px 36px;
    z-index: 2;
    background: linear-gradient(
      160deg,
      #00022b 50%,
      rgba(0, 7, 145, 0.45) 100%
    );
  }
  .about-hero__heading {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 14px;
  }
  .about-hero__text {
    font-size: 17px;
    line-height: 1.72;
  }
}

@media (max-width: 575.98px) {
  .about-hero__img {
    height: 200px;
  }
  .about-hero__overlay {
    height: 200px;
  }
  .about-hero__card {
    padding: 24px 16px 32px;
  }
  .about-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .about-hero__heading {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 12px;
  }
  .about-hero__text {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .about-hero__img {
    height: 180px;
  }
  .about-hero__overlay {
    height: 180px;
  }
  .about-hero__heading {
    font-size: 24px;
  }
}

/* =========================================================
   ABOUT PAGE — WHO WE WORK WITH
========================================================= */

.work-section {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.work-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.work-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #05072c;
  margin: 0;
  white-space: nowrap;
}

.work-header .line {
  flex: 1;
  height: 1px;
  background: #d8d8d8;
}

.work-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  /* Hide scrollbar */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE & Edge */
}

.work-arrow {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.work-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.work-card {
  width: 100%;
  padding: 35px 28px;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: 0.3s ease;

  /* ── add these 2 lines ── */
  min-width: 280px;
  scroll-snap-align: start;
}

.work-card:hover {
  background: #fafafa;
}

.work-slider-wrapper {
    position: relative;
}

.work-section {
    position: relative;
}

.work-arrow {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-arrow-left {
    left: 15px;
}

.work-arrow-right {
    right: 15px;
}

.work-arrow .material-symbols-outlined {
    font-size: 30px;
}

.work-grid {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.work-grid::-webkit-scrollbar {
    display: none;
}

.work-card .material-symbols-outlined {
  font-size: 30px;
  color: var(--teal-dark); /* was #00707b — closest global variable */
  margin-bottom: 20px;
}

.work-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #12153d;
  margin-bottom: 18px;
}
.work-card p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  text-align:justify;
  margin-bottom: 0;
}


@media (max-width: 576px) {
  .work-section {
    padding: 50px 15px;
  }
  .work-header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
  .work-header h2 {
    font-size: 28px;
    white-space: normal;
  }
  .work-header .line {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    padding: 24px 18px;
  }
  .work-card .icon {
    margin-bottom: 20px;
  }
  .work-card h4 {
    font-size: 16px;
  }
  .work-card p {
    font-size: 15px;
  }

  .work-arrow{
    display: none;
  }
}

/* =========================================================
   ABOUT PAGE — VISION SECTION
========================================================= */

.vision-section {
  background-color: #041266;
  padding: 100px 0;
  overflow: hidden;
}

.vision-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
}

.vision-heading {
  font-size: 66px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.08;
  margin: 8px 0 0;
}

.vision-left .accent-word {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--teal);
  display: block;
  margin: 20px 0;
  line-height: 1.08;
}

.vision-left p {
  margin-top: 30px;
   text-align:justify;

}

.vision-body {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  width: 100%;
  max-width: 544px;
  padding: 10px 0;
   text-align:justify;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.vision-card {
  padding: 32px 26px;
  min-height: 172px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.vision-card:hover {
  background: rgba(0, 210, 255, 0.05);
}
.vision-card.active {
  border-left: 3px solid var(--teal);
}

.vision-card h5 {
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
}

.vision-card p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: justify;
}

@media (max-width: 991.98px) {
  .vision-section {
    padding: 70px 0 80px;
  }
  .vision-left {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .vision-section {
    padding: 60px 0 70px;
  }
  .vision-body {
    font-size: 14px;
    padding: 10px 0;
    max-width: 100%;
  }
  .vision-heading {
    font-size: 50px !important;
  }
  .vision-left .accent-word {
    font-size: 50px !important;
    margin: 0;
  }
  .vision-grid {
    gap: 0;
  }
  .vision-card {
    padding: 24px 18px;
    min-height: unset;
  }
}

@media (max-width: 575.98px) {
  .vision-section {
    padding: 50px 0 60px;
  }
  .vision-label {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-card {
    min-height: unset;
    padding: 22px 18px;
  }
  .vision-heading {
    font-size: 45px;
  }
  .vision-left .accent-word {
    margin-top: 7px;
    font-size: 45px;
  }
}

/* =========================================================
   ABOUT PAGE — ENGINEERING SECTION
========================================================= */

.engineering-section {
  width: 100%;
  padding: 100px 0 0;
  background: #ffffff;
}

.eng-image-wrap {
  width: 100%;
  max-width: 544px;
  border-radius: 16px;
  overflow: hidden;
}

.eng-image-wrap img {
  width: 100%;
  height: 512px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.eng-tag {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eng-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.feature-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 2, 43, 0.2);
  line-height: 1;
}

.feature-text h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--primary);
}
.feature-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5e5d68;
  margin: 0;
     text-align:justify;

}

.engin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.engin-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #0a0f4a;
}
.engin-btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .engineering-section {
    padding: 70px 0 0;
  }
  .eng-image-wrap {
    max-width: 100%;
  }
  .eng-image-wrap img {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .engineering-section {
    padding: 60px 0 0;
  }
  .eng-title {
    font-size: 50px;
    margin-bottom: 28px;
  }
  .eng-tag {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .feature-item {
    gap: 12px;
    margin-bottom: 22px;
  }
  .feature-num {
    width: 36px;
    height: 36px;
    font-size: 32px;
    margin-right: 12px;
  }
  .feature-text h6 {
    font-size: 16px;
  }
  .feature-text p {
    font-size: 13px;
    line-height: 1.7;
  }
  .engin-btn {
    width: 100%;
    min-width: unset;
    height: 52px;
    font-size: 12px;
  }
  .eng-image-wrap img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .engineering-section {
    padding: 45px 0 0;
  }
  .eng-image-wrap img {
    height: 220px;
    border-radius: 10px;
  }
  .eng-title {
    font-size: 45px;
  }
  .feature-num {
    font-size: 26px;
  }
}

/* =========================================================
   ABOUT PAGE — CTA HERO BANNER
========================================================= */

.cta-hero {
  margin: 40px 0 0;
  padding: 60px 24px;
  background: rgba(240, 235, 255, 1);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.cta-hero h2 {
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 700;
  max-width: 804px;
  width: 100%;
  line-height: 1.15;
  color: #0a0e3d;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn_primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn_primary:active {
  transform: translateY(0);
}

.btn_secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  background: transparent;
  color: #0a0e3d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(10, 14, 61, 0.25);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn_secondary:hover {
  border-color: rgba(10, 14, 61, 0.5);
  background: rgba(10, 14, 61, 0.04);
  transform: translateY(-2px);
  color: #0a0e3d;
}
.btn_secondary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cta-hero {
    padding: 48px 20px;
    margin: 30px 0 0;
  }
  .cta-hero h2 {
    font-size: clamp(20px, 5vw, 32px);
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .cta-hero {
    padding: 40px 16px;
  }
  .cta-hero h2 {
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn_primary,
  .btn_secondary {
    width: 100%;
    height: 52px;
    padding: 0 24px;
  }
}

/* =========================================================
   ROOT VARIABLES — PRODUCTS PAGE ADDITIONS
   ⚠️ Confirm --accent2 and --font-mono before going live
========================================================= */

:root {
  --accent: #00bdb6; /* = --teal; confirm if different */
  --accent2: #7c3aed; /* purple badge; confirm exact value */
  --text: #1a1a2e; /* primary dark text */
  --font-head: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
}

/* =========================================================
   GLOBAL — SCROLLBAR (intentionally global)
========================================================= */

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* =========================================================
   PRODUCTS PAGE — HERO HEADER
========================================================= */

.hero-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 433px;
}

.hero-header img {
  width: 100vw;
  height: 433px;
  object-fit: cover;
  display: block;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(0, 2, 43, 0.95) 10%,
    rgba(0, 7, 145, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  color: #fff;
}

.hero-content .d-flex {
  align-items: center;
  gap: 14px !important;
  margin-bottom: 12px;
}

.hero-content h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.subtitle-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #d9d9d9;
  margin-top: 14px;
  display: inline-block;
}

.hero-content .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  width: 1000px;
  color: #f2f2f2;
  margin: 0;
}

@media (max-width: 992px) {
  .hero-header {
    height: 380px;
  }
  .hero-header img {
    height: 380px;
  }
  .hero-content {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .hero-header {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .hero-content {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 30px;
    background: #00022b;
  }
  .hero-content .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 14px;
  }
  .hero-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .subtitle-sub {
    margin-top: 0;
    font-size: 14px;
  }
  .hero-content .subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-header img {
    height: 180px;
  }
  .hero-content {
    padding: 20px 16px 24px;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .subtitle-sub {
    font-size: 13px;
  }
  .hero-content .subtitle {
    font-size: 15px;
  }
  .hero-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================================
   PRODUCTS PAGE — TOPBAR
========================================================= */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}

.topbar-brand span {
  color: var(--accent);
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-actions button {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.topbar-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quote-count {
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 1px;
  border: none;
}

/* =========================================================
   PRODUCTS PAGE — LAYOUT
========================================================= */

.page-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: calc(100vh - 49px);
}

.remove-sidebar {
  display: none;
}

.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background-color: #000;
  border-radius: 5px;
}

.sidebar-toggle span {
  width: 22px;
  height: 2px;
  background-color: white;
  display: block;
  border-radius: 2px;
  transition: 0.2s;
}

/* =========================================================
   PRODUCTS PAGE — SIDEBAR
========================================================= */
/* =========================================================
   PRODUCTS PAGE — SIDEBAR
========================================================= */

.sidebar {
  width: 224px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transition: transform 0.3s ease;
  padding-left: 16px;
  padding-right: 16px;
}

.sb-brand h6 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--text);
}

.sb-brand small {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.sb-nav {
  text-align: start;
  list-style: none;
  margin-top: 8px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

/* ── Remove old generic li rule — replaced by .sb-item__row ── */
.sb-nav li {
  display: block;        /* was flex — broke the chevron layout */
  padding: 0;            /* was 10px 0 — now handled by .sb-item__row */
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}

/* icon container — kept for non-dropdown items if any */
.sb-nav li .nav-icon {
  width: 45px;
  height: 16px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sb-nav li .nav-icon svg {
  width: 14px;
  height: 14px;
}

/* ── Item row (replaces old li padding/color rules) ── */
.sb-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
}

.sb-item__row:hover  { color: var(--text-dim); }
.sb-item__row.active { color: var(--accent); }

.sb-item__left {
  display: flex;
  align-items: center;
}

/* ── Chevron ── */
.sb-chevron {
  font-size: 16px;
  opacity: 0.6;
  transition: transform 0.25s ease;
  color: inherit;
  flex-shrink: 0;
}

.sb-item.is-open .sb-chevron {
  transform: rotate(180deg);
}

/* ── Accordion ── */
.sb-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sb-item.is-open .sb-dropdown {
  max-height: 300px;
}

/* ── Sub-links list ── */
.sb-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 2px 0 6px 44px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Reset li inside dropdown ── */
.sb-dropdown ul li {
    display: block;
    padding: 0;
    cursor: default;
    border-radius: 0;
}

/* ── Link styling ── */
.sb-dropdown ul li a {
    display: block;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: black;      /* kills blue */
    text-decoration: none;          /* kills underline */
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.sb-dropdown ul li a:hover {
    background: #f0fdfb;
    color: var(--accent);
    text-decoration: none;
}

.sb-dropdown ul li a.active {
    color: var(--accent);
    background: #e6faf8;
    text-decoration: none;
}

/* ── Divider ── */
.sb-divider {
    height: 1px;
    background: var(--border-col);
    margin: 4px 0;
}


/* ── Filter label ── */
.filter-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  font-weight: 800;
  margin-bottom: 14px;
}
/* =========================================================
   PRODUCTS PAGE — CHECKBOXES
========================================================= */

.check-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 8px;
  margin: auto;
  margin-bottom: 12px;
}

.check-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  margin-left: 10px;
  font-size: 13px;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
}

.check-item label {
  margin-left: 10px;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
}

/* =========================================================
   PRODUCTS PAGE — RANGE SLIDER
   ⚠️ Scoped to .sidebar to avoid styling ALL range inputs globally
========================================================= */

.range-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.range-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.range-row span.hi {
  color: var(--accent);
}

.sidebar input[type="range"] {
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) 65%,
    var(--border) 65%
  );
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.sidebar input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg2);
  cursor: pointer;
}

/* =========================================================
   PRODUCTS PAGE — PILLS
========================================================= */

.app-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.app-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.app-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

/* =========================================================
   PRODUCTS PAGE — MAIN CONTENT
========================================================= */

.main-content {
  flex: 1;
  padding: 28px 28px 40px;
  min-width: 0;
}

/* =========================================================
   PRODUCTS PAGE — PRODUCT GRID
========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-group {
    display: block;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-group {
    display: block;
  }
}

/* =========================================================
   PRODUCTS PAGE — GEN / CTA WRAPPER
========================================================= */

.gen-wrapper {
  max-width: 902px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: auto;
}

.first-gen {
  background: var(--primary);
  color: white;
  padding: 48px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 12px;
  box-sizing: border-box;
}

.first-gen span {
  font-size: 12px;
  color: rgba(140, 244, 237, 1);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.first-gen h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
  width: 100%;
}

.gen-para {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted-col);
  margin-bottom: 20px;
  font-weight: 400;
}

.gen-para__2 {
  font-size: 16px;
  line-height: 1.7;
  color: #7681d4;
  margin-bottom: 20px;
  font-weight: 400;
}

.first-gen .gen-btn {
  width: fit-content;
  min-width: 220px;
  height: 40px;
  padding: 0 24px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.first-gen .gen-btn:hover {
  transform: translateY(-2px);
}

.second-gen {
  min-width: 260px;
  background: rgba(240, 235, 255, 1);
  border: 1px solid rgba(200, 197, 208, 0.2);
  padding: 32px;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.second-gen h3 {
  font-size: 26px;
  line-height: 1.4;
  margin: 18px 0 16px;
  font-weight: 700;
}

.second-gen .content {
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gen-support {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  margin-top: auto;
}

@media (max-width: 1280px) {
  .first-gen h2 {
    font-size: 30px;
  }
  .gen-para__2 {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .first-gen,
  .second-gen {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .gen-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }
  .first-gen,
  .second-gen {
    width: 100%;
  }
  .first-gen {
    padding: 32px 24px;
  }
  .first-gen h2 {
    font-size: 32px;
  }
  .second-gen {
    padding: 28px 24px;
  }
  .second-gen h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .first-gen {
    padding: 24px 20px;
  }
  .first-gen h2 {
    font-size: 26px;
  }
  .gen-para {
    font-size: 14px;
  }
  .first-gen .gen-btn {
    width: 100%;
    min-width: unset;
  }
}

/* =========================================================
   PRODUCTS PAGE — PRODUCT CARD
========================================================= */

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(200, 197, 208, 0.35);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  background-color: rgba(255, 255, 255, 1);
}

.product-card:hover {
  border-color: rgba(0, 212, 184, 0.35);
  transform: translateY(-2px);
}

.product-img {
  /* background: #f6f1ff; */
  mix-blend-mode: multiply;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: auto;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 80%;
  background: #f6f1ff;
  height: 100%;
  margin: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.badge-refrigerated {
  background: var(--accent);
  color: #000;
}
.badge-clinical {
  background: var(--accent2);
  color: #fff;
}
.badge-high-volume {
  background: #f59e0b;
  color: #000;
}
.badge-new {
  background: #ef4444;
  color: #fff;
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: white;
}

.product-body h5 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 6px;
}

.product-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.stat-cell {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.card-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.btn-specs {
  padding: 9px;
  background: transparent;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-quote {
  padding: 9px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  font-size: 10px;
  letter-spacing: 1px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-quote:hover {
  opacity: 0.85;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  background: #e8e9eb;
}

/* =========================================================
   PRODUCTS PAGE — RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .page-layout {
    flex-direction: column;
  }
  .sidebar-toggle {
    display: flex !important;
  }
  .sidebar {
    position: fixed;
    top: 50px;
    left: 0;
    height: calc(100vh - 50px);
    z-index: 200;
    transform: translateX(-100%);
    background: var(--bg2);
    width: 280px;
    min-width: 260px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
  }
  .sidebar-overlay.open {
    display: block;
  }
  .remove-sidebar {
    display: block;
    cursor: pointer;
    padding: 10px;
    font-weight: 700;
  }
  .main-content {
    padding: 20px 16px 36px;
    width: 100%;
  }
  .topbar {
    padding: 10px 16px;
  }
  .container-xl.d-flex {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .sidebar-toggle {
    display: none;
  }
}

@media (max-width: 575px) {
  .page-layout {
    flex-direction: column;
    width: 100%;
  }
  .product-img {
    width: 100% !important;
  }
  .main-content {
    padding: 14px 10px 28px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card {
    padding: 14px;
  }
  .product-body {
    padding: 14px 10px;
  }
  .product-body h5 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .product-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .stat-cell {
    padding: 8px 4px;
  }
  .stat-value {
    font-size: 13px;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .btn-specs {
    font-size: 10px;
    padding: 8px 4px;
  }
  .btn-quote {
    font-size: 9px;
    padding: 8px 10px;
  }
  .topbar {
    padding: 10px 12px;
  }
}
/* =========================================================
   PRODUCT DETAIL PAGE — PRODUCT DETAIL SECTION
========================================================= */

.product-detail {
  background-color: #ffffff;
  padding: 60px 0;
}

.detail-main-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.detail-img-col {
  /* flex: 1 1 420px; */
  /* display: flex; */
  justify-content: center;
  align-items: center;
  max-width: 520px;
}

/* Zoom */
.img-zoom-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}



.zoom-lens {
  position: absolute;
  border: 2px solid #00bdb6;
  border-radius: 4px;
  width: 120px;
  height: 120px;
  cursor: crosshair;
  display: none;
  background-color: rgba(0, 189, 182, 0.08);
  pointer-events: none;
}

.zoom-result {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  width: 400px;
  height: 400px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
}

@media (max-width: 900px) {
  .zoom-result {
    display: none !important;
  }
  .zoom-lens {
    display: none !important;
  }
}

.product-detail-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  display: block;
}

.detail-content-container {
  flex: 1 1 340px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.text-teal {
  color: var(--teal);
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-content-container h1 {
  font-size: clamp(2.8rem, 4vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--primary);
}

.detail-content-container .text-muted {
  font-size: 15px;
  line-height: 1.7;
  color: #5b6e8c !important;
  max-width: 440px;
  margin-bottom: 28px;
}

.detail-btn-con {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.contact-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.contact-link:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* galary images*/

.detail-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  gap: 12px;
}

.product-gallery {
  display: flex;
  flex-direction: row; /* horizontal row */
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-thumb {
    width: 21%;
    padding: 4px;
    height: 78px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.gallery-thumb:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

.gallery-thumb.active {
  border-color: #00897b;
  opacity: 1;
}

/* =========================================================
   PRODUCT DETAIL PAGE — FEATURES SECTION
========================================================= */

.features-section {
  background-color: #ffffff;
}

.features-inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.features-left {
  flex: 1 1 340px;
  max-width: 500px;
}

.features-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0b0f5c;
  margin-bottom: 18px;
}

.text-muted-para {
  font-size: 15px;
  line-height: 1.8;
  color: #5b6e8c;
  margin: 0;
}

.features-right {
  flex: 1 1 340px;
  max-width: 540px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.feat-box {
  min-height: 150px !important;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feat-box .box-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.feat-box .box-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.feat-box .box-body p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 380px;
}

.box-light {
  background: #fff;
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.box-light .box-body h3 {
  color: #0b0f5c;
}
.box-light .box-body p {
  color: #5b6e8c;
}

.box-dark {
  background: #0b0f5c;
}
.box-dark .box-body h3 {
  color: #fff;
}
.box-dark .box-body p {
  color: #a8b4cc;
}

/* =========================================================
   PRODUCT DETAIL PAGE — TABS SECTION
   Scoped to .navTabs and .product-detail-tabs to avoid
   overriding Bootstrap .tab-content globally
========================================================= */
.tab-main-wrapper {
  width: 100%;
  background: transparent;
  padding-top: 16px;
}

.navTabs {
  border-bottom: 2px solid #e2e8f0;
  padding-left: 0;
  margin-bottom: 0;
  gap: 4px;
  flex-wrap: wrap;
}

.navTabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #2d3e50;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  padding: 12px 16px 14px;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.navTabs .nav-link:hover {
  color: var(--teal);
}

.navTabs .nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 700;
}

.tab-main-wrapper .tab-content {
  background: #f8f4ff;
  border: 2px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 48px 40px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.tab-pane {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .navTabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap; /* keep tabs in one row, scrollable */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* hide scrollbar Firefox */
  }

  .navTabs::-webkit-scrollbar {
    display: none; /* hide scrollbar Chrome/Safari */
  }

  .navTabs .nav-link {
    font-size: 0.82rem;
    padding: 10px 12px 12px;
    flex-shrink: 0; /* prevent tabs from squishing */
  }

  .tab-main-wrapper .tab-content {
    padding: 24px 16px;
    min-height: auto;
    border-radius: 0 0 12px 12px;
  }

  .tab-pane {
    gap: 24px; /* reduce massive gap on mobile */
    flex-direction: column; /* stack children vertically */
    align-items: flex-start;
  }
}

/* =========================================================
   PRODUCT DETAIL PAGE — SPECS
========================================================= */

.spec-left {
  flex: 0 0 300px;
  max-width: 340px;
}

.spec-title {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: #1e2a3e;
  margin-bottom: 12px;
}

.spec-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5b6e8c;
  margin-bottom: 0;
}

.spec-box {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  margin-top: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #edeff2;
}

.certified-badge {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-box p {
  font-size: 11.5px;
  line-height: 1.6;
  color: #3a4a6e;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-list-container {
  flex: 1 1 300px;
}

.spec-item {
  border-bottom: 2px solid #e2e8f0;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8896a9;
  text-transform: uppercase;
}

.spec-item strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #0b2b3b;
}

/* =========================================================
   PRODUCT DETAIL PAGE — ROTORS & ACCESSORIES PANEL
========================================================= */

.rotors-panel,
.accessories-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.rotors-card-grid,
.accessories-grid {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  width: 100%;
  max-width: 740px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.rotors-card-grid h3,
.accessories-grid h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b0f5c;
  margin-bottom: 4px;
}

.rotor-spec-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.rotor-metric {
  flex: 1 1 160px;
  background: #f5f7ff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #eaecf6;
}

.rotor-metric .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #8896a9;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rotor-metric .value {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0b0f5c;
  line-height: 1.2;
}

.rotor-metric .unit {
  font-size: 0.72rem;
  color: #8896a9;
  margin-top: 4px;
}

/* ⚠️ Renamed from .acc-badge → .acc-pill (conflicts with global .acc-badge) */
/* Update your HTML: class="acc-badge" → class="acc-pill" in accessories list */
.accessories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.acc-pill {
  background: #f0f2f9;
  color: #2d4059;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
}

/* =========================================================
   PRODUCT DETAIL PAGE — DOWNLOADS SECTION
========================================================= */

.downloads-section {
  background-color: #fcf8ff;
  padding: 72px 0;
}

.down-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: start;
  color: #0b0f5c;
  margin-bottom: 40px;
}

.down-con {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.down-box {
      width: 264px;
    min-height: 84px;
 margin: 15px 0px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.25s,
    transform 0.2s;
  border: 1px solid #ece8f5;
}

.down-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.down-box .material-symbols-outlined {
  font-size: 25px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.down-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0b0f5c;
  margin: 0 0 4px;
}
.down-box small {
  font-size: 12px;
  color: #8896a9;
}

/* =========================================================
   PRODUCT DETAIL PAGE — FOOTER PLACEHOLDER
========================================================= */

.footer-placeholder {
  background: #0b0f5c;
  color: #a8b4cc;
  text-align: center;
  padding: 28px 16px;
  font-size: 13px;
}

/* =========================================================
   PRODUCT DETAIL PAGE — ROTOR CARDS GRID
========================================================= */
.rotor_card {
  min-width: 0;
  padding: clamp(10px, 3.5vw, 28px);
  display: flex;
  background-color: #fff;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Accent bar that slides in on hover */
.rotor_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00BDB6, #00BDB6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.rotor_card:hover::before {
  transform: scaleX(1);
}

.rotor_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  border-color: rgba(232, 147, 10, 0.35);
  z-index: 2;
}

.rotor_card:active {
  transform: translateY(-2px) scale(0.995);
}

.rotor_card_header {
  width: 100%;
  height: 160px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rotor_card_header img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.rotor_card:hover .rotor_card_header img {
  transform: scale(1.08);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card-title {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: #e8930a;
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition: color 0.25s ease;
}

.rotor_card:hover .card-title {
  color: #00BDB6;
}

.card-subtitle {
  font-size: clamp(11px, 1.2vw, 13px);
  color: #666;
  font-weight: 400;
  margin-top: 3px;
}

.card-tagline {
  font-size: clamp(11.5px, 1.2vw, 13.5px);
  font-weight: 700;
  color: #222;
  margin-top: 12px;
}

.rotor-section {
  margin-bottom: 10px;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.rotor_card:hover .rotor-section {
  opacity: 1;
}

.rotor-section:last-child {
  margin-bottom: 0;
}

.rotor-label {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.spec-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.rotor_card:hover .spec-icon {
  transform: scale(1.12);
}

.spec-text {
  font-size: clamp(12px, 1.2vw, 13.5px);
  font-weight: 300;
  color: #333;
  margin: 0 4px;
}

/* Optional: "View Details" hint that fades in on hover */
.card-cta {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #e8930a;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.rotor_card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   PRODUCT DETAIL PAGE — RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .product-detail {
    padding: 20px 8px;
  }
  .detail-main-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .gallery-thumb {
    width: 60px;
    height: 60px;
  }

  .detail-img-col {
    max-width: 512px;
  }
  .detail-content-container {
    align-items: center;
    max-width: 100%;
  }
  .detail-content-container .text-muted {
    max-width: 92%;
  }
  .detail-btn-con {
    justify-content: center;
  }
  .features-section {
    padding: 56px 0 48px;
  }
  .features-inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .features-left {
    max-width: 100%;
  }
  .features-right {
    max-width: 100%;
  }
  .feat-box .box-body p {
    max-width: 100%;
  }
  .tab-main-wrapper .tab-content {
    padding: 32px 24px;
    min-height: unset;
  }
  .tab-pane {
    flex-direction: column;
    gap: 10px;
  }
  .spec-left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .spec-list-container {
    flex: unset;
    width: 100%;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 28px 24px;
  }
  .down-con {
    gap: 16px;
  }
  .down-box {
    max-width: 100%;
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .product-detail {
    padding: 20px 8px;
  }
  .detail-img-col {
    max-width: 280px;
  }
  .detail-content-container h1 {
    font-size: 2.25rem;
  }
  .features-section {
    padding: 44px 0 36px;
  }
  .tab-main-wrapper .tab-content {
    padding: 24px 16px;
    border-radius: 0 0 14px 14px;
  }
  .navTabs .nav-link {
    font-size: 0.82rem;
    padding: 10px;
    border: none !important;
  }
  .spec-title {
    font-size: 1.25rem;
  }
  .spec-desc {
    font-size: 14px;
  }
  .spec-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .spec-item strong {
    font-size: 1.35rem;
  }
  .rotor-metric {
    flex: 1 1 calc(50% - 8px);
  }
  .rotors-card-grid h3,
  .accessories-grid h3 {
    font-size: 1.25rem;
  }
  .down-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .detail-img-col {
    max-width: 300px;
  }
  .detail-btn-con {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .feat-box {
    padding: 18px 20px;
  }
  .feat-box .box-icon {
    font-size: 22px;
  }
  .feat-box .box-body h3 {
    font-size: 15px;
  }
  .feat-box .box-body p {
    font-size: 13px;
  }
  .rotor-metric {
    flex: 1 1 100%;
  }
  .acc-pill {
    font-size: 12.5px;
    padding: 8px 14px;
  }
  .downloads-section {
    padding: 48px 0;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 22px 18px;
  }
}

/* comparison */

/* ── Page wrapper ── */
.page-wrap {
  /* max-width: 780px; */
  background-color: #f6f1ff;
}

/* ── Top bar ── */
.top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.top-bar__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #7a7f9a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-bar__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0d0f2b;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  background: #0d0f2b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.btn-export:hover {
  background: #1e2260;
  transform: translateY(-1px);
}

/* ── Comparison grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Product card ── */
.compare-grid .product-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__header {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #f0f0f5;
}

.product-card__img-wrap {
  width: 192px;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
  overflow: hidden;
  padding: 8px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0d0f2b;
  margin: 0 0 6px;
  text-align: center;
}

.product-card__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e04b4b;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s;
}
.product-card__remove:hover {
  opacity: 0.65;
}

/* ── Spec rows ── */
.spec-list {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.spec-row:last-child {
  border-bottom: none;
}
.spec-group {
  /* background: #fff; */
  border: 1px solid #e8ebf3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid #edf1f7;
  transition: all .25s ease;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: #f8fbff;
  transform: translateX(4px);
}

.spec-label {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7b849d;
  line-height: 1.6;

  overflow-wrap: anywhere;
  word-break: break-word;
}

.spec-value {
  flex: 0 0 130px;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: #0d0f2b;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.spec-row--head .spec-label {
  color: #1d2b53;
  font-weight: 700;
}

.spec-sub .spec-label {
  font-size: 11px;
  color: #8a8faa;
}

.spec-note .spec-label {
  font-size: 11px;
  text-transform: none;
  letter-spacing: normal;
  color: #666;
}

@media (max-width: 767px) {
  .spec-row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .spec-value {
    flex: unset;
    width: 100%;
    text-align: left;
    font-size: 14px;
  }

  .spec-label {
    font-size: 11px;
  }
}

.spec-value.dash {
  color: #c0c4d6;
  font-size: 16px;
  font-weight: 300;
}

.spec-value.check {
  color: #00b89c;
  font-size: 16px;
}

/* ── Add product card ── */
.add-card {
  background: transparent;
  border: 2px dashed #c8c6dc;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  background-color: #f7f4ff;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  min-height: 200px;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.add-card:hover {
  border-color: #9d98c8;
  background: rgba(157, 152, 200, 0.05);
}

.add-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #b8b5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #b8b5d4;
  font-size: 20px;
  font-weight: 300;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.add-card:hover .add-card__icon {
  border-color: #7b77b8;
  color: #7b77b8;
}

.add-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8b5d4;
  text-align: center;
  padding: 0 16px;
  transition: color 0.2s;
}

.add-card:hover .add-card__label {
  color: #7b77b8;
}

/* ── Bottom action bar ── */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-clear {
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: #0d0f2b;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(13, 15, 43, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-clear:hover {
  border-color: rgba(13, 15, 43, 0.4);
  background: #f8f8fc;
  transform: translateY(-1px);
}

.btn-add-products {
  height: 44px;
  padding: 0 24px;
  background: #f5a623;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-add-products:hover {
  background: #e09518;
  transform: translateY(-1px);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Move add-card to full width below */
  .add-card {
    grid-column: 1 / -1;
    min-height: 90px;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
  }

  .add-card__label {
    padding: 0;
  }

  .product-card__img-wrap {
    width: 100px;
    height: 88px;
  }

  .spec-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .spec-value {
    font-size: 12px;
  }
  .spec-row {
    padding: 9px 14px;
  }
  .product-card__header {
    padding: 16px 14px 12px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
  .top-bar {
    margin-bottom: 20px;
    gap: 10px;
  }
  .top-bar__title {
    font-size: 22px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .add-card {
    grid-column: auto;
    flex-direction: column;
    min-height: 72px;
    padding: 16px 20px;
  }

  .product-card__img-wrap {
    width: 150px;
    height: 150px;
  }
  .product-card__name {
    font-size: 15px;
  }

  .action-bar {
    justify-content: stretch;
  }
  .btn-clear,
  .btn-add-products {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .spec-label {
    font-size: 8.5px;
  }
  .spec-row {
    padding: 8px 12px;
  }
  .btn-export {
    font-size: 9px;
    padding: 0 12px;
  }
}

/* ── Certificate ── */
.cp-ph {
  padding: 12px 40px 0; /* FIX: base padding defined */
  font-family: "Manrope", sans-serif !important;
}
.cp-ph__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #0f0e2e;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

/* ── BODY WRAPPER ── */
.cp-body {
  padding: 30px 0px;
}

/* ── TWO-COLUMN LAYOUT ── */
.cp-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════
           LEFT PANEL
        ══════════════════════════════════ */

.cp-qa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eae5ff;
  border: 1px solid #e2e0f0;
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif !important;
}
.cp-qa__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f46e5;
  flex-shrink: 0;
}
.cp-qa__txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3730a3;
}

.cp-left__h2 {
  font-size: clamp(25px, 2.5vw, 30px) !important;
  font-weight: 900 !important;
  color: #0f0e2e !important;
  padding: 8px 0px;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: left !important;
  font-family: "Manrope", sans-serif;
}

.cp-left__p {
  font-size: 20px !important;
  font-family: "Manrope", sans-serif;

  line-height: 1.85;
  color: #6b7280;
  font-weight: 400;
  text-align: justify !important;
  margin-bottom: 32px;
  max-width: 100%;
  margin-top: 0;
}

.cp-ent__label {
  font-size: 20px !important;
  font-weight: 800;
  color: #111827;
  font-family: "Manrope", sans-serif;
  margin-bottom: 20px !important;
  display: block;
  letter-spacing: 0.02em;
}

.cp-ent__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp-ent__card {
  background: #ffffff;
  border-bottom: 4px solid #006a6633;
  border-radius: 12px;
  font-family: "Manrope", sans-serif !important;

  padding: 14px 16px 16px;
  box-shadow: none;
}
.cp-ent__card-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.cp-ent__card--a .cp-ent__card-ico {
  background: #dbeafe;
}
.cp-ent__card--b .cp-ent__card-ico {
  background: #d1fae5;
}
.cp-ent__card-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.cp-ent__card-sub {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

/* ══════════════════════════════════
           RIGHT — CERT CARDS GRID
        ══════════════════════════════════ */
.cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ececf8;
  font-family: "Manrope", sans-serif !important;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.cp-card:hover {
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.cp-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cp-card__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-card__ico--indigo {
  background: #ede9fe;
}
.cp-card__ico--green {
  background: white;
  color: green;
}
.cp-card__ico--purple {
  background: #f3e8ff;
}
.cp-card__ico--slate {
  background: #f1f5f9;
}

.cp-card__tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 40px;
  white-space: nowrap;
  line-height: 1.4;
}
.cp-card__tag--filled {
  background: #0f0e2e;
  color: #ffffff;
}
.cp-card__tag--outline {
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #6b7280;
}

.cp-card__h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f0e2e;
  line-height: 1.2;
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
}

.cp-card__p {
  font-size: 14px !important;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  text-align: left !important;
  padding-left: 0;
}

.cp-card__lnk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.cp-card__lnk:hover {
  gap: 7px;
  color: #3730a3;
  text-decoration: none;
}
.cp-card__lnk-arr {
  font-size: 15px;
  line-height: 1;
}

/* ══════════════════════════════════
   DOWNLOADS BAND
══════════════════════════════════ */

.cp-dl {
  background: #0d1745;
  /* FIXED: removed max-height: 386px — clips stacked content on mobile */
  padding: 52px 0 48px;
  margin: auto;
  border-radius: 0; /* desktop: flush edges */
}

.cp-dl__inner {
  padding: 0 40px;
}

.cp-dl__h2 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-family: "Manrope", sans-serif;
}

.cp-dl__sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
  max-width: 440px;
  line-height: 1.65;
}

.cp-dl__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.cp-dl__item {
  background: #00022b;
  border: 1px solid #7681d433;
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-sizing: border-box;
}

.cp-dl__item:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.cp-dl__item-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-dl__item-ico--r1,
.cp-dl__item-ico--r2,
.cp-dl__item-ico--r3,
.cp-dl__item-ico--r4 {
  background: #ffdad6;
  color: rgba(186, 26, 26, 1);
}

.cp-dl__item-info {
  flex: 1;
  min-width: 0;
}

.cp-dl__item-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-dl__item-meta {
  font-size: 10.5px;
  color: #7681d4;
  margin: 0;
}

.cp-dl__item-arr {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════ */

/* Large tablet ≤ 1024px */
@media (max-width: 1024px) {
  .cp-layout {
    grid-template-columns: 340px 1fr;
    gap: 36px;
  }
  .cp-dl__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .cp-page {
    padding: 60px 0;
  }
  .cp-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cp-left__p {
    max-width: 100%;
    font-size: 17px !important;
  }
  .cp-dl__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cp-dl {
    margin: 0 24px 48px;
  }
}

/* Tablet ≤ 768px */
@media (max-width: 768px) {
  .cp-page {
    padding: 48px 0;
  }
  .cp-bc__inner,
  .cp-ph {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cp-body {
    padding: 36px 24px 56px;
  }
  .cp-dl {
    margin: 0 16px 40px;
    padding: 40px 0 36px;
    border-radius: 16px;
  }
  .cp-dl__inner {
    padding: 0 24px;
  }
  .cp-card {
    min-height: 260px;
  }
  .cp-dl__sub {
    max-width: 100%; /* ADDED: let subtitle breathe on tablet */
  }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .cp-dl {
    margin: 0 16px 32px 16px; /* FIX: explicit 4-value margin — left AND right */
    padding: 32px 0 28px;
    border-radius: 14px;
    width: auto; /* FIX: prevents parent overflow from stretching it */
    box-sizing: border-box;
  }
  .cp-page {
    padding: 36px 0;
  }
  .cp-bc__inner,
  .cp-ph {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cp-body {
    padding: 28px 20px 48px;
  }
  .cp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cp-card {
    min-height: unset;
  }
  .cp-ent__row {
    grid-template-columns: 1fr 1fr;
  }
  .cp-left__p {
    font-size: 16px !important;
  }
  .cp-dl {
    margin: 0 12px 32px; /* FIXED: was cutting into screen edge */
    padding: 32px 0 28px;
    border-radius: 14px;
  }
  .cp-dl__inner {
    padding: 20px 20px;
  }
  .cp-dl__h2 {
    margin-bottom: 8px; /* ADDED: tighter on mobile */
  }
  .cp-dl__sub {
    font-size: 13px;
    margin-bottom: 24px; /* ADDED: reduce bottom gap on mobile */
    max-width: 100%;
  }
  .cp-dl__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cp-dl__item {
    min-height: 64px; /* ADDED: slightly smaller tap target is fine */
    padding: 12px 14px;
  }
}

/* Small mobile ≤ 400px */
@media (max-width: 400px) {
  .cp-page {
    padding: 28px 0;
  }
  .cp-card__top {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cp-ent__row {
    grid-template-columns: 1fr;
  }
  .cp-dl {
    margin: 0 8px 28px; /* FIXED: minimal margin on very small screens */
    border-radius: 12px;
  }
  .cp-dl__inner {
    padding: 20px 16px; /* ADDED: tighter inner padding */
  }
  .cp-dl__item-name {
    font-size: 11px;
  }
  .cp-dl__item-ico {
    width: 30px; /* ADDED: slightly smaller icon on tiny screens */
    height: 30px;
  }
  .cp-dl__item {
    gap: 10px;
    padding: 10px 12px;
  }
}

/* Clean and care */

/* ── Breadcrumb ── */

.certificate-page {
  font-family: "Manrope", sans-serif;
  background: #f5f4fc;
  padding: 100px 0px;
  margin-bottom: 30px;
  color: #111;
}

.sp-breadcrumb {
  padding: 25px 0 0;
}

.sp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-breadcrumb__item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
}

.sp-breadcrumb__item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb__item a:hover {
  color: #0d0f2b;
}

.sp-breadcrumb__sep {
  font-size: 10px;
  color: #cbd5e1;
}

.sp-breadcrumb__item--active {
  color: #0d0f2b;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-top: 30px;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

/* ── Care Section ── */

.care-sec-container {
  padding: 60px 0px 72px;
}

.care-sec-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ── Left text column ── */
.care-col__text {
  flex: 1 1 0;
}

.care-col__text span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  color: rgba(0, 106, 102, 1);
  margin-bottom: 16px;
}

.care-col__text p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.85;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
}

/* ── Right image column ── */
.care-col__img {
  flex: 0 0 auto;
  width: 374px;
}

.care-img-container {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.care-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* youtube vedio play */

.resource-card__media_video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* or use padding-top: 56.25% trick */
  overflow: hidden;
}

.resource-card__media_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */

/* Tablet ≤ 1024px — shrink image */
@media (max-width: 1024px) {
  .care-col__img {
    width: 300px;
  }
  .care-sec-inner {
    gap: 36px;
  }
}

/* Tablet ≤ 768px — stack vertically */
@media (max-width: 768px) {
  .care-sec-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .care-col__img {
    width: 100%;
  }
  .care-img-container {
    aspect-ratio: 16 / 9; /* landscape ratio when stacked */
    border-radius: 12px;
  }
  .care-sec-container {
    padding: 40px 0 56px;
  }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .certificate-page {
    padding: 20px 0px;
    margin-bottom: 20px;
  }
  .care-col__text p {
    font-size: 15px;
  }
  .care-sec-container {
    padding: 32px 0 48px;
  }
}

/* Why section */
.why-sec {
  background: #f6f1ff;
  padding: 80px 0;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

.why-sec__hd {
  text-align: center;
  margin: 0 auto 72px;
  padding: 0 20px;
}

.why-sec__h2 {
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #111132;
  margin: 16px auto;
  max-width: 1020px;
}
.why-sec__sub {
  font-size: 15px;
  line-height: 1.8;
  color: #7b8191;
  max-width: 580px;
  margin: 0 auto;
}

.why-sec__rows {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-sec__rows::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dde0f0;
  transform: translateX(-50%);
  z-index: 0;
}

/* ── Row grid: 3 cols — text | icon | text ── */
.why-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: start;
  margin-bottom: 72px;
  position: relative;
}
.why-row:last-child {
  margin-bottom: 0;
}

/* Normal: text in col 1, icon in col 2, col 3 empty */
.why-row .why-row__txt {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 36px;
  max-width: 100%;
}
.why-row .why-row__ico {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.why-row .why-row__empty {
  grid-column: 3;
  grid-row: 1;
}

/* Reversed: col 1 empty, icon col 2, text col 3 */
.why-row--rev .why-row__empty {
  grid-column: 1;
  grid-row: 1;
}
.why-row--rev .why-row__ico {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.why-row--rev .why-row__txt {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  padding-left: 36px;
  padding-right: 0;
  max-width: 100%;
}

.why-row__ico-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #06b6b4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 182, 180, 0.22);
}

.why-row__ico-ring .material-symbols-outlined {
  font-size: 30px;
  color: white;
}

.why-row__h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #17173a;
  margin-bottom: 12px;
  line-height: 1.25;
}
.why-row__p {
  font-size: 14px;
  line-height: 1.9;
  color: #6f7482;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-sec {
    padding: 56px 0;
  }
  .why-sec__hd {
    margin-bottom: 48px;
  }
  .why-sec__rows::before {
    left: 28px;
    transform: none;
  }

  .why-row,
  .why-row--rev {
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
    margin-bottom: 52px;
  }
  .why-row .why-row__ico,
  .why-row--rev .why-row__ico {
    grid-column: 1;
    grid-row: 1;
  }

  .why-row .why-row__txt,
  .why-row--rev .why-row__txt {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
    max-width: 100%;
  }
  .why-row .why-row__empty,
  .why-row--rev .why-row__empty {
    display: none;
  }

  .why-row__ico-ring {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .why-sec__rows::before {
    left: 24px;
  }
  .why-row,
  .why-row--rev {
    grid-template-columns: 50px 1fr;
    gap: 0 14px;
    margin-bottom: 40px;
  }
  .why-row__ico-ring {
    width: 46px;
    height: 46px;
  }
  .why-row__h3 {
    font-size: 20px;
  }
}

/* ── Technical Resource Hub ── */
.resource-hub {
  font-family: "Manrope", sans-serif;
  background: #fff;
  padding: 72px 0;
}

.resource-hub__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0bbfb8;
  margin-bottom: 10px;
}

.resource-hub__heading {
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 40px;
}

.resource-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
.resource-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 28px 28px 0;
  height: 634px;
  display: flex;
  flex-direction: column;
}

.resource-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 20px; */
}

.resource-card__badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e6f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0bbfb8;
  flex-shrink: 0;
}

.resource-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
}

.resource-card__title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #0d0f2b;
  line-height: 1.25;
  margin: 12px 0px;
}

.resource-card__desc {
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 24px;
}

/* ── Media area ── */
.resource-card__media {
  width: 100%;
  border-radius: 12px 12px 0 0;
  position: relative;
  aspect-ratio: 16 / 10;
}

.resource-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.resource-card__media_video {
  width: 100%;
  max-height: 297px;
  border-radius: 12px 12px 0 0;
  position: relative;
  margin-top: 60px;
}

.resource-card__media_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Play button overlay */
.resource-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0bbfb8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 16px rgba(11, 191, 184, 0.35);
}

.resource-card__play:hover {
  background: #09a8a2;
  transform: translate(-50%, -50%) scale(1.07);
}

.resource-card__play svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .resource-hub__grid {
    gap: 18px;
  }
  .resource-card {
    padding: 22px 22px 0;
  }
  .resource-card {
    height: auto;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

@media (max-width: 640px) {
  .resource-hub {
    padding: 48px 0;
  }
  .resource-hub__grid {
    grid-template-columns: 1fr;
  }
  .resource-card__title {
    font-size: 20px;
  }
  .resource-card__media {
    aspect-ratio: 16 / 9;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .resource-hub {
    padding: 36px 0;
  }
  .resource-card {
    padding: 20px 20px 0;
  }
  .resource-card__badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

/* ══════════════════════════════════
   CONTACT US PAGE
══════════════════════════════════ */
/* ── Hero Banner ── */
.cu-hero {
  background: #f0effe;
  padding: 72px 0 80px;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
  position: relative;
}

.cu-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 14px;
}
.cu-hero p {
  font-size: 13.5px;
  color: #6b7280;
  font-weight: 500;
}

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays for info columns */
.cu-info__col:nth-child(1) {
  transition-delay: 0s;
}
.cu-info__col:nth-child(2) {
  transition-delay: 0.12s;
}
.cu-info__col:nth-child(3) {
  transition-delay: 0.24s;
}

/* hero text stagger */
.cu-hero h1 {
  transition-delay: 0s;
}
.cu-hero p {
  transition-delay: 0.14s;
}
/* ── Info Strip ── */
.cu-info {
  padding: 72px 0;
  font-family: "Manrope", sans-serif;
  background: #fff;
}
.cu-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 180px;
}
.cu-info__col {
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← content centered inside column */
  align-items: flex-start;
  padding: 0 130px;
  border-right: 1px solid #dde0ef;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-info__col:first-child {
  padding-left: 0;
}
.cu-info__col:last-child {
  border-right: none;
  padding-right: 0;
}
.cu-info__col:hover {
  transform: translateY(-4px);
}
.cu-info__col:nth-child(1) {
  transition-delay: 0s;
}
.cu-info__col:nth-child(2) {
  transition-delay: 0.1s;
}
.cu-info__col:nth-child(3) {
  transition-delay: 0.2s;
}

.cu-info__label {
  font-size: 21px;
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.cu-info__line {
  font-size: 14.5px;
  color: #47464f;
  font-weight: 400;
  display: block;
}
.cu-info__line--gap {
  margin-top: 8px;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .cu-info__col {
    padding: 0 40px;
  }
  .cu-info__col:first-child {
    padding-left: 0;
  }
  .cu-info__col:last-child {
    padding-right: 0;
  }
}
/* ── Mobile ── */
@media (max-width: 768px) {
  .cu-info {
    padding: 44px 0;
  }
  .cu-info__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cu-info__col {
    padding: 28px 0 !important;
    border-right: none;
    border-bottom: 1px solid #dde0ef;
    height: auto;
  }
  .cu-info__col:first-child {
    padding-top: 0 !important;
  }
  .cu-info__col:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
}
/* ── Small mobile ── */
@media (max-width: 480px) {
  .cu-info {
    padding: 36px 0;
  }
  .cu-info__label {
    font-size: 18px;
  }
  .cu-info__line {
    font-size: 14px;
  }
}
/* ── Form Section ── */
.cu-form-sec {
  padding: 60px 0 80px;
}

.cu-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin: 0 auto;
}
.cu-form-heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cu-form-sub {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 500;
}

/* ── Form Controls ── */
.cu-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cu-input,
.cu-select,
.cu-textarea {
  width: 100%;
  border: 1px solid #e0e0ee;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #0d0f2b;
  background: #fff;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.18s;
}
.cu-input:focus,
.cu-select:focus,
.cu-textarea:focus {
  border-color: #0bbfb8;
  box-shadow: 0 0 0 3px rgba(11, 191, 184, 0.12);
  transform: translateY(-1px);
}

.cu-input {
  height: 44px;
  padding: 0 14px;
}
.cu-input::placeholder {
  color: #b0b7c3;
  font-size: 12.5px;
}

.cu-select {
  height: 44px;
  padding: 0 14px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color: #b0b7c3;
}
.cu-select {
  height: 44px;
  padding: 0 40px 0 14px; /* ← right padding makes room for the icon */
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0b7c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  cursor: pointer;
  color: #b0b7c3; /* placeholder color */
}

/* darken arrow when a real option is selected */
.cu-select.selected {
  color: #0d0f2b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d0f2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.cu-select:focus {
  border-color: #0bbfb8;
  box-shadow: 0 0 0 3px rgba(11, 191, 184, 0.12);
  outline: none;
}
.cu-select option {
  color: #0d0f2b;
}

.cu-textarea {
  padding: 12px 14px;
  resize: none;
  height: 100px;
}
.cu-textarea::placeholder {
  color: #b0b7c3;
  font-size: 12.5px;
}

.cu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Submit button ── */
.cu-submit {
  width: 100%;
  height: 50px;
  background: #0bbfb8;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.22s,
    transform 0.15s,
    box-shadow 0.22s;
}
/* ripple layer */
.cu-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 65%
  );
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  border-radius: 6px;
}
.cu-submit:hover {
  background: #09a8a2;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 191, 184, 0.3);
}
.cu-submit:hover::after {
  opacity: 1;
  transform: scale(2.2);
}
.cu-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Spinner inside button ── */
.cu-submit .btn-text {
  transition: opacity 0.2s;
}
.cu-submit .btn-spin {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.cu-submit.loading .btn-text {
  opacity: 0;
}
.cu-submit.loading .btn-spin {
  display: block;
}

/* ── Success message ── */
.cu-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #065f46;
  font-weight: 600;
  margin-top: 4px;
  animation: slideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-success.show {
  display: flex;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cu-success svg {
  flex-shrink: 0;
}

.cu-info__line_1 {
    text-align: left;
    line-height: 1.8;
}

/* ── Side Image ── */
.cu-img-wrap {
  border-radius: 14px;
  width: 100%;
  max-width: 590px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
/* shimmer overlay on load */
.cu-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 2.2s ease infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.cu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-img-wrap:hover img {
  transform: scale(1.04);
}

/* ── Field error state ── */
.cu-input.error,
.cu-select.error,
.cu-textarea.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cu-info__col {
    padding: 0 24px 0 0;
  }
  .cu-info__col + .cu-info__col {
    padding-left: 24px;
  }
  .cu-form-wrap {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cu-hero {
    padding: 48px 0 56px;
  }
  .cu-info {
    padding: 40px 0;
  }
  .cu-info__grid {
    flex-direction: column;
    gap: 0;
  }

  .cu-info__col {
    border-right: none;
    border-bottom: 1px solid #e0e0ee;
    padding: 28px 0 !important;
    margin-bottom: 0;
  }
  .cu-info__col:first-child {
    padding-top: 0 !important;
  }
  .cu-info__col:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
  .cu-form-sec {
    padding: 40px 0 56px;
  }
  .cu-form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cu-img-wrap {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .cu-img-wrap img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .cu-hero {
    padding: 36px 0 44px;
  }
  .cu-hero h1 {
    letter-spacing: -1.5px;
  }
  .cu-info {
    padding: 32px 0;
  }
  .cu-form-sec {
    padding: 32px 0 44px;
  }
  .cu-row {
    grid-template-columns: 1fr;
  }
}
/* ══════════════════════════════════════
   SPARE PARTS PAGE  —  prefix: sp-
══════════════════════════════════════ */

/* ── Breadcrumb ── */
.sp-breadcrumb {
  padding: 25px 0 0;
}

.sp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-breadcrumb__item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb__item a:hover {
  color: #0d0f2b;
}

.sp-breadcrumb__sep {
  font-size: 12px;
  font-weight: 400;
  color: #cbd5e1;
}

.sp-breadcrumb__item--active {
  font-size: 12px;
  font-weight: 400;
  color: #0d0f2b;
}

/* ══════════════════════════════════════
   SECTION 1 — Hero
══════════════════════════════════════ */
.sp-hero {
  padding: 28px 0 52px;
}

.sp-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* Left */
.sp-hero__left {
  flex: 0 0 auto;
}

.sp-hero__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b998b;
  margin-bottom: 16px;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

/* Right */
.sp-hero__right {
  flex: 1 1 auto;
  max-width: 500px;
  padding-top: 20px;
}

.sp-hero__body {
  font-size: 18px;
  line-height: 1.8;
  color: #47464f;
  font-weight: 400;
  margin: 0;
}

/* ══════════════════════════════════════
   SECTION 2 — Full-Width Image
══════════════════════════════════════ */
.sp-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.sp-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Label overlay — bottom left */
.sp-banner__label {
  position: absolute;
  bottom: 22px;
  left: 40px;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff33;
  background: #ffffff1a;
  border-radius: 8px;

  backdrop-filter: blur(12px);
  padding: 12px 20px;
}

.sp-banner__label-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3px;
}

.sp-banner__label-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════
   SECTION 3 — Technical Continuity
══════════════════════════════════════ */
.sp-tech {
  padding: 56px 0 64px;
}

.sp-tech__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Left column */
.sp-tech__left {
  flex: 1 1 auto;
}

/* Heading with teal left accent */
.sp-tech__heading {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.sp-tech__heading .sp-line {
  border-bottom: 3px solid #00c9bb;
  width: 60px;
}

.sp-tech__body {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
  max-width: 600px;
  margin: 0 0 40px 0;
}

/* Feature mini-cards row */
.sp-feat-row {
  display: flex;
  gap: 16px;
}

.sp-feat-card {
  flex: 1 1 0;
  background: #f6f1ff;
  max-width: 256px;
  height: 182px;
  border: 1px solid #e8e6f4;
  border-radius: 12px;
  padding: 20px 18px;
}

.sp-feat-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eef9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.sp-feat-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #1b998b;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sp-feat-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0d0f2b;
  margin-bottom: 8px;
}

.sp-feat-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
  font-weight: 400;
}

/* Right column — dark card */
.sp-tech__right {
  flex: 0 0 600px;
}

.sp-partner-card {
  background: #0d0f2b;
  border-radius: 16px;
  padding: 36px 32px 32px;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-partner-card__eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.sp-partner-card__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 28px 0;
}

.sp-partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #00c9bb;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.sp-partner-card__link:hover {
  gap: 14px;
}

.sp-partner-card__link svg {
  width: 14px;
  height: 14px;
  stroke: #00c9bb;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .sp-hero__inner {
    gap: 32px;
  }

  .sp-hero__right {
    padding-top: 28px;
  }

  .sp-banner {
    height: 280px;
  }

  .sp-tech__inner {
    gap: 28px;
  }

  .sp-tech__right {
    flex: 0 0 240px;
  }

  .sp-partner-card {
    padding: 28px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 660px)
══════════════════════════════════════ */
@media (max-width: 660px) {
  .sp-feat-card {
    max-width: 100%;
    margin: 0px 5px;
  }

  /* Hero — stack */
  .sp-hero {
    padding: 20px 0 36px;
  }

  .sp-hero__inner {
    flex-direction: column;
    gap: 20px;
  }

  .sp-hero__left {
    max-width: 100%;
  }

  .sp-hero__right {
    max-width: 100%;
    padding-top: 0;
  }

  .sp-hero__heading {
    font-size: clamp(34px, 9vw, 50px);
    letter-spacing: -1.5px;
  }

  /* Banner shorter on mobile */
  .sp-banner {
    height: 220px;
  }

  .sp-banner__label {
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  /* Tech — stack */
  .sp-tech {
    padding: 40px 0 48px;
  }

  .sp-tech__inner {
    flex-direction: column;
    gap: 32px;
  }

  .sp-tech__left {
    width: 100%;
  }

  .sp-tech__body {
    max-width: 100%;
  }

  .sp-tech__right {
    flex: none;
    width: 100%;
  }

  .sp-partner-card {
    min-height: unset;
    padding: 28px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 420px)
══════════════════════════════════════ */
@media (max-width: 420px) {
  .sp-hero__heading {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -1px;
  }

  .sp-feat-row {
    flex-direction: column;
  }

  .sp-banner {
    height: 180px;
  }
}

/* protfolio */
/* =========================================================
   SERVICE PORTFOLIO SECTION
========================================================= */

.main_PORTFOLIO_SECTION {
  background: #f5f4fc;
  padding: 30px 0px;
  margin-bottom: 30px;
  color: #111;
}

.sp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c9e9e;
}

.sp-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: #111827;
}

.sp-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 38px;
}

.sp-blurb {
  padding-top: 10px;
}

.sp-blurb h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.sp-blurb p {
  font-size: 18px;
  width: 100%;
  line-height: 1.75;
  color: #6b7280;
}

/* =========================================================
   CARDS SECTION
========================================================= */

.sp-cards-inner {
  width: 100%;
  margin: auto;
}

.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* =========================================================
   CARD
========================================================= */

.sp-card {
  background: #ffffff;
  transition: 0.3s ease;
  max-width: 384px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  border-radius: 15px;
}

.sp-card:hover {
  transform: translateY(-4px);
}

.sp-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}

.sp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.sp-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0px 4px;
  overflow: visible;
  height: auto;
}

.sp-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 2, 43, 1);
  margin: 14px 0px 8px;
  flex-shrink: 0;
}

.sp-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #6b7280;
  word-break: break-word;
  margin: 0;
}

.desc-short {
  display: block;
}

.desc-full {
  display: none;
  word-break: break-word;
  white-space: normal;
}

.sp-read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0c9e9e;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.sp-read-more:hover {
  color: #097a7a;
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .sp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-title {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .sp-cards-grid {
    grid-template-columns: 1fr;
  }

  .sp-title {
    font-size: 32px;
  }

  .sp-card {
    max-width: 100%;
  }
}
/* ── Blog ── */

.certificate-page {
  font-family: "Manrope", sans-serif;
  background: #f5f4fc;
  padding: 100px 0px;
  color: #111;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bfc7d3;
  color: #555;
  background: #f5f5f5;
  transition: 0.3s ease;
}

.pagination a.active {
  background: #12c7bf;
  border-color: #12c7bf;
  color: #fff;
  font-weight: 600;
}

.pagination a:hover {
  background: #12c7bf;
  border-color: #12c7bf;
  color: #fff;
}

.pagination .arrow {
  font-size: 22px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .pagination {
    gap: 8px;
  }

  .pagination a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.news-card {
  width: 100%;
  cursor: pointer;
}

.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* =========================================================
   GLOBAL
========================================================= */
* { box-sizing: border-box; }

.blog-details-section {
  padding: 40px 16px 80px;
  max-width: 1140px;
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */
.blog-article-header {
  margin-bottom: 28px;
}

.blog-article-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 6px;
  max-width: 720px;
}

.blog-article-date {
  font-size: 13px;
  color: #888888;
}

/* =========================================================
   CONTENT GRID
========================================================= */
.blog-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* =========================================================
   MAIN CONTENT
========================================================= */
.blog-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 26px;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-body {
  max-width: 100%;
}

.blog-article-body * {
  font-style: normal !important;
}

.blog-article-body p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555555;
  margin-bottom: 20px;
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   SIDEBAR
========================================================= */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-sidebar-card {
  width: 100%;
}

/* image + badge wrapper */
.acc-badge-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.acc-badge-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* category pill — sits on TOP of image, top-left */
.blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 3px;
}

.blog-tag-academy   { background: #0f9b8e; }
.blog-tag-exhibition{ background: #7b2d8e; }

/* date line */
.news-card .blog-sidebar-date {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f9b8e;
  margin-bottom: 6px;
}

.news-card h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  margin: 0 0 8px;
}

.news-card__body h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  margin: 0 0 8px;
}

.news-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #777777;
  margin: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .blog-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-sidebar-card {
    width: calc(50% - 14px);
  }
}

@media (max-width: 640px) {
  .blog-details-section {
    padding: 24px 16px 60px;
  }

  .blog-article-title {
    font-size: 24px;
  }

  .blog-article-body p {
    font-size: 14px;
  }

  .blog-sidebar {
    flex-direction: column;
  }

  .blog-sidebar-card {
    width: 100%;
  }

  .blog-sidebar-card .news-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
  }

  .acc-badge-container {
    aspect-ratio: auto;
    /*height: 100%;*/
    min-height: 90px;
    margin-bottom: 0;
  }
}

/* comparsion page */

/* ── Top bar ── */
.top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.top-bar__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #7a7f9a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-bar__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0d0f2b;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  background: #0d0f2b;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.btn-export:hover {
  background: #1e2260;
  transform: translateY(-1px);
}

/* ── Comparison grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Product card ── */
.product-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__header {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #f0f0f5;
}

.product-card__img-wrap {
  width: 130px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #f8f8fc;
  border-radius: 10px;
  overflow: hidden;
  padding: 8px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* placeholder image via CSS */
.product-card__img-wrap.placeholder-img {
  background: #f0eef8;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0d0f2b;
  margin: 0 0 6px;
  text-align: center;
}

.product-card__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e04b4b;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s;
}
.product-card__remove:hover {
  opacity: 0.65;
}

/* ── Spec rows ── */
.spec-list {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 20px;
  border-bottom: 1px solid black;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row .spec-label {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: black;
  font-weight: 1000;
  flex-shrink: 0;
  line-height: 1.4;
}

.spec-row .spec-value {
  font-size: 12px;
  font-weight: 500;
  color: #0d0f2b;
  text-align: right;
  flex-shrink: 0;
}

.spec-value.dash {
  color: #c0c4d6;
  font-size: 16px;
  font-weight: 300;
}

.spec-value.check {
  color: #00b89c;
  font-size: 16px;
}

/* ── Add product card ── */
.add-card {
  background: transparent;
  border: 2px dashed #c8c6dc;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  min-height: 200px;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.add-card:hover {
  border-color: #9d98c8;
  background: rgba(157, 152, 200, 0.05);
}

.add-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #b8b5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b5d4;
  font-size: 20px;
  font-weight: 300;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.add-card:hover .add-card__icon {
  border-color: #7b77b8;
  color: #7b77b8;
}

.add-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8b5d4;
  text-align: center;
  padding: 0 16px;
  transition: color 0.2s;
}

.add-card:hover .add-card__label {
  color: #7b77b8;
}

/* ── Bottom action bar ── */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-clear {
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: #0d0f2b;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(13, 15, 43, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-clear:hover {
  border-color: rgba(13, 15, 43, 0.4);
  background: #f8f8fc;
  transform: translateY(-1px);
}

.btn-add-products {
  height: 44px;
  padding: 0 24px;
  background: #f5a623;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-add-products:hover {
  background: #e09518;
  transform: translateY(-1px);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Move add-card to full width below */
  .add-card {
    grid-column: 1 / -1;
    min-height: 90px;
    flex-direction: row;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
  }

  .add-card__label {
    padding: 0;
  }

  .product-card__img-wrap {
    width: 100px;
    height: 88px;
  }

  .spec-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .spec-value {
    font-size: 12px;
  }
  .spec-row {
    padding: 9px 14px;
  }
  .product-card__header {
    padding: 16px 14px 12px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
  .top-bar {
    margin-bottom: 20px;
    gap: 10px;
  }
  .top-bar__title {
    font-size: 22px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .add-card {
    grid-column: auto;
    flex-direction: row;
    min-height: 72px;
    padding: 16px 20px;
  }

  .product-card__img-wrap {
    width: 90px;
    height: 78px;
  }
  .product-card__name {
    font-size: 15px;
  }

  .action-bar {
    justify-content: stretch;
  }
  .btn-clear,
  .btn-add-products {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .spec-label {
    font-size: 8.5px;
  }
  .spec-row {
    padding: 8px 12px;
  }
  .btn-export {
    font-size: 9px;
    padding: 0 12px;
  }
}

/* ── FOOTER ── */
.footer-section {
  background: linear-gradient(108deg, #00022b 0%, #000580 60%, #000791 100%);
  color: #ffffff;
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}

/* subtle star-field noise layer */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 18% 30%,
      rgba(79, 142, 247, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(0, 7, 145, 0.25) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* ── GRID ROW ── */
.footer-wrapper {
  display: grid;
  grid-template-columns: minmax(371px, 2fr) repeat(4, minmax(224px, 1fr));
  gap: 30px;
  /* align-items: start; */
  padding-bottom: 52px;
}
/* ── BRAND COLUMN ── */
.footer-brand {
  max-width: 362px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* SVG logo placeholder – replace <img> with your real asset */
.logo-mark {
  width: 52px;
  height: 72px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.footer-text {
  font-size: 14px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 28px;
}

/* social icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s;
  background: transparent;
  text-decoration: none;
}

.social-btn:hover {
  border-color: #4f8ef7;
  background: rgba(79, 142, 247, 0.12);
  transform: translateY(-2px);
}

.social-btn .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 20;
}

.social-btn .fa_icon {
  color: #35cbc5;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-btn:hover .fa_icon {
  color: #ffffff;
}

/* ── NAV COLUMNS ── */
.footer-col {
  min-width: 130px;
}

.footer-heading {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 13.5px;
  font-weight: 400;
  transition:
    color 0.22s,
    padding-left 0.22s;
  display: inline-block;
}

.footer-col a:hover {
  color: #7eb3ff;
  padding-left: 4px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 22px;
}

.footer-bottom p {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #8b96b2;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
/* @media (max-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
  }
} */

@media (max-width: 640px) {
  .footer-section {
    padding-top: 52px;
  }
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom p {
    font-size: 10px;
  }

  .social-btn .material-symbols-outlined {
  font-size: 25px;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 20;
}
}

/* ── Compare Bar ─────────────────────────────────────────── */
.compare-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 2px solid #00b5a9;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: bottom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.compare-bar.visible {
  bottom: 0;
}

.compare-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.compare-bar__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: #00b5a9;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}

.compare-bar__items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-bar__item {
  font-size: 12px;
  background: #e8faf8;
  color: #007a72;
  border: 1px solid #00b5a9;
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.compare-bar__item .remove-item {
  cursor: pointer;
  font-size: 14px;
  color: #00b5a9;
  line-height: 1;
}

.compare-bar__item .remove-item:hover {
  color: #e74c3c;
}

.compare-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.compare-bar__btn {
  background: #00b5a9;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.compare-bar__btn:hover {
  background: #009e94;
}

.compare-bar__clear {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
}

.compare-bar__clear:hover {
  color: #e74c3c;
}

/* ── Tablet (≤768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  .compare-bar {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    bottom: -160px;
  }

  .compare-bar.visible {
    bottom: 0;
  }

  .compare-bar__left {
    width: 100%;
    gap: 8px;
  }

  .compare-bar__text {
    font-size: 13px;
  }

  .compare-bar__items {
    width: 100%;
  }

  .compare-bar__item {
    font-size: 11px;
    padding: 3px 8px;
  }

  .compare-bar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .compare-bar__btn {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    font-size: 12px;
  }

  .compare-bar__clear {
    font-size: 12px;
  }
}

/* ── Mobile (≤480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
  .compare-bar {
    padding: 10px 12px;
    bottom: -180px;
  }

  .compare-bar.visible {
    bottom: 0;
  }

  .compare-bar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .compare-bar__info-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .compare-bar__count {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .compare-bar__text {
    font-size: 12px;
  }

  .compare-bar__items {
    gap: 5px;
  }

  .compare-bar__item {
    font-size: 11px;
    padding: 3px 7px;
    gap: 4px;
  }

  .compare-bar__actions {
    width: 100%;
    gap: 8px;
  }

  .compare-bar__btn {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .compare-bar__clear {
    font-size: 11px;
  }
}

/* ── Compare checkbox: hidden by default, show on card hover ── */
.compare-label {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover .compare-label {
  opacity: 1;
}

/* Accessories page */

.ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  font-family: "Manrope", sans-serif;
}

.ac-cell {
  position: relative;
  overflow: hidden;
}

/* Text cells */
.ac-cell--text {
  background: #eeedf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 100px;
}

/* White variant for Custom Engineering panel */
.ac-cell--text-white {
  background: #ffffff;
}

/* Image cells */
.ac-cell--img {
  min-height: 420px;
}

.ac-cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grid placement */
.ac-cell--accessories-text {
  grid-column: 1;
  grid-row: 1;
}
.ac-cell--accessories-img {
  grid-column: 2;
  grid-row: 1;
}
.ac-cell--custom-img {
  grid-column: 1;
  grid-row: 2;
}
.ac-cell--custom-text {
  grid-column: 2;
  grid-row: 2;
}

/* Eyebrow */
.ac-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1b998b;
  margin-bottom: 18px;
}

/* Heading */
.ac-heading {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  color: #0d0f2b;
  letter-spacing: -1.5px;
  margin: 0 0 20px 0;
}

/* Body */
.ac-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: #3a3a4a;
  font-weight: 400;
  max-width: 360px;
  margin: 0 0 36px 0;
}

/* Buttons row */
.ac-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ac-btn {
  font-family: "Manrope", sans-serif;
  font-size: 9.5px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.ac-btn--solid {
  background: #0d0f2b;
  color: #fff;
  border: 1.5px solid #0d0f2b;
}
.ac-btn--solid:hover {
  background: #1a1d46;
  border-color: #1a1d46;
}

.ac-btn--outline {
  background: transparent;
  color: #0d0f2b;
  border: 1.5px solid #0d0f2b;
}
.ac-btn--outline:hover {
  background: #0d0f2b;
  color: #fff;
}

/* Request link */
.ac-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b998b;
  text-decoration: none;
}
.ac-link::after {
  content: "";
  display: block;
  width: 52px;
  height: 1.5px;
  background: #1b998b;
  flex-shrink: 0;
  transition: width 0.3s ease;
}
.ac-link:hover::after {
  width: 76px;
}

/* ══════════════════════════════════════
   PRECISION CTA BANNER
   prefix: pct-
══════════════════════════════════════ */
.pct-section {
  background: #0b0f2e;
  width: 100%;
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pct-inner {
  max-width: 620px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pct-heading {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0 0 22px 0;
}

.pct-subtext {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
  max-width: 500px;
  margin: 0 0 42px 0;
}

.pct-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pct-btn {
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pct-btn--teal {
  background: #00c9bb;
  color: #0b0f2e;
  border: 1.5px solid #00c9bb;
}
.pct-btn--teal:hover {
  background: #00b5a8;
  border-color: #00b5a8;
}

.pct-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.pct-btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 960px)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .ac-cell--text {
    padding: 48px 36px;
  }
  .ac-cell--img {
    min-height: 340px;
  }
  .ac-heading {
    font-size: clamp(28px, 4.5vw, 44px);
  }
  .ac-body {
    font-size: 13px;
  }

  .pct-section {
    padding: 72px 32px;
  }
  .pct-heading {
    font-size: clamp(22px, 5vw, 36px);
  }
  .pct-subtext {
    font-size: 13.5px;
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   Single column: text → img → img → text
══════════════════════════════════════ */
@media (max-width: 640px) {
  .ac-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ac-cell--accessories-text {
    grid-column: 1;
    grid-row: 1;
  }
  .ac-cell--accessories-img {
    grid-column: 1;
    grid-row: 2;
  }
  .ac-cell--custom-img {
    grid-column: 1;
    grid-row: 3;
  }
  .ac-cell--custom-text {
    grid-column: 1;
    grid-row: 4;
  }

  .ac-cell--text {
    padding: 40px 24px;
  }
  .ac-cell--img {
    min-height: 260px;
  }

  .ac-heading {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1px;
  }
  .ac-body {
    max-width: 100%;
    margin-bottom: 26px;
  }
  .ac-btn {
    font-size: 9px;
    padding: 11px 16px;
  }

  .pct-section {
    padding: 56px 24px;
  }
  .pct-heading {
    font-size: clamp(20px, 7vw, 30px);
    margin-bottom: 16px;
  }
  .pct-subtext {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .pct-btn-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .pct-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 400px)
══════════════════════════════════════ */
@media (max-width: 400px) {
  .ac-cell--text {
    padding: 32px 18px;
  }
  .ac-heading {
    font-size: clamp(26px, 9vw, 36px);
  }
  .ac-btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .ac-btn {
    width: 100%;
    justify-content: center;
  }

  .pct-section {
    padding: 44px 18px;
  }
}

/* ══════════════════════════════════════
       Roters
 ══════════════════════════════════════ */
.rt-page {
  background: #f6f1ff;
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ══════════════════════════════════════
       SECTION 1 — Hero
    ══════════════════════════════════════ */
.rt-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.rt-hero__left {
  flex: 1 1 0;
  min-width: 0;
}

.rt-hero__eyebrow {
  display: inline-block;
  background: #8cf4ed;
  color: #00716c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.main_roter_para {
  max-width: 670px;
  font-size: 20px;
  color: rgba(71, 70, 79, 1);
  font-weight: 500;
}

.rt-hero__heading {
  font-size: clamp(38px, 5vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: #0d0f2b;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.rt-hero__heading span {
  color: #006a66;
  display: block;
}

.rt-hero__body {
  font-size: 17px;
  line-height: 1.9;
  color: #47464f;
  font-weight: 500;
  max-width: 560px;
}

.rt-hero__right {
  flex: 0 0 460px;
  width: 460px;
}

.rt-hero__img-wrap_Sec {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
}

.rt-hero__img-wrap_Sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt-hero__stats {
  position: absolute;
  bottom: 24px;
  left: 0px;
  right: 0px;
  display: flex;
  gap: 14px;
}

.rt-stat-chip {
  flex: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 22px 14px;
}

.rt-stat-chip__value {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.rt-stat-chip__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}


/* rotor accessories table */


.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #000;
}

.table-responsive {
  overflow-x: auto;
}

.rotor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rotor-table th,
.rotor-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}

.rotor-table th {
  background: #f7f7f7;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.rotor-table tbody tr {
  transition: background 0.2s ease;
}

.rotor-table tbody tr:hover {
  background: #fafafa;
}

.rotor-table td.no-data {
  text-align: center;
  color: #999;
  padding: 24px;
}


/* action buttons */
/* .action-btn {
  border: none;
  background: #f2f2f2;
  color: #555;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.2s ease, color 0.2s ease;
} */

.action-btn:last-child {
  margin-right: 0;
}

.action-btn:hover {
  background: #e8930a;
  color: #fff;
}

.view-btn:hover {
  background: #2e86de;
}

.edit-btn:hover {
  background: #e8930a;
}


/* rotor accessories table */

/* modal */
/* ══════════════════════════════════════
   ROTOR ACCESSORIES MODAL — prefix: router_
══════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 43, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.router_box_model {
  background: #fff;
  width: 100%;
  max-width: 1100px;
  border-radius: 16px;
  padding: 32px 32px 28px;
  position: relative;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.router_box_model h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: #0d0f2b;
  flex-shrink: 0;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f3f6;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
  background: #00bdb6;
  color: #fff;
}

/* ── Table wrapper: this is what makes it responsive ── */
.table-responsive {
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #edeff2;
  border-radius: 12px;
}

.rotor-table {
  width: 100%;
  min-width: 920px;         /* forces horizontal scroll instead of squeezing on tablet */
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;      /* ← this line fixes the huge-gap issue */
  font-size: 13.5px;
}

/* explicit column widths — no more "auto-distributed" empty space */
.rotor-table col.col-tube      { width: 90px; }
.rotor-table col.col-capacity  { width: 110px; }
.rotor-table col.col-dim       { width: 100px; }
.rotor-table col.col-type      { width: 110px; }
.rotor-table col.col-adapter   { width: 100px; }
.rotor-table col.col-bore      { width: 100px; }
.rotor-table col.col-perrotor  { width: 110px; }
.rotor-table col.col-radius    { width: 110px; }
.rotor-table col.col-rcf       { width: 110px; }
.rotor-table col.col-part      { width: 120px; }

.rotor-table th,
.rotor-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #edeff2;
  overflow-wrap: break-word;
}

.rotor-table thead th {
  position: sticky;
  top: 0;
  background: #f7f8fa;
  font-weight: 700;
  color: #333;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: normal;      /* "white-space: wrap" isn't valid — normal is correct */
  border-bottom: 2px solid #e5e5e5;
  z-index: 1;
}

.rotor-table tbody tr {
  transition: background 0.15s ease;
}

.rotor-table tbody tr:hover {
  background: #fafbfc;
}

.rotor-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Empty state — this is the actual root-cause fix ── */
.rotor-table td.no-data {
  text-align: center;
  color: #9aa0a8;
  padding: 48px 24px;
  font-size: 14px;
}

.rotor-table .no-data-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rotor-table .no-data-inner i {
  font-size: 24px;
  color: #d3d7dd;
}

/* ── Row-selected + select button (unchanged behavior, cleaned up) ── */
.rotor-table tbody tr.row-selected {
  background: rgba(0, 181, 169, 0.06);
}
.rotor-table tbody tr.row-selected:hover {
  background: rgba(0, 181, 169, 0.1);
}

.select_routor-btn {
  border: none;
  background: #00b5a9;
  color: #fff;
  min-width: 90px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.select_routor-btn:hover {
  background: #006a66;
  transform: translateY(-1px);
}

.select_routor-btn.is-selected {
  background: #fff;
  color: #00b5a9;
  border: 1.5px solid #00b5a9;
}

.select_routor-btn.is-selected:hover {
  background: #fff5f5;
  color: #d9534f;
  border-color: #d9534f;
}


.rotor-table col.col-tube      { width: 90px; }
.rotor-table col.col-capacity  { width: 110px; }
.rotor-table col.col-dim       { width: 100px; }
.rotor-table col.col-type      { width: 110px; }
.rotor-table col.col-adapter   { width: 100px; }
.rotor-table col.col-bore      { width: 100px; }
.rotor-table col.col-perrotor  { width: 110px; }
.rotor-table col.col-radius    { width: 110px; }
.rotor-table col.col-rcf       { width: 110px; }
.rotor-table col.col-part      { width: 120px; }
.rotor-table col.col-action    { width: 90px; }

.action-container_main{
    text-align:center;
    vertical-align:middle;
}

.cart-toggle-btn_2{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    transition:.25s;
}

.cart-toggle-btn_2:hover{
    background:#00bdb6;
    transform:scale(1.08);
}

.cart-toggle-btn_2 .material-symbols-outlined{
    font-size:20px;
    color:#0d0f2b;
}

.cart-toggle-btn_2:hover .material-symbols-outlined{
    color:#fff;
}

.cart-toggle-btn_2.in-cart{
    background:#00bdb6;
}

.cart-toggle-btn_2.in-cart .material-symbols-outlined{
    color:#fff;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 768px) {
  .router_box_model {
    padding: 24px 18px 20px;
    border-radius: 14px;
    max-height: 92vh;
  }
  .router_box_model h3 {
    font-size: 17px;
    padding-right: 30px; /* clear the close button */
  }
  .rotor-table {
    font-size: 12.5px;
    min-width: 760px; /* still scrolls, just tighter */
  }
  .rotor-table th,
  .rotor-table td {
    padding: 10px 10px;
  }

  /* freeze first column so users keep context while scrolling sideways */
  .rotor-table th:first-child,
  .rotor-table td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.04);
  }
  .rotor-table thead th:first-child {
    background: #f7f8fa;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  .table-responsive {
    border-radius: 10px;
  }
  .rotor-table th,
  .rotor-table td {
    padding: 9px 8px;
    font-size: 12px;
  }
}


/* ══════════════════════════════════════
   ROTOR TABLE — THUMBNAIL IMAGES
══════════════════════════════════════ */

.rotor-table td img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: #f7f8fa;
  border: 1px solid #edeff2;
  padding: 4px;
}

/* widen the tube/adapter columns slightly to fit the thumbnail comfortably */
.rotor-table col.col-tube    { width: 76px; }
.rotor-table col.col-adapter { width: 90px; }

.rotor-table td:has(img) {
  padding: 8px 10px;
  text-align: center;
}

/* fallback so an empty/broken src doesn't show the ugly broken-image icon */
.rotor-table td img[src=""],
.rotor-table td img:not([src]) {
  visibility: hidden;
  position: relative;
}

.rotor-table td img[src=""]::after,
.rotor-table td img:not([src])::after {
  content: "";
  visibility: visible;
  position: absolute;
  inset: 0;
  background: #f1f3f6;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .rotor-table td img {
    width: 38px;
    height: 38px;
    padding: 3px;
  }
}

@media (max-width: 480px) {
  .rotor-table td img {
    width: 32px;
    height: 32px;
  }
}


.select_routor-btn.is-selected:hover {
  background: #fff5f5;
  color: #d9534f;
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);     
}

.select_routor-btn i {
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0; /* stop icon from shrinking/overlapping text */
}

.select_routor-btn:hover {
  background: #006a66;
  transform: translateY(-1px);
}

.select_routor-btn:active {
  transform: translateY(0) scale(0.96);
}

.select_routor-btn.is-selected:hover::after {
  content: "";
}

/* swap text to "Remove" on hover when selected, for clarity */
.select_routor-btn.is-selected:hover .fa-check::before {
  content: "\f00d"; /* fa-times */
}

.select_routor-btn.is-selected i {
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* highlight the whole row when its accessory is selected */
.rotor-table tbody tr {
  transition: background 0.25s ease;
}

.rotor-table tbody tr.row-selected {
  background: rgba(0, 181, 169, 0.06);
}

.rotor-table tbody tr.row-selected:hover {
  background: rgba(0, 181, 169, 0.1);
}


/* button select on router card */
/* rotor card - explore accessories button */
.rotor_card {
  position: relative;
  overflow: hidden; /* needed so the button can slide in from below cleanly */
}

.openRotorModal[title="Select"] {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  background: #00BDB6;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;

  /* hidden state by default (desktop) */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

/* reveal on card hover */
.rotor_card:hover .openRotorModal[title="Select"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.openRotorModal[title="Select"]:hover {
  background: #00BDB6;
}

.openRotorModal[title="Select"]:active {
  transform: translateY(0) scale(0.97);
}

/* Mobile: hover doesn't exist reliably on touch, so always show the button */
@media (hover: none), (max-width: 768px) {
  .openRotorModal[title="Select"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 16px;
  }
}

/* ══════════════════════════════════════
       SECTIONS 2, 4, 5 — rt-fixed (shared)
    ══════════════════════════════════════ */
.rt-fixed {
  display: flex;
  width: 100%;
  min-height: 440px;
  overflow: hidden;
}

/* Text panel */
.rt-fixed__text {
  flex: 1 1 0;
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #fff;
}

/* Image panel */
.rt-fixed__img {
  flex: 1 1 0;
  overflow: hidden;
}

.rt-fixed__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* Normal: text-left, image-right */
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
  order: 1;
}
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img {
  order: 2;
}

/* Reversed: image-left, text-right */
.rt-fixed--reversed .rt-fixed__img {
  order: 1;
}
.rt-fixed--reversed .rt-fixed__text {
  order: 2;
}

/* ── Icon row (triangle style — sections 2 & 4) ── */
.rt-fixed__icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rt-fixed__triangle {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #00bdb6;
  flex-shrink: 0;
}

/* ── Square icon (swing-bucket section) ── */
.rt-fixed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eae5ff;
  flex-shrink: 0;
}

.rt-fixed__icon svg {
  width: 16px;
  height: 16px;
}

.rt-fixed__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.rt-fixed__body {
  font-size: 18px;
  line-height: 1.95;
  color: #555;
  font-weight: 400;
}

/* ── Info chips (swing-bucket section) ── */
.rt-fixed__chips {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.rt-chip {
  flex: 1 1 140px;
  background: #f8f6ff;
  border: 1px solid #e8e4f5;
  border-radius: 10px;
  padding: 14px 16px 16px;
}

.rt-chip__label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #a0a3c0;
  margin-bottom: 8px;
}

.rt-chip__value {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d0f2b;
  line-height: 1.5;
}

/* ══════════════════════════════════════
       SECTION 3 — Benchmarks Banner
    ══════════════════════════════════════ */
.rt-benchmarks {
  background: #0d0f2b;
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
}

.rt-bench__stat {
  flex: 1 1 0;
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rt-bench__stat:first-child {
  padding-left: 0;
}
.rt-bench__stat:last-child {
  padding-right: 0;
  border-right: none;
}

.branch-span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8cf4ed;
  margin-bottom: 2px;
}

.rt-bench__stat-value {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.rt-bench__stat-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #7681d4;
  font-weight: 400;
  max-width: 260px;
}

/* ══════════════════════════════════════
       RESPONSIVE — Large Tablet (≤ 1100px)
    ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .container-xl {
    padding: 0 32px;
  }

  .rt-hero {
    gap: 36px;
  }
  .rt-hero__right {
    flex: 0 0 400px;
    width: 400px;
  }
  .rt-hero__img-wrap_Sec {
    height: 400px;
  }

  .rt-fixed__text {
    padding: 44px 40px;
  }

  .rt-benchmarks {
    padding: 44px 44px;
  }
  .rt-bench__stat {
    padding: 0 32px;
  }
  .rt-bench__stat:first-child {
    padding-left: 0;
  }
  .rt-bench__stat:last-child {
    padding-right: 0;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — Tablet (≤ 900px)
    ══════════════════════════════════════ */
@media (max-width: 900px) {
  .container-xl {
    padding: 0 24px;
  }

  .rt-page {
    padding: 36px 0;
    gap: 20px;
  }

  /* Hero stacks */
  .rt-hero {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .rt-hero__right {
    width: 100%;
    flex: none;
  }

  .rt-hero__img-wrap_Sec {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .rt-hero__body {
    max-width: 100%;
    font-size: 16px;
  }

  /* Fixed sections — stack */
  .rt-fixed {
    flex-direction: column;
    min-height: unset;
    border-radius: 16px;
  }

  .rt-fixed__img {
    flex: none;
    height: 300px;
  }

  /* Normal: text top, image bottom */
  .rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
    order: 1;
  }
  .rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img {
    order: 2;
  }

  /* Reversed on desktop → image top, text bottom on tablet */
  .rt-fixed--reversed .rt-fixed__img {
    order: 1;
  }
  .rt-fixed--reversed .rt-fixed__text {
    order: 2;
  }

  .rt-fixed__text {
    padding: 36px 32px;
    gap: 14px;
  }

  /* Chips */
  .rt-chip {
    flex: 1 1 calc(50% - 6px);
  }

  /* Benchmarks */
  .rt-benchmarks {
    flex-direction: column;
    padding: 36px 32px;
    gap: 0;
    /* border-radius: 16px; */
  }

  .rt-bench__stat {
    padding: 22px 0;
    border-right: none;
  }

  .rt-bench__stat:first-child {
    padding-top: 0;
  }
  .rt-bench__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .rt-bench__stat-desc {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — Mobile (≤ 600px)
    ══════════════════════════════════════ */
@media (max-width: 600px) {
  .container-xl {
    padding: 0 16px;
  }

  .rt-page {
    padding: 24px 0;
    gap: 16px;
  }

  .rt-hero {
    gap: 18px;
  }

  .rt-hero__heading {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .rt-hero__eyebrow {
    font-size: 8px;
    margin-bottom: 16px;
  }
  .rt-hero__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .rt-hero__img-wrap_Sec {
    aspect-ratio: 4 / 3;
  }

  .rt-hero__stats {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .rt-stat-chip {
    padding: 12px 14px 10px;
    border-radius: 10px;
  }
  .rt-stat-chip__value {
    font-size: clamp(14px, 4.5vw, 20px);
  }
  .rt-stat-chip__label {
    font-size: 7.5px;
    letter-spacing: 1px;
  }

  /* Fixed sections */
  .rt-fixed {
    border-radius: 14px;
  }
  .rt-fixed__img {
    height: 220px;
  }
  .rt-fixed__text {
    padding: 26px 20px;
    gap: 12px;
  }
  .rt-fixed__body {
    font-size: 14px;
    line-height: 1.85;
  }
  .rt-fixed__title {
    font-size: clamp(20px, 5vw, 26px);
  }

  /* Icon */
  .rt-fixed__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  /* Chips */
  .rt-fixed__chips {
    gap: 10px;
    margin-top: 4px;
  }

  .rt-chip {
    flex: 1 1 calc(50% - 5px);
    padding: 12px 14px 14px;
  }

  .rt-chip__label {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  .rt-chip__value {
    font-size: 12.5px;
  }

  /* Benchmarks */
  .rt-benchmarks {
    padding: 28px 20px;
    border-radius: 14px;
    gap: 0;
  }

  .rt-bench__stat {
    padding: 16px 0;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rt-bench__stat:first-child {
    padding-top: 0;
  }
  .rt-bench__stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .rt-bench__stat-value {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .rt-bench__stat-desc {
    font-size: 12px;
    line-height: 1.65;
    max-width: 100%;
  }

  .branch-span {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 1px;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — XSmall (≤ 400px)
    ══════════════════════════════════════ */
@media (max-width: 400px) {
  .rt-hero__heading {
    font-size: clamp(26px, 10vw, 34px);
  }

  .rt-fixed__img {
    height: 200px;
  }

  /* Chips stack to single column */
  .rt-fixed__chips {
    flex-direction: column;
    gap: 8px;
  }
  .rt-chip {
    flex: none;
    width: 100%;
  }

  /* Benchmarks */
  .rt-benchmarks {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .rt-bench__stat {
    padding: 14px 0;
    gap: 4px;
  }
  .rt-bench__stat-value {
    font-size: clamp(20px, 7vw, 26px);
  }
  .rt-bench__stat-desc {
    font-size: 11.5px;
  }
}

/* redius */
/* ══════════════════════════════════════
   BORDER RADIUS — Card Corners
══════════════════════════════════════ */

/* Section 2: TEXT left, IMAGE right */
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Section 4: IMAGE left, TEXT right */
.rt-fixed--reversed .rt-fixed__img img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rt-fixed--reversed .rt-fixed__text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Reset on mobile — stacked layout needs top/bottom radius instead */
@media (max-width: 900px) {
  .rt-fixed__text,
  .rt-fixed__img img {
    border-radius: 0 !important;
  }
}

/* model css */

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 9999;
}

/* Open State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Open Animation */
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* Form Styling */
.modal-box h2,h3 {
  margin-bottom: 20px;
  color: #0bbfb8;
}

.modal-box input,
.modal-box textarea,
.modal-box select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #0bbfb8;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: 0.3s;
}

.modal-box input:focus,
.modal-box textarea:focus,
.modal-box select:focus {
  border-color: #0bbfb8;
}

.modal-box textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0bbfb8;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 576px) {
  .modal-box {
    width: 95%;
    padding: 20px;
  }
}

/* config model button css */
/* Modal Buttons */
#confirmYes,
#confirmNo {
  min-width: 100px;
  height: 48px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 20px;
  margin: 0px 8px;
}

/* Yes Button */
#confirmYes {
  background: #00b5a9;
  color: #fff;
}

#confirmYes:hover {
  background: #009b91;
  transform: translateY(-2px);
}

/* No Button */
#confirmNo {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #dcdcdc;
}

#confirmNo:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}

/* =========================
   CALCULATOR SECTION
========================= */

.calculator-section {
  padding: 20px 0;
}

/* Main Card */

.calculator-card {
  position: relative;
  background: #dddddd;
  min-height: 700px;
  padding: 60px;
  border-radius: 20px;
  overflow: hidden;
}

/* Content */

.calculator-content {
  position: relative;
  z-index: 2;
  width: 52%;
}

/* Heading */

.calc-heading {
  font-size: 34px;
  font-weight: 400;
  color: #082c45;
  margin-bottom: 25px;
}

.calc-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

/* Calculator Row */

.calc-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Inputs */

.calc-input,
.calc-result,
.radius-grid input {
  width: 100%;
  height: 52px;
  border: none;
  background: #fff;
  padding: 0 16px;
  outline: none;
}

.calc-input {
  max-width: 270px;
}

.calc-result {
  background: #eef1f3;
  pointer-events: none;
}

/* Labels */

label {
  display: block;
  margin-bottom: 10px;
  color: #082c45;
  font-size: 18px;
}

/* Result */

.result-box {
  margin-top: 30px;
  max-width: 620px;
}

/* Button */

.calc-btn {
  background: #00022b;
  color: #fff;
  border: none;
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.calc-btn:hover {
  background: #00022b;
}

/* Radius Section */

.radius-section {
  margin-top: 20px;
}

.radius-section h4 {
  color: #00022b;
  margin-bottom: 25px;
  font-size: 28px;
}

.radius-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 620px;
}

.radius-btn {
  margin-top: 25px;
}

/* Right Side Image */

.calculator-bg-image {
  position: absolute;
  right: -150px;
  top: 40%;
  transform: translateY(-50%);
  width: 61%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.calculator-bg-image img {
  width: 200%;
  height: 900px;
  object-fit: contain;

  opacity: 0.25;
  filter: grayscale(100%) brightness(0.1);
}

/* toggle */
.calculator-panel {
  display: none;
}

.calculator-panel.active-panel {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .calculator-content {
    width: 60%;
  }

  .calculator-bg-image {
    width: 55%;
    right: -80px;
  }
}

@media (max-width: 991px) {
  .calculator-card {
    padding: 30px;
    min-height: auto;
  }

  .calculator-content {
    width: 100%;
  }

  .calculator-bg-image {
    display: none;
  }

  .radius-grid {
    grid-template-columns: 1fr;
  }

  .calc-row {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-input {
    max-width: 100%;
  }

  .calc-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .calc-heading {
    font-size: 28px;
  }

  .radius-section h4 {
    font-size: 22px;
  }

  .calculator-card {
    padding: 20px;
  }
}

/* career page */
.career-hero {
  background: #000;
  padding: 57px;
  text-align: center;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  background: #00b5a9;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.career-hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.career-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

.btn-career {
  display: inline-block;
  margin-top: 30px;
  background: #00b5a9;
  color: #fff;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-career:hover {
  color: #fff;
}

.career-filter {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.filter-card {
  background: #00b5a9;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
/* =========================================================
   CAREER FILTER — FIXED SELECT/DROPDOWN
========================================================= */

.filter-card select {
  flex: 1;
  min-width: 190px;
  height: 52px;
  border: none;
  border-radius: 6px;
  padding: 0 42px 0 20px; /* room on the right for the custom arrow */
  font-size: 14.5px;
  color: #1a1a1a;
  background-color: #ffffff;

  /* kill native arrow on all browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* custom chevron arrow */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1L7 7L13 1' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;

  cursor: pointer;
  outline: none;
}

.filter-card select::-ms-expand {
  display: none; /* removes IE/old Edge native arrow */
}

.filter-card select:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.filter-card button {
  height: 52px;
  border: none;
  padding: 0 30px;
  background: #000;
  color: #fff;
  border-radius: 6px;
}

.career-listing {
  padding: 40px 0;
}

.job-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.material-symbols-outlined {
  color: #00b5a9;
}

.job-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-view {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
}

.btn-apply:hover {
  color: white;
}

.btn-view:hover {
  color: white;
}

.btn-apply {
  background: #00b5a9;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
}

.why-join {
  padding: 30px 0;
  background: #f7fafc;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
}

.benefit-icon {
  font-size: 60px !important;
  color: #00b5a9;
}

.career-support {
  padding: 70px 0;
  background: #dceaf3;
}

.support-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.support-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.support-buttons a {
  background: #fff;
  color: #222;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .career-hero h1 {
    font-size: 24px;
  }

  .career-hero p {
    font-size: 14px;
    width: 100%;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .support-wrapper {
    flex-direction: column;
    text-align: center;
  }
}


.modal-box {
  background: #fff;
  width: 95%;
  max-width: 500px;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: #00b5a9;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.job-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.job-detail-item .material-symbols-outlined {
  color: #00b5a9;
}

.job-details-content h4 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.career-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  outline: none;
}

.career-form textarea {
  min-height: 140px;
  resize: none;
}

.submit-btn {
  background: #00b5a9;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #00998f;
}

/* =========================
   CART PAGE
========================= */

.cart-section {
  padding: 30px 0;
  background: #f7f8fa;
}

.cart-header {
  text-align: center;
  margin-bottom: 40px;
}

.cart-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #00022b;
}

/* Wrapper */

.cart-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

/* Item */

.cart-item {
  display: flex;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px solid #ececec;
}

.cart-image {
  width: 220px;
  flex-shrink: 0;
}

.cart-image img {
  width: 100%;
  border-radius: 12px;
  background: #f4f0fb;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  font-size: 28px;
  color: #00022b;
  margin-bottom: 10px;
}

.cart-subtitle {
  color: #00022b;
  margin-bottom: 15px;
}

.cart-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cart-meta span {
  font-size: 14px;
  color: #444;
}

/* Actions */

.cart-actions {
  display: flex;
  gap: 25px;
}

.cart-actions a {
  text-decoration: none;
  color: #0c5a9c;
  font-weight: 600;
}

.cart-actions .remove {
  color: #e53935;
  background-color: #f5f5f5;
  padding: 8px;
  border-radius: 8px;
}

/* Footer */

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
}

.cart-total {
  font-size: 20px;
  font-weight: 600;
}

.cart-btn {
  background: #00b5a9;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #4da130;
}

/* Responsive */

@media (max-width: 991px) {
  .cart_product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .cart_product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
  }

  .cart-image {
    width: 100%;
  }

  .cart-footer {
    flex-direction: column;
    gap: 20px;
  }

  .cart-btn {
    width: 100%;
  }

  .cart-header h1 {
    font-size: 32px;
  }
}

/* =========================
   WARRANTY PAGE
========================= */

.warranty-section {
  padding: 30px 0;
  background: #f5f7fa;
}

.warranty-container {
  max-width: 1000px;
  margin: auto;
}

/* Heading */

.warranty-title {
  font-size: 48px;
  font-weight: 700;
  color: #00022b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.warranty-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #00022b;
  margin-bottom: 10px;
}

.form-group label span {
  color: #ff4d4f;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 45px;
  border: 1px solid #d9e3ef;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  background: #f8fbff;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00b5a9;
  background: #fff;
}

/* Submit */

.warranty-btn {
  margin-top: 30px;
  background: #00b5a9;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.warranty-btn:hover {
  background: #0d5c9f;
}

/* Responsive */

@media (max-width: 768px) {
  .warranty-title {
    font-size: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .warranty-form {
    padding: 25px;
  }
}

/* PHONE FIELD */

.phone-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 55px;
  border: 1px solid #d9e3ef;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.phone-wrapper:focus-within {
  border-color: #00b5a9;
}

/* Override global form styles */
.phone-wrapper .phone-country,
.phone-wrapper .phone-number {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  height: 100% !important;
  margin: 0;
  box-shadow: none !important;
}

.phone-country {
  width: 140px !important;
  border-right: 1px solid #d9e3ef !important;
  padding: 0 15px !important;
  flex-shrink: 0;
  cursor: pointer;
}

.phone-number {
  flex: 1;
  padding: 0 18px !important;
}

/* =========================
   CONSENT SECTION
========================= */

.consent-section {
  margin-top: 10px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #00022b;
  line-height: 1.6;
}

.checkbox-wrap input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #00b5a9;
  flex-shrink: 0;
}

.consent-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3d4361;
  margin-bottom: 18px;
}

.consent-text a {
  color: #00022b;
  font-weight: 600;
  text-decoration: underline;
}

.consent-text a:hover {
  color: blue;
}

.submit-wrap {
  margin-top: 25px;
}

.warranty-btn {
  background: #00c4b4;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.warranty-btn:hover {
  transform: translateY(-2px);
  background: #00b0a2;
}

/* Mobile */

@media (max-width: 768px) {
  .checkbox-wrap {
    font-size: 14px;
  }

  .consent-text {
    font-size: 14px;
  }

  .warranty-btn {
    width: 100%;
  }
}

/* select 2 css */
.select2-container {
  width: 140px !important;
}

.select2-selection--single {
  height: 45px !important;
  border: none !important;
  background: transparent !important;
}

.select2-selection__rendered {
  line-height: 45px !important;
  font-size: 15px;
  color: #00022b !important;
}

.select2-selection__arrow {
  height: 45px !important;
}

.select2-dropdown {
  border: 1px solid #d9e3ef !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.select2-search__field {
  border: 1px solid #d9e3ef !important;
  border-radius: 8px !important;
}

/* model form  */
/* ==========================
   INQUIRE OFFER MODAL
========================== */

.iof-modal-wrap .modal-dialog {
  max-width: 1000px;
}

.iof-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.iof-modal-header::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -1px;
  width: 80px;
  height: 3px;
  background: #17c3bc;
  border-radius: 50px;
}

.iof-modal-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #17c3bc;
}

/* Body */

.iof-modal-body {
  background: #fff;
}

.iof-note-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.iof-note-text span {
  color: #ff4d4f;
  font-weight: 600;
}

/* Form Fields */

.iof-field-group {
  margin-bottom: 20px;
}

.iof-field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.iof-field-group label span {
  color: #ff4d4f;
}

.iof-field-group .form-control,
.iof-field-group .form-select {
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.iof-field-group .form-control:focus,
.iof-field-group .form-select:focus {
  border-color: #17c3bc;
  box-shadow: 0 0 0 4px rgba(23, 195, 188, 0.15);
  outline: none;
}

.iof-field-group textarea.form-control {
  height: 100px;
  padding: 8px 15px;
  resize: vertical;
}

/* Privacy Checkbox */

.iof-privacy-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.iof-privacy-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: #17c3bc;
  cursor: pointer;
}

.iof-privacy-box label {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

.iof-privacy-box a {
  color: #17c3bc;
  text-decoration: none;
  font-weight: 600;
}

.iof-privacy-box a:hover {
  text-decoration: underline;
}

.iof-privacy-box span {
  color: #ff4d4f;
}

/* Cancel Button */

.iof-cancel-btn {
  border: 2px solid #17c3bc;
  background: #fff;
  color: #17c3bc;
  padding: 6px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.iof-cancel-btn:hover {
  background: #17c3bc;
  color: #fff;
}

/* Submit Button */

.iof-submit-btn {
  border: none;
  background: #17c3bc;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.iof-submit-btn:hover {
  background: #12a7a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 195, 188, 0.35);
}

/* Close Button */

.iof-modal-header .btn-close {
  opacity: 1;
}

.iof-modal-header .btn-close:focus {
  box-shadow: 0 0 0 4px rgba(23, 195, 188, 0.15);
}

/* Scrollbar */

.iof-modal-body::-webkit-scrollbar {
  width: 6px;
}

.iof-modal-body::-webkit-scrollbar-thumb {
  background: #17c3bc;
  border-radius: 20px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .iof-modal-title {
    font-size: 24px;
  }

  .iof-modal-body {
    padding: 25px 20px;
  }

  .iof-modal-header,
  .iof-modal-footer {
    padding: 18px 20px;
  }
}

@media (max-width: 767px) {
  .iof-modal-title {
    font-size: 22px;
  }

  .iof-note-text {
    font-size: 14px;
  }

  .iof-field-group .form-control,
  .iof-field-group .form-select {
    height: 48px;
    font-size: 14px;
  }

  .iof-field-group textarea.form-control {
    height: 140px;
  }

  .iof-modal-footer {
    flex-direction: column;
    gap: 12px;
  }

  .iof-cancel-btn,
  .iof-submit-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .iof-modal-body {
    padding: 20px 15px;
  }

  .iof-modal-header,
  .iof-modal-footer {
    padding: 15px;
  }

  .iof-modal-title {
    font-size: 20px;
  }

  .iof-modal-header::after {
    left: 15px;
  }
}

/* config */

/* ── Validation states ─────────────────────────────────────── */
.config-select.is-invalid,
.small-select.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
}

.tube-field-error {
  display: block;
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 5px;
}

/* ── Saved tube list ───────────────────────────────────────── */
#saved-tubes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

/* ── Enter animation (left → right slide-in) ──────────────── */
@keyframes tubeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Exit animation (fade + slide out left) ───────────────── */
@keyframes tubeSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
    max-height: 80px;
    margin-bottom: 10px;
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
    max-height: 0;
    margin-bottom: 0;
    padding: 0;
  }
}

.tube-saved-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #00bdb6;
  border-radius: 4px;
  padding: 12px 16px;
  background: #fff;
  gap: 12px;
  opacity: 0; /* hidden before animation starts */
  overflow: hidden;
}

.tube-saved-item.tube-enter-active {
  animation: tubeSlideIn 0.38s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.tube-saved-item.tube-exit {
  animation: tubeSlideOut 0.3s ease-in forwards;
  pointer-events: none;
}

.tube-saved-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.tube-saved-label {
  font-size: 0.85rem;
  color: #555;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 80px;
}

.tube-saved-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tube-saved-info strong {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.tube-saved-info span {
  font-size: 0.82rem;
  color: #555;
}

.tube-remove-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #00bdb6;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition:
    color 0.2s,
    transform 0.2s;
}

.tube-remove-btn:hover {
  color: #c00;
  transform: scale(1.2);
}

/* ══════════════════════════════════════
           MATCHING PRODUCTS PAGE — prefix: mp-
        ══════════════════════════════════════ */

/* ── Page background ── */
.mp-page {
  background: #f5f6fa;
  min-height: 100vh;
}

/* ── Configurator wrapper ── */
.mp-configurator {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.mp-configurator__title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 3px solid var(--teal);
  padding-bottom: 5px;
  margin-bottom: 1.25rem;
}

.mp-configurator__label {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.6;
  min-width: 100px;
  padding-top: 13px;
  text-align: right;
}

.mp-configurator__card {
  border: 2px solid var(--teal);
  border-radius: 6px;
  padding: 12px 18px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.mp-configurator__card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 189, 182, 0.18);
}

.mp-configurator__card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.mp-configurator__card-sub {
  font-size: 12px;
  color: var(--primary);
  opacity: 0.55;
  margin-top: 3px;
}

.mp-configurator__note {
  font-size: 12px;
  color: var(--primary);
  opacity: 0.6;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── Page heading ── */
.mp-heading {
  margin-bottom: 1.5rem;
}

.mp-heading__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.mp-heading__sub {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
}

/* ── Buttons ── */
.mp-btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.15s;
}

.mp-btn-primary:hover {
  background: var(--teal);
  color: #fff;
}

.mp-btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.mp-btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

/* ── Product result card ── */
.mp-result-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mp-result-card__body {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.mp-result-card__img-col {
  width: 160px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-right: 1px solid #f0f0f0;
  background: #fafafa;
}

.mp-result-card__img-col img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.mp-result-card__info-col {
  flex: 1;
  padding: 1rem 1rem 0.5rem;
  overflow: hidden;
}

.mp-result-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ── Spec table ── */
.mp-table-scroll {
  overflow-x: auto;
}

.mp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 340px;
}

.mp-spec-table thead th {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.6;
  padding: 4px 8px;
  text-align: center;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.mp-spec-table thead th:first-child {
  text-align: left;
}

.mp-spec-table tbody tr:hover {
  background: #f9f9f9;
}

.mp-spec-table__label {
  color: var(--primary);
  opacity: 0.75;
  padding: 5px 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.mp-spec-table__label .material-symbols-outlined {
  font-size: 15px;
  color: var(--teal);
}

.mp-spec-table__val {
  text-align: center;
  padding: 5px 8px;
  color: var(--primary);
  white-space: nowrap;
  min-width: 80px;
}

/* ── Card footer bar ── */
.mp-result-card__footer {
  padding: 12px 16px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mp-btn-inquiry {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.mp-btn-inquiry:hover {
  background: var(--teal);
}

.mp-btn-more {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.mp-btn-more:hover {
  background: var(--teal);
  color: #fff;
}

/* ── Bottom actions bar ── */
.mp-actions-bar {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Enquiry Modal ── */
.mp-modal__content {
  border-radius: 10px;
  border: none;
  overflow: hidden;
}

.mp-modal__header {
  background: var(--primary);
  padding: 1rem 1.5rem;
  position: relative;
}

.mp-modal__title {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.mp-modal__header .btn-close {
  filter: invert(1);
}

.mp-modal__body {
  padding: 1.5rem;
}

.mp-field {
  margin-bottom: 1rem;
}

.mp-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 5px;
  display: block;
}

.mp-field label span {
  color: var(--teal);
}

.mp-field .form-control,
.mp-field .form-select {
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 13px;
  color: var(--primary);
}

.mp-field .form-control:focus,
.mp-field .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 189, 182, 0.15);
}

.mp-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 0.75rem;
}

.mp-privacy-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--teal);
}

.mp-privacy-row label {
  font-size: 12px;
  color: var(--primary);
  opacity: 0.75;
}

.mp-privacy-row label a {
  color: var(--teal);
}

.mp-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  background: #f8f9fa;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mp-modal__cancel {
  background: transparent;
  color: var(--primary);
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.15s;
}

.mp-modal__cancel:hover {
  background: #eee;
}

.mp-modal__submit {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.15s;
}

.mp-spec-table thead th,
.mp-spec-table tbody td {
  border-right: 1px solid #eee;
}

.mp-spec-table thead th:last-child,
.mp-spec-table tbody td:last-child {
  border-right: none;
}

.mp-spec-table thead th {
  border-bottom: 2px solid #ccc;
}

.mp-spec-table tbody tr {
  border-bottom: 1px dashed #ddd;
}

.mp-spec-table tbody tr:last-child {
  border-bottom: none;
}

.mp-modal__submit:hover {
  background: var(--teal);
}

/* ── mp table scrollbar ── */
.mp-table-scroll::-webkit-scrollbar {
  height: 4px;
}

.mp-table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mp-table-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  transition: background 0.3s;
}

.mp-table-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* Firefox */
.mp-table-scroll {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .mp-configurator__label {
    text-align: left;
    padding-top: 0;
    min-width: unset;
  }
  .mp-result-card__body {
    flex-direction: column;
  }
  .mp-result-card__img-col {
    width: 100%;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* ══════════════════════════════════════
   LAB EQUIPMENT CTA BANNER  —  prefix: lct-
══════════════════════════════════════ */

.lct-card {
  background: #07102b;
  border-radius: 20px;
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 20px 0px;
}

/* Left content */
.lct-content {
  flex: 1 1 auto;
  max-width: 520px;
}

.lct-heading {
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0 0 10px 0;
}

.lct-subtext {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin: 0;
  max-width: 420px;
}

/* Right button */
.lct-action {
  flex: 0 0 auto;
}

.lct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00c9bb;
  color: #07102b;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.lct-btn:hover {
  background: #00b5a8;
  transform: translateY(-1px);
}

.lct-btn:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 860px)
══════════════════════════════════════ */
@media (max-width: 860px) {
  .lct-card {
    padding: 44px 44px;
    gap: 32px;
  }

  .lct-heading {
    font-size: clamp(20px, 3.5vw, 28px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
   Stack: text on top, button below
══════════════════════════════════════ */
@media (max-width: 600px) {
  .lct-wrap {
    padding: 24px 0 32px;
  }

  .lct-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    border-radius: 16px;
  }

  .lct-content {
    max-width: 100%;
  }

  .lct-heading {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 10px;
  }

  .lct-subtext {
    max-width: 100%;
    font-size: 13px;
  }

  .lct-action {
    width: 100%;
  }

  .lct-btn {
    width: 100%;
    padding: 16px 24px;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 380px)
══════════════════════════════════════ */
@media (max-width: 380px) {
  .lct-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .lct-heading {
    font-size: clamp(18px, 7vw, 23px);
  }
}

/* FAQ */
.faq-section {
  padding: 30px 0;
  background: #f8f8f8;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.faq-header p {
  color: #666;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item.active {
  border-color: #00b5a9;
  box-shadow: 0 8px 25px rgba(0, 181, 169, 0.1);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #222;
  gap: 16px;
}

.faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(0, 181, 169, 0.12);
  color: #00b5a9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s;
}

.faq-icon .material-icons {
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  background: #00b5a9;
  color: #fff;
}

.faq-item.active .faq-icon .material-icons {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 25px;
  margin: 0;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 30px;
  }
  .faq-question {
    font-size: 16px;
    padding: 18px;
  }
  .faq-answer p {
    padding: 0 18px 18px;
  }
}

/* ─── Info Section Two-Column Layout ─── */
.rcf-info-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  padding: 2rem 0;
}

.rcf-info-image {
  position: sticky;
  top: 100px;
}

.rcf-info-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 991px) {
  .rcf-info-layout {
    grid-template-columns: 1fr 260px;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .rcf-info-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rcf-info-image {
    position: static;
    order: -1;
  }

  .rcf-info-image img {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* value section */
/* ── Section wrapper ── */
.values-section {
  background-color: #0d1b2e;
  padding: 72px 0 80px;
  /* margin-top: 100px; */
}

/* ── Section heading block ── */
.values-section .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38c9c0;
  margin-bottom: 10px;
}
.values-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.values-section .section-sub {
  font-size: 0.92rem;
  color: #8fa5be;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Value card ── */
.value-card {
  background-color: #132135;
  border: 1px solid #1e3350;
  border-radius: 12px;
  padding: 32px 28px 30px;
  height: 100%;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: #38c9c0;
}

/* ── Icon circle ── */
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #1e3a55;
  background: #0d2440;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.value-icon .material-symbols-outlined {
  font-size: 28px;
  color: #38c9c0;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "OPSZ" 24;
}

/* ── Card text ── */
.value-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: #7d9ab8;
  line-height: 1.65;
  margin: 0;
}

/* ── Divider accent ── */
.values-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #38c9c0, #1a8ddb);
  border-radius: 2px;
  margin-bottom: 36px;
}

/* creer content */
.why-join-mission {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: justify;
}
.why-join-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-join-mission-body h3 {
  margin-bottom: 12px;
}
.why-join-mission-body p {
  line-height: 1.75;
  margin-bottom: 10px;
}



/* search bar */
   /* ── Search trigger button ── */
    .search-icon-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,0.35);
      background:rgba(255,255,255,0.08);
      cursor:pointer;
      margin-left:8px;
      transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .search-icon-btn:hover{
      transform: translateY(-2px) scale(1.05);
      background:rgba(255,255,255,0.18);
      border-color:rgba(255,255,255,0.6);
      box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    }
    .search-icon-btn:active{ transform: translateY(0) scale(0.97); }
    .search-icon-svg{ display:block; }

    /* ── Modal overlay ── */
    .search-modal-overlay{
      position: fixed;
      inset: 0;
      background: rgba(10, 15, 25, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 12vh;
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s ease, visibility .35s ease;
      z-index: 9999;
    }
    .search-modal-overlay.is-open{
      opacity: 1;
      visibility: visible;
    }

    /* ── Modal box ── */
    .search-modal-box{
      position: relative;
      width: min(780px, 94vw);
      max-height: 82vh;
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
      padding: 30px 32px 26px;
      transform: translateY(-24px) scale(0.96);
      opacity: 0;
      transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
    }
    .search-modal-overlay.is-open .search-modal-box{
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .search-modal-close{
      position: absolute;
      top: 14px;
      right: 4px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      background: #f1f3f6;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
      z-index: 2;
    }
    .search-modal-close:hover{ background:#e3e6eb; transform: rotate(90deg); }

    /* ── Search bar: pill input + teal circular button ── */
    .search-modal-form{
      display:flex;
      align-items:center;
      gap:14px;
      background:#f3f5f8;
      border-radius: 50px;
      padding: 8px 8px 8px 26px;
      flex-shrink: 0;
    }

    .search-modal-input{
      flex: 1;
      border: none;
      outline: none;
      font-size: 18px;
      /* padding: 12px 0; */
      background: transparent;
      color:#222;
    }
    .search-modal-input::placeholder{ color:#9aa0a8; }

    .search-modal-submit{
      border:none;
      background: linear-gradient(135deg, #0fb8a0, #0a9685);
      color:#fff;
      width:48px;
      height:48px;
      flex-shrink:0;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .search-modal-submit:hover{ transform: scale(1.06); }
    .search-modal-submit .material-symbols-outlined{ font-size: 22px; }

    /* ── Tabs ── */
    .search-modal-tabs{
      display:flex;
      gap:10px;
      margin-top: 20px;
      flex-shrink: 0;
    }
    .search-tab{
      border:none;
      cursor:pointer;
      padding: 9px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      background:#eef0f3;
      color:#444;
      transition: background .2s ease, color .2s ease;
    }
    .search-tab.active{
      background:#10243d;
      color:#fff;
    }
    .search-tab:hover:not(.active){ background:#e2e5ea; }

    /* ── Results ── */
    .search-modal-results{
      margin-top: 18px;
      overflow-y: auto;
      overflow-x: hidden;
      flex: 1;
      padding-right: 4px;
    }

    .search-results-grid{
      display:grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 18px 20px;
    }

    .search-result-card{
      text-decoration:none;
      color:inherit;
      display:flex;
      flex-direction:column;
      border-radius: 14px;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .search-result-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }
    .search-result-card img{
      width:100%;
      aspect-ratio: 1 / 0.85;
      object-fit: contain;
      background:#f6f7f9;
      border-radius: 14px;
    }
    .search-result-card .src-title{
      margin-top: 10px;
      font-size: 14.5px;
      font-weight: 600;
      color:#1b1b1b;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .search-result-card .src-price{
      margin-top: 4px;
      font-size: 13.5px;
      color:#0a9685;
      font-weight: 600;
    }

    .search-modal-empty,
    .search-modal-loading,
    .search-modal-noresults{
      text-align:center;
      color:#8a8f98;
      font-size: 15px;
      padding: 50px 10px;
    }

    body.search-modal-open{ overflow: hidden; }

    @media (max-width: 560px){
      .search-modal-box{ padding: 22px 18px 18px; }
      .search-modal-input{ font-size: 16px; }
      .search-results-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }

       .search-modal-close{
      position: absolute;
      top: 14px;
      right: 4px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      background: #f1f3f6;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
      z-index: 2;
    }
    }

    .search-modal-submit .material-symbols-outlined{
      color: white !important;
    }

    /* pdf downloads */
        .dc-section {
      background: linear-gradient(135deg, #0a4a52 0%, #0d7a82 40%, #00BDB6 100%);
      min-height: 100vh;
      padding: 60px 80px;
    }
    .dc-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: #00022B;
      margin-bottom: 40px;
      letter-spacing: -0.5px;
    }

    /* tabs */
    .tab-btn {
      padding: 9px 26px;
      border-radius: 50px !important;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border: 1.5px solid rgba(255,255,255,0.45) !important;
      background: transparent !important;
      color: #fff !important;
      transition: all 0.2s ease;
    }
    .tab-btn.active {
      background: #00bdb6 !important;
      border-color: #00bdb6 !important;
      color: #fff !important;
    }
    .tab-btn:hover:not(.active) {
      background: rgba(255,255,255,0.12) !important;
    }

    /* label */
    .dc-label {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    /* select */
    .custom-select-wrap { position: relative; }
    .custom-select-wrap select {
      width: 100%;
      padding: 16px 48px 16px 20px;
      border-radius: 10px !important;
      border: none !important;
      outline: none;
      background: rgba(255,255,255,0.92);
      color: #444;
      font-size: 15px;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      transition: background 0.2s;
      box-shadow: none !important;
    }
    .custom-select-wrap select:hover { background: #fff; }
    .custom-select-wrap select:focus {
      background: #fff;
      box-shadow: 0 0 0 2px rgba(0,189,182,0.5) !important;
    }
    .custom-select-wrap .chevron {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #555;
      font-size: 22px;
    }

    /* filter btn */
    .filter-btn {
      padding: 12px 40px;
      background: #00bdb6;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-btn:hover { background: #00a89f; transform: translateY(-1px); }
    .filter-btn:active { transform: scale(0.97); }

    .dc-note {
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      margin-top: 32px;
    }
    .dc-note a { color: #fff; }

    @media (max-width: 768px) {
      .dc-section { padding: 40px 20px; }
    }

     .page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #007b8a; margin-bottom: 4px; }
    .page-title   { font-size:30px; font-weight: 900; color: white; margin-bottom: 6px; }
 
    /* Card */
    .pdf-card {
      background: #fff;
      border: none;
      border-radius: 14px;
      box-shadow: 0 2px 10px rgba(13,43,69,0.08);
      overflow: hidden;
      transition: transform 0.18s, box-shadow 0.18s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .pdf-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 28px rgba(13,43,69,0.15);
    }
 
    /* Thumbnail */
    .card-thumb {
      height: 148px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .card-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 65%);
    }

    .thumb-lang {
      position: absolute; top: 12px; right: 12px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px;
      background: rgba(0,0,0,0.25); color: #fff;
    }
    .thumb-doc {
      width: 64px; height: 82px;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.22);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .thumb-doc i { font-size: 30px; color: rgba(255,255,255,0.75); }
    .thumb-bg-icon {
      position: absolute; bottom: 6px; right: 10px;
      font-size: 58px; color: rgba(255,255,255,0.07); line-height: 1;
    }
 
    /* Body */
    .card-inner { padding: 1rem 1.1rem 0.75rem; flex: 1; }
    .card-name  { font-size: 20px; font-weight: 800; color: #0d2b45; line-height: 1.38; margin-bottom: 6px; }
 
 
    /* Footer */
    .card-foot  { border-top: 1px solid #eef2f6; padding: 0.65rem 1.1rem; display: flex; align-items: center; justify-content: space-between; }
    .btn-dl     { display: inline-flex; align-items: center; gap: 6px; background: #0d2b45; color: #fff; border: none; border-radius: 8px; font-size: 12px; font-weight: 600; padding: 7px 16px; text-decoration: none; transition: background 0.15s; }
    .btn-dl:hover { background: #007b8a; color: #fff; }
    .btn-prev   { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #7a909e; background: none; border: none; padding: 7px 10px; border-radius: 7px; transition: color 0.15s, background 0.15s; text-decoration: none; }
    .btn-prev:hover { color: #007b8a; background: #e8f4f6; }

/* download btn */
.custom-download-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    border: 1px solid #0D3048;
    border-radius: 18px;
    color: #0D3048;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Animation */
.custom-download-btn:hover {
    color: #00BDB6;
    border-color: #00BDB6;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 189, 182, 0.15);
}

/* Shine Effect */
.custom-download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-25deg);
}

.custom-download-btn:hover::before {
    animation: shine 0.8s ease;
}

@keyframes shine {
    from {
        left: -120%;
    }
    to {
        left: 150%;
    }
}

.download-btn-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-weight: 500;
}

/* Download Icon Animation */
.custom-download-btn:hover .material-symbols-outlined {
    transform: translateY(4px);
}

/* Tablet */
@media (max-width: 768px) {
    .custom-download-btn {
        max-width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }

    .custom-download-btn .material-symbols-outlined {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .download-btn-wrapper {
        padding: 15px 0;
    }

    .custom-download-btn {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .custom-download-btn span:first-child {
        line-height: 1.4;
    }

    .custom-download-btn .material-symbols-outlined {
        font-size: 20px;
    }
}

.custom-download-btn .material-symbols-outlined {
    font-size: 25px;
    flex-shrink: 0;
    animation: downloadPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes downloadPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    20% {
        transform: translateY(5px) scale(1.1);
    }

    40% {
        transform: translateY(0) scale(1);
    }

    60% {
        transform: translateY(3px) scale(1.05);
    }

    80% {
        transform: translateY(0) scale(1);
    }
}

  .trust-section{
    background: #ffffff;
    padding: 2.5rem 0px;
    overflow: hidden;
  }
  .trust-header{ margin-bottom: 2rem; }
  .trust-eyebrow{
    display:inline-flex; align-items:center; gap:.5rem;
    font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
    color: #0f172a; font-weight:600; margin-bottom:.6rem;
  }
  .trust-eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background:#0ea5e9; box-shadow:0 0 8px rgba(14,165,233,.5); }
  .trust-title{
    color:#0f172a; font-weight:700; font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
    letter-spacing:-.01em; margin:0;
  }
 
  /* ---- Logo marquee (two rows, opposite directions) ---- */
  .logo-marquee-wrap{
    position:relative;
    overflow:hidden;
    margin-bottom: 1.3rem;
  }
  .logo-marquee-wrap:last-of-type{ margin-bottom:0; }
  .logo-fade{
    position:absolute; top:0; bottom:0; width:70px; z-index:2; pointer-events:none;
  }
  .logo-fade-left{ left:0; background: linear-gradient(90deg, #ffffff, transparent); }
  .logo-fade-right{ right:0; background: linear-gradient(270deg, #ffffff, transparent); }
 
  .logo-track{
    display:flex; align-items:center; gap: 1rem;
    width: max-content;
    animation: logo-scroll 40s linear infinite;
  }
  .logo-track.reverse{ animation-direction: reverse; }
  .logo-track.paused{ animation-play-state: paused; }
  /* .logo-marquee-wrap:hover .logo-track,
  .logo-marquee-wrap:focus-within .logo-track{ animation-play-state: paused; } */
 
  @keyframes logo-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
 
  .logo-card{
    background: #f8f9fb;
    border: 1px solid #e6e9ed;
    border-radius: .8rem;
    width: 160px;
    height: 84px;
    flex: 0 0 auto;
    display:flex; align-items:center; justify-content:center;
    padding: .75rem 1rem;
    cursor:default;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .logo-card img{
    max-width: 100%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .25s ease;
  }
 
  .logo-card img,
  .logo-card:focus-visible img{ filter: grayscale(0) }
  .logo-card:focus-visible{ outline: 2px solid #0ea5e9; outline-offset: 2px; }
 
  /* scroll-reveal */
  .reveal{ opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.is-visible{ opacity:1; transform:none; }

/* =========================
   COOKIE MODAL
========================= */

.cookie-modal-content {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.cookie-modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00BDB6, #4DD7D2);
}

/* =========================
   ICON
========================= */

.cookie-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E6FAF9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
}

.cookie-shield-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00BDB6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* =========================
   TEXT
========================= */

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.modal-body-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
}

.privacy-link {
    color: #00BDB6;
    font-weight: 600;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* =========================
   BUTTONS
========================= */

#cookieButtons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    width: 100%;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Accept Button */

.btn-accept {
    background: #00BDB6;
    color: #ffffff;
    border: none;
}

.btn-accept:hover {
    background: #009B95;
    color: #ffffff;
}

/* Reject Button */

.btn-reject {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-reject:hover {
    background: #f8fafc;
    color: #111827;
}

/* =========================
   SUCCESS STATE
========================= */

#cookieSuccess {
    display: none;
    text-align: center;
    padding-top: 10px;
}

.success-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #E6FAF9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-body-text {
        font-size: 13px;
    }

    .btn-accept,
    .btn-reject {
        padding: 12px;
        font-size: 13px;
    }
}


.centrifuge-info-title{
    font-size:20px;
    font-weight:700;
    width: 400px;
    margin-right: 30x;
    color:#0d2b52;
    margin-bottom:20px;
    position:relative;
}

.centrifuge-info-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    /* width:60px; */
    height:4px;
    border-radius:50px;
    background:#00579d;
    transition:.35s;
}


.centrifuge-info-list{
    list-style:none;
    margin:0;
    padding:0;
}

.centrifuge-info-item {
    display: flex;
    align-items: start;   /* Centers icon and text vertically */
    gap: 14px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #353535;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.centrifuge-info-item i,
.centrifuge-info-item svg,
.centrifuge-info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.centrifuge-info-item span,
.centrifuge-info-item p {
    margin: 0;
    flex: 1;
}

.centrifuge-info-item:last-child{
    margin-bottom:0;
}

.centrifuge-info-item::before{
    content:"■";
    color:#00579d;
    font-size:12px;
    transition:.3s;
}

.centrifuge-info-item:hover{
    color:#00579d;
}

.centrifuge-info-icon{
    color:#00579d;
    font-size:20px;
    width:24px;
    transition:.3s;
}

.centrifuge-info-item:hover .centrifuge-info-icon{
    transform:rotate(10deg) scale(1.2);
}

@media(max-width:991px){

.centrifuge-info-title{
    font-size:24px;
}

.centrifuge-info-item{
    font-size:16px;
}

}

.centrifuge-item-hidden {
    display: none;
}

.centrifuge-readmore-btn {
    background: none;
    border: none;
    padding: 0.5rem 0 0;
    margin-top: 0.5rem;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd; /* swap for your brand accent */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.centrifuge-readmore-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.centrifuge-expanded .centrifuge-readmore-btn i {
    transform: rotate(180deg);
}

.centrifuge-readmore-btn:hover {
    text-decoration: underline;
}

.sgt-card {
    position: relative;
}




/* ── Cart toggle button on rotor card ── */
.cart-toggle-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;

  transform: translateY(-6px) scale(0.9);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
  pointer-events: none;
}

/* reveal on card hover (desktop) */
.rotor_card:hover .cart-toggle-btn {
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sgt-card:hover .cart-toggle-btn {
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cart-toggle-btn .material-symbols-outlined {
  font-size: 20px;
  color: #0d0f2b;
  transition: color 0.2s ease;
}

.cart-toggle-btn:hover {
  background: #00bdb6;
}
.cart-toggle-btn:hover .material-symbols-outlined {
  color: #fff;
}

.cart-toggle-btn:active {
  transform: scale(0.92);
}

/* toggled / added state */
.cart-toggle-btn.in-cart {
  background: #00bdb6;
}
.cart-toggle-btn.in-cart .material-symbols-outlined {
  color: #fff;
}

/* touch devices don't have reliable hover — always show */
@media (hover: none), (max-width: 768px) {
  .cart-toggle-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}
.rp-card__specs {
  margin-top: auto;
}

.rp-specs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* flex-direction: row;       was column */
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  row-gap: 8px;
}

.rp-specs__list li {
  display: flex;
  /* align-items: center; */
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #3a3a4a;
  white-space: nowrap;
}

.rp-specs__list li + li {
  /* padding-left: 18px; */
  /* border-left: 1px solid #d5d8e0; */
}
/* youtube video */
/* ══════════════════════════════════════
   FEATURED VIDEO CARD  —  prefix: vidf-
══════════════════════════════════════ */

.vidf-section {
  background: #ffffff;
}

.vidf-card {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 2, 43, 0.08);
}

/* ── Left: video ── */
.vidf-media {
  flex: 0 0 62%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.vidf-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Right: text panel ── */
.vidf-content {
  flex: 1 1 auto;
  background: #ececec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
}

.vidf-title {
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0 0 14px;
}

.vidf-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 900px) {
  .vidf-card {
    flex-direction: column;
  }
  .vidf-media {
    flex: none;
    width: 100%;
  }
  .vidf-content {
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .vidf-content {
    padding: 24px 20px;
  }
  .vidf-title {
    font-size: 19px;
  }
}


/* ══════════════════════════════════════
   TERMS & CONDITIONS PAGE  —  prefix: tc-
══════════════════════════════════════ */

/* ── Hero ── */
.tc-hero {
  background: #f6f1ff;
  padding: 48px 0 44px;
}

.tc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 18px 0 12px;
}

.tc-hero__heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.tc-hero__meta {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-col);
  max-width: 620px;
  margin-bottom: 26px;
}

.tc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s,
    color 0.2s;
}

.tc-btn .material-symbols-outlined {
  font-size: 18px;
}

.tc-btn--solid {
  background: var(--primary);
  color: #fff;
}
.tc-btn--solid:hover {
  background: #1a1d46;
  transform: translateY(-1px);
}

.tc-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(0, 2, 43, 0.25);
}
.tc-btn--outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ── Body layout ── */
.tc-body {
  background: #ffffff;
  padding: 48px 0 80px;
}

.tc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Sidebar ── */
.tc-sidebar {
  position: sticky;
  top: 96px;
}

.tc-sidebar__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tc-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid #ececec;
}

.tc-sidebar__link {
  display: block;
  padding: 9px 0 9px 16px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted-col);
  text-decoration: none;
  line-height: 1.4;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.tc-sidebar__link:hover {
  color: var(--primary);
}

.tc-sidebar__link.active {
  color: var(--teal-dark);
  border-left-color: var(--teal);
  font-weight: 700;
}

/* ── Mobile jump dropdown (hidden on desktop) ── */
.tc-mobile-jump {
  display: none;
  margin-bottom: 28px;
}

/* ── Content ── */
.tc-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-section {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid #ececec;
  scroll-margin-top: 100px; /* keeps heading visible below sticky navbar when jumped to */
}

.tc-section:last-child {
  border-bottom: none;
}

.tc-section__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-section__body {
  flex: 1;
  min-width: 0;
}

.tc-section__body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 4px 0 14px;
  letter-spacing: -0.2px;
}

.tc-section__body p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0 0 14px;
}

.tc-section__body p:last-child {
  margin-bottom: 0;
}

/* ── Back to top ── */
.tc-back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 189, 182, 0.35);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.2s ease;
}

.tc-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tc-back-to-top:hover {
  background: var(--teal-dark);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 991px) {
  .tc-layout {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .tc-layout {
    grid-template-columns: 1fr;
  }
  .tc-sidebar {
    display: none; /* replaced by mobile jump dropdown */
  }
  .tc-mobile-jump {
    display: block;
  }
}

@media (max-width: 768px) {
  .tc-hero {
    padding: 36px 0 32px;
  }
  .tc-body {
    padding: 32px 0 56px;
  }
  .tc-section {
    gap: 16px;
    padding: 22px 0;
  }
  .tc-section__num {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .tc-section__body h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .tc-hero__actions .tc-btn {
    flex: 1;
    justify-content: center;
  }
  .tc-back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* ── Print styles ── */
@media print {
  .custom-navbar,
  .footer-section,
  .tc-hero__actions,
  .tc-sidebar,
  .tc-mobile-jump,
  .tc-back-to-top {
    display: none !important;
  }
  .tc-section {
    break-inside: avoid;
    border-bottom: none;
  }
}


/* ══════════════════════════════════════
   RELATED CENTRIFUGES  —  prefix: rp-
══════════════════════════════════════ */

.rp-section {
  background: #ffffff;
  padding: 40px 0 40px;
}

.rp-heading {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.rp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
.rp-card {
  background: #eef0f4;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.rp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 2, 43, 0.08);
}

/* ── Left content ── */
.rp-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.rp-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 6px;
  letter-spacing: -0.2px;
  transition: color 0.25s ease;
}


.rp-card__subtitle {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted-col);
  margin: 0 0 18px;
}

.rp-card__tagline {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0 0 24px;
  max-width: 320px;
}

/* ── Specs ── */
.rp-specs__label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.rp-specs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  /* display: flex;
  flex-direction: column; */
  gap: 10px;
}

.rp-specs__list li {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #3a3a4a;
}

.rp-specs__icon {
  width: 18px;
  flex-shrink: 0;
  font-size: 14px;
  color: #8a8fa0;
}

/* ── Image ── */
.rp-card__img {
  flex: 0 0 auto;
  width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.rp-card:hover .rp-card__img img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 900px) {
  .rp-card {
    padding: 28px 24px;
    gap: 18px;
  }
  .rp-card__img {
    width: 140px;
    height: 120px;
  }
  .rp-card__tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .rp-section {
    padding: 44px 0 56px;
  }
  .rp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .rp-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .rp-card__img {
    width: 100%;
    height: auto;
    max-height: 160px;
    align-self: center;
    order: -1;
    margin-bottom: 8px;
  }
  .rp-card__name {
    font-size: 20px;
  }
}

/* ══════════════════════════════════════
   SIGMA TABLE DETAIL  —  prefix: sgt-
══════════════════════════════════════ */

.sgt-card {
  display: grid;
  grid-template-columns: 1fr 350px;
  max-width: 1700px;
  margin: 0 auto;
}

/* ── Left: text panel ── */
.sgt-card__text {
  /* background: #F6F1FF; */
  /* padding: 56px 64px; */
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sgt-card__title {
  font-size: 26px;
  font-weight: 800;
  color: #00BDB6;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.sgt-card__part-no {
  font-size: 16px;
  font-weight: 700;
  color: #0d0f2b;
  margin-bottom: 10px;
}

.sgt-card__dims {
  font-size: 15px;
  color: #3a4a6e;
  margin-bottom: 28px;
}

.sgt-card__unit {
  color: #6b7280;
}

.sgt-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #3a4a6e;
  max-width: 620px;
  font-weight: 400;
}

/* ── Right: image panel ── */
.sgt-card__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 420px;
}

.sgt-card__media img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 991px) {
  .sgt-card__text {
    padding: 44px 40px;
  }
  .sgt-card__title {
    font-size: 23px;
  }
  .sgt-card__media {
    min-height: 340px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .sgt-card {
    grid-template-columns: 1fr;
  }
  .sgt-card__media {
    order: 1;
    min-height: 280px;
    padding: 24px 20px;
  }
  .sgt-card__text {
    order: 2;
    padding: 32px 24px 40px;
  }
  .sgt-card__title {
    font-size: 21px;
  }
  .sgt-card__desc {
    max-width: 100%;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .sgt-card__text {
    padding: 28px 18px 32px;
  }
  .sgt-card__title {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .sgt-card__part-no {
    font-size: 14.5px;
  }
  .sgt-card__dims {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .sgt-card__desc {
    font-size: 14px;
    line-height: 1.7;
  }
  .sgt-card__media {
    min-height: 220px;
    padding: 18px 14px;
  }
}

.about-hero__text{
   text-align:justify;
}

 .fi{
    font-size: 30px;
    line-height: 1;
    color: #30A9A0;
}

.legacy-section{
    padding: 80px 0;
    background: #fafafa;
  }
  .legacy-layout{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
  }
  .legacy-img-col{
    position: sticky;
    top: 100px;
  }
  .legacy-img-card{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  .legacy-img-card img{
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }
  .legacy-img-card:hover img{
    transform: scale(1.04);
  }
  .legacy-img-caption{
    background: #fff;
    padding: 16px 20px;
    border-radius: 0 0 20px 20px;
  }
  .legacy-img-caption strong{
    display:block;
    font-size: 15px;
    color:#111;
  }
  .legacy-img-caption span{
    font-size: 13px;
    color:#888;
  }
 
  .legacy-eyebrow{
    color: #00BDB6;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display:block;
  }
  .legacy-heading{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color:#111;
  }
  .legacy-intro{
    color:#555;
    line-height: 1.75;
    margin-bottom: 30px;
    font-size: 16px;
   text-align:justify;

  }
 
  /* ── Interactive tabs ── */
  .legacy-tabs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 14px;
  }
  .legacy-tab-btn{
    background: #fff;
    border: 1px solid #e2e2e2;
    color: #444;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
  }
  .legacy-tab-btn:hover{
    border-color: #00BDB6;
    color: #00BDB6;
  }
  .legacy-tab-btn.active{
    background: #00BDB6;
    border-color: #00BDB6;
    color: #fff;
  }
 
  .legacy-panel{
    display: none;
    animation: legacyFade .4s ease;
  }
  .legacy-panel.active{
    display: block;
  }
  @keyframes legacyFade{
    from{ opacity:0; transform: translateY(8px); }
    to{ opacity:1; transform: translateY(0); }
  }
 
  .legacy-panel h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color:#111;
  }

  .legacy-panel p{
    color:#555;
    line-height: 1.75;  
    font-size: 15.5px; 
    margin-bottom: 0;
    text-align: justify !important;
  }

  .legacy-panel .legacy-tag{
    display:inline-block;
    background: rgba(0,189,182,0.1);
    color:#009d97;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
 
  /* ── Accordion for "Beyond the Executive Suite" ── */
  .legacy-accordion{
    margin-top: 34px;
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
  }
  .legacy-acc-item{
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background:#fff;
  }
  .legacy-acc-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color:#111;
    font-size: 15px;
  }
  .legacy-acc-head i{
    color:#00BDB6;
    transition: transform .3s ease;
  }
  .legacy-acc-item.open .legacy-acc-head i{
    transform: rotate(180deg);
  }
  .legacy-acc-body{
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .legacy-acc-body-inner{
    padding: 0 20px 18px;
    color:#555;
     text-align:justify;
    font-size: 14.5px;
    line-height: 1.7;
  }
 
  @media (max-width: 991px){
    .legacy-layout{ grid-template-columns: 1fr; }
    .legacy-img-col{ position: static; }
    .legacy-img-card img{ height: 380px; }
    .legacy-heading{ font-size: 28px; }
  }

.search-section { margin-bottom: 34px; }
.search-section__title{
  font-size:14px; letter-spacing:1px; text-transform:uppercase;
  font-weight:700; color:#006A66; margin-bottom:16px;
  padding-bottom:8px; border-bottom:1px solid #e5e5e5;
}
.search-section__title span{ color:#999; font-weight:500; }

.search-modal-results{ max-height:70vh; overflow-y:auto; }

/* AOS force visible (agar kahin data-aos reh jaye) */
.search-modal-results [data-aos],
.search-section [data-aos]{
  opacity:1 !important; transform:none !important; transition:none !important;
}

/* modal wide + grid */
.search-modal-box{ max-width:1180px; width:94%; }
.search-modal-results .product-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); gap:20px;
}
.search-modal-results .cards-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:16px;
}
/* Himacnahl css */
/* accessories table */
.search-modal-results .table-responsive{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
.search-modal-results .rotor-table{ min-width:1050px; width:100%; border-collapse:collapse; }
.search-modal-results .rotor-table th{ white-space:nowrap; font-size:11px; }
.search-modal-results .rotor-table td{ font-size:13px; vertical-align:middle; }
.search-modal-results .rotor-table td img{ width:34px; height:auto; object-fit:contain; }
.search-modal-results .rotor-table td a{ white-space:nowrap; color:#006A66; text-decoration:none; font-weight:600; }

/* rotor highlight on detail page */
.rotor_card.rotor-highlight{
  border:2px solid #00b5a9;
  box-shadow:0 0 0 4px rgba(0,181,169,.15);
}

/* search me rotor link button jaisa */
.search-section .rotor-section .selectRotor{
  display:inline-block; text-align:center; text-decoration:none;
}

@media (max-width: 991px){
  .search-modal-box{ width:96%; }
}
.search-modal-box{ max-width:1180px; width:94%; }

.search-modal-results .product-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); gap:20px;
}
.search-modal-results .cards-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:16px;
}
.search-section .rotor_card{ position: relative; }

.tc-section__body p{
  text-align: justify;
}

.blog-article-body p{
  text-align: justify;

}