/* ============================================================
   DSB — Component styles
   ============================================================ */

/* ===== TOP BAR ===== */
.topbar {
  background: var(--graphite);
  color: var(--steel-light);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a {
  color: var(--steel-light);
  transition: 0.2s;
}
.topbar a:hover {
  color: var(--copper-light);
}
.topbar .tb-left {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.topbar .tb-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar .tb-right .lbl {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
}
.soc {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border: 1px solid #39404c;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: 0.2s;
}
.soc:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
}

/* ===== HEADER : LOGO BLOCK ON TOP ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--paper);
  box-shadow: 0 2px 24px rgba(20, 24, 30, 0.08);
}
.logo-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 28px 16px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.logo-block::before,
.logo-block::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 22%;
  background: linear-gradient(90deg, transparent, var(--line));
}
.logo-block::before {
  left: 6%;
}
.logo-block::after {
  right: 6%;
  transform: scaleX(-1);
}
.logo-block img {
  height: 90px;
  width: auto;
}

/* Navbar (Bootstrap navbar restyled to graphite bar) */
.navbar.brand-nav {
  background: var(--graphite);
  padding: 0;
}
.brand-nav .navbar-nav .nav-link {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  font-weight: 500;
  color: #d7dbe1;
  padding: 20px 16px;
  position: relative;
  transition: 0.22s;
}
.brand-nav .navbar-nav .nav-link:hover,
.brand-nav .navbar-nav .nav-item.show .nav-link,
.brand-nav .navbar-nav .nav-link:focus {
  color: #fff;
  background: var(--graphite-3);
}
.brand-nav .navbar-nav > .nav-item > .nav-link::after-line {
  display: none;
}
.brand-nav .navbar-nav > .nav-item > .nav-link .under {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
}
.brand-nav .navbar-nav > .nav-item > .nav-link:hover .under {
  transform: scaleX(1);
}

/* Dropdown restyle */
.brand-nav .dropdown-menu {
  min-width: 200px;
  background: var(--paper);
  border: none;
  border-top: 3px solid var(--copper);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  padding: 8px 0;
  border-radius: 0;
  margin-top: 0;
}
.brand-nav .dropdown-item {
  padding: 9px 22px;
  font-size: 0.86rem;
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  transition: 0.18s;
}
.brand-nav .dropdown-item:hover,
.brand-nav .dropdown-item:focus {
  background: var(--cream);
  color: var(--copper);
  padding-left: 28px;
}

/* Enquiry button in nav */
.enquiry-btn {
  background: var(--copper);
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 11px 24px;
  transition: 0.25s;
  white-space: nowrap;
  border: none;
}
.enquiry-btn:hover {
  background: var(--copper-light);
  color: #fff;
}

/* Burger toggler (custom bars, matches original) */
.nav-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  display: none;
}
.nav-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Offcanvas (mobile) restyle */
.offcanvas.brand-offcanvas {
  background: var(--graphite);
  width: 300px;
}
.brand-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-offcanvas .offcanvas-title img {
  height: 46px;
}
.brand-offcanvas .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
}
.brand-offcanvas .oc-link {
  display: block;
  padding: 14px 22px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand-offcanvas .oc-sub {
  background: rgba(0, 0, 0, 0.22);
  display: none;
}
.brand-offcanvas .oc-sub.open {
  display: block;
}
.brand-offcanvas .oc-sub a {
  display: block;
  padding: 11px 34px;
  color: #c9cfd6;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.brand-offcanvas .oc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.brand-offcanvas .oc-toggle .caret {
  padding: 0 22px;
  color: var(--copper);
  font-size: 1.1rem;
}
.brand-offcanvas .oc-cta {
  padding: 20px 22px;
}

/* ===== HERO (Bootstrap carousel restyled) ===== */
.hero {
  position: relative;
  background: var(--graphite);
  overflow: hidden;
  min-height: 600px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(20, 24, 30, 0.94) 0%,
      rgba(26, 29, 36, 0.82) 45%,
      rgba(26, 29, 36, 0.55) 100%
    ),
    var(--hero-photo) center/cover;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193, 122, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 122, 74, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  position: relative;
  z-index: 2;
}
.slide-inner {
  padding: 110px 0 120px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero .eyebrow {
  color: var(--copper-light);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  margin: 22px 0 20px;
  max-width: 840px;
  letter-spacing: 1px;
}
.hero h1 .hl {
  color: var(--copper-light);
  display: block;
}
.hero .lead-txt {
  color: #c3c9d1;
  font-size: 1.12rem;
  max-width: 600px;
  margin-bottom: 34px;
}
.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  background: var(--copper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-side .vtext {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-side .vline {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-nav {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 80px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.hero-nav button {
  width: 52px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  transition: 0.25s;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-nav button:hover {
  background: var(--copper);
  border-color: var(--copper);
}
.hero-dots {
  position: absolute;
  bottom: 44px;
  left: 40px;
  z-index: 4;
  display: flex;
  gap: 10px;
  margin: 0;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.25s;
  border: none;
  padding: 0;
  text-indent: -9999px;
}
.hero-dots button.active {
  background: var(--copper);
}

.hero-dots.carousel-indicators {
  justify-content: flex-start;
  left: 40px;
  right: auto;
  margin-left: 0;
  margin-right: 0;
}

/* Per-slide background image */
.slide-bg {
  background:
    linear-gradient(115deg, rgba(20,24,30,0.94) 0%, rgba(26,29,36,0.82) 45%, rgba(26,29,36,0.55) 100%),
    var(--slide-photo) center/cover no-repeat;
}

/* ===== ABOUT ===== */
.about-imgs {
  position: relative;
  min-height: 480px;
}
.about-imgs .im1 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 700px;
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.about-badge {
  position: absolute;
  top: -100px;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--copper);
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(193, 122, 74, 0.5);
}
.about-badge b {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.about-txt p {
  color: var(--muted);
  margin-bottom: 18px;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feat {
  background: var(--cream);
  padding: 22px 20px;
  transition: 0.25s;
}
.feat:hover {
  background: var(--paper);
}
.feat h5 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat h5::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--copper);
  transform: rotate(45deg);
}
.feat p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* ===== STATS ===== */
.stats {
  background: var(--graphite-2);
  border-top: 3px solid var(--copper);
}
.stat {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid #333a45;
}
.stat.no-border {
  border-right: none;
}
.stat b {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: var(--copper-light);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat span {
  color: #aeb6c0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.76rem;
  font-family: "Oswald", sans-serif;
  margin-top: 10px;
  display: block;
}
@media (max-width: 767px) {
  .stat {
    border-right: none;
  }
}

/* ===== PRODUCTS ===== */
.prod {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  height: 100%;
}
.prod:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(20, 24, 30, 0.16);
}
.prod-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.prod:hover .prod-img img {
  transform: scale(1.08);
}
.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--graphite);
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.66rem;
  padding: 5px 12px;
}
.prod-body {
  padding: 24px 24px 26px;
}
.prod-body h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--ink);
  position: relative;
  padding-bottom: 12px;
}
.prod-body h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--copper);
}
.prod-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.prod-link {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s;
}
.prod-link:hover {
  gap: 14px;
  color: var(--copper-light);
}

