/* ==========================================================
   Dental Matrix - Styles (Section-wise)
   Notes:
   - Same CSS rules kept as-is (no property/value edits)
   - Only arranged with clear section comments
   - Existing duplicates kept (to preserve your cascade)
========================================================== */

/* ==========================================================
   1) DESIGN TOKENS / VARIABLES
   (Colors, fonts, motion, layout, section sizing)
========================================================== */

/* --- Core palette + typography + layout tokens --- */
:root {
  /* Colors */
  --ink: #0d0f1a;
  --ink-2: #1e2135;
  --ink-3: #2e3265;

  --blue: #1b2a8c;
  --blue-mid: #2e3092;
  --blue-lt: #4752c4;
  --blue-gl: rgba(43, 52, 150, 0.18);

  --red: #8c3237;
  --red-dk: #6f282c;
  --red-gl: rgba(140, 50, 55, 0.20);

  --cream: #f7f6f2;
  --white: #fff;

  --line: rgba(0, 0, 0, 0.08);
  --line-w: rgba(255, 255, 255, 0.13);

  /* Fonts */
  --font-h: "Montserrat", sans-serif;
  --font-b: "Montserrat", sans-serif;
  --font-m: "Montserrat", sans-serif;

  /* Motion */
  --ease-b: cubic-bezier(.34, 1.56, .64, 1);
  --ease-s: cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --nav-h: 72px;
  --r: 16px;

  /* Slider sizing tokens (legacy) */
  --cw: 380px;
  --cg: 20px;
  --ch: 500px;
}

/* --- Extended theme tokens (kept from your second :root) --- */
:root {
  --primary: #2e3092;
  --primary-dark: #232575;
  --primary-mid: #3b3db8;
  --primary-glow: rgba(46, 48, 146, 0.30);
  --primary-soft: rgba(46, 48, 146, 0.10);

  --secondary: #8c3237;
  --secondary-dark: #6f282c;
  --secondary-soft: rgba(140, 50, 55, 0.12);
  --secondary-glow: rgba(140, 50, 55, 0.28);

  --black: #0a0a0a;
  --off-white: #f4f4f8;

  --font-body: "Montserrat", sans-serif;
  --font: "Montserrat", sans-serif;
  --font-display: "Montserrat", sans-serif;

  --nav-h: 76px;
  --nav-h-scrolled: 62px;

  --pill-bg: rgba(46, 48, 146, 0.88);
  --pill-border: rgba(255, 255, 255, 0.18);

  --dd-bg: rgba(12, 12, 32, 0.96);
  --dd-border: rgba(255, 255, 255, 0.10);

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.40, 0.00, 0.20, 1);

  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(46, 48, 146, 0.10);
  --shadow-nav-scroll: 0 2px 0 rgba(0, 0, 0, 0.08), 0 16px 48px rgba(46, 48, 146, 0.16);
  --shadow-dd: 0 24px 80px rgba(0, 0, 0, 0.50), 0 0 0 1px var(--dd-border);

  /* vw fix (prevents 100vw scrollbar bugs) */
  --vw: 100vw;
}

/* --- Button + general utility tokens (kept from later :root) --- */
:root {
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.20);

  /* Radii */
  --r-thumb: 16px;
  --r-main: 22px;
  --r-pill: 999px;
  --r-dot: 50%;

  /* Spacing */
  --gap-col: 52px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 0.20s;
  --t-base: 0.35s;
  --t-slow: 0.55s;
}

/* --- Slider/section specific tokens (kept from later :root) --- */
:root {
  --dark: #0a0c0f;
  --dim: #6b7280;
  --radius: 26px;
  --pad: 48px;
  --gap: 20px;
  --card-h: 500px;
}

/* Responsive token overrides */
@media (max-width: 768px) {
  :root {
    --cw: calc(100vw - 48px);
    --ch: 420px;

    --pad: 20px;
    --gap: 14px;
    --card-h: 430px;
  }
}

/* ==========================================================
   2) BASE / RESET
   (Box sizing, typography, images, links)
========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* ==========================================================
   3) TOPBAR
   (Top strip, socials, buttons, responsive)
========================================================== */

.topbar-bg {
  position: relative;
  z-index: 1040;
  background: var(--blue-mid);
  overflow: hidden;
  padding: 10px 0;
}

.topbar-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.06) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.topbar-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    var(--secondary),
    rgba(255, 255, 255, 0.20),
    var(--secondary)
  );
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 6px 0;
}

.topbar-bg .vr {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}

/* Social icons */
.social-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  transition: background .18s ease, color .18s ease, transform .20s var(--ease-bounce), border-color .18s ease;
}

.social-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px) scale(1.10);
}

.social-nav a.facebook:hover   { background: #1877f2; border-color: #1877f2; }
.social-nav a.instagram:hover  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); border-color: transparent; }
.social-nav a.linkedin:hover   { background: #0a66c2; border-color: #0a66c2; }
.social-nav a.pinterest:hover  { background: #e60023; border-color: #e60023; }
.social-nav a.twitter:hover    { background: #1da1f2; border-color: #1da1f2; }

/* Topbar buttons */
.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 14px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .20s var(--ease-bounce), border-color .18s ease, box-shadow .18s ease;
}

.topbar-btn i {
  font-size: 11px;
  opacity: 0.85;
}

.topbar-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--secondary-glow);
}

/* Topbar responsive helpers */
@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tb-hide-sm { display: none !important; }
}

@media (max-width: 575.98px) {
  .tb-hide-xs { display: none !important; }
}

:root {
  /* ── Typography ──────────────────────────────────────── */
  --fdmn-font-h            : "Montserrat", sans-serif;
  --fdmn-font-b            : "Montserrat", sans-serif;

  /* ── Core palette ────────────────────────────────────── */
  --fdmn-white             : #ffffff;
  --fdmn-black             : #0d0d0d;
  --fdmn-primary           : #2e3092;
  --fdmn-primary-lt        : #3d40b8;
  --fdmn-primary-dk        : #1e206a;
  --fdmn-primary-gl        : rgba(46,48,146,.26);
  --fdmn-primary-line      : rgba(46,48,146,.15);
  --fdmn-primary-tint      : rgba(46,48,146,.05);

  /* ── Ink scale ───────────────────────────────────────── */
  --fdmn-ink               : #0d0d0d;
  --fdmn-ink-2             : #1a1a2e;
  --fdmn-ink-3             : #3a3a5c;
  --fdmn-ink-muted         : rgba(13,13,13,.42);

  /* ── Surfaces ────────────────────────────────────────── */
  --fdmn-surface           : #f5f5fb;
  --fdmn-surface-card      : #ffffff;
  --fdmn-nav-bg-blur       : rgba(245,245,251,.87);
  --fdmn-nav-bg-solid      : rgba(245,245,251,.98);

  /* ── Borders ─────────────────────────────────────────── */
  --fdmn-line              : var(--fdmn-primary-line);

  /* ── Dropdown ────────────────────────────────────────── */
  --fdmn-dd-bg             : #ffffff;
  --fdmn-dd-text           : #0d0d0d;
  --fdmn-dd-accent         : #2e3092;
  --fdmn-dd-hover-bg       : rgba(46,48,146,.06);
  --fdmn-dd-border         : rgba(46,48,146,.13);
  --fdmn-dd-shadow         : 0 24px 64px rgba(46,48,146,.13), 0 4px 16px rgba(0,0,0,.07);

  /* ── Layout ──────────────────────────────────────────── */
  --fdmn-nav-h             : 60px;
  --fdmn-radius-pill       : 999px;
  --fdmn-radius-card       : 16px;

  /* ── Easing ──────────────────────────────────────────── */
  --fdmn-ease-b            : cubic-bezier(.34,1.2,.64,1);
  --fdmn-ease-s            : cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body  { font-family: var(--fdmn-font-b); background: var(--fdmn-surface); color: var(--fdmn-ink); }
a     { text-decoration: none; color: inherit; }

/* ── Demo filler ─────────────────────────────────────────── */
.fdmn-demo {
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 40px 20px;
  text-align: center;
}
.fdmn-demo h2 {
  font-family: var(--fdmn-font-h);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--fdmn-ink-3);
  opacity: .28;
}

/* ================================================================
   4) NAVBAR
================================================================ */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--fdmn-nav-bg-blur);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--fdmn-line);
  transition: all .3s var(--fdmn-ease-s);
  padding: 18px;
}

#mainNav.scrolled {
  background: var(--fdmn-nav-bg-solid);
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--fdmn-nav-h);
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 87px;
  width: auto;
  object-fit: contain;
}

.nav-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--fdmn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon i { color: var(--fdmn-white); font-size: 16px; }

.nav-logo-text {
  font-family: var(--fdmn-font-h);
  font-size: 20px;
  color: var(--fdmn-ink);
  line-height: 1;
}

.nav-logo-text span { color: var(--fdmn-primary); }

/* Pill nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--fdmn-line);
  border-radius: var(--fdmn-radius-pill);
  padding: 4px;
  margin-bottom: 0;
}

.nav-links .nl {
  font-size: 12px;
  font-weight: 600;
  color: var(--fdmn-ink-3);
  padding: 7px 16px;
  border-radius: var(--fdmn-radius-pill);
  transition: all .22s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  letter-spacing: 1.8px;
}

.nav-links .nl:hover,
.nav-links .nl.active {
  background: var(--fdmn-primary);
  color: var(--fdmn-white);
}

.nl .chev {
  font-size: 9px;
  opacity: .55;
  transition: transform .25s var(--fdmn-ease-b);
}

.nl[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown wrapper */
.nl-has-dd { position: relative; }

/* Level-1 dropdown */
.nav-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(.97);
  transform-origin: top center;
  min-width: 230px;
  background: var(--fdmn-dd-bg);
  border-radius: var(--fdmn-radius-card);
  border: 1px solid var(--fdmn-dd-border);
  padding: 6px;
  box-shadow: var(--fdmn-dd-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--fdmn-ease-b),
              transform .22s var(--fdmn-ease-b),
              visibility .22s;
  z-index: 990;
}

.nl-has-dd.open .nav-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown row */
.nav-dd__item {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: visible;
}

.nav-dd__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px 10px 20px;
  border-radius: 10px;
  color: var(--fdmn-dd-text);
  font-family: var(--fdmn-font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  position: relative;
}

/* Thick left accent bar */
.nav-dd__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 58%;
  background: var(--fdmn-dd-accent);
  border-radius: 0 3px 3px 0;
  transition: transform .18s var(--fdmn-ease-b);
}

.nav-dd__item:hover > .nav-dd__link::before,
.nav-dd__item.open   > .nav-dd__link::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-dd__item:hover > .nav-dd__link,
.nav-dd__item.open   > .nav-dd__link {
  background: var(--fdmn-dd-hover-bg);
  color: var(--fdmn-dd-accent);
  padding-left: 24px;
}

