/* =========================================================
   ===================== CORE TOKENS ========================
   ========================================================= */
:root {
  --brand-gold: #b89324;
  --nav-height: 84px;
  --nav-current: calc(var(--nav-height) + env(safe-area-inset-top));
  --hero-bg: #000;
  scroll-padding-top: var(--nav-current);
}
@media (max-width: 991.98px) {
  :root {
    --nav-height: 72px;
    --nav-current: calc(var(--nav-height) + env(safe-area-inset-top));
  }
}

/* =========================================================
   ==================== BASE / RESET ========================
   ========================================================= */
html, body {
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas, iframe { max-width: 100%; height: auto; display: block; }
.container, .container-fluid { overflow-x: hidden; }
[id] { scroll-margin-top: var(--nav-current); }
body {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top));
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
.muted { color: #bfbfbf; }
#bgParticles {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  #bgParticles { display: none; }
}

/* =========================================================
   ================= NAVBAR / OFFCANVAS =====================
   ========================================================= */
.ntk-navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 9999; height: var(--nav-height);
  display: flex; align-items: center;
  background: rgba(10,10,10,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  padding-top: env(safe-area-inset-top);
}
.ntk-navbar .brand-logo { height: 86px; width: auto; border-radius: 6px; }
@media (max-width: 991.98px) { .ntk-navbar .brand-logo { height: 48px; } }

.ntk-navbar .nav-btns { display: flex; align-items: center; gap: .25rem; }
.ntk-navbar .nav-link-btn {
  display: inline-block; padding: .45rem .9rem; font-weight: 600;
  text-decoration: none; color: #ffffffde; position: relative;
  transition: color .2s ease, text-shadow .2s ease;
}
.ntk-navbar .nav-link-btn:hover, .ntk-navbar .nav-link-btn:focus {
  color: var(--brand-gold);
  text-shadow: 0 0 8px rgba(184,147,36,.6);
}
.ntk-navbar .nav-link-btn::after {
  content: ""; position: absolute; left: 50%; bottom: .18rem; transform: translateX(-50%);
  width: 0; height: 3px; border-radius: 3px; background: var(--brand-gold); opacity: 0;
  transition: width .22s ease, opacity .22s ease;
}
.ntk-navbar .nav-link-btn:hover::after, .ntk-navbar .nav-link-btn:focus::after {
  width: 42px; opacity: 1;
}
.ntk-navbar .menu-toggle { display: none; }

@media (max-width: 991.98px) {
  .ntk-navbar .menu-toggle { display: none !important; }
  .ntk-navbar .nav-btns { display: flex !important; }
  .ntk-navbar .nav-btns .nav-link-btn {
    padding: 0.35rem 0.75rem; font-size: 0.9rem;
  }
}

/* ----- Offcanvas (dark) ----- */
.offcanvas.offcanvas-dark {
  background: rgba(10,10,10,.98); color: #fff;
  border-left: 1px solid #1f1f1f;
  backdrop-filter: blur(8px) saturate(120%);
}
.offcanvas.offcanvas-dark .list-group-item {
  background: transparent; color: #e8e8e8; border-color: #1f1f1f;
  padding: .9rem 1rem; font-weight: 600;
}
.offcanvas.offcanvas-dark .list-group-item:hover,
.offcanvas.offcanvas-dark .list-group-item:focus {
  color: var(--brand-gold); border-color: rgba(184,147,36,.35);
}
#ntkOffcanvas { position: fixed; inset: 0 0 0 auto; max-width: 100vw; }
.offcanvas { visibility: hidden; }
.offcanvas.show, .offcanvas.showing, .offcanvas.hiding { visibility: visible; }
@media (min-width: 992px) { #ntkOffcanvas, .menu-toggle { display: none!important; } }

/* =========================================================
   ==================== BUTTONS (GLOBAL) ====================
   ========================================================= */
.btn-brand {
  background: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  color: #111;
  font-weight: 600;
  transition: box-shadow .25s ease, filter .25s ease;
}
.btn-outline-brand {
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  font-weight: 600;
  transition: box-shadow .25s ease, filter .25s ease;
}
.btn-brand:hover, .btn-outline-brand:hover {
  filter: brightness(1.1);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(184,147,36,.45);
}

/* =========================================================
   ========== GLOBAL TITLES (match hero__title) =============
   ========================================================= */

/* All section titles look like the hero title */
.section-title,
h1.section-title,
h2.section-title,
h3.section-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 800 !important;       /* identical boldness */
  font-size: 2.2rem !important;      /* identical size */
  color: #fff !important;
  letter-spacing: 0.5px;
  text-align: left;
  margin-bottom: 0.5rem;
}

