/* ============================================================
   KUMAR ENTERPRISES — TOPBAR + HEADER
   Palette drawn from brand logo (magenta > purple > navy fade)
   ============================================================ */
:root {
  --ke-magenta: #d6127a;
  --ke-purple: #5a2a8f;
  --ke-navy: #211347;
  --ke-navy-deep: #160c30;
  --ke-accent: #c85a28;
  /* rule-line colour lifted from logo divider */
  --ke-accent-dark: #a3441c;
  --ke-light: #faf9fc;
  --ke-grey: #6b6478;
  --ke-border: #ece8f3;
  --ke-card-bg: #fbeee6;
  --kbx-black: #101012;
  --kbx-charcoal: #1e1e21;
  --kbx-silver: #8a8d93;
  --kbx-silver-light: #eceef1;
  --kbx-white: #ffffff;
  --kbx-red: #5a2a8f;
  --crimson:   #d6127a;
  --crimson-d: #d6127a;
  --navy:      #162740;
  --gold:      #5a2a8f;
  --gold-l:    #5a2a8f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--ke-light);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

.ke-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- gradient hairline that "caps" the whole unit ---------- */
.ke-brandline {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--ke-magenta) 0%,
    var(--ke-purple) 50%,
    var(--ke-navy) 100%
  );
}

/* =================== TOP BAR =================== */
.ke-topbar {
  background: var(--ke-navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ke-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  flex-wrap: wrap;
  gap: 8px 0;
}

.ke-topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ke-topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cfc7de;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.ke-topbar__item i {
  color: var(--ke-magenta);
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
}

.ke-topbar__item a {
  color: #e8e3f2;
  transition: color 0.2s ease;
}

.ke-topbar__item a:hover {
  color: var(--ke-accent);
}

.ke-topbar__address {
  display: none;
}

/* revealed at larger breakpoints */

.ke-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ke-topbar__badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(200, 90, 40, 0.15);
  border: 1px solid rgba(200, 90, 40, 0.4);
  color: #f0b78f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.ke-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ke-topbar__social a {
  color: #cfc7de;
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s ease;
}

.ke-topbar__social a:hover {
  color: #fff;
  background: var(--ke-accent);
  border-color: var(--ke-accent);
  transform: translateY(-2px);
}

.ke-topbar__hours {
  display: none;
  color: #a89cbf;
  font-size: 0.78rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 18px;
}

.ke-topbar__hours i {
  color: var(--ke-accent);
  margin-right: 6px;
}

/* =================== HEADER =================== */
.ke-hdr {
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(33, 19, 71, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ke-hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

/* ---- logo/brand ---- */
.ke-hdr__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ke-hdr__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.ke-hdr__brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

.ke-hdr__brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ke-navy);
  letter-spacing: 0.2px;
}

.ke-hdr__brand-tag {
  font-size: 0.68rem;
  color: var(--ke-grey);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---- primary nav ---- */
.ke-nav {
  display: none;
  /* mobile default: hidden, opened via offcanvas */
}

.ke-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ke-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ke-navy);
  border-radius: 6px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.ke-nav__link i.ke-caret {
  font-size: 0.62rem;
  color: var(--ke-accent);
  transition: transform 0.2s ease;
}

.ke-nav__item:hover > .ke-nav__link,
.ke-nav__link.is-active {
  color: var(--ke-accent-dark);
  background: rgba(200, 90, 40, 0.08);
}

.ke-nav__item:hover > .ke-nav__link i.ke-caret {
  transform: rotate(180deg);
}

/* ---- dropdown (level 1) ---- */
.ke-nav__item {
  position: relative;
}

.ke-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-top: 3px solid var(--ke-accent);
  box-shadow: 0 16px 34px rgba(33, 19, 71, 0.16);
  border-radius: 0 0 10px 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1001;
}

.ke-nav__item:hover > .ke-dropdown,
.ke-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ke-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ke-navy);
  border-radius: 6px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.ke-dropdown__link i.ke-item-icon {
  color: var(--ke-accent);
  width: 16px;
  font-size: 0.8rem;
  text-align: center;
  margin-right: 8px;
}

