:root {
  --primary: #0b5e86;
  --primary-dark: #082f44;
  --accent: #d99a0a;
  --accent-soft: #f6e5b0;
  --text: #183042;
  --muted: #637381;
  --bg: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(5, 33, 52, 0.14);
  --radius: 22px;
  --container: 1380px;
  --products-hero-image: none;
  --products-section-image: none;
  --products-contact-image: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(11,94,134,.22);
}

.btn.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}

.btn:hover { transform: translateY(-2px); }

/* ── Typography helpers ── */
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin-bottom: .85rem;
  display: inline-block;
}

section { padding: 5.5rem 0; }

.hero .container {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-video-section {
  isolation: isolate;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,47,68,.82) 0%, rgba(11,94,134,.58) 100%);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
}

.hero-copy,
.hero-card {
  will-change: transform, opacity;
}

.hero-actions .btn {
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}

.hero-stats {
  perspective: 900px;
}

.hero-stat {
  transform: translate3d(0, 0, 0);
  animation: heroStatRise .9s ease both;
}

.hero-stat:nth-child(1) { animation-delay: .18s; }
.hero-stat:nth-child(2) { animation-delay: .3s; }
.hero-stat:nth-child(3) { animation-delay: .42s; }

@keyframes heroStatRise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(5,33,52,.16);
}

.hero-panel-kicker {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #ffd26a;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .82rem;
  text-transform: uppercase;
}

.hero-panel h3 {
  margin: 0 0 .75rem;
  font-size: 1.85rem;
  line-height: 1.15;
  color: #fff;
}

.hero-panel p {
  margin: 0 0 1.3rem;
  color: rgba(255,255,255,.84);
}

.hero-panel-list {
  display: grid;
  gap: .9rem;
}

.hero-panel-item {
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-panel-item strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
  font-size: 1rem;
}

.hero-panel-item span {
  color: rgba(255,255,255,.8);
  font-size: .94rem;
}

/* ══════════════════════════════════════════
    HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(11,94,134,.08);
}

@supports (backdrop-filter: blur(8px)) {
  .site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
  }
}

.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .7rem 0;
  flex-wrap: wrap;
}

.topbar-items, .topbar-badges {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-header .nav-wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

/* Principals & Partners infinite slider */
.principals .section-head { margin-bottom: 1.2rem; }
.principals-slider { overflow: hidden; margin-top: 1rem; }
.principals-slider .slider-viewport { width:100%; overflow: hidden; }
.principals-slider .slider-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* duration is set by JS: --scroll-duration */
  animation: scroll var(--scroll-duration, 20s) linear infinite;
}
.principals-slider .slider-track:hover { animation-play-state: paused; }
.principals-slider .slide { flex: 0 0 auto; display:flex; align-items:center; justify-content:center; background: #fff; padding: .4rem; border-radius:8px; box-shadow: var(--shadow); }
.principals-slider .slide img { height:64px; width:auto; display:block; object-fit:contain; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width:720px){
  .principals-slider .slide img { height:48px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}

.brand img {
  width: 220px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

nav > * { display: inline-block; }

nav a {
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding: .35rem 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

nav a:hover::after,
nav a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
  padding-bottom: .9rem;
  margin-bottom: -.9rem;
}

.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(5,33,52,.12);
  border: 1px solid rgba(11,94,134,.08);
  border-radius: 14px;
  min-width: 320px;
  padding: 0.5rem 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown > a span {
  display: inline-block;
  transition: transform .24s ease;
}

.dropdown:hover > a span,
.dropdown:focus-within > a span {
  transform: rotate(180deg);
}

.dropdown-menu a {
  padding: 0.8rem 1.5rem !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: background 0.2s, color 0.2s, opacity .2s ease, transform .2s ease;
}

.dropdown:hover .dropdown-menu a,
.dropdown:focus-within .dropdown-menu a {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: rgba(11,94,134,.05);
  color: var(--primary) !important;
}

.dropdown-menu a.active-cat {
  background: rgba(11,94,134,.12) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-left: 3px solid var(--primary);
  padding-left: calc(1.5rem - 3px) !important;
}

/* ══════════════════════════════════════════
    PRODUCT TABLE HERO
══════════════════════════════════════════ */
.product-hero {
  background-image: url('3d-illustration-geometric-hexagonal-abstract-back-2026-03-19-23-09-34-utc.jpg');
  background-size: cover;
  background-position: center;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.product-hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0, 0, 0, 0.4);
}

.product-hero-content {
  position: relative;
  z-index: 2;
}

.product-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.product-hero .breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* Profile hero background + overlay */
.profile-hero {
  position: relative;
  background-image: linear-gradient(rgba(3,10,18,0.28), rgba(3,10,18,0.28)), url('experienced-laboratory-scientist-analyzing-a-sampl-2026-01-08-06-56-59-utc.jpg'), url('blue-marble-pattern-useful-as-background-or-textur-2026-01-09-00-13-35-utc.jpg');
  background-size: cover, cover, cover;
  background-position: center center, center center, center center;
  color: #fff;
  overflow: hidden;
}
.profile-hero .container { position: relative; z-index: 2; }
.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,10,18,0.56) 0%, rgba(3,10,18,0.48) 60%);
  z-index: 1;
}