/* Consistent gold underline for all titles */
.section-underline,
.section-underline1 {
  width: 70px;
  height: 3px;
  background: var(--brand-gold, #b89324);
  border-radius: 3px;
  margin-bottom: 1.2rem;
}

/* Responsive scaling for smaller screens */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem !important;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem !important;
  }
}


/* =========================================================
   ================== MODERN BALANCED HERO ==================
   ========================================================= */

.hero {
  background: #000;
  color: #fff;
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
  }
}

/* ===== LEFT SIDE (INFO) ===== */
.hero__info {
  max-width: 680px;
}

.hero__title {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: .5rem;
}

.hero__underline {
  width: 70px;
  height: 3px;
  background: var(--brand-gold, #c9a44c);
  border-radius: 3px;
  margin-bottom: 1.2rem;
}

.hero__info p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: .9rem;
}

/* ===== BUTTONS (TABS) ===== */
.btn-brand {
  background: var(--brand-gold, #c9a44c);
  color: #000;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: #d4b55f;
  color: #000;
}

.btn-outline-brand {
  border: 1px solid var(--brand-gold, #c9a44c);
  color: var(--brand-gold, #c9a44c);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background: var(--brand-gold, #c9a44c);
  color: #000;
}

/* ===== TAB LIST ===== */
.hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .4rem 0;
  border-bottom: 1px solid #161616;
}

.hero__list-item:last-child {
  border-bottom: none;
}

.hero__li-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111;
  border: 1px solid #222;
  color: var(--brand-gold, #c9a44c);
  font-size: 16px;
}

/* ===== STABLE TAB SWITCH (no layout jump) ===== */
.hero__info .tab-content {
  position: relative;
  display: grid;
  grid-template-rows: 1fr; /* both tabs share same row */
}

.hero__info .tab-pane {
  display: block !important; /* prevent Bootstrap hiding */
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.hero__info .tab-pane.show.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}

/* ===== RIGHT SIDE (CAROUSEL) ===== */
.hero__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  background: #0a0a0a;
}

.hero__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero__arrow {
  color: #fff;
  font-size: 1.4rem;
}

/* ===== FEATURES UNDER CAROUSEL ===== */
.hero__features {
  margin-top: 1.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
}

.hero__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #141414;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  color: #ddd;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero__feature:hover {
  background: #1c1c1c;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.hero__feature h6 {
  color: #fff;
  font-weight: 600;
}

.hero__feature p {
  color: #bbb;
}