.ke-dropdown__link:hover,
.ke-dropdown__link.is-open {
  background: var(--ke-light);
  color: var(--ke-accent-dark);
}

.ke-dropdown__link .ke-sub-caret {
  font-size: 0.62rem;
  color: var(--ke-grey);
}

/* ---- submenu (level 2, multilevel — NOT a mega menu) ---- */
.ke-submenu-wrap {
  position: relative;
}

.ke-submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 250px;
  background: #fff;
  border-top: 3px solid var(--ke-purple);
  box-shadow: 0 16px 34px rgba(33, 19, 71, 0.18);
  border-radius: 0 10px 10px 10px;
  padding: 8px;
  margin-left: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1002;
}

.ke-submenu-wrap:hover > .ke-submenu,
.ke-submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.ke-submenu__link {
  display: block;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ke-navy);
  border-radius: 6px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.ke-submenu__link:hover {
  background: var(--ke-light);
  color: var(--ke-accent-dark);
}

/* ---- header actions ---- */
.ke-hdr__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ke-hdr__whatsapp {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.ke-hdr__whatsapp:hover {
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}

.ke-hdr__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--ke-accent);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 11px 20px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 8px 18px rgba(200, 90, 40, 0.3);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ke-hdr__cta:hover {
  background: var(--ke-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- mobile toggle ---- */
.ke-hdr__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--ke-border);
  background: #fff;
  color: var(--ke-navy);
  font-size: 1.15rem;
}

/* =================== MOBILE OFFCANVAS NAV =================== */
.ke-mobilenav {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
}

.ke-mobilenav.is-open {
  transform: translateX(0);
}

.ke-mobilenav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ke-border);
}

.ke-mobilenav__head-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ke-navy);
  font-size: 0.95rem;
}

.ke-mobilenav__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ke-border);
  background: var(--ke-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ke-navy);
}

.ke-mobilenav__list {
  padding: 10px;
}

.ke-mobilenav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ke-navy);
  border-radius: 8px;
}

.ke-mobilenav__link:hover,
.ke-mobilenav__link:active {
  background: var(--ke-light);
}

.ke-mobilenav__link i.ke-caret {
  font-size: 0.7rem;
  color: var(--ke-accent);
  transition: transform 0.2s ease;
}

.ke-mobilenav__link.is-open i.ke-caret {
  transform: rotate(180deg);
}

.ke-mobilenav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding-left: 14px;
  border-left: 2px solid var(--ke-border);
  margin-left: 14px;
}

.ke-mobilenav__sub.is-open {
  max-height: 900px;
}

.ke-mobilenav__sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #453a5c;
}

.ke-mobilenav__sub-link.has-children {
  cursor: pointer;
}

.ke-mobilenav__sub .ke-mobilenav__sub {
  margin-left: 8px;
}

.ke-mobilenav__cta-wrap {
  padding: 16px 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ke-mobilenav__cta-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

.ke-mobilenav__cta-primary {
  background: var(--ke-accent);
  color: #fff;
}

.ke-mobilenav__cta-secondary {
  background: #25d366;
  color: #fff;
}

.ke-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 12, 48, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1090;
}

.ke-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =================== RESPONSIVE =================== */
@media (min-width: 576px) {
  .ke-topbar__badge {
    display: flex;
  }
}

@media (min-width: 768px) {
  .ke-topbar__address {
    display: flex;
  }

  .ke-hdr__brand-text {
    display: flex;
  }
}

@media (min-width: 992px) {
  .ke-topbar__hours {
    display: block;
  }

  .ke-nav {
    display: block;
  }

  .ke-hdr__toggle {
    display: none;
  }

  .ke-hdr__whatsapp {
    display: flex;
  }

  .ke-hdr__cta {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .ke-hdr__inner {
    min-height: 70px;
  }

  .ke-hdr__logo-img {
    height: 42px;
  }
}

@media (max-width: 575.98px) {
  .ke-topbar__left {
    gap: 14px;
  }

  .ke-topbar__item span {
    display: none;
  }

  .ke-topbar__item.ke-topbar__phone span {
    display: inline;
  }
}

.svc-section {
  background: var(--ke-light);
  padding: 90px 0 70px;
  font-family: "Inter", sans-serif;
}

.svc-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- top row: badge + title / description ---- */
.svc-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ke-card-bg);
  padding: 6px 18px 6px 6px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.svc-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ke-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.svc-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ke-navy);
  letter-spacing: 0.2px;
}