/* View All row */
.nav-dd__item--all > .nav-dd__link {
  color: var(--fdmn-dd-accent);
  font-weight: 700;
}
.nav-dd__item--all > .nav-dd__link::after {
  content: '→';
  font-size: 12px;
  opacity: .7;
}

/* Sub-menu chevron */
.nav-dd__link .sub-chev {
  font-size: 9px;
  opacity: .4;
  flex-shrink: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dd__item:hover > .nav-dd__link .sub-chev,
.nav-dd__item.open   > .nav-dd__link .sub-chev {
  opacity: 1;
  transform: translateX(2px);
}

/* Divider */
.nav-dd__divider {
  height: 1px;
  background: var(--fdmn-dd-border);
  margin: 5px 10px;
}

/* Level-2 submenu */
.nav-sub {
  position: absolute;
  top: -6px;
  left: calc(100% + 6px);
  min-width: 200px;
  background: var(--fdmn-dd-bg);
  border-radius: 14px;
  border: 1px solid var(--fdmn-dd-border);
  padding: 6px;
  box-shadow: var(--fdmn-dd-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px) scale(.97);
  transform-origin: top left;
  transition: opacity .2s var(--fdmn-ease-b),
              transform .2s var(--fdmn-ease-b),
              visibility .2s;
  z-index: 995;
}

.nav-dd__item:hover .nav-sub,
.nav-dd__item.open  .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.nav-sub__link {
  display: block;
  padding: 9px 14px 9px 20px;
  border-radius: 9px;
  color: var(--fdmn-dd-text);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}

.nav-sub__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 55%;
  background: var(--fdmn-dd-accent);
  border-radius: 0 3px 3px 0;
  transition: transform .15s var(--fdmn-ease-b);
}

.nav-sub__link:hover {
  background: var(--fdmn-dd-hover-bg);
  color: var(--fdmn-dd-accent);
  padding-left: 24px;
}

.nav-sub__link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--fdmn-primary-line);
  background: rgba(255,255,255,.75);
  color: var(--fdmn-ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all .22s var(--fdmn-ease-b);
}

.icon-btn:hover {
  background: var(--fdmn-primary);
  color: var(--fdmn-white);
  border-color: var(--fdmn-primary);
  transform: translateY(-2px);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px 9px 18px;
  border-radius: var(--fdmn-radius-pill);
  background: var(--fdmn-primary);
  color: var(--fdmn-white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--fdmn-primary-gl);
  transition: all .22s var(--fdmn-ease-b);
  border: none;
  cursor: pointer;
}

.btn-nav-cta:hover {
  background: var(--fdmn-primary-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--fdmn-primary-gl);
  color: var(--fdmn-white);
}

.btn-nav-cta .arrow-circle {
  width: 26px;
  height: 26px;
  background: var(--fdmn-primary-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-nav-cta .arrow-circle i { font-size: 9px; color: var(--fdmn-white); }

/* Responsive */
@media (max-width: 991px) { .nav-links { display: none !important; } }
@media (max-width: 575px) { .btn-nav-cta span:first-child { display: none; } }

/* ================================================================
   5) INFO PANEL (OFFCANVAS)
================================================================ */
.info-panel {
  width: 380px !important;
  background: var(--fdmn-white);
  border-left: 1px solid rgba(0,0,0,.07);
}

.info-panel__header {
  padding: 28px 28px 0;
  border: 0;
}

.info-panel__title {
  font-family: var(--fdmn-font-h);
  font-size: 20px;
  color: var(--fdmn-ink);
}

.info-panel__body { padding: 0px 24px 28px; }

.info-panel__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.info-panel__logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--fdmn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-panel__logo-icon i { color: var(--fdmn-white); font-size: 20px; }

.info-panel__logo-text {
  font-family: var(--fdmn-font-h);
  font-size: 22px;
  color: var(--fdmn-ink);
  line-height: 1;
}

.info-panel__logo-text span { color: var(--fdmn-primary); }

.info-panel__desc {
  font-size: 13.5px;
  color: var(--fdmn-ink-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.info-panel__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--fdmn-primary-tint);
  border: 1px solid var(--fdmn-primary-line);
}

.ac-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--fdmn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fdmn-white);
  font-size: 13px;
}

.mini-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fdmn-ink-muted);
  margin-bottom: 2px;
}

.mini-card__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--fdmn-ink);
}

.info-panel__social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--fdmn-primary-line);
  background: var(--fdmn-primary-tint);
  color: var(--fdmn-ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .2s var(--fdmn-ease-b);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--fdmn-primary);
  color: var(--fdmn-white);
  border-color: var(--fdmn-primary);
  transform: translateY(-2px);
}

.btn-nav-cta--full {
  width: 100%;
  justify-content: center;
}

/* ================================================================
   6) MOBILE MENU (OFFCANVAS)
================================================================ */
#mobileMenu {
  width: 300px !important;
  background: linear-gradient(165deg, #2e3092 0%, #1e206a 55%, #0d0e3a 100%);
  border-left: 1px solid rgba(255,255,255,.06);
  z-index: 2000;
}

.mob-header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-logo-text {
  font-family: var(--fdmn-font-h);
  font-size: 18px;
  color: var(--fdmn-white);
}

.mob-close {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--fdmn-white);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-body { padding: 12px 14px; }

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 13px;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  font-weight: 600;
  transition: all .2s ease;
}

.mob-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--fdmn-white);
}

.mob-link .ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mob-link .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-chevron { font-size: 9px; opacity: .35; }

.mob-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 13px;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--fdmn-font-b);
  cursor: pointer;
  transition: all .2s ease;
}

.mob-accordion-btn:hover,
.mob-accordion-btn[aria-expanded="true"] {
  background: rgba(255,255,255,.08);
  color: var(--fdmn-white);
}

.mob-accordion-btn .chev-mob {
  font-size: 9px;
  opacity: .35;
  transition: transform .25s var(--fdmn-ease-b);
}

.mob-accordion-btn[aria-expanded="true"] .chev-mob {
  transform: rotate(180deg);
  opacity: 1;
}

.mob-sub-list { padding: 4px 0 4px 44px; }

.mob-sub-item {
  position: relative;
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  font-weight: 600;
  transition: all .18s ease;
}

.mob-sub-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 50%;
  background: rgba(255,255,255,.18);
  border-radius: 3px;
}

.mob-sub-item:hover { background: rgba(255,255,255,.06); color: var(--fdmn-white); }
.mob-sub-item:hover::before { background: rgba(255,255,255,.7); }

.mob-sub-sub-list { padding: 2px 0 2px 16px; }

.mob-sub-sub-item {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.38);
  font-size: 12px;
  font-weight: 600;
  transition: all .15s ease;
}

.mob-sub-sub-item:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.04); }

.mob-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 8px 0;
}

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--fdmn-white);
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: all .2s ease;
}

.mob-cta:hover {
  background: rgba(255,255,255,.22);
  color: var(--fdmn-white);
}

   /* ══════════════════════════════════════════════════
       AOS OVERRIDES — prevent layout shift on containers
       All AOS attrs must be on inner content, never on
       section / .container / .row / .col-* wrappers.
    ══════════════════════════════════════════════════ */

    /* Stabilise sections so AOS children don't bleed */
    section,
    .stats-section,
    .logos-section,
    .marquee-strip,
    .banner-section,
    .faq-section,
    .fill-form,
    .map-wrap,
    .ft-top,
    .footer,
    .psl__section {
      overflow: visible; /* let children animate freely */
    }

    /* Keep Bootstrap grid rows / cols stable */
    .row,
    .col,
    [class^="col-"] {
      /* no AOS on these — children carry the attrs */
    }

    /* Smooth fade for AOS elements — custom easing */
    [data-aos] {
      pointer-events: none;
    }
    [data-aos].aos-animate {
      pointer-events: auto;
    }

    /* ── Stagger helper: mobile collapses delays ───── */
    @media (max-width: 575.98px) {
      [data-aos-delay] {
        transition-delay: 0ms !important;
      }
    }

    /* ── Subtle depth on cards so zoom-in pops ─────── */
    .about-card,
    .psl__card,
    .accordion-item,
    .stat-item {
      will-change: transform, opacity;
    }


/* ==========================================================
   6) MOBILE MENU (OFFCANVAS)
   (Mobile drawer menu)
========================================================== */

#mobileMenu {
  width: 300px !important;
  background: linear-gradient(359deg, #371921 0%, #5a242d 50%, #8a333c 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2000;
}

.mob-header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-logo-text {
  font-family: var(--font-h);
  font-size: 18px;
  color: #fff;
}

.mob-close {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgb(255 255 255 / 42%);
  border: none;
  color: rgb(61 27 35);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-body { padding: 12px 14px; }

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mob-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mob-link .ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mob-link .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 14px;
  background: var(--blue-mid);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: all 0.2s ease;
}

.mob-cta:hover { background: var(--blue-lt); }

.mob-chevron {
  font-size: 9px;
  opacity: 0.3;
}

/* ==========================================================
   7) HERO (Home hero: #hero)
   (Banner background + overlay + content)
========================================================== */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@supports (height: 100svh) {
  #hero { height: 100svh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/banner/dm-banner.webp');
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgb(10 13 35) 0%,
    rgb(10 13 35 / 28%) 40%,
    rgb(10 13 35 / 0%) 70%,
    transparent 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(0, 0, 0, 0.55) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 240px;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.hero-left {
  max-width: 620px;
  flex-shrink: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 48, 146, 0.30);
  border: 1px solid #2e3092;
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 22px;
}

.hero-eyebrow .eb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.hero-eyebrow span {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font);
  font-size: clamp(40px, 4.5vw, 82px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-h1 .g { color: #9ea0ff; }

.hero-p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.74);
  max-width: 500px;
  margin-bottom: 38px;
}

/* NOTE: Your HTML uses .btn-quote2 / .btn-quote, keeping this legacy button here too */
.btn-quote-1 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #000;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 12px 11px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
  transition: background .22s ease, transform .22s var(--ease-bounce), box-shadow .22s ease;
}
strong{
  font-weight: 600;
}
.btn-quote-1:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.btn-quote-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-quote-icon i { color: #fff; font-size: 14px; }

@media (max-width: 991.98px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .hero-content { padding-bottom: 310px; }
}

@media (max-width: 575.98px) {
  .hero-h1 { font-size: clamp(34px, 12vw, 52px); }
  .hero-p  { font-size: 14.5px; }
}


/* =============================== */



/* ==========================================================
   8) MARQUEE
   (Scrolling strip)
========================================================== */

.marquee-strip {
  background: var(--blue-mid);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-m);
  flex-shrink: 0;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   9) LOGOS / TICKER
   (Logo ticker / moving brand strip)
========================================================== */

.logos-section {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(46 48 146);
  font-family: var(--font-m);
  text-align: center;
  margin-bottom: 28px;
}

.ticker-wrap { position: relative; overflow: hidden; }
.ticker-wrap--logos { height: 96px; position: relative; }

.ticker-clip { overflow: hidden; }