/* ICON BADGE (no borders) */
.hero__badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #0c0c0c 100%);
  color: var(--brand-gold, #c9a44c);
  font-size: 26px;
  flex: 0 0 56px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero__media img {
    height: 250px;
  }

  .hero__features .hero__feature {
    justify-content: flex-start;
    text-align: left;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__info {
    margin-bottom: 2rem;
  }
}

/* ===== PHONE VIEW (stack features neatly + left text) ===== */
@media (max-width: 575.98px) {
  .hero__media img {
    height: 220px;
  }

  .hero__badge {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero__feature {
    padding: .75rem;
    margin: 0 auto;
    text-align: left;
    justify-content: flex-start;
  }

  .hero__features .row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero,
  .hero__info,
  .hero__title {
    text-align: left !important;
  }
}









/* =========================================================
   ==================== TABS / SERVICES =====================
   ========================================================= */
#aboutTabs, #serviceTabs { display: flex; gap: .5rem; flex-wrap: wrap; }
#aboutTabs .btn, #serviceTabs .btn {
  border: 0!important; padding: .55rem 1.1rem; font-weight: 600;
}
#aboutTabs .btn-brand, #serviceTabs .btn-brand {
  background: var(--brand-gold)!important; color: #111!important;
}
#aboutTabs .btn-outline-brand, #serviceTabs .btn-outline-brand {
  background: transparent!important; color: var(--brand-gold)!important;
}
#aboutTabs .btn-brand:hover, #aboutTabs .btn-outline-brand:hover,
#serviceTabs .btn-brand:hover, #serviceTabs .btn-outline-brand:hover {
  filter: brightness(1.1)!important;
  box-shadow: 0 0 16px rgba(184,147,36,.45)!important;
  color: #ffffff!important;
}
#aboutTabs .btn:focus, #serviceTabs .btn:focus {
  outline: none!important;
  box-shadow: 0 0 16px rgba(184,147,36,.45)!important;
}
#serviceTabs { justify-content: center; margin: .25rem 0 1rem; }

/* ----- Services Grid ----- */
.ss-grid {
  display: grid; gap: 14px; margin-top: .5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 576px) { .ss-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .ss-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc-card {
  background: #0f0f0f; border: 1px solid #1f1f1f; border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  padding: 1rem; height: 92px; display: flex; align-items: center;
  position: relative; opacity: 0;
  transition: opacity .3s ease, border-color .2s ease, box-shadow .2s ease;
}
@media (max-width: 575.98px) { .svc-card { height: 88px; } }
.svc-card.revealed { opacity: 1; }
.svc-card:hover {
  border-color: rgba(184,147,36,.38);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(184,147,36,.07) inset;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 18px;
  background: radial-gradient(120px 80px at 20% 10%, rgba(255,255,255,.06), transparent 60%);
  mix-blend-mode: screen;
}
.svc-head { display: flex; align-items: center; gap: .9rem; }
.svc-ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  flex: 0 0 48px; background: #151515; border: 1px solid #272727;
  color: var(--brand-gold); font-size: 1.35rem;
  box-shadow: inset 0 0 28px rgba(184,147,36,.06), 0 6px 18px rgba(0,0,0,.35);
}
.svc-title { margin: 0; font-weight: 700; letter-spacing: .2px; color: #fff; }

/* =========================================================
   ====================== WORKS CAROUSEL ====================
   ========================================================= */

/* Remove border & shadow from main carousel */
.pageproj-panel {
  background: linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  border: none;                 /* 🔹 Removed border */
  border-radius: 18px;
  box-shadow: none;             /* 🔹 Removed shadow */
  overflow: hidden;
}

/* Keep slide layout consistent */
.pageproj-project-slide {
  display: flex;
  align-items: stretch;
  min-height: 420px;
}
@media (max-width: 991.98px) {
  .pageproj-project-slide { min-height: 480px; }
}

/* Outer carousel indicators */
.pageproj-main-indicators {
  position: static;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: .75rem;
  z-index: 3;
}
.pageproj-main-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45)!important;
  border: 0;
  cursor: pointer;
}
.pageproj-main-indicators [data-bs-target].active {
  background: var(--brand-gold)!important;
}