.svc-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--ke-navy);
  margin: 0;
  max-width: 600px;
}

.svc-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ke-grey);
  max-width: 420px;
  margin: 0;
}

/* ---- carousel cards ---- */

.svc-card {
  background: var(--ke-card-bg);
  border-radius: 180px 180px 24px 24px;
  padding: 56px 28px 40px;
  text-align: center;
  height: 435px;
}

.svc-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--ke-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.svc-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ke-navy);
  margin: 0 0 14px;
}

.svc-card-desc {
  font-size: 0.88rem;
  line-height: 1.68;
  color: var(--ke-grey);
  margin: 0 0 26px;
}

.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ke-navy);
}

.svc-more-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ke-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s ease;
}

.svc-more:hover .svc-more-arrow {
  background: var(--ke-accent);
}

/* ---- owl dots ---- */
.svc-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.svc-carousel .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0;
  background: var(--ke-border);
  border-radius: 50%;
  display: block;
  transition: background 0.2s ease;
}

.svc-carousel .owl-dot.active span {
  background: var(--ke-accent);
  box-shadow: 0 0 0 4px var(--ke-card-bg);
}

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .svc-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 767.98px) {
  .svc-section {
    padding: 60px 0 50px;
  }

  .svc-top {
    align-items: flex-start;
  }

  .svc-title {
    font-size: 1.6rem;
    max-width: 100%;
  }

  .svc-desc {
    max-width: 100%;
  }

  .svc-card {
    border-radius: 120px 120px 20px 20px;
    padding: 44px 22px 34px;
  }
}

.abt-section {
  position: relative;
  background: #fbeee6;
  padding: 60px 0;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* ---- decorative background blobs ---- */
.abt-blob-a {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -180px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    var(--ke-magenta),
    transparent 70%
  );
  opacity: 0.1;
  pointer-events: none;
}

.abt-blob-b {
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 40%,
    var(--ke-purple),
    transparent 70%
  );
  opacity: 0.1;
  pointer-events: none;
}

.abt-watermark {
  position: absolute;
  top: 30px;
  right: 60px;
  font-size: 11rem;
  color: var(--ke-navy);
  opacity: 0.04;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.abt-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

/* ---- badge ---- */
.abt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c200ff26;
  padding: 6px 18px 6px 6px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.abt-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ke-accent), var(--ke-accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transform: rotate(-6deg);
}

.abt-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ke-navy);
  letter-spacing: 0.2px;
}

.abt-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.35;
  color: var(--ke-navy);
  margin: 0 0 30px;
  max-width: 760px;
}

.abt-title-hl {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--ke-magenta), var(--ke-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.abt-title-hl::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10 T150 10 T200 10' stroke='%23c85a28' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ---- FLOAT-BASED WRAP: image floats, all following content flows around it ---- */
.abt-flow::after {
  content: "";
  display: table;
  clear: both;
}

.abt-media {
  position: relative;
  float: left;
  width: 450px;
  margin: 10px 40px 40px 0;
}

.abt-media-backdrop {
  position: absolute;
  inset: -16px -10px 10px 16px;
  background: linear-gradient(
    135deg,
    var(--ke-magenta),
    var(--ke-purple) 55%,
    var(--ke-navy)
  );
  border-radius: 18px 18px 18px 100px;
  transform: rotate(-5deg);
  z-index: 0;
}

.abt-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 18px 18px 18px 100px;
  box-shadow: 0 20px 44px rgba(33, 19, 71, 0.22);
}

.abt-floating-badge {
  position: absolute;
  right: -26px;
  bottom: -22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-left: 4px solid var(--ke-accent);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(33, 19, 71, 0.22);
  padding: 13px 18px 13px 14px;
}