@media (max-width: 880px) {
  .profile-hero { background-position: center top; }
  .profile-hero .container { padding: 3rem 0; }
}

  /* Background video for profile hero */
  .profile-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    display: block;
  }

  @media (max-width: 640px) {
    .profile-hero-video { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .profile-hero-video { display: none; }
  }

  /* Company info styles */
  .company-info { padding: 2.5rem 0; background: linear-gradient(180deg,#f7f9fb,#ffffff); }
  .company-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.4rem; align-items: start; }
  .company-card { background: var(--white); padding: 1.6rem; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid rgba(11,94,134,0.06); }
  .company-card h3 { margin: 0 0 .6rem; color: var(--primary-dark); }
  .company-contact-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .9rem; }
  .company-contact-list li { display:flex; gap: .8rem; align-items:flex-start; }
  .company-contact-list svg { flex: 0 0 28px; margin-top:4px; }
  .company-contact-list strong { display:block; color:var(--primary); font-weight:700; }
  .company-contact-list span { display:block; color:var(--muted); font-size:.95rem; margin-top:4px; }
  .company-cta { display:flex; gap:.6rem; margin-top: .6rem; }
  .company-cta .btn-outline { background: transparent; color: var(--primary); border: 1px solid rgba(11,94,134,0.12); }
  .company-meta h4 { margin: 0 0 .4rem; color: var(--primary-dark); }
  .company-meta img { width: 100%; border-radius: 12px; box-shadow: 0 8px 20px rgba(8,64,89,0.06); margin-top: .6rem; }

  @media (max-width: 880px) {
    .company-grid { grid-template-columns: 1fr; }
    .company-meta { order: 2; }
  }

/* Hero punchline */
.profile-hero .hero-punch { color: rgba(255,255,255,0.95); margin: .5rem 0 0; }

/* About/profile two-column layout */
.profile-about img { width: 100%; display:block; border-radius: 12px; }
.profile-about h2 { margin-top: 0; }

@media (max-width: 880px) {
  .profile-about > div { grid-template-columns: 1fr !important; grid-auto-rows: auto; }
  .profile-about img { height: auto; margin-bottom: .8rem; }
}

/* ══════════════════════════════════════════
    TABLE
══════════════════════════════════════════ */
.table-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
  align-items: center;
}

.table-controls select, .table-controls input {
  padding: 0.4rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  margin-left: 0.5rem;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e8ef;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

table.data-table th, table.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e1e8ef;
}

table.data-table th {
  background: #dbeaf4;
  font-weight: 700;
  color: #333;
}