/* ----- Inner Gallery ----- */
.pageproj-gallery {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Same fixed aspect ratio for all gallery viewports */
.pageproj-gallery-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;         /* 🔹 Keeps same ratio everywhere */
  border: none;                 /* 🔹 Removed border */
  border-radius: .75rem;
  overflow: hidden;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* All images fill evenly */
.pageproj-gimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* 🔹 Uniform scaling */
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pageproj-gimg.active { opacity: 1; }

.pageproj-gallery-viewport .pageproj-prev,
.pageproj-gallery-viewport .pageproj-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: var(--brand-gold);
  font-size: 1.6rem;
  padding: .25rem .6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 3;
}
.pageproj-gallery-viewport .pageproj-prev:hover,
.pageproj-gallery-viewport .pageproj-next:hover {
  background: rgba(184, 147, 36, 0.5);
  color: #fff;
}
.pageproj-gallery-viewport .pageproj-prev { left: 8px; }
.pageproj-gallery-viewport .pageproj-next { right: 8px; }

@media (max-width: 575.98px) {
  .pageproj-gallery-viewport {
    aspect-ratio: 4 / 3;       /* slightly taller for phones */
  }
  .pageproj-gallery-viewport .pageproj-prev,
  .pageproj-gallery-viewport .pageproj-next {
    font-size: 1.3rem;
    padding: .2rem .45rem;
  }
}


/* =========================================================
   =================== STUDIES SECTION ======================
   ========================================================= */

#studies {
  background: #000;
  color: #fff;
  overflow: hidden;
}



/* Grid: 4 top, 3 bottom */
.studies-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  justify-items: center;
}

/* Move bottom 3 slightly to the right */
.studies-grid .study-item:nth-child(n+5) {
  transform: translateX(175px); /* 🔸 Adjust this (40–80px) for desired offset */
  transition: transform 0.3s ease;
}

/* Icon & text style (matches process section) */
.study-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
  transition: color 0.2s ease;
}

.study-icon {
  width: 96px;
  height: 96px;
  margin-inline: auto;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--brand-gold);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s ease, text-shadow 0.2s ease, filter 0.2s ease;
}

.study-icon i {
  font-size: 1.8em;
  color: currentColor;
  transition: text-shadow 0.18s ease, filter 0.18s ease;
}

/* Hover glow effect like process icons */
.study-item:hover .study-icon i,
.study-item:focus-within .study-icon i {
  text-shadow: 0 0 10px rgba(184,147,36,.6),
               0 0 22px rgba(184,147,36,.35);
  filter: drop-shadow(0 8px 20px rgba(184,147,36,.25));
}

/* Text below icon */
.study-item h6 {
  margin: 0.65rem 0 0;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  transition: color 0.2s ease;
}

/* Hover: turn text gold */
.study-item:hover h6 {
  color: var(--brand-gold);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .studies-grid .study-item:nth-child(n+5) {
    transform: none; /* reset shift on smaller screens */
  }
}