.abt-floating-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ke-magenta), var(--ke-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.abt-floating-badge-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ke-navy);
  margin: 0;
  line-height: 1.2;
}

.abt-floating-badge-label {
  font-size: 0.7rem;
  color: var(--ke-grey);
  margin: 0;
  white-space: nowrap;
}

.abt-lead {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--ke-navy);
  margin: 0 0 16px;
  padding-left: 22px;
  border-left: 3px solid var(--ke-accent);
}

.abt-text {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--ke-grey);
  margin: 0 0 16px;
}

.abt-text:last-of-type {
  margin-bottom: 0;
}

.abt-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.abt-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--ke-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ke-navy);
  box-shadow: 0 4px 12px rgba(33, 19, 71, 0.05);
}

.abt-highlights i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ke-card-bg);
  color: var(--ke-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.abt-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ke-navy);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 26px;
  border-radius: 8px;
  margin-top: 28px;
  box-shadow: 0 14px 28px rgba(33, 19, 71, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.abt-cta:hover {
  background: var(--ke-accent);
  transform: translateY(-2px);
  color: #fff;
}

.abt-cta i {
  font-size: 0.82rem;
}

.stat-section {
  /* background: var(--ke-light); */
  padding: 30px 0 0;
  font-family: "Inter", sans-serif;
}

.stat-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--ke-border);
  border-top: 3px solid var(--ke-accent);
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 10px 26px rgba(33, 19, 71, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(33, 19, 71, 0.14);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ke-magenta), var(--ke-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 6px;
}

.stat-number-value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ke-navy);
}

.stat-number-suffix {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ke-accent);
}

.stat-label {
  font-size: 0.84rem;
  color: var(--ke-grey);
  margin: 0;
}

@media (max-width: 575.98px) {
  .stat-section {
    padding: 50px 0;
  }

  .stat-card {
    padding: 22px 18px;
  }
}

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .abt-title {
    font-size: 1.95rem;
  }

  .abt-watermark {
    font-size: 8rem;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .abt-section {
    padding: 64px 0;
  }

  .abt-title {
    font-size: 1.55rem;
  }

  .abt-media {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 50px;
  }

  .abt-floating-badge {
    right: 6px;
    bottom: -20px;
  }

  .abt-highlights {
    grid-template-columns: 1fr;
  }

  .abt-stats {
    margin-top: 44px;
  }

  .abt-stat {
    margin-bottom: 0;
  }
}

/* ===================================================
   PRODUCT LISTING SECTION (copy from here)
   =================================================== */
.kbx-products {
  background: #f7f7f8;
  padding: 50px 0;
  overflow: hidden;
}

/* ---------- section heading ---------- */
.kbx-products__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}

.kbx-products__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-white);
  border: 1px solid #e7e7ea;
  color: var(--kbx-red);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}

.kbx-products__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--kbx-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
}

.kbx-products__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6a6c72;
  margin: 0;
}

/* ---------- filter tabs ---------- */
.kbx-tabs {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  background: var(--kbx-white);
  border: 1px solid #e7e7ea;
  border-radius: 40px;
  padding: 6px;
  margin: 36px auto 50px;
}

.kbx-tabs__pill {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: var(--kbx-black);
  border-radius: 30px;
  transition:
    left 0.35s cubic-bezier(0.65, 0, 0.35, 1),
    width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}

.kbx-tab {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  font-family: var(--kbx-font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--kbx-black);
  padding: 11px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.kbx-tab.kbx-tab--active {
  color: var(--kbx-white);
}

/* ---------- grid ---------- */
.kbx-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ---------- card ---------- */
.kbx-card {
  position: relative;
  background: var(--kbx-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 16, 18, 0.06);
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.kbx-card.kbx-card--inview {
  opacity: 1;
  transform: translateY(0);
}

.kbx-card.kbx-card--hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.kbx-card:hover {
  box-shadow: 0 22px 40px rgba(16, 16, 18, 0.14);
}

.kbx-card__imgwrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
}

.kbx-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kbx-card:hover .kbx-card__img {
  transform: scale(1.1) rotate(0.3deg);
}

.kbx-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 18, 0) 40%,
    rgba(16, 16, 18, 0.75) 100%
  );
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.kbx-card:hover .kbx-card__overlay {
  opacity: 0.9;
}