table.data-table tr:nth-child(even) { background: #f9fbfd; }
table.data-table tbody tr:hover { background: #f0f5fa; }

.table-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.products-page {
  background: linear-gradient(180deg, #eef7fb 0%, #f8fcfe 100%);
  position: relative;
  isolation: isolate;
}

.products-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
    var(--products-section-image) center/cover no-repeat;
  opacity: 0.32;
  z-index: -1;
}

.products-hero {
  background:
    linear-gradient(135deg, rgba(11,94,134,0.9) 0%, rgba(8,47,68,0.94) 100%),
    var(--products-hero-image) center/cover no-repeat;
  color: var(--white);
  padding: 40px 0 90px;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.products-hero::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: -5%;
  width: 110%;
  height: 120px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.products-hero .container,
.products-content {
  position: relative;
  z-index: 2;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.products-kicker {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.products-hero h1 {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.products-hero p {
  max-width: 700px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
}

.products-hero-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 24px;
}

.products-hero-box h3 { margin: 0 0 12px; font-size: 1.1rem; }

.products-hero-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-hero-box li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
}

.products-hero-box li:last-child { border-bottom: none; }

.products-content {
  margin-top: 20px;
  padding-bottom: 70px;
}

.section-head { text-align: center; margin-bottom: 30px; }

.section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(1.7rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

.products-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(8,64,89,0.06);
}

.stat-card h3 { color: var(--primary); font-size: 2rem; margin: 0 0 6px; }
.stat-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.table-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.search-box {
  display: grid;
  gap: 0.45rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.search-box input {
  min-width: 280px;
  max-width: 420px;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d9e5ec;
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.table-count { color: var(--muted); font-weight: 700; }

.table-wrap {
  background: var(--white);
  border: 1px solid #d9e5ec;
  border-radius: 20px;
  overflow-x: auto;
  box-shadow: 0 10px 24px rgba(8,64,89,0.06);
  margin-bottom: 45px;
  position: relative;
}

.table-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)),
    var(--products-section-image) center/cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.table-wrap > * { position: relative; z-index: 1; }

.products-page table.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: none;
  margin-bottom: 0;
}

.products-page .data-table thead { background: var(--primary); color: #fff; }

.products-page .data-table th,
.products-page .data-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7eff4;
}

.products-page .data-table th {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: #fff;
  background: transparent;
}

.products-page .data-table td { font-size: 0.94rem; color: #33454f; }
.products-page .data-table tbody tr:nth-child(even) { background: #f8fbfd; }

/* Highlight cards – bigger, tighter header spacing */
.products-content .section-head + .products-cards,
.products-content > .section-head { margin-bottom: 10px !important; padding-bottom: 0; }

.products-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px !important;
  gap: 22px !important;
}

.products-cards .card {
  background: #fff;
  border: 1px solid #d9e5ec;
  border-radius: 18px;
  padding: 0 0 22px;
  box-shadow: 0 10px 28px rgba(8,64,89,0.09);
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.products-cards .card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
}

.products-cards .card h3 {
  color: var(--primary-dark);
  margin: 18px 22px 10px;
  font-size: 1.15rem;
}

.products-cards .card ul {
  padding-left: 18px;
  margin: 0 22px;
  color: #455862;
  flex: 1;
}

.products-cards .card li { margin-bottom: 8px; font-size: 0.95rem; }

@media (max-width: 880px) {
  .products-cards { grid-template-columns: repeat(2, 1fr) !important; }
  .products-cards .card img { height: 170px; }
}

@media (max-width: 560px) {
  .products-cards { grid-template-columns: 1fr !important; }
  .products-cards .card img { height: 200px; }
}

.products-contact {
  margin-top: 50px;
  background:
    linear-gradient(135deg, rgba(8,47,68,0.92), rgba(11,94,134,0.88)),
    var(--products-contact-image) center/cover no-repeat;
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.products-contact h3 { font-size: 1.7rem; margin: 0 0 10px; }
.products-contact p { color: rgba(255,255,255,0.92); margin: 0; }

.products-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.products-contact .contact-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
}

.products-contact .contact-item strong { display: block; margin-bottom: 6px; color: #ffd97d; }

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
.site-footer {
  --footer-bg: #f5f5f3;
  --footer-text: #0d5f86;
  --footer-muted: #4f6b7a;
  --footer-link-hover: #d89a09;
  --footer-accent: #d89a09;
  --footer-border: rgba(13,95,134,0.12);

  position: relative;
  color: var(--footer-text);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  margin-top: 48px;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

/* Footer background image using CSS variable set on the footer element */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--footer-bg-image) center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  background-blend-mode: multiply;
  filter: saturate(.95) contrast(.95);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.86));
  z-index: 1;
  pointer-events: none;
}
.site-footer .footer-inner { position: relative; z-index: 2; }

.site-footer .footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 58px 32px 24px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

@media (max-width: 880px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .site-footer .footer-inner { padding: 28px 18px 18px; }
  .site-footer .footer-col { text-align: left; }
  .site-footer .col2 { width: auto; }
  .site-footer .footer-bottom { margin-top: 18px; }
}

.site-footer .footer-col h3 {
  margin: 0 0 16px;
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--footer-text);
}

.site-footer .footer-col img {
  max-width: 180px;
  margin-bottom: 22px;
  display: block;
  background: transparent;
}

.site-footer .col2 { width: 50%; }

/* ===== New: Supply Chain, Growth Essentials, Principals ===== */
.supply-chain .section-head, .growth-essentials .section-head, .principals .section-head {
  text-align: center;
  margin-bottom: 1rem;
}

.supply-chain { color: var(--text); }
.supply-chain .eyebrow, .growth-essentials .eyebrow, .principals .eyebrow { color: var(--accent); }

.growth-essentials > .container > div + div { margin-top: .6rem; }

.principals-grid { align-items: center; }
.principal-logo { display:flex; align-items:center; justify-content:center; padding:12px; background: #fff; border-radius:12px; border:1px solid #f0f3f6; box-shadow: 0 6px 18px rgba(8,64,89,0.04);} 
.principal-logo img { max-width:140px; max-height:64px; object-fit:contain; opacity: .95; }

@media (max-width: 980px) {
  .principals-grid { grid-template-columns: repeat(3,1fr); }
  .growth-essentials div[style], .supply-chain div[style] { grid-column: span 1 !important; }
}

@media (max-width: 640px) {
  .principals-grid { grid-template-columns: repeat(2,1fr); gap:.6rem; }
  .supply-chain .container, .growth-essentials .container { padding: 0 1rem; }
}

/* ===== Parallax background for Growth Essentials ===== */
.growth-essentials { position: relative; overflow: hidden; display: flex; align-items: center; padding: 4rem 0; }
.growth-essentials .container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.growth-essentials .parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  will-change: transform, background-position;
  transform: translate3d(0,0,0);
  z-index: 0;
  transition: transform 0.2s linear, background-position 0.2s linear;
}
.growth-essentials .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3,10,18,0.62), rgba(3,10,18,0.5));
  z-index: 1;
}