@media (max-width: 991.98px) {
  .studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studies-grid .study-item:nth-child(n+5) {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .study-icon {
    width: 80px;
    height: 80px;
    font-size: 1.7rem;
  }
  .study-item h6 {
    font-size: 0.9rem;
  }
  .studies-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================================================
   ====================== PROCESS FLOW ======================
   ========================================================= */
.proc-grid {
  display: grid; gap: 22px; grid-template-columns: repeat(1, minmax(0,1fr));
}
@media (min-width: 768px) { .proc-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1200px) { .proc-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.proc-item { text-align: center; background: transparent; padding: .5rem .25rem; }
.proc-gianticon {
  width: 96px; height: 96px; margin-inline: auto; border-radius: 22px;
  display: grid; place-items: center; background: transparent!important;
  border: none!important; box-shadow: none!important; backdrop-filter: none!important;
  color: var(--brand-gold); font-size: 2rem; line-height: 1; transition: color .18s ease;
}
.proc-gianticon>i {
  font-size: 1.8em; color: currentColor; line-height: 1; filter: none;
  transition: text-shadow .18s ease, filter .18s ease;
}
.proc-item:hover .proc-gianticon>i,
.proc-item:focus-within .proc-gianticon>i {
  text-shadow: 0 0 10px rgba(184,147,36,.6), 0 0 22px rgba(184,147,36,.35);
  filter: drop-shadow(0 8px 20px rgba(184,147,36,.25));
}
.proc-item h6 { margin: .65rem 0 .25rem; font-weight: 800; }
.proc-item p { margin: 0 auto; max-width: 22ch; color: #e6e6e6; }
@media (prefers-reduced-motion: reduce) { .proc-gianticon>i { transition: none; } }
.proc-flow-wrap { position: relative; }
.proc-flow-wrap .proc-arrows-mini {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0;
}
#process .proc-grid { position: relative; z-index: 1; }
@media (max-width: 767.98px) { .proc-flow-wrap .proc-arrows-mini { display: none; } }

/* =========================================================
   ======================== FOOTER ==========================
   ========================================================= */

.footer-v2{
  background: rgba(10,10,10,.72);
  border-top: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.footer-logo{ height:40px; width:auto; border-radius:6px; display:block; }
.footer-list{ list-style:none; margin:0; padding:0; display:grid; gap:.35rem; }
.footer-list li{ color:#cfcfcf; }
.footer-list a{ color:#cfcfcf; text-decoration:none; }
.footer-list a:hover{ color:var(--brand-gold); text-shadow:0 0 6px rgba(184,147,36,.45); }
.footer-list i.bi{ color:var(--brand-gold); margin-right:.45rem; }
.footer-bottom .footer-link{ color:#cfcfcf; text-decoration:none; }
.footer-bottom .footer-link:hover{ color:var(--brand-gold); }

/* Reuse navbar look for footer link */
.footer-v2 .footer-nav .nav-link-btn{
  display:inline-block; padding:.45rem .9rem; font-weight:600;
  text-decoration:none; color:#ffffffde; position:relative;
  transition:color .2s ease,text-shadow .2s ease;
}
.footer-v2 .footer-nav .nav-link-btn:hover,
.footer-v2 .footer-nav .nav-link-btn:focus{
  color:var(--brand-gold); text-shadow:0 0 8px rgba(184,147,36,.6);
}
.footer-v2 .footer-nav .nav-link-btn::after{
  content:""; position:absolute; left:50%; bottom:.18rem; transform:translateX(-50%);
  width:0; height:3px; border-radius:3px; background:var(--brand-gold); opacity:0;
  transition:width .22s ease,opacity .22s ease;
}
.footer-v2 .footer-nav .nav-link-btn:hover::after,
.footer-v2 .footer-nav .footer-nav .nav-link-btn:focus::after{ width:42px; opacity:1; } /* kept same behavior */

@media (max-width:575.98px){
  .footer-logo{ height:36px; }
}
@media (max-width: 767.98px){
  #footer .footer-list { text-align:center; }
  #footer .footer-list-icons { text-align:left; }
}

/* icon spacing inside nav/footer links */
.ntk-navbar .nav-link-btn .bi,
.footer-v2 .footer-nav .nav-link-btn .bi {
  margin-right: .35rem;
  vertical-align: .05em;
}

.section-underline1 {
  width: 50px; /* or whatever width you want */
  height: 3px;
  background-color: #b89324;
  margin: 0 auto; /* default center for mobile */
}

@media (min-width: 768px) {
  .text-md-start .section-underline1 {
    margin-left: 0;  /* align left on md+ screens */
    margin-right: auto;
  }
}

footer img {
  max-width: none;
  display: inline;
  height: auto;
}


/* =========================================================
   ===================== CONTACT PAGE =======================
   ========================================================= */
.page-contact .back-link { color: #cfcfcf; }
.page-contact .back-link:hover, .page-contact .back-link:focus {
  color: var(--brand-gold);
  text-shadow: 0 0 6px rgba(184,147,36,.45);
}

@media (max-width: 767.98px) {
  .page-contact .map-embed {
    margin-top: 1.5rem !important; /* push the map down */
  }
}