.kbx-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(16, 16, 18, 0.55);
  backdrop-filter: blur(4px);
  color: var(--kbx-white);
  font-family: var(--kbx-font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

.kbx-card__quick {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kbx-white);
  color: var(--kbx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-8px) scale(0.8);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
  text-decoration: none;
}

.kbx-card:hover .kbx-card__quick {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.kbx-card__quick:hover {
  background: var(--kbx-red);
  color: var(--kbx-white);
}

.kbx-card__body {
  position: relative;
  padding: 22px 22px 24px;
}

.kbx-card__index {
  position: absolute;
  top: -46px;
  right: 16px;
  font-family: var(--kbx-font-heading);
  font-size: 64px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #e6e6e8;
  line-height: 1;
  z-index: 1;
  transition:
    transform 0.4s ease,
    -webkit-text-stroke-color 0.4s ease;
}

.kbx-card:hover .kbx-card__index {
  -webkit-text-stroke-color: var(--kbx-red);
  transform: translateY(-4px);
}

.kbx-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--kbx-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--kbx-black);
  margin: 0 0 8px;
}

.kbx-card__desc {
  position: relative;
  z-index: 2;
  font-size: 13.8px;
  line-height: 1.6;
  color: #75767b;
  border-bottom: 1px solid #d41a7175;
  padding: 0px 0 10px;
}

.kbx-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--kbx-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--kbx-black);
  text-decoration: none;
}

.kbx-card__link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.kbx-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--kbx-red);
  transition: width 0.3s ease;
}

.kbx-card:hover .kbx-card__link {
  color: var(--kbx-red);
}

.kbx-card:hover .kbx-card__link::after {
  width: 100%;
}

.kbx-card:hover .kbx-card__link i {
  transform: translateX(4px);
}

/* ---------- responsive grid ---------- */
@media (max-width: 991.98px) {
  .kbx-products {
    padding: 70px 0;
  }

  .kbx-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 575.98px) {
  .kbx-products__grid {
    grid-template-columns: 1fr;
  }

  .kbx-tabs {
    padding: 5px;
    gap: 2px;
  }

  .kbx-tab {
    padding: 9px 14px;
    font-size: 11.5px;
  }
}

/* PRODUCT LISTING SECTION (copy till here) */

.wcu-section {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Inter", sans-serif;
}
.wcu-card {
  background: linear-gradient(160deg, var(--ke-light), var(--ke-card-bg) 130%);
  border-radius: 28px;
  padding: 56px 48px;
}

/* ---------------- LEFT: intro + checklist + CTA ---------------- */
.wcu-pill {
  display: inline-block;
  background: #ffffff;
  border: 1px solid var(--ke-border);
  color: var(--ke-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.wcu-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--ke-navy);
  margin: 0 0 16px;
}
.wcu-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ke-grey);
  margin: 0 0 26px;
  max-width: 380px;
}
.wcu-checklist {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}
.wcu-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ke-navy);
  padding: 7px 0;
}
.wcu-checklist i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ke-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.wcu-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ke-navy);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 8px 8px 24px;
  border-radius: 40px;
  transition: background 0.2s ease;
}
.wcu-cta:hover {
  background: var(--ke-accent);
  color: #fff;
}
.wcu-cta-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ke-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ---------------- CENTER: image + floating badge ---------------- */
.wcu-media {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.wcu-img {
  display: block;
  width: 100%;
  border-radius: 200px 200px 20px 20px;
  box-shadow: 0 24px 50px rgba(33, 19, 71, 0.18);
}
.wcu-seal {
  position: absolute;
  left: -26px;
  bottom: 40px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ke-magenta), var(--ke-accent));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  box-shadow: 0 16px 34px rgba(33, 19, 71, 0.25);
}
.wcu-seal::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1.5px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.wcu-seal i {
  font-size: 1.1rem;
}
.wcu-seal span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ---------------- RIGHT: standards + credibility blocks ---------------- */
.wcu-lead {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--ke-navy);
  margin: 0 0 34px;
}
.wcu-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.wcu-feature:last-child {
  margin-bottom: 0;
}
.wcu-feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--ke-border);
  color: var(--ke-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(33, 19, 71, 0.06);
}
.wcu-feature-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ke-navy);
  margin: 0 0 6px;
}
.wcu-feature-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ke-grey);
  margin: 0;
}