/* Premium CTA look: center content, light text */
.growth-essentials .container { color: #fff; text-align: center; }
.growth-essentials .eyebrow { color: rgba(255,214,106,0.95); }
.growth-essentials .section-title, .growth-essentials h2 { color: #fff; }

/* Make the paragraph in Growth Essentials clearly visible on the background */
.growth-essentials .section-head p {
  color: rgba(255,255,255,0.96);
  text-shadow: 0 3px 14px rgba(0,0,0,0.55);
  font-weight: 600;
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.45;
}

/* Growth Essentials card styling */
.growth-grid { margin-top: 1.4rem; }
.growth-card {
  background: #fff;
  padding: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(8,64,89,0.06);
  text-align: left;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.growth-card .growth-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 64px;
  box-shadow: 0 8px 20px rgba(8,64,89,0.06);
}
.growth-card strong { display:block; color:var(--primary-dark); margin-top:4px; }
.growth-card .growth-desc { color:var(--muted); margin-top:6px; }

@media (max-width: 880px) {
  .growth-grid { grid-template-columns: 1fr !important; }
  .growth-card { align-items: center; }
  .growth-card .growth-icon { width:56px; height:56px; }
}

/* Desktop: use fixed background where supported for stronger parallax */
@media (min-width: 980px) {
  .growth-essentials .parallax-bg { background-attachment: fixed; background-position: center center; }
  .growth-essentials { min-height: 420px; }
}

@media (max-width: 980px) {
  .growth-essentials { padding: 3rem 0; }
  .growth-essentials .parallax-bg { background-position: center top; background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  .growth-essentials .parallax-bg { transition: none; transform: none !important; background-attachment: scroll !important; }
}

/* Fixed-layer parallax helper (created/controlled by JS) */
.growth-fixed-bg { display: none; }
.growth-fixed-bg__inner { display: none; }

.site-footer .footer-title {
  margin: 0 0 12px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--footer-muted);
  font-weight: 400;
}

.site-footer .footer-heading {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--footer-accent);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--footer-border);
}