.ticker-mask {
  position: absolute;
  inset: 0;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-inner img {
  height: 57px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.ticker-inner img:hover {
  opacity: 0.75;
  filter: grayscale(0);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   10) ABOUT (Main index + cards)
   (Section headers, layout, badges, cards)
========================================================== */

/* Generic section headers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e3092;
  font-family: var(--font-m);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #2e3092;
  border-radius: 999px;
}

.section-tag--center {
  justify-content: center;
  display: flex;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 55px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title span { color: var(--blue-mid); }

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.55);
  max-width: 500px;
  font-weight: 400;
}

.section-body--spaced {
  margin-top: 16px;
  max-width: 500px;
}

/* About layout blocks */
.about-section {
  padding: 110px 0;
  background: var(--cream);
}

.main-index {
  padding: 100px 20px;
  background: #f7f6f2;
}

.index-text {
  position: relative;
  background-color: #f3f3ff;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 41px;
  left: 0;
}

@media (min-width: 992px) {
  .index-text { transform: translateX(-56px); }
}

@media (max-width: 1023px) {
  .index-text {
    transform: none;
    padding: 14px;
  }
}

.ff {
  color: var(--primary);
  font-size: 57px;
}

.abt-img { border-radius: 15px; }

/* About image wrap + badge (if used elsewhere) */
.about-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: 24px;
  background: var(--blue-mid);
  border-radius: 18px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px var(--blue-gl);
}

.ab-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}

.ab-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* About cards */
.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  transition: all .3s var(--ease-b);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.ac-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ac-icon i { color: #fff; font-size: 18px; }

.ac-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ac-body {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.52);
  line-height: 1.65;
}

/* ==========================================================
   11) STATS (Experience section)
   (Counters + responsive)
========================================================== */

.stats-section {
  background: linear-gradient(359deg, #371921 0%, #5a242d 50%, #8a333c 100%);
  padding: 80px 0;
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 20px;
  flex: 1;
  min-width: 200px;

  /* entrance animation */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: #d4b5a6;
  opacity: 0.4;
}

.stat-number {
    font-family: var(--font);
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.stat-label2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Counter animation */
.stat-number.counting { animation: pulse 0.5s ease; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* Stats responsive */
@media (max-width: 992px) {
  .stats-section { padding: 60px 0; }
  .stat-number  { font-size: 3rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { min-width: 150px; }
}

@media (max-width: 991px) {
  .stats-row { gap: 30px; }
  .stat-number { font-size: 3.5rem; }
  .stat-label2 {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  .stat-item {
    flex: 0 0 calc(50% - 15px);
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .stats-section { padding: 40px 0; }
  .stat-number  { font-size: 3rem; }
  .stat-label2   { font-size: 0.95rem; letter-spacing: 1.5px; }

  /* NOTE: These selectors appear to be from other pages/sections.
     Kept as-is, grouped here for mobile overrides. */
  .family-content2 h2 { font-size: 25px; }
  .hro-title { font-size: 40px; }
  #about-section ul li { font-size: 18px; }
  .family h2 { font-size: 30px; }
}

@media (max-width: 768px) {
  /* NOTE: These selectors also appear unrelated to current HTML.
     Kept untouched. */
  .family-content h2 { font-size: 32px; }
  .family-content { padding: 10px; }
  .dr-p { line-height: 28px; margin-top: 10px; }
}

/* ==========================================================
   12) PRODUCTS SLIDER (mdSlider*)
   (Slider layout, cards, dots, enhancements)
========================================================== */
 /* ── Root + Typography ─────────────────────────── */
 .psl__body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: #fff;
  color: #0d0f1e;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Responsive container ───────────────────────── */
.psl__container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 52px);
}
@media (min-width: 576px)  { .psl__container { max-width: 540px; } }
@media (min-width: 768px)  { .psl__container { max-width: 720px; } }
@media (min-width: 992px)  { .psl__container { max-width: 960px; } }
@media (min-width: 1200px) { .psl__container { max-width: 1140px; } }
@media (min-width: 1400px) { .psl__container { max-width: 1320px; } }

/* ── Surrounding demo sections ──────────────────── */
.psl__page-surround {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px clamp(16px, 4vw, 52px);
}
.psl__page-surround--top    { background: #f0f2fa; }
.psl__page-surround--bottom { background: #fff; border-top: 1px solid rgba(0,0,0,.07); }

.psl__page-surround h1,
.psl__page-surround h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
}
.psl__page-surround p {
  color: rgba(13,15,30,.52);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 58ch;
}

/* ── Slider Section ─────────────────────────────── */
.psl__section {
  position: relative;
  background: #fff;
}

/* ── Sticky wrapper ─────────────────────────────── */
.psl__sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  /* height: 100vh;
  height: 100svh;
  min-height: 520px; */
  padding: 100px 10px;

  /* Required for pseudo element */
  position: sticky;
}

/* Watermark */
.psl__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/dmm.png") center center no-repeat;
  background-size: 1020px;   /* adjust size */
  opacity: 0.03;            /* subtle professional look */
  pointer-events: none;
  z-index: 0;
}

/* Keep content above watermark */
.psl__sticky > * {
  position: relative;
  z-index: 1;
}

/* ── Header row ─────────────────────────────────── */
.psl__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  flex-shrink: 0;
}
@media (max-width: 599.98px) {
  .psl__header {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 14px;
  }
}

.psl__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2e3092;
  margin-bottom: 6px;
  /* font-family: 'DM Sans', sans-serif; */
}
.psl__htitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 6px;
  color: #0d0f1e;
}
.psl__htitle span { color: #2e3092; }
.psl__hsub {
  font-size: clamp(13px, 1.15vw, 15px);
  color: rgba(13,15,30,.52);
  max-width: 54ch;
}

/* ── Nav buttons ────────────────────────────────── */
.psl__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.psl__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #2e3092;
  background: #2e3092;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .12s ease;
  flex-shrink: 0;
}
.psl__nav-btn:hover:not(:disabled) { background: #1c1e6b; }
.psl__nav-btn:active:not(:disabled) { transform: scale(.92); }
.psl__nav-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}
.psl__nav-btn svg { width: 18px; height: 18px; pointer-events: none; }

/* ── Viewport ───────────────────────────────────── */
.psl__viewport {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 20px;
  flex-shrink: 0;
}

/* ── Track ──────────────────────────────────────── */
.psl__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  transition: transform .48s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Cards base ─────────────────────────────────── */
.psl__card {
  flex: 0 0 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  border: 1.5px solid rgba(0,0,0,.08);
  background: #000;
  transition: transform .32s cubic-bezier(.4,0,.2,1),
              box-shadow .32s cubic-bezier(.4,0,.2,1),
              border-color .32s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

/* responsive heights */
@media (max-width: 575.98px)                           { .psl__card { height: 340px; } }
@media (min-width: 576px) and (max-width: 767.98px)   { .psl__card { height: 360px; } }
@media (min-width: 768px) and (max-width: 991.98px)   { .psl__card { height: 400px; } }
@media (min-width: 992px) and (max-width: 1199.98px)  { .psl__card { height: 440px; } }
@media (min-width: 1200px)                             { .psl__card { height: 460px; } }

/* hover lift (not view-all) */
.psl__card--product:hover {
  transform: translateY(-6px) scale(1.016);
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}

/* ── Card background ────────────────────────────── */
.psl__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.psl__card--product:hover .psl__card-bg { transform: scale(1.06); }

/* Background images — replace with your real paths */
.psl__bg--1 { background-image: url('/img/Products/pro1.jpg'); }
.psl__bg--2 { background-image: url('/img/Products/pro2.jpg'); }
.psl__bg--3 { background-image: url('/img/Products/pro3.png'); }
.psl__bg--4 { background-image: url('/img/Products/pro4.png'); }
.psl__bg--5 { background-image: url('/img/Products/pro5.png'); }
.psl__bg--6 { background-image: url('/img/Products/pro6.png'); }
.psl__bg--7 { background-image: url('/img/Products/pro7.png'); }
.psl__bg--8 { background-image: url('/img/Products/pro2.jpg'); }
.psl__bg--9 { background-image: url('/img/Products/pro2.jpg'); }

/* ── Overlay ─────────────────────────────────────── */
.psl__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(8,10,35,.38) 62%,
    rgba(8,10,35,.96) 100%
  );
}

/* ── Card body ───────────────────────────────────── */
.psl__card-body {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Arrow button ────────────────────────────────── */
.psl__arrow {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #2e3092;
  color: #2e3092;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              background .22s ease,
              color .22s ease;
}
.psl__arrow svg { width: 16px; height: 16px; }
.psl__card--product:hover .psl__arrow {
  transform: rotate(45deg) scale(1.1);
  background: #2e3092;
  color: #fff;
}

/* ── Card label / title ──────────────────────────── */
.psl__card-label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
  margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
}
.psl__card-title {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(15px, 1.55vw, 20px);
}

/* ── View-all card ───────────────────────────────── */
.psl__card--viewall {
  background: #2e3092;
  border-color: #2e3092;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
}
.psl__card--viewall:hover { background: #1c1e6b; border-color: #1c1e6b; }

.psl__va-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .22s ease;
}
.psl__card--viewall:hover .psl__va-circle {
  transform: rotate(45deg) scale(1.1);
  background: rgba(255,255,255,.24);
}
.psl__va-circle svg { width: 26px; height: 26px; color: #fff; }

.psl__va-text { text-align: center; }
.psl__va-strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.psl__va-small {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Dots ────────────────────────────────────────── */
.psl__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 14px;
  flex-shrink: 0;
}
.psl__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(46,48,146,.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .26s cubic-bezier(.4,0,.2,1),
              background .26s cubic-bezier(.4,0,.2,1);
}
.psl__dot--active {
  width: 22px;
  background: #2e3092;
}

/* ── Touch drag feedback ─────────────────────────── */
.psl__track--dragging {
  transition: none !important;
  cursor: grabbing;
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .psl__track,
  .psl__card,
  .psl__card-bg,
  .psl__arrow,
  .psl__va-circle,
  .psl__dot { transition: none !important; }
}

/* ═══════════════════════════════════════════════════
   ENHANCEMENT LAYER — viewport glow shadows
   Uses a wrapper so we don't touch .psl__viewport
═══════════════════════════════════════════════════ */

/* Wrap the viewport in a relative container for pseudo-glow */
.psl__viewport-wrap {
  position: relative;
  z-index: 0;
}

/* Soft LEFT glow edge (inside) */
.psl__viewport-wrap::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 56px;


background:   linear-gradient(to right, rgb(255 255 255 / 70%) 0%, rgb(240 242 250 / 18%) 55%, #00000000 100%);
z-index: 10;
pointer-events: none;
border-radius: 20px 0 0 20px;
}

/* Soft RIGHT glow edge (inside) */
.psl__viewport-wrap::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 64px;
background:   linear-gradient(to left, rgb(255 255 255 / 70%) 0%, rgb(240 242 250 / 18%) 55%, #00000000 100%);
z-index: 10;
pointer-events: none;
border-radius: 0 20px 20px 0;
}

/* Ambient glow box-shadow on the wrap itself */
.psl__viewport-wrap {
  border-radius: 20px;
  /* box-shadow:
    0 -8px 28px -4px rgba(46, 48, 146, 0.06),
    0  8px 28px -4px rgba(46, 48, 146, 0.06),
    0  2px 60px -8px rgba(46, 48, 146, 0.08); */
}

/* ═══════════════════════════════════════════════════
   ENHANCEMENT LAYER — premium navigation dots
═══════════════════════════════════════════════════ */

.psl__ndots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 4px;
  flex-shrink: 0;
}