/* ---------------- responsive ---------------- */
@media (max-width: 1199.98px) {
  .wcu-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 991.98px) {
  .wcu-card {
    padding: 44px 28px;
  }
  .wcu-media {
    margin: 40px auto;
  }
}
@media (max-width: 767.98px) {
  .wcu-section {
    padding: 50px 14px;
  }
  .wcu-card {
    padding: 36px 22px;
    border-radius: 22px;
  }
  .wcu-desc {
    max-width: 100%;
  }
  .wcu-seal {
    width: 96px;
    height: 96px;
    left: -14px;
    bottom: 20px;
  }
}

.faq-section {
  background: var(--ke-light);
  padding: 90px 0;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}
.faq-container {
  width: 100%;
  padding: 0 20px;
}

/* ---------------- LEFT: product visual ---------------- */
.faq-pill {
  display: inline-block;
  background: var(--ke-card-bg);
  color: var(--ke-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.faq-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.32;
  color: var(--ke-navy);
  margin: 0 0 16px;
  max-width: 380px;
}
.faq-lead {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ke-grey);
  margin: 0 0 40px;
  max-width: 360px;
}

.faq-media {
  position: relative;
  max-width: 280px;
}
.faq-media-backdrop {
  position: absolute;
  inset: -18px -14px 14px 14px;
  background: linear-gradient(
    150deg,
    var(--ke-magenta),
    var(--ke-purple) 55%,
    var(--ke-navy)
  );
  border-radius: 26px;
  transform: rotate(-4deg);
  z-index: 0;
}
.faq-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(33, 19, 71, 0.28));
}
.faq-media-tag {
  position: absolute;
  left: -18px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-left: 4px solid var(--ke-accent);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(33, 19, 71, 0.2);
  padding: 11px 16px 11px 12px;
}
.faq-media-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ke-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.faq-media-tag-text p {
  margin: 0;
  line-height: 1.25;
}
.faq-media-tag-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ke-navy);
}
.faq-media-tag-label {
  font-size: 0.68rem;
  color: var(--ke-grey);
}

/* ---------------- RIGHT: accordion ---------------- */
.faq-item {
  background: #ffffff;
  border: 1px solid var(--ke-border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(33, 19, 71, 0.05);
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  border: none;
  padding: 19px 22px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ke-navy);
  cursor: pointer;
}
.faq-btn:not(.collapsed) {
  color: var(--ke-accent-dark);
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ke-card-bg);
  color: var(--ke-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.faq-btn:not(.collapsed) .faq-icon {
  background: var(--ke-accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ke-grey);
}

/* ---------------- responsive ---------------- */
@media (max-width: 991.98px) {
  .faq-title {
    font-size: 1.7rem;
  }
  .faq-media {
    margin: 0 auto 50px;
  }
  .faq-media-backdrop {
    inset: -14px -10px 10px 10px;
  }
}
@media (max-width: 575.98px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    max-width: 100%;
  }
  .faq-lead {
    max-width: 100%;
  }
  .faq-btn {
    padding: 16px 16px;
    font-size: 0.88rem;
  }
}

.test-section {
  background: var(--ke-card-bg);
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}
.test-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- header ---- */
.test-head {
  text-align: center;
  margin-bottom: 56px;
}
.test-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--ke-navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(33, 19, 71, 0.08);
  margin-bottom: 22px;
}
.test-pill i {
  color: var(--ke-accent);
  font-size: 0.5rem;
}
.test-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--ke-navy);
  margin: 0 auto;
  max-width: 680px;
}

/* ---- Owl Carousel equal-height fix ---- */
.test-carousel .owl-stage {
  display: flex;
}
.test-carousel .owl-item {
  display: flex;
  height: auto;
}
.test-carousel .owl-item > .test-item {
  width: 100%;
  height: 100%;
}