.site-footer .footer-logo { max-width: 180px; margin-bottom: 22px; display: block; }
.site-footer p { margin: 0; color: var(--footer-muted); }

.site-footer .footer-links,
.site-footer .footer-products,
.site-footer .footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer .footer-links a,
.site-footer .footer-products a,
.site-footer .footer-contact a {
  color: var(--footer-muted);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer-links a::before,
.site-footer .footer-products a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--footer-accent);
  flex-shrink: 0;
}

.site-footer .footer-links a:hover,
.site-footer .footer-products a:hover,
.site-footer .footer-contact a:hover {
  color: var(--footer-link-hover);
  transform: translateX(2px);
}

.site-footer .footer-products {
  grid-template-columns: 1fr;
  gap: 9px;
}

.site-footer .footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--footer-border);
  color: var(--footer-muted);
  font-size: 0.84rem;
  text-align: center;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* ══════════════════════════════════════════
    PRODUCT SLIDER
══════════════════════════════════════════ */
.product-slider-container {
  position: relative;
  margin-top: 2rem;
}

.product-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-top: 1rem; padding-bottom: 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #eee;
}

.product-slider::-webkit-scrollbar { height: 8px; }
.product-slider::-webkit-scrollbar-track { background: #eee; border-radius: 4px; }
.product-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.product-slide-card {
  min-width: 300px;
  max-width: 300px;
  scroll-snap-align: start;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11,94,134,.08);
  box-shadow: 0 18px 34px rgba(5,33,52,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-slide-img { width: 100%; height: 200px; object-fit: cover; }

.product-slide-content { padding: 1.6rem; flex: 1; }

.product-slide-card h3 { margin: 0 0 .6rem; font-size: 1.2rem; color: var(--primary-dark); }
.product-slide-card p  { margin: 0; color: var(--muted); font-size: 0.95rem; }

.product-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(5,33,52,.11);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: all 0.2s ease;
}

.slider-arrow:hover { background: var(--primary); color: #fff; }

.slider-arrow:focus-visible {
  outline: 3px solid rgba(217,154,10,.45);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════
    WHY US
══════════════════════════════════════════ */
.why-us { background: var(--bg); }

.why-us .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.why-us .card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(5,33,52,.08);
  text-align: center;
}

.why-us .card .number {
  width: 58px;
  height: 58px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217,154,10,.15);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.15rem;
}

/* ══════════════════════════════════════════
    INSIGHTS
══════════════════════════════════════════ */
.insights { background: var(--white); }

.insights .container {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 2.2rem;
  align-items: center;
}

.insights .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.insights .stats .stat-box {
  background: var(--bg);
  padding: 1.4rem;
  border-radius: 20px;
}

.insights .stats .stat-box strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.insights .visual {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ══════════════════════════════════════════
    CONTACT
══════════════════════════════════════════ */
.contact {
  background:
    linear-gradient(110deg, rgba(8,47,68,.95), rgba(11,94,134,.82)),
    url('abstract-technological-hexagonal-background-3d-re-2026-03-19-21-56-46-utc.jpg') center/cover;
  color: var(--white);
}

.contact .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}

.contact .contact-card,
.contact .form-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 2rem;
}

.about,
.products,
.banner,
.why-us,
.insights,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .reveal { transition: none; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; }
  .hero-stat { animation: none; }
  .hero-video-bg { display: none; }
}