.psl__ndot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(46, 48, 146, 0.15);
  outline: none;
  /* smooth width + color + shadow */
  transition:
    width       0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    background  0.28s ease,
    box-shadow  0.28s ease,
    transform   0.22s ease;
  /* invisible touch target padding without affecting layout */
  -webkit-tap-highlight-color: transparent;
}

/* Expand touch area for mobile without breaking layout */
.psl__ndot::before {
  content: '';
  position: absolute;
  inset: -8px -6px;
  border-radius: inherit;
}

/* Hover state — slightly brightened */
.psl__ndot:hover {
  background: rgba(46, 48, 146, 0.36);
  transform: scaleY(1.15);
  box-shadow: 0 2px 8px rgba(46, 48, 146, 0.18);
}

/* Active / current dot — pill expansion */
.psl__ndot--active {
  width: 28px;
  background: #2e3092;
  box-shadow:
    0 2px 10px rgba(46, 48, 146, 0.32),
    0 0 0 2.5px rgba(46, 48, 146, 0.10);
  transform: scaleY(1);
}

.psl__ndot--active:hover {
  background: #1c1e6b;
  transform: scaleY(1);
}

/* Focus ring (keyboard a11y) */
.psl__ndot:focus-visible {
  outline: 2.5px solid #2e3092;
  outline-offset: 3px;
}

/* ── Responsive dots ──────────────────────────────── */
/* Tablet */
@media (max-width: 991.98px) {
  .psl__ndots { gap: 7px; padding: 14px 0 4px; }
  .psl__ndot  { width: 7px; height: 7px; }
  .psl__ndot--active { width: 22px; }
}

/* Mobile */
@media (max-width: 575.98px) {
  .psl__ndots { gap: 9px; padding: 12px 0 4px; }
  .psl__ndot  { width: 7px; height: 7px; }
  .psl__ndot--active { width: 20px; }
  /* Larger touch targets on mobile */
  .psl__ndot::before { inset: -10px -8px; }
}

/* Reduced motion — no width animation */
@media (prefers-reduced-motion: reduce) {
  .psl__ndot { transition: background 0.18s ease !important; }
  .psl__ndot--active { width: 28px !important; }
}

/* ==========================================================
   13) BANNER
   (Mid-page family banner section)
========================================================== */

.banner-section {
  position: relative;
  overflow: hidden;
  background: url(/img/banner/family-home.png);
  padding: 100px 0;
  background-position-x:center;
  background-repeat: no-repeat;
}

.banner-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 48, 146, 0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.banner-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 50, 55, 0.20) 0%, transparent 70%);
  bottom: -100px;
  left: 0;
  pointer-events: none;
}

.banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-m);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
}

.banner-h {
  font-family: var(--font-h);
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 24px;
}

.banner-h em { color: rgba(158, 162, 255, 0.75); }

.banner-p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Banner button (if used) */
.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: all .28s var(--ease-b);
}

.btn-banner:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.20);
}

.btn-banner .c {
  width: 32px;
  height: 32px;
  background: #2e3092;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-banner .c i { color: #fff; font-size: 10px; }

/* ==========================================================
   14) FAQ
   (Legacy FAQ + Bootstrap accordion FAQ)
========================================================== */

/* Legacy custom FAQ (if used on other pages) */
.faq-section {
  background: var(--cream);
  padding: 110px 0;
}

.img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3.5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-pill {
  position: absolute;
  bottom: 24px;
  right: 22px;
  background: var(--blue-mid);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 36px var(--blue-gl);
}

.ep-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

.ep-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin-top: 4px;
}

.faq-content { padding-left: 48px; }

@media (max-width: 991px) {
  .faq-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease-b);
}

.faq-icon i {
  color: #fff;
  font-size: 11px;
  transition: transform .3s var(--ease-b);
}

.faq-item.open .faq-icon { background: #2e3092; }
.faq-item.open .faq-icon i { transform: rotate(45deg); }

.faq-a {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.52);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-top .3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 14px;
}

/* Bootstrap accordion-based FAQ (the one used in your HTML) */
.faq-section {
  padding: 150px 0 80px;
  /* min-height: 70vh; */
  display: flex;
  align-items: center;
}

/* Image wrapper on FAQ section */
.img-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #e0dfd9;
  aspect-ratio: 4 / 3.3;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cam-dot {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  z-index: 2;
}

.exp-badge {
  position: absolute;
  bottom: 28px;
  right: 24px;
  background: var(--primary);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  min-width: 130px;
  font-family: var(--font);
}

.exp-badge .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.exp-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-top: 4px;
  letter-spacing: 2px;
}

.faq-content { padding-left: 40px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}

.eyebrow svg { width: 16px; height: 16px; }

.faq-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  color: #2e3092;
  margin-bottom: 36px;
  letter-spacing: -0.03em;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  /* border-top: 1px solid #d4d4cc; */
  border-bottom: 1px solid #d4d4cc;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 0;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { display: none; }

/* Plus/minus icon */
.acc-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: auto;
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: #111;
  border-radius: 2px;
  transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.acc-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.accordion-button:not(.collapsed) .acc-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion .accordion-body {
  font-family: var(--font-display);
  padding: 0 0 20px;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .faq-content { padding-left: 0; margin-top: 40px; }
  .faq-section { padding: 48px 0 60px; }
}

/* ==========================================================
   15) CONTACT
   (Form + right info panel)
========================================================== */

.fill-form {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

/* Main wrapper */
.contact-section {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
  max-width: 1200px;
  margin: 40px auto;
  animation: fadeInUp 0.8s ease;
}

/* Form column */
.form-container { padding: 60px 50px; }
.section-subtitle { margin-bottom: 40px; }

.form-label {
  color: #2e3092;
  margin-bottom: 8px;
  font-size: 16px;
  /* font-family: "Bricolage Grotesque", sans-serif; */
  font-weight: 600 !important;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
  border-color: #2e3092;
  box-shadow: 0 0 0 0.2rem rgba(46, 48, 146, 0.15);
  background: #fff;
  transform: translateY(-2px);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Submit button (if used) */
.btn-submit {
  background: linear-gradient(135deg, #2e3092, #2e3092);
  color: #fff;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(46, 48, 146, 0.30);
  margin-top: 20px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 48, 146, 0.40);
}

.btn-submit:active { transform: translateY(-1px); }

/* Right side panel */
.image-container {
  background: linear-gradient(135deg, #2e3092, #2e3092);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.image-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.image-container::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(20px); }
}

.image-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact-icon {
  font-size: 8rem;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.image-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  /* font-family: "Bricolage Grotesque", sans-serif; */
  letter-spacing: 2px;
  color: #fff;
}

.image-text {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.95;
}

.contact-info { margin-top: 40px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 500 !important;
  color: #fff;
  text-align: start;
}

.contact-item i {
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.20);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Extra text styles (if used) */
.fill-form .extra span {
  /* font-family: "Bricolage Grotesque", sans-serif; */
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 16px;
  font-weight: 600;
  color: #2e3092;
  text-align: center;
}

.fill-form .extra h2 {
  /* font-family: "Bricolage Grotesque", sans-serif; */
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2e3092;
  font-weight: 700;
  text-align: center;
}

/* Decorative blob */
#happy-patients::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #83222c30;
  z-index: 0;
  border-radius: 50%;
}

/* Contact responsive */
@media (max-width: 768px) {
  .form-container { padding: 40px 30px; }
  .section-title  { font-size: 2.5rem; }
  .image-container { padding: 40px 30px; min-height: 400px; }
  .contact-icon { font-size: 5rem; }
  .image-title { font-size: 1.5rem; }
}

/* ==========================================================
   16) MAP
   (Google map embed + map card)
========================================================== */

.map-wrap {
  height: 450px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-card {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-right: 5px solid #2e3092;
}

.map-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}

.map-card p {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.map-card p i {
  color: #2e3092;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-card .btn-dir {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #2e3092;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.map-card .btn-dir:hover { background: var(--red-dk); }

@media (max-width: 767px) {
  .map-wrap { height: auto; }
  .map-wrap iframe { height: 340px; }
  .map-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: 16px;
    border-radius: 16px;
  }
}

/* ==========================================================
   17) FOOTER (Primary footer system)
   (Top contact, body links, newsletter, bottom)
========================================================== */

/* footer { background: var(--ink); } */

.ft-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ft-contact-item--col {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.ft-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffffff2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-icon-box i {
  color: rgb(255, 255, 255);
  font-size: 20px;
}

.ft-contact-item span {
  font-size: 11px;
  color: rgb(255, 255, 255);
  display: block;
  font-weight: 500;
}

.ft-contact-item strong {
  font-size: 14px;
  color: #fff;
  display: block;
}

.ft-body { padding: 60px 0 48px; }

.ft-logo-text {
  font-family: var(--font-h);
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.ft-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.75;
  max-width: 280px;
}

.ft-about--wide { max-width: 100%; }
.ft-about--mb   { margin-bottom: 18px; }

.ft-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  font-family: var(--font-m);
  margin-bottom: 22px;
}

.ft-links { list-style: none; padding: 0; }
.ft-links li { margin-bottom: 12px; }

.ft-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
  font-weight: 500;
}

.ft-links li a:hover { color: #fff; padding-left: 4px; }

.ft-contact-list { list-style: none; padding: 0; }

.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  line-height: 1.6;
}

.ft-contact-list li i {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Newsletter */
.newsletter-row {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.newsletter-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 16px;
  color: #fff;
  font-size: 13.5px;
}

.newsletter-row input::placeholder { color: rgba(255, 255, 255, 0.30); }

.newsletter-row button {
  background: #2e3092;
  border: none;
  padding: 13px 22px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter-row button:hover { background: var(--red-dk); }

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.ft-policy a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 18px;
}

.ft-policy a:hover { color: rgba(255, 255, 255, 0.70); }

.ft-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.30);
  text-align: center;
}

.ft-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.ft-social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: all 0.2s ease;
}

.ft-social a:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
}

@media (max-width: 991px) {
  .ft-copy { text-align: left; margin: 8px 0; }
  .ft-social { justify-content: flex-start; }
}

/* ==========================================================
   18) BUTTONS (Site CTAs)
   (White CTA + Blue CTA)
========================================================== */