/* ---- column + boxes ---- */
.test-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
}

.test-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(33, 19, 71, 0.06);
  transition: box-shadow 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.test-item:hover .test-box {
  box-shadow: 0 16px 36px rgba(33, 19, 71, 0.12);
}

/* rating + quote text box */
.test-stars {
  color: var(--ke-accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.test-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ke-navy);
  margin: 0;
}

/* profile box */
.test-profile {
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.test-profile-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  perspective: 400px;
}
.test-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  transform: rotateY(0deg);
}
.test-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ke-navy);
  margin: 0;
}
.test-role {
  font-size: 0.78rem;
  color: var(--ke-grey);
  margin: 0;
}
.test-quote-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ke-light);
  color: var(--ke-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

/* ---- hover effect: quote fill + avatar flip, together ---- */
.test-item:hover .test-quote-icon {
  background: var(--ke-accent);
  color: #ffffff;
  transform: scale(1.06);
}
.test-item:hover .test-avatar-img {
  transform: rotateY(180deg);
}

/* ---- owl dots ---- */
.test-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.test-carousel .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: var(--ke-border);
  display: block;
  transition: background 0.2s ease;
}
.test-carousel .owl-dot.active span {
  background: var(--ke-accent);
}

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .test-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .test-section {
    padding: 56px 0;
  }
  .test-title {
    font-size: 1.5rem;
  }
}

.cta-section {
  background: var(--ke-light);
  padding: 90px 0;
  font-family: "Inter", sans-serif;
}
.cta-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------- LEFT: intro + details + map ---------------- */
.cta-pill {
  display: inline-block;
  background: var(--ke-card-bg);
  color: var(--ke-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.cta-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.3;
  color: var(--ke-navy);
  margin: 0 0 16px;
  max-width: 420px;
}
.cta-desc {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--ke-grey);
  margin: 0 0 34px;
  max-width: 420px;
}

.cta-details {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.cta-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.cta-details li:last-child {
  margin-bottom: 0;
}
.cta-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ke-magenta), var(--ke-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.cta-detail-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ke-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 3px;
}
.cta-detail-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ke-navy);
  margin: 0;
  line-height: 1.5;
}
.cta-detail-value a {
  color: inherit;
}
.cta-detail-value a:hover {
  color: var(--ke-accent);
}

.cta-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(33, 19, 71, 0.1);
  line-height: 0;
}
.cta-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---------------- RIGHT: form card ---------------- */
.cta-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 20px 50px rgba(33, 19, 71, 0.1);
}
.cta-form-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ke-navy);
  margin: 0 0 6px;
}
.cta-form-sub {
  font-size: 0.88rem;
  color: var(--ke-grey);
  margin: 0 0 28px;
}

.cta-field {
  margin-bottom: 20px;
}
.cta-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ke-navy);
  margin-bottom: 8px;
}
.cta-input-wrap {
  position: relative;
}
.cta-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--ke-accent);
  font-size: 0.88rem;
}
.cta-input,
.cta-select,
.cta-textarea {
  width: 100%;
  background: var(--ke-light);
  border: 1px solid var(--ke-border);
  border-radius: 10px;
  padding: 13px 16px 13px 44px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--ke-navy);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.cta-select {
  padding-left: 44px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.cta-textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 150px;
}
.cta-input:focus,
.cta-select:focus,
.cta-textarea:focus {
  outline: none;
  border-color: var(--ke-accent);
  box-shadow: 0 0 0 3px rgba(200, 90, 40, 0.14);
  background: #ffffff;
}

.cta-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ke-navy);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 24px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(33, 19, 71, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.cta-submit:hover {
  background: var(--ke-accent);
  transform: translateY(-2px);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1199.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.98px) {
  .cta-form-card {
    margin-top: 44px;
  }
}
@media (max-width: 575.98px) {
  .cta-section {
    padding: 56px 0;
  }
  .cta-form-card {
    padding: 32px 22px;
  }
  .cta-title {
    font-size: 1.6rem;
  }
}

.ftr {
  position: relative;
  background: var(--ke-navy-deep);
  padding-top: 0;
  overflow: hidden;
}
.ftr-brandline {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--ke-magenta) 0%,
    var(--ke-purple) 50%,
    var(--ke-navy) 100%
  );
}