/* ===== GLOBAL NETWORK ===== */
.net-txt p {
  margin-bottom: 26px;
}
.net-cards {
  display: grid;
  gap: 2px;
  background: #333a45;
  border: 1px solid #333a45;
}
.net-card {
  background: var(--graphite-2);
  padding: 28px 30px;
  transition: 0.25s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.net-card:hover {
  background: var(--graphite-3);
}
.net-num {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  flex-shrink: 0;
}
.net-card h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.net-card p {
  color: #a9b1bb;
  font-size: 1rem;
  margin: 0;
}

/* ===== WHY ===== */
.why {
  padding: 34px 30px;
  background: var(--paper);
  border-left: 4px solid var(--copper);
  box-shadow: 0 8px 26px rgba(20, 24, 30, 0.06);
  transition: 0.28s;
  position: relative;
  height: 100%;
}
.why:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 24, 30, 0.13);
}
.why .idx {
  font-family: "Oswald", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  position: absolute;
  top: 22px;
  right: 26px;
}
.why h4 {
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 25px;
  max-width: 80%;
}
.why p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Icon in place of the number */
.why .wic {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.28s;
}
.why .wic svg {
  width: 24px;
  height: 24px;
  stroke: var(--copper);
  transition: 0.28s;
}
.why:hover .wic {
  border-color: var(--copper);
  background: var(--copper);
}
.why:hover .wic svg {
  stroke: #fff;
}
/* ===== INDUSTRIES ===== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ind {
  background: var(--cream);
  padding: 44px 28px;
  text-align: center;
  transition: 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: translateY(100%);
  transition: 0.35s;
  z-index: 0;
}
.ind:hover::before {
  transform: translateY(0);
}
.ind .ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border: 2px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.ind:hover .ic {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.ind .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--copper);
  transition: 0.3s;
}
.ind:hover .ic svg {
  stroke: #fff;
}
.ind h5 {
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.ind:hover h5 {
  color: #fff;
}
@media (max-width: 980px) {
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG ===== */
.post {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post:hover {
  box-shadow: 0 22px 44px rgba(20, 24, 30, 0.14);
  transform: translateY(-6px);
}
.post-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.post:hover .post-img img {
  transform: scale(1.07);
}
.post-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--copper);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.post-date b {
  font-size: 1.5rem;
  display: block;
}
.post-date span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-cat {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  color: var(--copper);
  margin-bottom: 10px;
}
.post-body h4 {
  font-size: 1.16rem;
  line-height: 1.3;
  margin-bottom: 12px;
  
}
.post-body h4 a {
  color: #000 !important; 
}
.post-body h4 a:hover {
  color: var(--copper) !important;
}
.post-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== NEWSLETTER ===== */
.news {
  background: var(--copper);
  position: relative;
  overflow: hidden;
}
.news::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border: 40px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.news .container {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}
.news h3 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.news p {
  color: rgba(255, 255, 255, 0.9);
}
.news-form {
  display: flex;
  gap: 0;
}
.news-form input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.news-form button {
  background: var(--graphite);
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.news-form button:hover {
  background: var(--graphite-3);
}
.news-note {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 50px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: #696f7b;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top { opacity: 1 !important; visibility: visible !important; transform: none !important; }


.back-top:hover { background: var(--copper); }
.back-top svg { width: 20px; height: 20px; stroke: #fff; }

.back-top {
  pointer-events: auto;
  z-index: 1050;   /* above WhatsApp float and everything else */
}


/* ===== FOOTER ===== */
.site-footer {
  background: #14171d;
  color: #9aa2ac;
  padding: 70px 0 0;
}
.site-footer a{
  color: #9aa2ac;
}
.foot-logo img {
  height: 56px;
  margin-bottom: 20px;
}
.foot-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.foot-soc {
  display: flex;
  gap: 10px;
}
.foot-col h5 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.foot-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--copper);
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-col ul li {
  margin-bottom: 11px;
}
.foot-col ul li a {
  font-size: 1rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9aa2ac;
}
.foot-col ul li a::before {
  content: "\203A";
  color: var(--copper);
  font-size: 1rem;
}
.foot-col ul li a:hover {
  color: var(--copper-light);
  padding-left: 5px;
}
.foot-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.foot-contact li a::before {
  content: none;
}
.foot-contact li svg {
  width: 17px;
  height: 17px;
  stroke: var(--copper);
  flex-shrink: 0;
  margin-top: 3px;
}
.foot-contact a:hover {
  color: var(--copper-light);
}
.foot-bottom {
  border-top: 1px solid #262b33;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
}
.foot-bottom a:hover {
  color: var(--copper-light);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: 0.25s;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVE tweaks that pair with Bootstrap grid ===== */
@media (max-width: 991.98px) {
  .about-imgs {
    min-height: 400px;
  }
  .nav-toggler {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .brand-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .pad {
    padding: 72px 0;
  }
  .slide-inner {
    padding: 80px 0 100px;
  }
  .hero-side {
    width: 52px;
  }
  .hero-nav {
    right: 52px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .topbar .tb-left {
    display: none;
  }
}