/* White CTA button */
.btn-quote2 {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-color: #fff;
  border-radius: var(--r-pill);
  overflow: hidden;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.btn-quote2:hover  { transform: scale(1.04); box-shadow: var(--shadow-md); }
.btn-quote2:active { transform: scale(0.97); box-shadow: var(--shadow-sm); }
.btn-quote2:focus-visible { outline: 2px solid #2e3092; outline-offset: 4px; }

.btn-quote-label2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary);
  text-transform: uppercase;
  padding: 18px;
  white-space: nowrap;
  line-height: 1;
}

.btn-quote-icon2 {
  width: 40px;
  height: 40px;
  border-radius: var(--r-dot);
  background-color: #8c3237;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 7px 7px 7px 0;
  transition: background-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.btn-quote-icon2 i { font-size: 18px; color: #fff; line-height: 1; }

.btn-quote2:hover .btn-quote-icon2 {
  background-color: #8c3237;
  transform: rotate(45deg);
}

/* Blue CTA button */
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-color: #2e3092;
  border-radius: var(--r-pill);
  overflow: hidden;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  border-color: transparent;
}

.btn-quote:hover  { transform: scale(1.04); box-shadow: var(--shadow-md); }
.btn-quote:active { transform: scale(0.97); box-shadow: var(--shadow-sm); }
.btn-quote:focus-visible { outline: 2px solid #2e3092; outline-offset: 4px; }

.btn-quote-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
  padding: 18px;
  white-space: nowrap;
  line-height: 1;
}

.btn-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-dot);
  background-color: #8c3237;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 7px 7px 7px 0;
  transition: background-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.btn-quote-icon i { font-size: 18px; color: #fff; line-height: 1; }

.btn-quote:hover .btn-quote-icon {
  background-color: #8c3237;
  transform: rotate(45deg);
}



/* =========================================== */



.btn-quote-f {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-color: transparent;
  border-radius: var(--r-pill);
  overflow: hidden;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  border: 2px solid #2e3092;
}

.btn-quote-f:hover  { transform: scale(1.04); box-shadow: var(--shadow-md); }
.btn-quote-f:active { transform: scale(0.97); box-shadow: var(--shadow-sm); }
.btn-quote-f:focus-visible { outline: 2px solid #2e3092; outline-offset: 4px; }

.btn-quote-label-f {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2e3092;
  text-transform: uppercase;
  padding: 18px;
  white-space: nowrap;
  line-height: 1;
}

.btn-quote-icon-f {
  width: 40px;
  height: 40px;
  border-radius: var(--r-dot);
  background-color: #8c3237;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 7px 7px 7px 0;
  transition: background-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.btn-quote-icon-f i { font-size: 18px; color: #fff; line-height: 1; }

.btn-quote-f:hover .btn-quote-icon-f {
  background-color: #8c3237;
  transform: rotate(45deg);
}




/* ==========================================================
   19) ANIMATIONS (Scroll reveal helpers)
   (Fade up / fade in + stagger)
========================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}

.fade-in.visible { opacity: 1; }

.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ==========================================================
   20) GLOBAL OVERRIDES / FIXES
   (Z-index / misc fixes)
========================================================== */

/* Ensure offcanvas is always above everything */
.offcanvas.offcanvas-end { z-index: 9999; }

/* ==========================================================
   21) ABOUT (Extra/Enhanced block + its animations)
   (Alternate about layout: #about)
========================================================== */

 /* ─── SECTION WRAPPER ─── */
    #about {
      padding: 110px 0 120px;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    /* subtle grain overlay */
    #about::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* big decorative circle */
    #about::after {
      content: '';
      position: absolute;
      width: 520px; height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217,48,37,.07) 0%, transparent 70%);
      top: -120px; right: -100px;
      pointer-events: none;
      z-index: 0;
    }

    #about > .container { position: relative; z-index: 1; }

   
    /* ─── IMAGE COLUMN ─── */
    .images-col {
      position: relative;
      min-height: 500px;
    }

    .img-card {
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(13,43,85,.18);
    }

    .img-main {
      width: 78%;
      position: absolute;
      top: 0; right: 0;
      transition: transform .5s;
    }
    .img-main:hover { transform: scale(1.02); }

    .img-secondary {
      width: 58%;
      position: absolute;
      bottom: 0; left: 0;
      transition: transform .5s;
      border: 5px solid var(--cream);
    }
    .img-secondary:hover { transform: scale(1.03); }

    .img-main img,
    .img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .img-main    { height: 310px; }
    .img-secondary { height: 230px; }

    /* gold accent badge on images */
    .img-accent-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: #2e3092;
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 8px 14px;
      border-radius: 50px;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }

    /* floating dot decoration */
    .dot-grid {
      position: absolute;
      bottom: 40px; right: -20px;
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 8px;
      z-index: 0;
      opacity: .25;
    }
    .dot-grid span {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #0d2b55;
      display: block;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 991.98px) {
      .images-col { min-height: 380px; margin-bottom: 40px; }
      .img-main   { width: 75%; height: 240px; }
      .img-secondary { width: 55%; height: 180px; }
      .stat-row { gap: 24px; }
    }
    @media (max-width: 575.98px) {
      #about { padding: 60px 0 50px; }
      .images-col { min-height: 300px; }
      .img-main   { width: 80%; height: 200px; }
      .img-secondary { width: 60%; height: 155px; }
      .btn-outline-navy, .btn-solid-red { width: 100%; text-align: center; }
    }

    /* ─── ENTRY ANIMATIONS ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: .15s; }
    .delay-2 { transition-delay: .3s; }
    .delay-3 { transition-delay: .45s; }
    .delay-4 { transition-delay: .6s; }
    .delay-5 { transition-delay: .75s; }

/* ==========================================================
   22) UTILITIES + OTHER PAGE COMPONENTS (Legacy)
   (sr-only, legacy hero, contact, footer, mobile center)
========================================================== */

/* Utility */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* HERO */
.hero{
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8, 18, 24, .62), rgba(8, 18, 24, .62)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero__inner{
  padding-block: 64px;
}
.hero h1{
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(44px, 6vw, 78px);
}
.breadcrumb{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}
.breadcrumb a{ color: inherit; text-decoration: none; }
.breadcrumb a:hover{ text-decoration: underline; }

/* CONTACT */
.contact{
  padding-block: 84px 140px;
}

.contact__grid{
  max-width: 940px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.methods{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.method{
  display: flex;
  gap: 18px;
  padding: 22px 0;
}
.method + .method{
  border-top: 1px solid var(--border);
}

.method__icon{
  width: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: start center;
  padding-top: 2px;
  color: #1b1b1b;
}
.icon{ width: 44px; height: 44px; }

.method h3{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.method p{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* .card{
  background: var(--card);
  border-radius: 12px;
  padding: 28px 32px 30px;
} */
.card h2{
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}

.form input,
.form textarea{
  width: 100%;
  border: 1px solid transparent;
  background: var(--input);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
}
.form input::placeholder,
.form textarea::placeholder{ color: #7f7f7f; }
.form input:focus,
.form textarea:focus{ border-color: rgba(226,106,67,.4); background: #f0f0f0; }

.form textarea{
  min-height: 132px;
  resize: vertical;
}

.form input + input,
.form input + textarea,
.form textarea + button{
  margin-top: 12px;
}

.form button{
  width: 100%;
  border: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
}
.form button:hover{ filter: brightness(.96); }
.form button:active{ transform: translateY(1px); }

/* FOOTER */
.footer{
  padding: 70px 0 30px;
}

.footer h4{
  font-size:22px;
  font-weight:600;
  margin-bottom:18px;
  font-family: var(--font);
}

.links{
  list-style:none;
  padding:0;
}

.links li{
  margin-bottom:10px;
}

.links a{
  text-decoration:none;
  color:#777;
}

.links a:hover{
  color:#2e3092;
}

.info{
  color:#777;
  font-size:15px;
  max-width:400px;
  margin:auto;
}

/* SOCIAL */

.social-nav2{
  list-style:none;
  padding:0;
}

.social-nav2 li{
  margin-bottom:12px;
}

.social-nav2 a{
  text-decoration:none;
  color:#777;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.social-nav2 a:hover{
  color:#2e3092;
}

/* COPYRIGHT */

.footer__bottom hr{
  margin:30px 0;
}

.cpyrt{
  color:#777;
}

.cpyrt a{
  text-decoration:none;
  color:#777;
}

.cpyrt a:hover{
  color:#2e3092;
}

/* MOBILE CENTER FORCE */

@media(max-width:768px){
  .footer *{
    text-align:center!important;
  }

  .social-nav2 a{
    justify-content:center;
  }
}

/* ==========================================================
   23) FOOTER ADDITIONS / OVERRIDES (Kept as-is)
   (Extra footer background + logo + social styling)
========================================================== */

.ft-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  background: linear-gradient(359deg, #371921 0%, #5a242d 50%, #8a333c 100%);
}

.footer-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-top:-30px;
}

/* Social icons */
.social-nav2 {
  display: flex;
  
 
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.social-nav2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: rgb(0 0 0 / 75%);
  background: rgba(255, 255, 255, 0.08);
  border:2px solid rgb(0 0 0 / 10%);
  font-size: 13px;
  transition: background .18s ease, color .18s ease, transform .20s var(--ease-bounce), border-color .18s ease;
}

.social-nav2 a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px) scale(1.10);
}

.social-nav2 a.facebook:hover   { background: #1877f2; border-color: #1877f2; }
.social-nav2 a.instagram:hover  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); border-color: transparent; }
.social-nav2 a.linkedin:hover   { background: #0a66c2; border-color: #0a66c2; }
.social-nav2 a.pinterest:hover  { background: #e60023; border-color: #e60023; }
.social-nav2 a.twitter:hover    { background: #1da1f2; border-color: #1da1f2; }

/* ==========================================================
   24) EXTRA RESPONSIVE TWEAKS (Kept as-is)
   (Small screen fixes + hero/banner adjustments)
========================================================== */

@media (max-width: 425px) {

.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-top: -9px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgb(140 50 55);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all .22s var(--ease-b);
}
.btn-quote-label2 {
  font-family: var(--font-body);
  font-size: 10px;
}
.btn-quote-icon2 {
  width: 30px;
  height: 30px;
}
/* .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(/img/banner/dental-matrix-banner-f.webp);
  background-size: cover;
  background-position-x: 60%;
  background-repeat: no-repeat;
  background-position-y: center;
} */

.hero-content {
  padding-bottom: 65px;
}
#hero {
  height: 77svh;
}
.banner-h {
  font-family: var(--font-h);
  font-size: 30px;
}

.section-tag {
font-size: 12px;
}
.section-title{
  font-size: 2.5rem;
}
.banner-section {
  position: relative;
  overflow: hidden;
  background: url(/img/banner/family-home.png);
  padding: 100px 0;
  background-position-y: center;
  background-repeat: no-repeat;
  background-position-x: 74%;
  background-size: cover;
}

/* Dark overlay */
.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 18%); /* adjust opacity here */
  z-index: 1;
}

/* Keep banner content above overlay */
.banner-section > * {
  position: relative;
  z-index: 2;
}
}

/* ==========================================================
   25) MODAL (DM Modal)
   (Overlay + modal box + floating labels)
========================================================== */

.dm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.dm-modal.active {
  display: flex;
}

.dm-modal-box {
  width: 420px;
  max-width: 90%;
  padding: 40px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg,#2e3092,#4b4ecf);
  color: #fff;
  position: relative;
  animation: pop .4s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}

@keyframes pop {
  from {transform: scale(.85);opacity:0}
  to {transform: scale(1);opacity:1}
}

.dm-modal-box h2 {
  text-align: center;
  margin-bottom: 25px;
}

.dm-close {
  position:absolute;
  right:18px;
  top:15px;
  font-size:26px;
  cursor:pointer;
}

.dm-field {
  position: relative;
  margin-bottom: 22px;
}

.dm-field input,
.dm-field textarea {
  width:100%;
  padding:14px 12px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.15);
  color:#fff;
  outline:none;
}