.contact .contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact .contact-list .item {
  padding: .9rem 1rem;
  background: rgba(255,255,255,.06);
  border-radius: 16px;
}

.contact form {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.contact form .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact input,
.contact textarea,
.contact select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 1rem;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact textarea { min-height: 140px; resize: vertical; }

#formMessage { margin-top: 1rem; font-weight: 700; color: var(--accent-soft); }


/* ════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════ */

/* ── 1024px: tablet-landscape ── */
@media (max-width: 1024px) {

  .site-header .nav-wrap .container {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .brand img { width: 170px; }
  nav { gap: 1rem; font-size: 0.93rem; }
  .desktop-btn { display: none; }

  .hero-video-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    padding: 3rem 1.2rem 3.5rem !important;
    min-height: 70vh !important;
  }

  .hero-copy h1.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr) !important; gap: 0.75rem !important; }
  .hero-panel { padding: 1.5rem; }
  .hero-panel h3 { font-size: 1.45rem; }

  .about .container {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    padding: 0 1.2rem;
  }

  .products .container { padding: 0 1.2rem; }
  .product-slide-card { min-width: 270px; max-width: 270px; }

  .why-us .cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .insights .container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1.2rem;
  }

  .contact .container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 1.2rem;
  }

  .banner .wrap {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
  }

  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .site-footer .col2 { width: 100%; }
}