/* ---- decorative background ---- */
.ftr-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -160px;
  right: -120px;
  background: radial-gradient(
    circle at 35% 35%,
    var(--ke-magenta),
    transparent 70%
  );
  opacity: 0.14;
  pointer-events: none;
}
.ftr-watermark {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: 13rem;
  color: #ffffff;
  opacity: 0.03;
  transform: rotate(-6deg);
  pointer-events: none;
}

.ftr-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- newsletter strip ---- */
.ftr-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(120deg, var(--ke-magenta), var(--ke-purple));
  border-radius: 20px;
  padding: 34px 40px;
  margin-top: 56px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.ftr-newsletter-text p {
  margin: 0;
}
.ftr-newsletter-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 6px !important;
}
.ftr-newsletter-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
}
.ftr-newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  max-width: 440px;
}
.ftr-newsletter-form input {
  flex: 1;
  min-width: 180px;
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 0.88rem;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.ftr-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.ftr-newsletter-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
}
.ftr-newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ke-navy-deep);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.ftr-newsletter-form button:hover {
  background: var(--ke-accent);
}

/* ---- main columns ---- */
.ftr-main {
  padding: 56px 0 40px;
}
.ftr-brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 0 16px;
  background: linear-gradient(
    90deg,
    var(--ke-magenta),
    var(--ke-purple) 60%,
    #9c8fd9
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.3px;
}
.ftr-brand-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: #b6adcb;
  margin: 0 0 22px;
  max-width: 300px;
}
.ftr-social {
  display: flex;
  gap: 10px;
}
.ftr-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4dff0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.ftr-social a:hover {
  background: var(--ke-accent);
  border-color: var(--ke-accent);
  color: #fff;
  transform: translateY(-3px);
}

.ftr-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 12px;
}
.ftr-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--ke-accent);
}

.ftr-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-links li {
  margin-bottom: 13px;
}
.ftr-links li:last-child {
  margin-bottom: 0;
}
.ftr-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: #b6adcb;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.ftr-links a i {
  font-size: 0.6rem;
  color: var(--ke-accent);
}
.ftr-links a:hover {
  color: #ffffff;
  gap: 12px;
}

.ftr-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.87rem;
  color: #b6adcb;
  line-height: 1.6;
}
.ftr-contact li:last-child {
  margin-bottom: 0;
}
.ftr-contact i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ke-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.ftr-contact a {
  color: inherit;
}
.ftr-contact a:hover {
  color: #ffffff;
}

/* ---- bottom bar ---- */
.ftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ftr-copy {
  font-size: 0.82rem;
  color: #9186a8;
  margin: 0;
}
.ftr-copy a {
  color: #c7bee0;
}
.ftr-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr-legal {
  display: flex;
  gap: 20px;
}
.ftr-legal a {
  font-size: 0.82rem;
  color: #9186a8;
  transition: color 0.2s ease;
}
.ftr-legal a:hover {
  color: #ffffff;
}
.ftr-msme {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4dff0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.ftr-msme i {
  color: var(--ke-accent);
}

/* ---- back to top ---- */
.ftr-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ke-accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.2s ease;
  z-index: 999;
}
.ftr-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ftr-top-btn:hover {
  background: var(--ke-accent-dark);
}

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .ftr-newsletter {
    padding: 28px 26px;
  }
}
@media (max-width: 767.98px) {
  .ftr-newsletter {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }
  .ftr-newsletter-form {
    max-width: 100%;
    width: 100%;
  }
  .ftr-main {
    padding: 44px 0 30px;
  }
  .ftr-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* optional direction variants */
.reveal.reveal-left {
  transform: translateX(-40px);
}
.reveal.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal.reveal-zoom {
  transform: scale(0.92);
}
.reveal.reveal-zoom.is-visible {
  transform: scale(1);
}