.dm-field textarea {min-height:90px;resize:none}

.dm-field label {
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:13px;
  pointer-events:none;
  transition:.3s;
  opacity:.7;
}

.dm-field input:focus + label,
.dm-field textarea:focus + label,
.dm-field input:valid + label,
.dm-field textarea:valid + label {
  top:-8px;
  font-size:11px;
  opacity:1;
}

.dm-submit {
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:#fff;
  color:#2e3092;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.dm-submit:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* ==========================================================
   26) FIXED ACTION BUTTONS
   (WhatsApp + Call + shake animation)
========================================================== */

.fixedbutton-whatsapp {
  position: fixed;
  bottom: 110px;
  left: 10px;
  animation-name: shake;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  z-index: 9;
  background: #41c051 !important;
   border: 2px solid #fff !important;
  border-radius: 50% !important;
}

.fixedbutton-call {
  position: fixed;
  bottom: 50px;
  left: 10px;
  animation-name: shake;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  z-index: 9;
  background: #2e3092 !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
}

@keyframes shake {
  0% {
      box-shadow: 0 0 0px -3px #000000;
  }

  50% {
      box-shadow: 0 0 10px 0px rgb(0 0 0 / 50%);
      transform: scale(1.15);
  }

  100% {
      box-shadow: 0 0 0px -3px #000000;
  }
}

.fixedbutton-whatsapp footer i{
      background: #f7c84a !important;
      font-size: 18px;
      color: #fff;
      padding: 10px;
      border-radius: 50%;
      transition: all 0.2s ease !important;
  }

  .fixedbutton-whatsapp footer i:hover{
      background: #f7c84a !important;
      font-size: 18px;
      color: #fff;
      padding: 10px;
      border-radius: 50%;
      transition: all 0.2s ease !important;
  }

  /* ==========================================================
     27) BACK TO TOP
     (Floating button + visibility toggle + mobile tweak)
  ========================================================== */

  /* Back To Top */
#backToTop {
position: fixed;
bottom: 30px;
right: 30px;
width: 46px;
height: 46px;
border-radius: 50%;
border: none;
background: #8c3237;
color: #fff;
font-size: 20px;
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all .3s ease;
box-shadow: 0 6px 18px rgba(0,0,0,.15);
z-index: 999;
}

#backToTop.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

#backToTop:hover {
background: #2e3092;
transform: translateY(-3px);
}

/* Mobile tweak */
@media(max-width:768px){
#backToTop{
  right:15px;
  bottom:20px;
}
}






:root{
  --accent: #e36a45; /* orange button/accent */
  --muted: #6c757d;
  --card-bg: #f6f6f6;
}

/* HERO */
.contact-hero{
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}
.contact-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("/img/banner/layout-banner.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.contact-hero > .hero-inner2{
  position: relative;
  text-align: start;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 1100px;
}
.hero-title{
  font-weight: 600;
  letter-spacing: .02em;
  /* text-transform: uppercase; */
  line-height: 1;
  font-size: clamp(2.2rem, 5.5vw, 4.25rem);
  margin: 0 0 .75rem;
  font-family: var(--font);
}
.hero-breadcrumb{
  font-size: .9rem;
  /* text-transform: uppercase; */
  letter-spacing: .06em;
  opacity: .95;
  font-family: var(--font);

}
.hero-breadcrumb a{
  color: #fff;
  text-decoration: none !important;
  opacity: .9;
}

.hero-breadcrumb a:hover{
  color: #fff;
  text-decoration: none !important;
  opacity: .9;
}
.hero-breadcrumb a:hover{ opacity: 1; text-decoration: underline; }