/* ── 900px: existing block (enhanced) ── */
@media (max-width: 900px) {
  .why-us .cards { grid-template-columns: repeat(2, 1fr); }
  .insights .container { grid-template-columns: 1fr; }
  .contact .container { grid-template-columns: 1fr; }
  .products-hero-grid { grid-template-columns: 1fr; }
  .products-contact { grid-template-columns: 1fr; }
  .products-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── 768px: tablet-portrait ── */
@media (max-width: 768px) {

  .topbar {
    display: none !important;
  }

  .site-header .nav-wrap .container {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  .brand img { width: 150px; }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 0.85rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    padding-bottom: 0.5rem;
  }

  .nav-actions { order: 2; margin-left: auto; }
  .dropdown-menu { min-width: 260px; }

  /* profile page inline-grid overrides */
  .profile-about > div { grid-template-columns: 1fr !important; }
  .capabilities .container > div[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .mission-values .container > div[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .profile-cta .container { flex-direction: column !important; gap: 1rem !important; text-align: center; }

  /* homepage inline-grid overrides */
  .about .container > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .about-visual > div[style*="position:absolute"],
  .about-visual > div[style*="position: absolute"] { display: none; }
  .supply-chain .container > div[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .growth-essentials .container > div[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .principals-grid { grid-template-columns: repeat(3, 1fr) !important; }

  .hero-video-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 1rem 3rem !important;
    min-height: unset !important;
  }

  .hero-copy { text-align: center; }
  .hero-copy h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr) !important; gap: 0.6rem !important; }
  .hero-stat strong { font-size: 1.35rem !important; }
  .hero-panel { padding: 1.3rem; }

  .about .container { grid-template-columns: 1fr !important; padding: 0 1rem; }
  .about-visual { max-width: 500px; margin: 0 auto; }

  .products .container { padding: 0 1rem; }

  .why-us .cards { grid-template-columns: repeat(2, 1fr); }

  .insights .container { grid-template-columns: 1fr !important; padding: 0 1rem; }
  .insights .visual { max-width: 520px; margin: 0 auto; }
  .insights .stats { grid-template-columns: repeat(2, 1fr); }

  .contact .container { grid-template-columns: 1fr !important; padding: 0 1rem; }

  .banner .wrap {
    padding: 2.5rem 1.5rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }

  .banner .wrap h2 { font-size: 1.8rem !important; }

  section { padding: 3.5rem 0; }
  .section-title { font-size: clamp(1.6rem, 4.5vw, 2.2rem); }

  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer .footer-inner { padding: 40px 20px 20px; }
}

/* ── 600px: existing block (enhanced) ── */
@media (max-width: 600px) {
  .why-us .cards { grid-template-columns: 1fr; }
  .insights .stats { grid-template-columns: 1fr; }
  .contact form .field-row { grid-template-columns: 1fr; }
  .products-hero h1 { font-size: 1.7rem; }
  .products-page .data-table th,
  .products-page .data-table td { padding: 12px; font-size: 0.88rem; }
  .products-contact .contact-grid { grid-template-columns: 1fr; }
  .search-box input { min-width: 0; }
}

/* ── 520px: mobile ── */
@media (max-width: 520px) {

  .topbar-badges { display: none; }

  .site-header .nav-wrap .container { flex-wrap: wrap; padding: 0.6rem 1rem; }
  .brand img { width: 130px; }
  nav { gap: 0.6rem; font-size: 0.84rem; }

  /* profile page — single column on small phones */
  .capabilities .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }
  .mission-values .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }

  /* homepage — single column on small phones */
  .supply-chain .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }
  .growth-essentials .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }
  .principals-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .dropdown-menu {
    min-width: 220px;
    left: 50%;
    transform: translateX(-50%) translateY(14px) scale(.98);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .hero-video-content { padding: 2rem 1rem 2.5rem !important; }
  .hero-copy h1 { font-size: clamp(1.35rem, 6vw, 1.9rem); }
  .hero-copy p { font-size: 0.95rem !important; }

  .hero-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    margin-top: 1.5rem !important;
  }

  .hero-stat strong { font-size: 1.5rem !important; }

  .about .container { padding: 0 0.9rem; }

  .products .container { padding: 0 0.9rem; }
  .product-slide-card { min-width: 240px; max-width: 240px; }
  .product-slide-img { height: 160px; }

  .banner .wrap { padding: 2rem 1rem !important; border-radius: 20px !important; }
  .banner .wrap h2 { font-size: 1.5rem !important; }
  .banner .wrap .btn { width: 100%; text-align: center; justify-content: center; }

  .why-us .cards { grid-template-columns: 1fr !important; }

  .insights .stats { grid-template-columns: 1fr !important; }
  .insights .container { padding: 0 0.9rem; }

  .contact .container { padding: 0 0.9rem; }
  .contact form .field-row { grid-template-columns: 1fr !important; }

  .contact .contact-card,
  .contact .form-card { padding: 1.4rem; border-radius: 20px; }

  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  section { padding: 2.8rem 0; }

  .site-footer .footer-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .site-footer .footer-products { grid-template-columns: 1fr 1fr !important; }
  .site-footer .footer-inner { padding: 32px 16px 16px; }
  .site-footer { border-radius: 16px 16px 0 0; }
  .site-footer .footer-col img { max-width: 140px; }
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 201; /* Above the drawer */
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Ensure the wrapper doesn't break the CSS flexbox layout on desktop */
.nav-drawer {
  display: contents;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    order: 3;
    margin-left: auto;
  }
  
  .site-header .nav-wrap .container {
    padding: 1rem;
    position: relative;
  }
  
  /* Reset previous max-width:768px overrides on brand/nav so drawer acts right */
  .brand { order: 1; }
  
  .nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .nav-drawer.open {
    right: 0;
  }

  .nav-drawer nav#siteNav {
    order: 1 !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-bottom: 0 !important;
    gap: 1.2rem !important;
  }
  
  .nav-drawer nav#siteNav a {
    font-size: 1.1rem;
    display: inline-block;
  }
  
  .nav-drawer .nav-actions {
    order: 2 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  .nav-drawer .nav-actions .btn {
    width: 100%;
    justify-content: flex-start;
    background: transparent;
    color: var(--text);
    padding: 0;
    box-shadow: none;
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  /* Overrides for mobile dropdown behavior */
  .nav-drawer .dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .nav-drawer .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    min-width: 100% !important;
    padding: 0.5rem 0 0 1rem !important;
    pointer-events: auto !important;
    display: none; /* hidden by default on mobile, toggled by JS */
  }
  
  .nav-drawer .dropdown.open .dropdown-menu {
    display: flex;
  }
}