/* CONTENT */
.contact-wrap{
  background: #fff;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.info-card{
  background: transparent;
}
.info-item{
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
}
.info-item + .info-item{
  border-top: 1px solid rgba(0,0,0,.08);
}
.info-icon{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.info-icon svg{
  width: 26px; height: 26px;
  color: var(--accent);
}
.info-title{
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .03em;
}
.info-text{
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* FORM CARD */
.form-card{
  background: var(--card-bg);
  border-radius: 14px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.form-title{
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #2e3092;
}
.form-control{
  border: 0;
  background: #ededed;
  padding: .9rem 1rem;
  border-radius: 10px;
}
.form-control:focus{
  box-shadow: 0 0 0 .2rem rgba(227,106,69,.18);
  background: #f1f1f1;
}
.btn-accent{
  background: #2e3092;
  border: 0;
  color: #fff;
  padding: .9rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-accent:hover{ filter: brightness(.95); }

/* spacing like screenshot */
@media (min-width: 992px){
  .content-grid{
    align-items: center;
  }
}

/* Section */
.contact-info-section {
  /* background: #f8f9fc; */
}

/* Box */
.contact-info-box {
  position: relative;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgb(0 0 0 / 25%) 0px 8px 25px;
  transition: 0.3s ease;
  height: 100%;
}

.contact-info-box:hover {
  transform: translateY(-5px);
}

/* Title */
.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e3092;
  margin-bottom: 15px;
}

/* Detail */
.contact-info-detail a{
  font-size: 1rem;
  font-weight: 500;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: #000;
}
.contact-info-detail a:hover{
  font-size: 1rem;
  font-weight: 500;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: var(--blue-mid);
}

/* Vertical Divider for Desktop */
/* @media (min-width: 992px) {
  .contact-info-section .col-lg-4:not(:last-child) .contact-info-box::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #2e3092;
    opacity: 0.3;
  }
} */

/* Responsive */
@media (max-width: 768px) {
  .contact-info-title {
    font-size: 1.3rem;
  }

  .contact-info-box {
    padding: 25px 15px;
  }
}


.social-nav3 {
  list-style: none;
}

.social-nav3 li {
  display: inline-block;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #00000052;
}

.social-icon:hover {
  transform: translateY(-6px);
  color: #fff;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-icon.linkedin:hover {
  background: #0077b5;
}

.social-icon.twitter:hover {
  background: #000000;
}


.abt-sub1{
  background-color: #f7f6f2;
  padding: 120px 0px;
}

.abt-stats-section {
  /* padding: 80px 0; */
}

.abt-stat-box {
  padding: 20px 30px;
}

.abt-stat-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  color: #000000;
  margin-bottom: 10px;
  font-family: var(--font);
  font-weight: 700;
}

.abt-stat-line {
  width: 100%;
  height: 2px;
  background-color: #222;
  margin-bottom: 25px;
}

.abt-stat-number {
  font-size: 80px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  margin-bottom: 20px;
  padding-top:40px;
}

.abt-stat-number span {
  font-size: 70px;
  vertical-align: top;
}

.abt-stat-description {
  font-size: 16px;
  color: #555;
  max-width: 350px;
}

@media (max-width: 768px) {
  .abt-stat-number {
      font-size: 60px;
  }
  .abt-stat-number span {
    font-size: 60px;
  }
}

.abt-sub2{
  background-color: #fff;
  padding: 120px 0px;
}


.wcu-section {
  position: relative;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.wcu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(46,48,146,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-strip {
  margin-top: 60px;
  background: linear-gradient(110deg, #1e2070 0%, #2e3092 55%, #3d40c4 100%);
  border-radius: 22px;
  padding: 38px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(46,48,146,.25);
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -90px;
  right: 100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
    .cta-text h4 {
      font-family: var(--font);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }
    .cta-text p { font-size: .9rem; color: rgba(255,255,255,.65); margin: 0; }





    :root {
      --blue:      #2e3092;
      --blue-lt:   #3d40b0;
      --blue-pale: rgba(46,48,146,.08);
      --black:     #111114;
      --white:     #ffffff;
      --grey-bg:   #f5f6fa;
      --grey-bdr:  #e0e2ef;
      --text-muted:#6b6e8a;
    }


.rp{
  height: auto;
}



        /* ── SECTION ────────────────────────────── */
        .process-section { padding: 80px 0 100px; background: var(--white); }

        /* ── HEADING ────────────────────────────── */
        .section-heading {
          font-family: var(--font);
          font-size: clamp(1.85rem, 3vw, 2.7rem);
          font-weight: 700;
          color: var(--black);
          line-height: 1.15;
          margin-bottom: 48px;
        }
        .section-heading span { display: block; }
        .section-heading em   { font-style: italic; color: var(--blue); }
    
        /* ══════════════════════════════════════════
           LEFT — DESKTOP: vertical step list
           MOBILE/TABLET: horizontal scroll strip
        ══════════════════════════════════════════ */
    
        /* ── DESKTOP (≥ lg) ─ vertical list ───── */
        .step-list {
          list-style: none; padding: 0; margin: 0;
          display: flex;
          flex-direction: column;
        }
    
        .step-item {
          border-top: 1px solid var(--grey-bdr);
          cursor: pointer;
          position: relative;
          padding-left: 0;
          transition: padding-left .32s cubic-bezier(.4,0,.2,1);
        }
        .step-item:last-child { border-bottom: 1px solid var(--grey-bdr); }
        .step-item.active      { padding-left: 8px; }
    
        /* left accent bar — desktop only */
        .step-item::before {
          content: '';
          position: absolute;
          left: 0; top: 0; bottom: 0;
          width: 3px;
          background: linear-gradient(180deg, var(--blue), var(--blue-lt));
          border-radius: 0 3px 3px 0;
          opacity: 0;
          transform: scaleY(.3);
          transition: opacity .35s, transform .35s cubic-bezier(.4,0,.2,1);
        }
        .step-item.active::before { opacity: 1; transform: scaleY(1); }
    
        .step-inner {
          display: flex;
          align-items: center;
          gap: 18px;
          padding: 18px 4px;
        }
    
        .step-thumb-wrap {
          flex-shrink: 0;
          /* width: 108px; height: 70px; */
          border-radius: 10px;
          overflow: hidden;
          opacity: .5;
          transition: width .35s, height .35s, opacity .35s, box-shadow .35s;
        }
        .step-item.active .step-thumb-wrap,
        .step-item:hover  .step-thumb-wrap {
          opacity: 1;
          /* width: 118px; height: 76px; */
          /* box-shadow: 0 6px 20px rgba(46,48,146,.2); */
        }
        .step-thumb-wrap img {
          width: 100%; height: 100%;
          object-fit: cover; display: block;
          transition: transform .5s ease;
        }
        .step-item.active .step-thumb-wrap img,
        .step-item:hover  .step-thumb-wrap img { transform: scale(1.07); }
    
        .step-text { flex: 1; min-width: 0; }
    
        .step-num {
          font-size: 1rem;
          font-weight: 700;
          color: #a8aabc; letter-spacing: .08em;
          display: block; margin-bottom: 4px;
          transition: color .3s;
        }
        .step-item.active .step-num,
        .step-item:hover  .step-num { color: var(--blue); }
    
        .step-title {
          font-size: 0.8rem; font-weight: 700;
          letter-spacing: .1em; text-transform: uppercase;
          color: #2a2b3d; line-height: 1.4;
          transition: color .3s;
        }
        .step-item.active .step-title,
        .step-item:hover  .step-title { color: var(--black); }
    
        /* ── MOBILE / TABLET (< lg) horizontal scroll ── */
        @media (max-width: 991px) {
          /* wrapper that hides overflow */
          .step-scroll-outer {
            position: relative;
            margin-bottom: 32px;
          }
          /* fade edges */
          .step-scroll-outer::after {
            content: '';
            position: absolute;
            right: 0; top: 0; bottom: 0;
            width: 48px;
            background: linear-gradient(to left, var(--white), transparent);
            pointer-events: none;
            z-index: 2;
          }
    
          .step-list {
            flex-direction: row;
            gap: 12px;
            overflow-x: auto;
            overflow-y: visible;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 6px;
            /* hide scrollbar but keep scroll */
            scrollbar-width: none;
          }
          .step-list::-webkit-scrollbar { display: none; }
    
          .step-item {
            border-top: none;
            border-bottom: none !important;
            padding-left: 0 !important;
            flex-shrink: 0;
            scroll-snap-align: start;
            width: 160px;
          }
    
          /* bottom accent bar — mobile */
          .step-item::before {
            top: auto; left: 0; right: 0; bottom: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--blue), var(--blue-lt));
            border-radius: 3px 3px 0 0;
            transform: scaleX(.3);
            transition: opacity .35s, transform .35s cubic-bezier(.4,0,.2,1);
          }
          .step-item.active::before { opacity: 1; transform: scaleX(1); }
    
          .step-inner {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 0 0 14px;
            background: var(--grey-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1.5px solid transparent;
            transition: border-color .3s, box-shadow .3s;
            margin-bottom: 10px;
          }
          .step-item.active .step-inner,
          .step-item:hover  .step-inner {
            border-color: var(--blue);
            box-shadow: 0 4px 16px rgba(46,48,146,.12);
          }
    
          .step-thumb-wrap {
            width: 100% !important;
            height: 96px !important;
            border-radius: 10px 10px 0 0;
            opacity: 1 !important;
            box-shadow: none !important;
          }
          .step-thumb-wrap img { border-radius: 0; }
    
          .step-text {
            padding: 0 12px;
          }
    
          .step-num { font-size: .65rem; }
          .step-title { font-size: .7rem; }
        }
    
        @media (max-width: 480px) {
          .step-item { width: 140px; }
          .step-thumb-wrap { height: 80px !important; }
        }
    
        /* ── RIGHT: LIGHT CONTENT PANEL ──────────── */
        .right-col { position: sticky; top: 40px; }
    
        @media (max-width: 991px) {
          .right-col { position: relative; top: 0; }
        }
    
        .content-panel {
          border-radius: 22px;
          background: var(--grey-bg);
          border: 1.5px solid var(--grey-bdr);
          position: relative;
          overflow: hidden;
          box-shadow: 0 12px 40px rgba(46,48,146,.08);
        }
    
        /* top blue stripe decoration */
        .content-panel::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;   /* stretch full height */
          width: 4px;  /* thickness of line */
          background: linear-gradient(180deg, var(--blue), var(--blue-lt));
          z-index: 1;
      }
        /* subtle mesh */
        .content-panel::after {
          content: '';
          position: absolute;
          inset: 0;
          background:
            radial-gradient(ellipse 60% 50% at 95% 5%,  rgba(46,48,146,.06) 0%, transparent 65%),
            radial-gradient(ellipse 40% 45% at 5%  95%, rgba(46,48,146,.04) 0%, transparent 60%);
          pointer-events: none;
          z-index: 0;
        }
    
        .pane-wrap {
          position: relative;
          z-index: 1;
          padding: 42px 40px 38px;
        }
    
        .pane { display: none; }
        .pane.active {
          display: block;
          animation: paneIn .4s cubic-bezier(.4,0,.2,1) forwards;
        }
        @keyframes paneIn {
          from { opacity: 0; transform: translateY(14px); }
          to   { opacity: 1; transform: translateY(0); }
        }
    
        /* Badge */
       
    
        /* Title */
        .pane-title {
          font-family: var(--font);
          font-size: clamp(1.65rem, 2.6vw, 2.2rem);
          font-weight: 500;
          color: var(--black);
          line-height: 1.18;
          margin-bottom: 14px;
        }
    
        /* Desc */
        .pane-desc {
          font-size: 1.1rem;
          color: var(--text-muted);
          line-height: 1.6;
          margin-bottom: 34px;
          /* max-width: 460px; */
        }
    
        /* Feature pills */
      
      
    
        /* Stats */

     
        .stat-val {
          font-family: var(--font);
          font-size: 1.85rem; font-weight: 700;
          color: var(--blue); line-height: 1;
          display: block; margin-bottom: 4px;
          white-space: nowrap;
        }
        .stat-label {
          font-size: .64rem; text-transform: uppercase;
          letter-spacing: .1em; color: #a8aabc;
          font-weight: 500; white-space: nowrap;
        }
    
        /* CTA */
      
        /* ── RESPONSIVE tweaks ───────────────────── */
        @media (max-width: 991px) {
          .pane-wrap { padding: 32px 26px 28px; }
   
        }
        @media (max-width: 575px) {
          .pane-wrap { padding: 24px 16px 22px; }
          .pane-title { font-size: 1.5rem; }
          .stat-val   { font-size: 1.55rem; }
        }
        

        /* Round white buttons with subtle shadow */
#aboutCarousel .nav-mini-btn-prev{
  width: 50px;
      height: 40px;
    border: 0;
    border-radius: 20px 0 0 20px;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  }
  
  #aboutCarousel .nav-mini-btn-nxt{
  width: 50px;
      height: 40px;
    border: 0;
    border-radius: 0 20px 20px 0px;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    margin-left: -11px;
  }
  
  
  /* Icon color similar to the screenshot (bluish/dentistry brand-friendly) */
  #aboutCarousel .nav-mini-btn-nxt svg path {
    fill: #2e3092; /* adjust if your brand blue differs */
    font-size: 100px !important;
  }
  #aboutCarousel .nav-mini-btn-prev svg path {
    fill: #2e3092; /* adjust if your brand blue differs */
    font-size: 50px !important;
  }
  
  /* Hover/active states */
  #aboutCarousel .nav-mini-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,.16), 0 3px 8px rgba(0,0,0,.10);
  }
  #aboutCarousel .nav-mini-btn:active {
    transform: translateY(0);
  }
  
  /* High-contrast focus ring for accessibility */
  #aboutCarousel .nav-mini-btn:focus-visible {
    outline: 3px solid rgba(46,144,255,.45);
    outline-offset: 2px;
  }

  #aboutCarousel img{
    border-radius: 20px;
}
#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next {
  display: none !important;
}

/* Position the mini nav like the screenshot */
#aboutCarousel {
  position: relative;
}

#aboutCarousel .carousel-nav-mini {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
#aboutCarousel  .carousel-item{
  height: 430px;
  width: 100%;
}
.sub-page h2{
  color: var(--blue-mid);
  font-family: var(--font);
}

.sub-page2 h2{
  color: var(--blue-mid);
  font-family: var(--font);
  font-size: 40px;
}



 /* ── FIELD ERRORS ONLY ───────────────────────── */
 .field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── THANK YOU OVERLAY ───────────────────────── */
#thankYouOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#thankYouOverlay.show {
  display: flex;
  animation: overlayIn 0.35s ease forwards;
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ty-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.8rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  animation: cardIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
}
@keyframes cardIn {
  from { opacity: 0; transform: scale(0.82) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.ty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #8c3237;
}
.ty-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ty-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #8c3237;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  position: relative;
  animation: iconPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
}
@keyframes iconPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ty-icon-wrap i { font-size: 2rem; color: #fff; }
.ty-icon-wrap::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #8c3237;
  animation: ringPulse 1.8s ease-out 0.9s infinite;
}
@keyframes ringPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

.ty-eyebrow {
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2e3092;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.45s ease 0.55s both;
}
.ty-heading {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0d0d0d;
  margin-bottom: 0;
  animation: fadeUp 0.45s ease 0.65s both;
}
.ty-name { color:var(--blue-mid); }

.ty-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #2e3092, #e8c97a);
  margin: 1rem auto;
  border-radius: 2px;
  animation: fadeUp 0.45s ease 0.72s both;
}
.ty-body {
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 0.92rem;
  color: #7a7672;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.45s ease 0.8s both;
}
.ty-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 0.78rem;
  color: #bbb;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.45s ease 0.88s both;
}
.ty-meta i { color: var(--blue-mid); }

.ty-close {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.8rem;
  background: #8c3237; color: #fff;
  border: none; border-radius: 50px;
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  animation: fadeUp 0.45s ease 0.96s both;
}
.ty-close:hover { background: #222; transform: translateY(-1px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CONFETTI ────────────────────────────────── */
.confetti-piece {
  position: fixed;
  top: -10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  pointer-events: none;
  z-index: 10000;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg);       opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}





:root {
  --white: #ffffff;
  --black: #000000;
  --accent: #2e3092;
  --accent-dark: #1e2070;
  --accent-light: rgba(46, 48, 146, 0.08);
  --card-radius: 20px;
  --transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}




    /* ── GRID ── */
    .dmnp-products-grid {
      padding: 64px 0 100px;
    }

    /* ── CARD ── */
    .dmnp-product-card {
      position: relative;
      border-radius: var(--card-radius);
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
      transition: box-shadow var(--transition), transform var(--transition);
      cursor: pointer;
      height: 420px;
    }

    .dmnp-product-card:hover {
      box-shadow: 0 24px 60px rgba(46,48,146,0.18), 0 8px 24px rgba(0,0,0,0.1);
      transform: translateY(-6px);
    }

    /* ── IMAGE ── */
    .dmnp-card-img-wrapper {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .dmnp-card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition);
    }

    .dmnp-product-card:hover .dmnp-card-img-wrapper img {
      transform: scale(1.08);
    }

    /* ── OVERLAY ── */
    .dmnp-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 20%,
        rgba(8,10,35,.38) 62%,
        rgba(8,10,35,.96) 100%
      
      );
      transition: background var(--transition);
    }

    .dmnp-product-card:hover .dmnp-card-overlay {
      background: linear-gradient(
        to top,
        rgba(46,48,146,0.88) 0%,
        rgba(46,48,146,0.55) 40%,
        rgba(0,0,0,0.15) 100%
      );
    }

    /* ── TAG (top-left) ── */
    .dmnp-card-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      background: var(--white);
      color: var(--accent);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      z-index: 3;
      transition: opacity var(--transition);
    }

    .dmnp-product-card:hover .dmnp-card-tag {
      opacity: 0;
    }

    /* ── DEFAULT LABEL (bottom) ── */
    .dmnp-card-default-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px 24px;
      z-index: 4;
      transition: opacity var(--transition), transform var(--transition);
    }

    .dmnp-card-default-label .dmnp-product-name {
      font-family: var(--font);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.01em;
      line-height: 1.2;
    }

    .dmnp-card-default-label .dmnp-product-price {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      margin-top: 5px;
    }

    .dmnp-product-card:hover .dmnp-card-default-label {
      opacity: 0;
      transform: translateY(12px);
    }

    /* ── HOVER CONTENT (centered) ── */
    .dmnp-card-hover-content {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity var(--transition), transform var(--transition);
    }

    .dmnp-product-card:hover .dmnp-card-hover-content {
      opacity: 1;
      transform: translateY(0);
    }

    .dmnp-hover-product-name {
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.01em;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .dmnp-hover-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.78);
      font-weight: 300;
      letter-spacing: 0.02em;
      max-width: 220px;
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* ── ARROW BUTTON ── */
    .dmnp-hover-arrow {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, transform 0.3s;
      margin-top: 4px;
    }

    .dmnp-hover-arrow svg {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
      transition: stroke 0.3s;
    }

    .dmnp-product-card:hover .dmnp-hover-arrow:hover {
      background: var(--accent);
      transform: scale(1.1) rotate(10deg);
    }

    .dmnp-product-card:hover .dmnp-hover-arrow:hover svg {
      stroke: var(--white);
    }

    /* ── NUMBER BADGE ── */
    .dmnp-card-number {
      position: absolute;
      top: 18px;
      right: 18px;
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      z-index: 3;
      letter-spacing: 0.05em;
      transition: color var(--transition);
    }

    .dmnp-product-card:hover .dmnp-card-number {
      color: rgba(255,255,255,0.6);
    }

    /* ── DIVIDER LINE in hover content ── */
    .dmnp-hover-line {
      width: 36px;
      height: 1px;
      background: rgba(255,255,255,0.35);
      margin: 0 auto 20px;
    }

    /* ── FOOTER ── */
    .dmnp-section-footer {
      text-align: center;
      padding-bottom: 80px;
    }

    .dmnp-btn-explore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 16px 40px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }

    .dmnp-btn-explore:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(46,48,146,0.3);
      color: var(--white);
    }

    .dmnp-btn-explore svg {
      transition: transform 0.3s;
    }

    .dmnp-btn-explore:hover svg {
      transform: translateX(3px);
    }

    /* ── STAGGER ANIMATION ── */
    .dmnp-stagger-card {
      opacity: 0;
      transform: translateY(32px);
      animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .dmnp-stagger-card:nth-child(1) { animation-delay: 0.05s; }
    .dmnp-stagger-card:nth-child(2) { animation-delay: 0.12s; }
    .dmnp-stagger-card:nth-child(3) { animation-delay: 0.19s; }
    .dmnp-stagger-card:nth-child(4) { animation-delay: 0.26s; }
    .dmnp-stagger-card:nth-child(5) { animation-delay: 0.33s; }
    .dmnp-stagger-card:nth-child(6) { animation-delay: 0.40s; }
    .dmnp-stagger-card:nth-child(7) { animation-delay: 0.47s; }
    .dmnp-stagger-card:nth-child(8) { animation-delay: 0.54s; }

    /* ── RESPONSIVE TWEAKS ── */
    @media (max-width: 767px) {
      .dmnp-product-card { height: 360px; }
    }

    @media (max-width: 480px) {
      .dmnp-product-card { height: 320px; }
    }

    .more-content{
      max-height:0;
      overflow:hidden;
      transition:max-height 0.6s ease;
    }
    
    .more-content.show{
      max-height:800px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      /* text-transform: uppercase; */
      color: var(--royal);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-b);
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: #000;
    opacity: 0.4;
}










#requestAnAppointmentModal .modal-content{
  border:0;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
}

#requestAnAppointmentModal .modal-body{
  padding:32px 28px;
  background:linear-gradient(135deg,#fff 0%,#f8f8ff 100%);
  position: relative;
  overflow: hidden;
}

/* Watermark */
#requestAnAppointmentModal .modal-body::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:420px;
  height:420px;
  background:url('/img/dmm.png') no-repeat center;
  background-size:contain;
  opacity:0.03; /* watermark lightness */
  pointer-events:none;
}

#requestAnAppointmentModal .form-container{
  position:relative;
  padding: 20px;
}

/* #requestAnAppointmentModal .form-container::before{
  content:"";
  position:absolute;
  top:-30px;
  right:-30px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(46,48,146,.08);
  pointer-events:none;
} */

#requestAnAppointmentModal .btn-close.modal-close-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border-radius:50%;
  background-color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  opacity:1;
  transition:.3s ease;
}
#requestAnAppointmentModal .btn-close.modal-close-btn i{
  color: #fff;
}
#requestAnAppointmentModal .btn-close.modal-close-btn:hover{
  background-color:#2e3092;
  filter:invert(1);
  transform:rotate(90deg);
}

#requestAnAppointmentModal h2{
  margin-bottom:10px;
  font-size:34px;
  font-weight:600;
  color:#2e3092;
  line-height:1.1;
}

#requestAnAppointmentModal .section-subtitle{
  margin-bottom:24px;
  font-size:15px;
  line-height:1.6;
  color:rgba(0,0,0,.65);
}

#requestAnAppointmentModal .form-label{
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:#000;
}

#requestAnAppointmentModal .text-danger{
  color:#2e3092 !important;
}

#requestAnAppointmentModal .form-control{
  height:52px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  padding:12px 14px;
  font-size:15px;
  color:#000;
  background:#fff;
  box-shadow:none;
  transition:.3s ease;
}

#requestAnAppointmentModal textarea.form-control{
  height:auto;
  min-height:120px;
  resize:none;
}

#requestAnAppointmentModal .form-control::placeholder{
  color:rgba(0,0,0,.4);
}

#requestAnAppointmentModal .form-control:focus{
  border-color:#2e3092;
  box-shadow:0 0 0 3px rgba(46,48,146,.12);
}

#requestAnAppointmentModal .field-error{
  margin-top:6px;
  font-size:13px;
  color:#2e3092;
}



#requestAnAppointmentModal #thankYouOverlay{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(6px);
}

#requestAnAppointmentModal .ty-card{
  width:100%;
  max-width:460px;
  padding:28px 24px;
  border-radius:18px;
  background:#fff;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
}

#requestAnAppointmentModal .ty-icon-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#2e3092;
  color:#fff;
  font-size:24px;
}

#requestAnAppointmentModal .ty-eyebrow{
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2e3092;
}

#requestAnAppointmentModal .ty-heading{
  margin-bottom:10px;
  font-size:28px;
  font-weight:800;
  color:#000;
}

#requestAnAppointmentModal .ty-heading::after{
  display:none;
}

#requestAnAppointmentModal .ty-name{
  color:#2e3092;
}

#requestAnAppointmentModal .ty-divider{
  width:60px;
  height:3px;
  margin:14px auto;
  border-radius:10px;
  background:#2e3092;
}

#requestAnAppointmentModal .ty-body{
  font-size:14px;
  line-height:1.7;
  color:rgba(0,0,0,.68);
}

#requestAnAppointmentModal .ty-meta{
  margin:14px 0 18px;
  font-size:13px;
  color:#000;
}

#requestAnAppointmentModal .ty-close{
  padding:10px 18px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:40px;
  background:#fff;
  color:#000;
  font-weight:600;
  transition:.3s ease;
}

#requestAnAppointmentModal .ty-close:hover{
  background:#000;
  color:#fff;
}
#requestAnAppointmentModal .modal-content{
  position:relative;
}

#requestAnAppointmentModal .btn-close.modal-close-btn{
  position:absolute;
  top:14px;
  right:14px;
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  opacity:1;
  background-color:#2e3092;
  background-size:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition:.3s ease;
}

#requestAnAppointmentModal .btn-close.modal-close-btn:hover{
  background-color:#8c3237 !important;
  transform:rotate(90deg);
  filter:invert(1);
}

@media (max-width:576px){
  #requestAnAppointmentModal .modal-body{
    padding:24px 18px;
  }

  #requestAnAppointmentModal h2{
    font-size:26px;
  }

  #requestAnAppointmentModal .section-subtitle{
    font-size:14px;
  }

  #requestAnAppointmentModal .btn-quote{
    width:100%;
    justify-content:center;
  }
}


#requestAnAppointmentModal #thankYouOverlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  border-radius: 20px;
}

#requestAnAppointmentModal #thankYouOverlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-container h2{
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 600;
  color: #2e3092;
  line-height: 1.1;
}

@media (max-width: 768px) {

.sub-page2  h2 {
  color: var(--blue-mid);
  font-family: var(--font);
  font-size: 30px !important;
}
.section-label{
  margin-top: 30px;
}
}

@media (min-width: 1400px) {
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 83px;
}
.hero-h1 {
    font-family: var(--font);
    font-size: clamp(40px, 4vw, 82px);
}
.hero-left {
    max-width: 680px;
}
}

/* Modal box */
#vedantaModal .vedanta-modal{
  border-radius:12px;
  overflow:hidden;
  }
  
  /* Header */
  #vedantaModal .vedanta-header{
  background:#2e3092;
  color:white;
  padding:16px 20px;
  }
  
  /* Body */
  #vedantaModal .modal-body{
  padding:25px;
  background:white;
  }
  
  /* Contact container */
  #vedantaModal .vedanta-contact{
  display:flex;
  flex-direction:column;
  gap:18px;
  }
  
  /* Contact item */
  #vedantaModal .vedanta-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:black;
  font-size:16px;
  font-weight:500;
  padding:10px;
  border-radius:8px;
  transition:all .3s ease;
  }
  
  /* Hover effect */
  #vedantaModal .vedanta-item:hover{
  background:#f4f5ff;
  }
  
  /* Icon circle */
  #vedantaModal .vedanta-icon{
  width:40px;
  height:40px;
  background:#8c3237;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
  }
.ab-image img{
  border-radius: 20px;
}