@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --heading-font: "Rubik", sans-serif;
  --body-font: "Rubik", sans-serif;
  --theme-color: #cea85d;
  --secondary-color: #f1dcc6;
  --theme-bg-light: #f9f9f9;
  --body-text-color: #333435;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-green: #719430;
  --color-blue: #0049d0;
  --color-yellow: #f9cc47;
  --hero-overlay-color: #01060f;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #f5faff;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #fdf6e3;
  --dark: #111820;
  --dark-2: #1a2332;
  --grey-bg: #f4f5f3;
  --white: #ffffff;
  --text: #0f1923;
  --muted: #7a8899;
  --border: #e4e6e4;
}

body {
  /* padding-top: 100px; */
  color: var(--body-text-color);
  overflow-x: hidden !important;
  font-family: var(--body-font);
  background: #f5f7fb;
}

/* scrollTop */

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 1;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: var(--theme-color);
}

.py-60 {
  padding: 60px 0px !important;
}

.py-80 {
  padding: 80px 0px;
}

@media (max-width: 768px) {
  .py-80 {
    padding: 40px 0px;
  }
}

a {
  color: var(--body-text-color);
}

a:hover {
  color: var(--theme-color) !important;
}

img {
  max-width: 100%;
  height: auto;
}

.fas-icon {
  color: var(--theme-color);
}

ul {
  list-style-type: none;
  padding-left: 0px;
}

/* .card{
  background-color: var(--color-white);
  border: none;
  border-radius: 15px;
} */

/* Header Section */
.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #cea85d !important;
}
.fixed-header-info {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a3cff;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  z-index: 1040;
  box-shadow: 0 5px 20px rgba(26, 60, 255, 0.3);
}

.fixed-header-info i {
  margin-right: 5px;
}

.header-animate {
  animation: slideDown 0.3s;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-toggler {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggler .fa-bars {
  color: var(--theme-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background-color: var(--theme-color);
}

.navbar-toggler:hover .fa-bars {
  color: white;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(26, 60, 255, 0.25);
}
.toggler-white {
  border-color: white;
}
.toggler-white .fa-bars {
  color: white;
}
.toggler-white:hover {
  background-color: white;
}
.toggler-white:hover .fa-bars {
  color: var(--theme-color);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #0b153b !important;
}
.navbar-brand img {
  height: 65px;
  width: auto;
}
.nav-link {
  color: #5a6a85 !important;
  font-weight: 500;
  margin: 0 0.2rem;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  display: block;
}
.nav-link:hover {
  color: #0b153b !important;
}
.nav-item {
  pointer-events: auto !important;
  position: relative;
  z-index: auto;
}

.navbar-nav .dropdown-menu {
  pointer-events: auto !important;
}

.navbar-nav .dropdown-menu:not(.show) {
  pointer-events: none !important;
}

.navbar-nav .dropdown-menu.show {
  z-index: 9999 !important;
  pointer-events: auto !important;
}
.btn-outline-secondary {
  border-color: #dee4ee;
  color: #1e2a4a;
  font-weight: 500;
  border-radius: 40px;
  padding: 0.45rem 1.4rem;
}
.btn-outline-secondary:hover {
  background-color: #f0f4fe;
  border-color: #c0cef0;
}
.btn-primary {
  background: #1a3cff;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  padding: 0.5rem 1.8rem;
  box-shadow: 0 8px 18px -6px rgba(26, 60, 255, 0.25);
}
.btn-primary:hover {
  background: #0f2ed1;
}
.display-5 {
  font-weight: 700;
  color: #0b1739;
  letter-spacing: -0.02em;
}

.btn-theme {
  background-color: var(--theme-color);
  color: var(--color-white);
  font-size: 16px;
  border: none;
  text-decoration: none;
  border-radius: 25px;
  padding: 10px 20px;
}

.btn-theme i {
  vertical-align: middle;
}

.btn-theme:hover {
  color: var(--color-white) !important;
  background-color: var(--color-dark);
}

/* Hero Section */

.hero {
  padding: 60px 0;
  background: #eef3ef;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-heading {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  color: #0a0a0a;
}

@media (max-width: 510px) {
  .hero-heading {
    font-size: 36px;
  }
  .highlight::after {
    height: 8px !important;
  }
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 14px;
  background: var(--theme-color);
  z-index: -1;
  border-radius: 8px;
}

.hero-para {
  margin-top: 22px;
  color: #51635b;
  font-size: 16px;
  max-width: 520px;
}

.demo-btn {
  border: 1px solid var(--theme-color);
  padding: 12px 26px;
  border-radius: 40px;
  margin-right: 12px;
  font-weight: 600;
}

@media (max-width: 510px) {
  .demo-btn {
    padding: 10px 5px;
    font-size: 13px;
  }
}

.hero-right {
  position: relative;
  height: 540px;
}

.image-bg {
  position: absolute;
  right: 0px;
  top: 0;
  width: 260px;
  height: 360px;
  background: linear-gradient(180deg, #a6d0e4, #bde4c1);
  border-radius: 30px;
  z-index: 1;
}

.person-img {
  position: absolute;
  right: 0px;
  top: 20px;
  width: 260px;
  border-radius: 30px;
  z-index: 2;
}

.ai-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 270px;
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.analysis-box {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 500px;
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.chart-img img {
  width: 100%;
}

.deposit-box {
  position: absolute;
  right: -35px;
  bottom: 270px;
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  width: 250px;
  z-index: 4;
}

.deposit-box img {
  width: 100%;
  display: block;
}

/* Why Choose  */

.feature-section {
  background: #f6f7f9;
}

.feature-item {
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.feature-item.active {
  background: #fffaf1;
  border-left: 4px solid var(--theme-color);
}

.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.right-box {
  background: #e9ecef;
  border-radius: 18px;
}

.content-box {
  display: none;
  animation: fade 0.35s ease;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--theme-color);
  transition: 0.3s;
}

.feature-item.active .icon-box {
  background: #000000;
  color: var(--theme-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.content-box.active {
  display: block;
}

.feature-item {
  cursor: pointer;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Breadcrumb Hero ===== */

.page-banner {
  position: relative;
  padding: 60px 0px;
  background: #f8fafc;
  text-align: center;
  overflow: hidden;
}

/* grid background */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
  z-index: 0;
}

.finance-hero {
    background: #f3f4f6;
    min-height: 650px;
    display: flex;
    align-items: center;
  }

  .usecase-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
  }

  .usecase-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .usecase-box .icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--theme-color);
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .usecase-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
  }

  .usecase-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
  }

  /* button */
  .explore-btn {
    background: #c6f36a;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    transition: .3s;
  }

  .explore-btn:hover {
    background: #b5e95c;
    transform: translateY(-2px);
  }

  .hero-right {
    min-height: 520px;
    position: relative;
  }

  /* Bottom Image */
  .img-bottom {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 480px;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.12));
    animation: float1 6s ease-in-out infinite;
  }

  /* Top Image (Card) */
  .img-top {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 360px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
    animation: float2 6s ease-in-out infinite;
  }

  /* Floating Animations */
  @keyframes float1 {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  @keyframes float2 {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(15px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  @media(max-width:991px) {

    .hero-title {
      font-size: 38px;
      text-align: center;
    }

    .hero-list {
      text-align: center;
      list-style-position: inside;
    }

    .explore-btn {
      display: block;
      margin: auto;
    }

    .finance-hero {
      padding-top: 60px;
    }

    .hero-img {
      margin-top: 20px;
      max-width: 100%;
    }

    .hero-right {
      min-height: auto;
      text-align: center;
    }

    .img-bottom,
    .img-top {
      position: relative;
      max-width: 100%;
      left: 0;
      right: 0;
      bottom: 0;
      margin-bottom: 20px;
    }
  }

  @media (min-width:510px) and (max-width:768px) {
    .finance-hero {
      padding-bottom: 180px;
    }
  }

  /* ── SECTION ── */
  /* Section */
  .wws-section {
    background: #f0f2f0;
  }

  /* Heading underline */
  .gold-bar {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C9A84C, #e8c97a);
    border-radius: 2px;
    margin: 12px auto 0;
  }

  /* Card */
  .wws-card {
    background: #fff;
    border: 1px solid #ebebeb !important;
    border-radius: 14px !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  /* Left gold border on hover */
  .wws-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #C9A84C, #e8c97a);
    border-radius: 14px 0 0 14px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
  }

  /* Shine sweep */
  .wws-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(201, 168, 76, 0.07), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
  }

  .wws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(201, 168, 76, 0.12) !important;
    border-color: rgba(201, 168, 76, 0.45) !important;
  }

  .wws-card:hover::before {
    transform: scaleY(1);
  }

  .wws-card:hover::after {
    left: 130%;
  }

  /* Icon box */
  .icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #FDF6E3;
    border: 1.5px solid #e8d5a3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.28s, border-color 0.28s, transform 0.28s;
    font-size: 22px;
    color: #C9A84C;
  }

  .wws-card:hover .icon-box {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #fff;
    transform: scale(1.08) rotate(-3deg);
  }

  /* Number label */
  .card-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C9A84C;
    opacity: 0.6;
    text-transform: uppercase;
    transition: opacity 0.25s;
  }

  .wws-card:hover .card-num {
    opacity: 1;
  }

  /* Title */
  .card-title-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    transition: color 0.25s;
    margin: 0;
  }

  .wws-card:hover .card-title-text {
    color: #B8912A;
  }

  /* Arrow button */
  .card-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s, border-color 0.25s;
    font-size: 13px;
    color: #888;
  }

  .wws-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #C9A84C;
    border-color: #C9A84C;
    color: #fff;
  }

  /* Fade-up animation */
  .fade-up {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
  }

  .fade-up:nth-child(1) {
    animation-delay: 0.04s;
  }

  .fade-up:nth-child(2) {
    animation-delay: 0.10s;
  }

  .fade-up:nth-child(3) {
    animation-delay: 0.16s;
  }

  .fade-up:nth-child(4) {
    animation-delay: 0.22s;
  }

  .fade-up:nth-child(5) {
    animation-delay: 0.28s;
  }

  .fade-up:nth-child(6) {
    animation-delay: 0.34s;
  }

  .fade-up:nth-child(7) {
    animation-delay: 0.40s;
  }

  .fade-up:nth-child(8) {
    animation-delay: 0.46s;
  }

  .fade-up:nth-child(9) {
    animation-delay: 0.52s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .security-section {
    background: linear-gradient(135deg, #cea85d 0%, #e2bc72 30%, #d4ae60 60%, #b8922a 100%);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
  }

  /* Subtle noise/texture overlay */
  .security-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
  }

  /* Top-left deep orb */
  .orb-tl {
    position: absolute;
    top: -140px;
    left: -140px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  /* Bottom-right deep orb */
  .orb-br {
    position: absolute;
    bottom: -140px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 60, 0, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  /* Diagonal shine streak */
  .shine {
    position: absolute;
    top: -60px;
    left: -100px;
    width: 200%;
    height: 180px;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
  }

  .security-section .container {
    position: relative;
    z-index: 1;
  }

  /* ── Badge Grid ── */
  .badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
  }

  .badge-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    width: 148px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(100, 60, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.5s ease both;
  }

  /* Shimmer top line */
  .badge-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(206, 168, 93, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .badge-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(100, 60, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .badge-box:hover::after {
    opacity: 1;
  }

  .badge-box:nth-child(1) {
    animation-delay: .05s
  }

  .badge-box:nth-child(2) {
    animation-delay: .12s
  }

  .badge-box:nth-child(3) {
    animation-delay: .19s
  }

  .badge-box:nth-child(4) {
    animation-delay: .26s
  }

  .badge-box:nth-child(5) {
    animation-delay: .33s
  }

  .badge-box:nth-child(6) {
    animation-delay: .40s
  }

  .badge-box img {
    max-height: 54px;
    max-width: 112px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .badge-box:hover img {
    transform: scale(1.05);
  }

  .fb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }

  /* ── Divider ── */
  .vertical-divider {
    width: 1px;
    height: 240px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55), transparent);
    margin: 0 auto;
  }

  /* ── Text Side ── */
  .text-side {
    padding-left: 44px;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
  }

  .eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
  }

  .text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.28;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(100, 60, 0, 0.25);
  }

  .white-rule {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    margin-bottom: 18px;
  }

  .text-side p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.82;
    max-width: 420px;
    font-weight: 300;
  }

  .trust-bar {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .trust-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-right: 4px;
  }

  .trust-pill {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 4px 13px;
    backdrop-filter: blur(4px);
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 992px) {
    .vertical-divider {
      display: none;
    }

    .text-side {
      padding-left: 0;
      margin-top: 44px;
    }
  }

  @media (max-width: 576px) {
    .badges-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .badge-box {
      width: 130px;
      height: 90px;
    }

    .text-side h2 {
      font-size: 1.65rem;
    }
  }

/*About Us*/

.founder-section {
        /* background: linear-gradient(135deg, #f8f6f1, #ffffff); */
        padding: 80px 0;
    }

    .founder-card {
        background: #ffffff;
        border-radius: 20px;
        /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
        overflow: hidden;
        transition: 0.4s ease;
    }

    .founder-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 70px rgba(184, 134, 11, 0.15);
    }

    .founder-img {
        position: relative;
        height: 100%;
    }

    .founder-img img {
        width: 100%;
        /* height: 100%; */
        height: 450px;
        object-fit: cover;
        /* border-radius: 20px 0 0 20px; */
    }

    .gold-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #b8860b, #d4a017);
        margin-bottom: 20px;
    }

    .founder-name {
        color: #b8860b;
        font-weight: 700;
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .founder-content p {
        color: #555;
        line-height: 1.8;
        font-size: 15px;
    }

    @media (max-width: 991px) {
        .founder-img img {
            border-radius: 20px 20px 0 0;
        }
    }
    
    /* Our Company */
    
    .jab-wrap {
        --jab-gold: #C8962B;
        --jab-gold-lt: #E8B84B;
        --jab-gold-pale: #F5E9C8;
        --jab-gold-dim: rgba(200, 150, 43, 0.15);
        --jab-dark: #1A1A1A;
        --jab-dark2: #2D2D2D;
        --jab-dark3: #111;
        --jab-gray: #F7F7F5;
        --jab-text: #3A3A3A;
        --jab-muted: #777;
        --jab-border: #E5E0D5;
        font-family: 'DM Sans', sans-serif;
        color: var(--jab-text);
        background: #fff;
        overflow-x: hidden;
    }

    /* ─── GLOBAL ANIMATIONS ─────────────────────────── */
    @keyframes jabFadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes jabFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes jabSlideL {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes jabSlideR {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes jabScaleIn {
        from {
            opacity: 0;
            transform: scale(.88);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes jabCountUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes jabLineDraw {
        from {
            width: 0;
        }

        to {
            width: 52px;
        }
    }

    @keyframes jabOrbit {
        0% {
            transform: rotate(0deg) translateX(55px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(55px) rotate(-360deg);
        }
    }

    @keyframes jabPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(200, 150, 43, .45);
        }

        50% {
            box-shadow: 0 0 0 14px rgba(200, 150, 43, 0);
        }
    }

    @keyframes jabFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes jabShimmer {
        0% {
            background-position: -200% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    @keyframes jabBgScroll {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 60px 60px;
        }
    }

    @keyframes jabMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .jab-anim-up {
        animation: jabFadeUp .75s cubic-bezier(.22, 1, .36, 1) both;
    }

    .jab-anim-l {
        animation: jabSlideL .75s cubic-bezier(.22, 1, .36, 1) both;
    }

    .jab-anim-r {
        animation: jabSlideR .75s cubic-bezier(.22, 1, .36, 1) both;
    }

    .jab-anim-sc {
        animation: jabScaleIn .75s cubic-bezier(.22, 1, .36, 1) both;
    }

    .d1 {
        animation-delay: .1s;
    }

    .d2 {
        animation-delay: .22s;
    }

    .d3 {
        animation-delay: .36s;
    }

    .d4 {
        animation-delay: .5s;
    }

    .d5 {
        animation-delay: .65s;
    }

    .d6 {
        animation-delay: .8s;
    }

    /* Scroll reveal */
    .jab-reveal {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
         font-family: 'Sora', sans-serif;
    }

    .jab-reveal.jab-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .jab-reveal-l {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .jab-reveal-l.jab-visible {
        opacity: 1;
        transform: translateX(0);
    }

    .jab-reveal-r {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .jab-reveal-r.jab-visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* ─── NAVBAR ────────────────────────────────────── */
    .jab-nav {
        background: #fff;
        border-bottom: 1px solid var(--jab-border);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
        transition: box-shadow .3s;
    }

    .jab-nav-link {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--jab-dark) !important;
        padding: .5rem .9rem !important;
        transition: color .2s;
    }

    .jab-nav-link:hover,
    .jab-nav-link.active {
        color: var(--jab-gold) !important;
    }

    .jab-btn-demo {
        background: var(--jab-gold);
        color: #fff !important;
        border-radius: 6px;
        padding: 9px 22px !important;
        font-weight: 600;
        font-size: 13.5px;
        transition: background .2s, transform .15s;
        text-decoration: none;
    }

    .jab-btn-demo:hover {
        background: var(--jab-gold-lt);
        transform: translateY(-2px);
    }

    /* ─── HERO ──────────────────────────────────────── */
    .jab-hero {
        background: linear-gradient(135deg, #fff 0%, #F5E9C8 100%);
        min-height: 92vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    /* Animated grid background — light */
    .jab-hero-grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(200, 150, 43, .09) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 150, 43, .09) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: jabBgScroll 6s linear infinite;
    }

    /* Soft gold radial glow — lighter for light bg */
    .jab-hero-glow {
        position: absolute;
        width: 700px;
        height: 700px;
        right: -160px;
        top: 50%;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(200, 150, 43, .18) 0%, transparent 70%);
        pointer-events: none;
    }

    .jab-hero-glow2 {
        position: absolute;
        width: 400px;
        height: 400px;
        left: -80px;
        bottom: -100px;
        background: radial-gradient(circle, rgba(200, 150, 43, .10) 0%, transparent 70%);
        pointer-events: none;
    }

    .jab-hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(200, 150, 43, .14);
        border: 1px solid rgba(200, 150, 43, .45);
        color: var(--jab-gold);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 24px;
    }

    .jab-hero-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--jab-gold);
        animation: jabPulse 2s infinite;
    }

    .jab-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(38px, 5.5vw, 68px);
        font-weight: 900;
        color: var(--jab-dark);
        line-height: 1.1;
        letter-spacing: -.5px;
    }

    .jab-hero h1 em {
        font-style: italic;
        color: var(--jab-gold);
    }

    .jab-hero-sub {
        color: var(--jab-muted);
        font-size: 16px;
        line-height: 1.85;
        max-width: 560px;
        margin-top: 20px;
    }

    .jab-hero-divider {
        width: 52px;
        height: 3px;
        background: linear-gradient(90deg, var(--jab-gold), var(--jab-gold-lt));
        border-radius: 2px;
        margin: 28px 0;
        animation: jabLineDraw .8s .5s both;
    }

    /* Orbit visual */
    .jab-orbit-wrap {
        position: relative;
        width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .jab-orbit-core {
        position: absolute;
        inset: 50%;
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: linear-gradient(135deg, var(--jab-gold), var(--jab-gold-lt));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 16px rgba(200, 150, 43, .15), 0 0 0 32px rgba(200, 150, 43, .07);
        animation: jabPulse 3s infinite;
    }

    .jab-orbit-core i {
        font-size: 30px;
        color: #fff;
    }

    .jab-orbit-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px dashed rgba(200, 150, 43, .35);
    }

    .jab-orbit-ring2 {
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 1px dashed rgba(200, 150, 43, .2);
    }

    .jab-orbit-dot {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 36px;
        height: 36px;
        margin: -18px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--jab-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jab-gold);
        font-size: 13px;
        box-shadow: 0 4px 14px rgba(200, 150, 43, .2);
    }

    .jab-od1 {
        animation: jabOrbit 7s linear infinite;
    }

    .jab-od2 {
        animation: jabOrbit 11s linear infinite reverse;
        transform-origin: 50% 50%;
    }

    .jab-od3 {
        animation: jabOrbit 9s 1.5s linear infinite;
    }

    .jab-od4 {
        animation: jabOrbit 13s 2s linear infinite reverse;
    }

    .jab-orbit-label {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 11.5px;
        color: var(--jab-muted);
        text-align: center;
    }

    /* Hero stats bar */
    .jab-hero-statsbar {
        margin-top: 48px;
        display: flex;
        gap: 36px;
        flex-wrap: wrap;
    }

    .jab-hero-stat {
        border-left: 2px solid rgba(200, 150, 43, .5);
        padding-left: 16px;
    }

    .jab-hero-stat-n {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--jab-gold);
        line-height: 1;
    }

    .jab-hero-stat-l {
        font-size: 11px;
        color: var(--jab-muted);
        margin-top: 5px;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    /* ─── MARQUEE BAND ──────────────────────────────── */
    .jab-marquee-wrap {
        background: var(--jab-gold);
        padding: 14px 0;
        overflow: hidden;
    }

    .jab-marquee-track {
        display: flex;
        gap: 0;
        width: max-content;
        animation: jabMarquee 28s linear infinite;
    }

    .jab-marquee-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 40px;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .jab-marquee-item::after {
        content: '✦';
        font-size: 10px;
        opacity: .6;
        margin-left: 8px;
    }

    /* ─── SECTION COMMONS ───────────────────────────── */
    .jab-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--jab-gold);
        display: block;
        margin-bottom: 10px;
    }

    .jab-title {
        /* font-family: 'Playfair Display', serif; */
        font-size: clamp(26px, 3.5vw, 42px);
        font-weight: 800;
        color: var(--jab-dark);
        line-height: 1.2;
    }

    .jab-title span {
        color: var(--jab-gold);
    }

    .jab-title-white {
        color: #fff;
    }

    .jab-lead {
        font-size: 15.5px;
        line-height: 1.85;
        color: var(--jab-muted);
        font-family: "Poppins","sans serif";
    }

    .jab-gold-bar {
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--jab-gold), var(--jab-gold-lt));
        border-radius: 2px;
        margin: 18px 0 26px;
        transition: width .8s .2s ease;
    }

    .jab-visible .jab-gold-bar,
    .jab-gold-bar.jab-visible {
        width: 52px;
    }

    /* ─── VISION/MISSION ────────────────────────────── */
    .jab-vision {
        padding: 40px 0;
        background: #fff;
    }

    .jab-vm-card {
        border-radius: 18px;
        padding: 44px 40px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: transform .3s, box-shadow .3s;
    }

    .jab-vm-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(200, 150, 43, .18);
    }

    .jab-vm-card-dark {
        background: var(--jab-dark);
    }

    .jab-vm-card-gold {
        background: linear-gradient(135deg, var(--jab-gold) 0%, var(--jab-gold-lt) 100%);
    }

    .jab-vm-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .04);
        pointer-events: none;
    }

    .jab-vm-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .jab-vm-icon-gold {
        background: rgba(200, 150, 43, .18);
        color: var(--jab-gold-lt);
    }

    .jab-vm-icon-white {
        background: rgba(255, 255, 255, .2);
        color: #fff;
    }

    .jab-vm-card h3 {
        font-family: 'Sora', serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .jab-vm-card p {
        font-size: 14.5px;
        line-height: 1.85;
        margin: 0;
          font-family: 'Poppins', serif;
    }

    .jab-vm-card-dark h3 {
        color: #fff;
    }

    .jab-vm-card-dark p {
        color: rgba(255, 255, 255, .6);
           font-family: 'Poppins', serif;
    }

    .jab-vm-card-gold h3 {
        color: #fff;
          font-family: 'Poppins', serif;
    }

    .jab-vm-card-gold p {
        color: rgba(255, 255, 255, .85);
          font-family: 'Poppins', serif;
    }

    /* ─── PRIMARY OBJECT ────────────────────────────── */
    .jab-primary {
        padding: 40px 0;
        background: var(--jab-gray);
    }

    .jab-primary-img {
        position: relative;
    }

    .jab-primary-img::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
        background: var(--jab-gold-pale);
        border-radius: 18px;
        z-index: 0;
    }

    .jab-primary-inner {
        position: relative;
        z-index: 1;
        background: var(--jab-dark);
        border-radius: 16px;
        padding: 44px 40px;
         font-family: 'Sora', sans-serif;
    }

    .jab-primary-inner p {
        color: rgba(255, 255, 255, .65);
        font-size: 14.5px;
        line-height: 1.9;
    }

    .jab-primary-inner p strong {
        color: var(--jab-gold-lt);
    }

    /* ─── OBJECTS ACCORDION ─────────────────────────── */
    .jab-objects {
        padding: 40px 0;
        background: #fff;
    }

    .jab-acc-item {
        border: 1px solid var(--jab-border);
        border-radius: 14px;
        margin-bottom: 12px;
        overflow: hidden;
        transition: border-color .3s, box-shadow .3s;
    }

    .jab-acc-item:hover {
        border-color: var(--jab-gold);
        box-shadow: 0 8px 28px rgba(200, 150, 43, .10);
    }

    .jab-acc-btn {
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
        padding: 22px 28px;
        display: flex;
        align-items: center;
        gap: 18px;
        cursor: pointer;
        transition: background .2s;
    }

    .jab-acc-btn:hover {
        background: var(--jab-gray);
    }

    .jab-acc-num {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--jab-gold);
        min-width: 36px;
        line-height: 1;
    }

    .jab-acc-btn h5 {
        font-size: 15.5px;
        font-weight: 700;
        color: var(--jab-dark);
        margin: 0;
        flex: 1;
        text-align: left;
          font-family: 'Poppins', serif;
    }

    .jab-acc-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--jab-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jab-gold);
        font-size: 13px;
        transition: transform .3s, background .3s;
        flex-shrink: 0;
    }

    .jab-acc-btn[aria-expanded="true"] .jab-acc-icon {
        transform: rotate(45deg);
        background: var(--jab-gold);
        color: #fff;
    }

    .jab-acc-body {
        padding: 0 28px 26px 82px;
        font-size: 14px;
        line-height: 1.85;
        color: var(--jab-muted);
          font-family: 'Poppins', serif;
    }

    /* ─── TECH PILLARS ──────────────────────────────── */
    .jab-pillars {
        padding: 40px 0;
        background: var(--jab-dark);
        position: relative;
        overflow: hidden;
    }

    .jab-pillars::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(200, 150, 43, .05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 150, 43, .05) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .jab-pillar-card {
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        padding: 36px 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color .3s, transform .3s, box-shadow .3s;
        background: rgba(255, 255, 255, .03);
    }

    .jab-pillar-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(200, 150, 43, .08) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .jab-pillar-card:hover {
        border-color: rgba(200, 150, 43, .4);
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, .4);
    }

    .jab-pillar-card:hover::before {
        opacity: 1;
    }

    .jab-pillar-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(200, 150, 43, .15);
        border: 1px solid rgba(200, 150, 43, .3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jab-gold-lt);
        font-size: 22px;
        margin-bottom: 22px;
    }

    .jab-pillar-card h5 {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
        font-family: 'Sora', serif;
    }

    .jab-pillar-card p {
        font-size: 13.5px;
        line-height: 1.75;
        color: rgba(255, 255, 255, .5);
        margin: 0;
          font-family: 'Poppins', serif;
    }

    .jab-pillar-tag {
        display: inline-block;
        background: rgba(200, 150, 43, .12);
        border: 1px solid rgba(200, 150, 43, .25);
        color: var(--jab-gold);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 20px;
        margin-top: 14px;
    }

    /* ─── TECHNOLOGY MARQUEE TAGS ───────────────────── */
    .jab-tech-tags {
        padding: 60px 0;
        background: var(--jab-dark2);
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    .jab-tag-track {
        display: flex;
        gap: 0;
        width: max-content;
        animation: jabMarquee 22s linear infinite;
    }

    .jab-tag-track2 {
        animation-direction: reverse;
    }

    .jab-tech-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(200, 150, 43, .25);
        border-radius: 30px;
        padding: 8px 20px;
        margin: 0 8px;
        white-space: nowrap;
        font-size: 12.5px;
        font-weight: 400;
        color: rgba(255, 255, 255, .6);
    }

    .jab-tech-tag i {
        color: var(--jab-gold);
        font-size: 13px;
    }

    /* ─── IP & MONETIZATION ─────────────────────────── */
    .jab-ip {
        padding: 40px 0;
        background: #fff;
    }

    .jab-ip-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--jab-border);
        border-radius: 16px;
        overflow: hidden;
    }

    .jab-ip-cell {
        background: #fff;
        padding: 36px 32px;
        transition: background .25s;
    }

    .jab-ip-cell:hover {
        background: var(--jab-gray);
    }

    .jab-ip-cell-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--jab-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jab-gold);
        font-size: 20px;
        margin-bottom: 18px;
    }

    .jab-ip-cell h5 {
        font-size: 15px;
        font-weight: 700;
        color: var(--jab-dark);
        margin-bottom: 8px;
        font-family: 'Sora', sans-serif;
    }

    .jab-ip-cell p {
        font-size: 13px;
        line-height: 1.75;
        color: var(--jab-muted);
        margin: 0;
         font-family: 'Poppins', sans-serif;
    }

    /* ─── SECTORS SERVED ────────────────────────────── */
    .jab-sectors {
        padding: 40px 0;
        background: var(--jab-gray);
    }

    .jab-sector-chip {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px 24px;
        background: #fff;
        border: 1px solid var(--jab-border);
        border-radius: 12px;
        transition: border-color .25s, transform .25s, box-shadow .25s;
        cursor: default;
    }

    .jab-sector-chip:hover {
        border-color: var(--jab-gold);
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(200, 150, 43, .12);
    }

    .jab-sector-chip-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
        background: var(--jab-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jab-gold);
        font-size: 18px;
    }

    .jab-sector-chip span {
        font-size: 14px;
        font-weight: 600;
        color: var(--jab-dark);
    }

    /* ─── COUNTER BAND ──────────────────────────────── */
    .jab-counter-band {
        background: var(--jab-dark);
        padding: 72px 0;
    }

    .jab-counter-item {
        text-align: center;
        padding: 20px;
    }

    .jab-counter-num {
        font-family: 'Playfair Display', serif;
        font-size: clamp(36px, 5vw, 58px);
        font-weight: 800;
        background: linear-gradient(135deg, var(--jab-gold), var(--jab-gold-lt));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .jab-counter-label {
        font-size: 13px;
        color: rgba(255, 255, 255, .5);
        margin-top: 8px;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    /* ─── CTA ───────────────────────────────────────── */
    .jab-cta {
        background: var(--jab-gold);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .jab-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .12) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .08) 0%, transparent 50%);
    }

    .jab-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 800;
        color: #fff;
        position: relative;
    }

    .jab-cta p {
        color: rgba(255, 255, 255, .82);
        font-size: 16px;
        max-width: 520px;
        margin: 14px auto 36px;
        position: relative;
    }

    .jab-btn-white {
        background: #fff;
        color: var(--jab-gold) !important;
        border-radius: 8px;
        padding: 14px 34px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform .15s, box-shadow .2s;
        position: relative;
    }

    .jab-btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
        color: var(--jab-gold) !important;
    }

    .jab-btn-outline-wh {
        border: 2px solid rgba(255, 255, 255, .55);
        color: #fff !important;
        background: transparent;
        border-radius: 8px;
        padding: 12px 30px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background .2s, border-color .2s;
        position: relative;
    }

    .jab-btn-outline-wh:hover {
        background: rgba(255, 255, 255, .15);
        border-color: #fff;
    }

    /* ─── FOOTER ────────────────────────────────────── */
    .jab-footer {
        background: var(--jab-dark2);
        padding: 60px 0 28px;
    }

    .jab-footer h6 {
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;
        margin-bottom: 18px;
    }

    .jab-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .jab-footer ul li {
        margin-bottom: 9px;
    }

    .jab-footer ul li a {
        color: rgba(255, 255, 255, .42);
        font-size: 12.5px;
        text-decoration: none;
        transition: color .2s;
    }

    .jab-footer ul li a:hover {
        color: var(--jab-gold);
    }

    .jab-footer-copy {
        color: rgba(255, 255, 255, .28);
        font-size: 11.5px;
    }

    .jab-social {
        width: 33px;
        height: 33px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .07);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .45);
        text-decoration: none;
        margin-right: 6px;
        transition: background .2s, color .2s;
        font-size: 13px;
    }

    .jab-social:hover {
        background: var(--jab-gold);
        color: #fff;
    }

    /* ─── MISC ──────────────────────────────────────── */
    .jab-shimmer-text {
        background: linear-gradient(90deg, var(--jab-gold), var(--jab-gold-lt), var(--jab-gold));
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: jabShimmer 3.5s linear infinite;
    }

    .jab-btn-gold {
        background: var(--jab-gold);
        color: #fff !important;
        border-radius: 8px;
        padding: 13px 30px;
        font-weight: 700;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
        transition: background .2s, transform .15s;
    }

    .jab-btn-gold:hover {
        background: var(--jab-gold-lt);
        transform: translateY(-2px);
       color: #926100 !important;
    }

    .jab-btn-outline-gold {
        border: 1.5px solid var(--jab-gold);
        color: var(--jab-gold) !important;
        background: transparent;
        border-radius: 8px;
        padding: 11px 26px;
        font-weight: 600;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background .2s, color .2s;
    }

    .jab-btn-outline-gold:hover {
        background: var(--jab-gold);
        color: #fff !important;
    }

    @media(max-width:768px) {
        .jab-ip-grid {
            grid-template-columns: 1fr;
        }

        .jab-orbit-wrap {
            width: 240px;
            height: 240px;
        }

        .jab-hero-statsbar {
            gap: 20px;
        }
    }

/* content above grid */
.banner-content {
  position: relative;
  z-index: 2;
}

/* icon */
.banner-icon {
  font-size: 26px;
  margin-bottom: 18px;
  color: #111827;
}

/* title */
.page-banner h1 {
  font-weight: 700;
  font-size: 46px;
  color: #111827;
  margin-bottom: 12px;
}

/* subtitle */
.page-banner p {
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 18px;
}

/* breadcrumb */
.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--theme-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 80px 0 70px;
  }
  .page-banner h1 {
    font-size: 30px;
  }
}

/* Contact Us Page */

/* Background */
    .contact-section {
        background: #f5f6f8;
    }

    /* Card */
    .contact-card {
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid #e6e6e6;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    }

    /* Inputs */
    .custom-input {
        border-radius: 10px;
        padding: 12px 14px;
        background: #f1f2f4;
        border: 1px solid #e3e4e8;
        font-size: 14px;
    }

    .custom-input:focus {
        background: #fff;
        border-color: #7b5cff;
        box-shadow: 0 0 0 0.15rem rgba(123, 92, 255, .15);
    }

    /* Purple button */
    .send-btn {
        background: linear-gradient(180deg, #8b6bff, #6f4cff);
        border: none;
        color: #fff;
        padding: 13px;
        font-weight: 500;
        border-radius: 10px;
        transition: .25s;
    }

    .send-btn:hover {
        background: linear-gradient(180deg, #7b5cff, #5a39f0);
    }

    /* Right side info boxes */
    .info-box h6 {
        font-size: 16px;
    }

    .info-link {
        color: var(--theme-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }

    .info-link a:hover {
        text-decoration: underline;
        color: var(--theme-color);
    }

    /* Icon badge */
    .icon-circle {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f3f0ff;
        color: var(--theme-color);
        font-size: 20px;
        border: 1px solid #e5e0ff;
    }
    
    /*Utility Management*/
    
    .jum-wrap {
        --jum-gold: #C8962B;
        --jum-gold-lt: #E8B84B;
        --jum-gold-pale: #F5E9C8;
        --jum-gold-dim: rgba(200, 150, 43, 0.14);
        --jum-dark: #1A1A1A;
        --jum-dark2: #2D2D2D;
        --jum-gray: #F7F7F5;
        --jum-text: #3A3A3A;
        --jum-muted: #777;
        --jum-border: #E5E0D5;
        font-family: 'DM Sans', sans-serif;
        color: var(--jum-text);
        background: #fff;
        overflow-x: hidden;
    }

    @keyframes jumFadeUp {
        from {
            opacity: 0;
            transform: translateY(40px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes jumSlideL {
        from {
            opacity: 0;
            transform: translateX(-44px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes jumSlideR {
        from {
            opacity: 0;
            transform: translateX(44px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes jumScaleIn {
        from {
            opacity: 0;
            transform: scale(.88)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes jumLineDraw {
        from {
            width: 0
        }

        to {
            width: 52px
        }
    }

    @keyframes jumPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(200, 150, 43, .45)
        }

        50% {
            box-shadow: 0 0 0 14px rgba(200, 150, 43, 0)
        }
    }

    @keyframes jumFloat {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-10px)
        }
    }

    @keyframes jumBgScroll {
        from {
            background-position: 0 0
        }

        to {
            background-position: 60px 60px
        }
    }

    @keyframes jumMarquee {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    @keyframes jumSpin {
        from {
            transform: rotate(0deg)
        }

        to {
            transform: rotate(360deg)
        }
    }

    @keyframes jumShimmer {
        0% {
            background-position: -200% center
        }

        100% {
            background-position: 200% center
        }
    }

    @keyframes jumBlink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .4
        }
    }

    @keyframes jumProgress {
        from {
            width: 0
        }

        to {
            width: var(--jum-w)
        }
    }

    @keyframes jumBounceIn {
        0% {
            opacity: 0;
            transform: scale(.5)
        }

        60% {
            transform: scale(1.1)
        }

        100% {
            opacity: 1;
            transform: scale(1)
        }
    }

    /* ── SCROLL REVEAL ────────────────────────────── */
    .jum-rv {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .jum-rv-l {
        opacity: 0;
        transform: translateX(-38px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .jum-rv-r {
        opacity: 0;
        transform: translateX(38px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .jum-rv.jum-on,
    .jum-rv-l.jum-on,
    .jum-rv-r.jum-on {
        opacity: 1;
        transform: translate(0);
    }

    /* entrance delays */
    .jum-d1 {
        animation-delay: .1s
    }

    .jum-d2 {
        animation-delay: .22s
    }

    .jum-d3 {
        animation-delay: .36s
    }

    .jum-d4 {
        animation-delay: .5s
    }

    .jum-d5 {
        animation-delay: .65s
    }

    /* ── NAVBAR ───────────────────────────────────── */
    .jum-nav {
        background: #fff;
        border-bottom: 1px solid var(--jum-border);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
        transition: box-shadow .3s;
    }

    .jum-nav-link {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--jum-dark) !important;
        padding: .5rem .9rem !important;
        transition: color .2s;
    }

    .jum-nav-link:hover,
    .jum-nav-link.active {
        color: var(--jum-gold) !important;
    }

    .jum-btn-demo {
        background: var(--jum-gold);
        color: #fff !important;
        border-radius: 6px;
        padding: 9px 22px !important;
        font-weight: 600;
        font-size: 13.5px;
        transition: background .2s, transform .15s;
        text-decoration: none;
    }

    .jum-btn-demo:hover {
        background: var(--jum-gold-lt);
        transform: translateY(-2px);
    }

    /* ── HERO BANNER ──────────────────────────────── */
    .jum-hero {
        background: linear-gradient(135deg, #fff 0%, #F5E9C8 100%);
        min-height: 88vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .jum-hero-grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(200, 150, 43, .08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 150, 43, .08) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: jumBgScroll 7s linear infinite;
    }

    .jum-hero-glow {
        position: absolute;
        width: 680px;
        height: 680px;
        right: -140px;
        top: 50%;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(200, 150, 43, .16) 0%, transparent 70%);
        pointer-events: none;
    }

    .jum-hero-glow2 {
        position: absolute;
        width: 380px;
        height: 380px;
        left: -80px;
        bottom: -80px;
        background: radial-gradient(circle, rgba(200, 150, 43, .10) 0%, transparent 70%);
        pointer-events: none;
    }

    .jum-hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(200, 150, 43, .13);
        border: 1px solid rgba(200, 150, 43, .4);
        color: var(--jum-gold);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 22px;
    }

    .jum-hero-pill::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--jum-gold);
        animation: jumPulse 2s infinite;
    }

    .jum-hero h1 {
        font-family: 'Sora', serif;
        font-size: clamp(36px, 5vw, 54px);
        font-weight: 900;
        color: var(--jum-dark);
        line-height: 1.1;
        letter-spacing: -.5px;
    }

    .jum-hero h1 span {
        color: var(--jum-gold);
        font-style: italic;
    }

    .jum-hero-sub {
        color: var(--jum-muted);
        font-size: 15.5px;
        line-height: 1.85;
        max-width: 540px;
        margin-top: 18px;
        font-family: 'Poppins', serif;
    }

    .jum-hero-bar {
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--jum-gold), var(--jum-gold-lt));
        border-radius: 2px;
        margin: 26px 0;
        animation: jumLineDraw .9s .4s both;
    }

    /* hero visual — API node cluster */
    .jum-api-cluster {
        position: relative;
        width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .jum-api-core {
        position: absolute;
        inset: 50%;
        width: 86px;
        height: 86px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: linear-gradient(135deg, var(--jum-gold), var(--jum-gold-lt));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 16px rgba(200, 150, 43, .13), 0 0 0 32px rgba(200, 150, 43, .06);
        animation: jumPulse 3s infinite;
    }

    .jum-api-core i {
        font-size: 26px;
        color: #fff;
    }

    .jum-api-core span {
        font-size: 9px;
        color: rgba(255, 255, 255, .8);
        font-weight: 700;
        letter-spacing: 1px;
        margin-top: 3px;
    }

    /* connector lines drawn via pseudo */
    .jum-api-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px dashed rgba(200, 150, 43, .3);
    }

    .jum-api-ring2 {
        position: absolute;
        inset: 26px;
        border-radius: 50%;
        border: 1px dashed rgba(200, 150, 43, .18);
    }

    .jum-api-node {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 44px;
        height: 44px;
        margin: -22px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--jum-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold);
        font-size: 14px;
        box-shadow: 0 4px 14px rgba(200, 150, 43, .18);
    }

    /* orbit positions via inline style */
    .jum-n1 {
        animation: jumSpin 10s linear infinite;
        transform-origin: 50% 50%;
    }

    .jum-n2 {
        animation: jumSpin 14s linear infinite reverse;
    }

    .jum-n3 {
        animation: jumSpin 8s 1s linear infinite;
    }

    .jum-n4 {
        animation: jumSpin 12s 2s linear infinite reverse;
    }

    .jum-n5 {
        animation: jumSpin 16s .5s linear infinite;
    }

    /* counter-rotate children so icons stay upright */
    .jum-n1 .jum-api-node {
        animation: jumSpin 10s linear infinite reverse;
    }

    .jum-n2 .jum-api-node {
        animation: jumSpin 14s linear infinite;
    }

    .jum-n3 .jum-api-node {
        animation: jumSpin 8s 1s linear infinite reverse;
    }

    .jum-n4 .jum-api-node {
        animation: jumSpin 12s 2s linear infinite;
    }

    .jum-n5 .jum-api-node {
        animation: jumSpin 16s .5s linear infinite reverse;
    }

    /* orbit arms */
    .jum-arm {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 1px;
        background: linear-gradient(90deg, rgba(200, 150, 43, .5), transparent);
        transform-origin: 0 50%;
    }

    .jum-api-float1 {
        position: absolute;
        top: 10px;
        right: -30px;
        animation: jumFloat 4s ease-in-out infinite;
    }

    .jum-api-float2 {
        position: absolute;
        bottom: 50px;
        left: -40px;
        animation: jumFloat 5s 1.2s ease-in-out infinite;
    }

    .jum-float-badge {
        background: #fff;
        border: 1px solid var(--jum-border);
        border-radius: 10px;
        padding: 10px 16px;
        box-shadow: 0 6px 22px rgba(200, 150, 43, .14);
        display: flex;
        align-items: center;
        gap: 9px;
        white-space: nowrap;
        font-family: 'Sora', serif;
    }

    .jum-float-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        animation: jumBlink 2s infinite;
    }

    .jum-float-badge span {
        font-size: 12px;
        font-weight: 600;
        color: var(--jum-dark);
    }

    .jum-float-badge-gold {
        background: var(--jum-gold);
        border: none;
        box-shadow: 0 6px 22px rgba(200, 150, 43, .3);
    }

    .jum-float-badge-gold span {
        color: #fff;
    }

    /* hero stats */
    .jum-hero-stats {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .jum-hstat {
        border-left: 2px solid rgba(200, 150, 43, .5);
        padding-left: 15px;
    }

    .jum-hstat-n {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--jum-gold);
        line-height: 1;
    }

    .jum-hstat-l {
        font-size: 10.5px;
        color: var(--jum-muted);
        margin-top: 4px;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    /* ── BUTTONS ──────────────────────────────────── */
    .jum-btn-gold {
        background: var(--jum-gold);
        color: #fff !important;
        border-radius: 8px;
        padding: 13px 30px;
        font-weight: 700;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
        transition: background .2s, transform .15s;
    }

    .jum-btn-gold:hover {
        background: var(--jum-gold-lt);
        transform: translateY(-2px);
    }

    .jum-btn-outline {
        border: 1.5px solid var(--jum-gold);
        color: var(--jum-gold) !important;
        background: transparent;
        border-radius: 8px;
        padding: 11px 26px;
        font-weight: 600;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background .2s, color .2s;
    }

    .jum-btn-outline:hover {
        background: var(--jum-gold);
        color: #fff !important;
    }

    .jum-btn-white {
        background: #fff;
        color: var(--jum-gold) !important;
        border-radius: 8px;
        padding: 13px 32px;
        font-weight: 700;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform .15s, box-shadow .2s;
    }

    .jum-btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
        color: var(--jum-gold) !important;
    }

    .jum-btn-outline-wh {
        border: 2px solid rgba(255, 255, 255, .55);
        color: #fff !important;
        background: transparent;
        border-radius: 8px;
        padding: 11px 26px;
        font-weight: 600;
        font-size: 14.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background .2s;
    }

    .jum-btn-outline-wh:hover {
        background: rgba(255, 255, 255, .15);
        border-color: #fff;
    }

    /* ── SECTION COMMONS ──────────────────────────── */
    .jum-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--jum-gold);
        display: block;
        margin-bottom: 10px;
    }

    .jum-title {
        font-family: 'Sora', serif;
        font-size: clamp(26px, 3.5vw, 42px);
        font-weight: 800;
        color: var(--jum-dark);
        line-height: 1.2;
    }

    .jum-title span {
        color: var(--jum-gold);
    }

    .jum-title-wh {
        color: #fff;
    }

    .jum-lead {
        font-size: 15px;
        line-height: 1.85;
        color: var(--jum-muted);
    }

    .jum-divider {
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--jum-gold), var(--jum-gold-lt));
        border-radius: 2px;
        margin: 18px 0 26px;
        transition: width .8s .1s ease;
    }

    .jum-divider.jum-on {
        width: 52px;
    }

    /* ── MARQUEE ──────────────────────────────────── */
    .jum-marquee-wrap {
        background: var(--jum-gold);
        padding: 13px 0;
        overflow: hidden;
    }

    .jum-mq-track {
        display: flex;
        width: max-content;
        animation: jumMarquee 26s linear infinite;
    }

    .jum-mq-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 38px;
        white-space: nowrap;
        font-size: 12.5px;
        font-weight: 700;
        color: #fff;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .jum-mq-item::after {
        content: '✦';
        font-size: 9px;
        opacity: .55;
        margin-left: 6px;
    }

    /* ── OVERVIEW ─────────────────────────────────── */
    .jum-overview {
        padding: 90px 0;
        background: #fff;
    }

    .jum-ov-box {
        background: var(--jum-dark);
        border-radius: 16px;
        padding: 44px 40px;
        position: relative;
        overflow: hidden;
    }

    .jum-ov-box::before {
        content: '';
        position: absolute;
        top: -70px;
        right: -70px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(200, 150, 43, .08);
        pointer-events: none;
    }

    .jum-ov-box p {
        color: rgba(255, 255, 255, .65);
        font-size: 14.5px;
        line-height: 1.9;
        margin: 0;
    }

    .jum-ov-box p strong {
        color: var(--jum-gold-lt);
    }

    .jum-ov-stat {
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 12px;
        padding: 22px 20px;
        text-align: center;
    }

    .jum-ov-stat-n {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--jum-gold-lt);
        line-height: 1;
    }

    .jum-ov-stat-l {
        font-size: 11px;
        color: rgba(255, 255, 255, .4);
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    /* ── PROACTIVE API SECTION ────────────────────── */
    .jum-proactive {
        padding: 90px 0;
        background: var(--jum-gray);
    }

    .jum-pro-card {
        background: #fff;
        border: 1px solid var(--jum-border);
        border-radius: 16px;
        padding: 36px 32px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: transform .3s, box-shadow .3s, border-color .3s;
    }

    .jum-pro-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--jum-gold), var(--jum-gold-lt));
        border-radius: 4px 0 0 4px;
    }

    .jum-pro-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(200, 150, 43, .14);
        border-color: var(--jum-gold);
    }

    .jum-pro-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--jum-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold);
        font-size: 22px;
        margin-bottom: 20px;
    }

    .jum-pro-card h5 {
        font-size: 16px;
        font-weight: 700;
        color: var(--jum-dark);
        margin-bottom: 10px;
    }

    .jum-pro-card p {
        font-size: 13.5px;
        line-height: 1.8;
        color: var(--jum-muted);
        margin: 0;
    }

    .jum-pro-tag {
        display: inline-block;
        background: var(--jum-gold-pale);
        border: 1px solid rgba(200, 150, 43, .3);
        color: var(--jum-gold);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 20px;
        margin-top: 16px;
    }

    /* live indicator */
    .jum-live-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: 1px solid #dcfce7;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 11.5px;
        font-weight: 600;
        color: #16a34a;
        margin-bottom: 14px;
    }

    .jum-live-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #22c55e;
        animation: jumBlink 1.8s infinite;
    }

    /* ── VERIFICATION GRID ────────────────────────── */
    .jum-verify {
        padding: 90px 0;
        background: #fff;
    }

    .jum-verify-intro {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }

    .jum-vcard {
        background: #fff;
        border: 1px solid var(--jum-border);
        border-radius: 16px;
        padding: 32px 28px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: transform .3s, box-shadow .3s, border-color .3s;
        cursor: default;
    }

    .jum-vcard::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--jum-gold), var(--jum-gold-lt));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .jum-vcard:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 48px rgba(200, 150, 43, .13);
        border-color: var(--jum-gold);
    }

    .jum-vcard:hover::after {
        transform: scaleX(1);
    }

    .jum-vcard-num {
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        color: var(--jum-gold-pale);
        line-height: 1;
        margin-bottom: 4px;
    }

    .jum-vcard-icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        background: var(--jum-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold);
        font-size: 20px;
        margin-bottom: 18px;
        transition: background .3s, color .3s;
    }

    .jum-vcard:hover .jum-vcard-icon {
        background: var(--jum-gold);
        color: #fff;
    }

    .jum-vcard h5 {
        font-size: 15.5px;
        font-weight: 700;
        color: var(--jum-dark);
        margin-bottom: 9px;
    }

    .jum-vcard p {
        font-size: 13px;
        line-height: 1.8;
        color: var(--jum-muted);
        margin: 0;
    }

    /* status pill inside card */
    .jum-status-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        border-radius: 20px;
        padding: 3px 10px;
        font-size: 10.5px;
        font-weight: 600;
        color: #16a34a;
        margin-top: 14px;
    }

    .jum-status-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #22c55e;
    }

    /* ── HOW IT WORKS ─────────────────────────────── */
    .jum-how {
        padding: 90px 0;
        background: var(--jum-dark);
        position: relative;
        overflow: hidden;
    }

    .jum-how::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(200, 150, 43, .05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 150, 43, .05) 1px, transparent 1px);
        background-size: 44px 44px;
    }

    .jum-step-card {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        padding: 34px 28px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: transform .3s, border-color .3s, box-shadow .3s;
    }

    .jum-step-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(200, 150, 43, .08) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .jum-step-card:hover {
        border-color: rgba(200, 150, 43, .4);
        transform: translateY(-5px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
    }

    .jum-step-card:hover::before {
        opacity: 1;
    }

    .jum-step-num {
        font-family: 'Playfair Display', serif;
        font-size: 44px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--jum-gold), var(--jum-gold-lt));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 14px;
    }

    .jum-step-card h5 {
        font-size: 15.5px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .jum-step-card p {
        font-size: 13.5px;
        line-height: 1.75;
        color: rgba(255, 255, 255, .5);
        margin: 0;
    }

    .jum-step-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(200, 150, 43, .14);
        border: 1px solid rgba(200, 150, 43, .28);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold-lt);
        font-size: 18px;
        margin-bottom: 18px;
    }

    /* connector arrow between steps */
    .jum-step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(200, 150, 43, .4);
        font-size: 22px;
    }

    /* ── TECH TAGS MARQUEE ────────────────────────── */
    .jum-tech-band {
        padding: 50px 0;
        background: var(--jum-dark2);
        overflow: hidden;
    }

    .jum-tt-track {
        display: flex;
        width: max-content;
        animation: jumMarquee 22s linear infinite;
        gap: 0;
    }

    .jum-tt-track2 {
        animation-direction: reverse;
    }

    .jum-tt-tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(200, 150, 43, .22);
        border-radius: 30px;
        padding: 8px 20px;
        margin: 0 8px;
        white-space: nowrap;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, .55);
    }

    .jum-tt-tag i {
        color: var(--jum-gold);
        font-size: 12px;
    }

    /* ── USE CASES ────────────────────────────────── */
    .jum-use {
        padding: 90px 0;
        background: var(--jum-gray);
    }

    .jum-use-item {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 26px 28px;
        background: #fff;
        border: 1px solid var(--jum-border);
        border-radius: 14px;
        height: 100%;
        transition: border-color .25s, transform .25s, box-shadow .25s;
    }

    .jum-use-item:hover {
        border-color: var(--jum-gold);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(200, 150, 43, .12);
    }

    .jum-use-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 11px;
        background: var(--jum-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold);
        font-size: 18px;
    }

    .jum-use-item h6 {
        font-size: 14.5px;
        font-weight: 700;
        color: var(--jum-dark);
        margin-bottom: 6px;
    }

    .jum-use-item p {
        font-size: 13px;
        line-height: 1.75;
        color: var(--jum-muted);
        margin: 0;
    }

    /* ── INTEGRATION VISUAL ───────────────────────── */
    .jum-integration {
        padding: 90px 0;
        background: #fff;
    }

    .jum-int-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--jum-border);
        border-radius: 16px;
        overflow: hidden;
    }

    .jum-int-cell {
        background: #fff;
        padding: 32px 28px;
        text-align: center;
        transition: background .2s;
    }

    .jum-int-cell:hover {
        background: var(--jum-gold-pale);
    }

    .jum-int-cell-icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        background: var(--jum-gold-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--jum-gold);
        font-size: 21px;
        margin: 0 auto 14px;
        transition: background .2s, color .2s;
    }

    .jum-int-cell:hover .jum-int-cell-icon {
        background: var(--jum-gold);
        color: #fff;
    }

    .jum-int-cell h6 {
        font-size: 14px;
        font-weight: 700;
        color: var(--jum-dark);
        margin-bottom: 6px;
    }

    .jum-int-cell p {
        font-size: 12.5px;
        line-height: 1.7;
        color: var(--jum-muted);
        margin: 0;
    }

    /* ── CTA ──────────────────────────────────────── */
    .jum-cta {
        background: var(--jum-gold);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .jum-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .12) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .08) 0%, transparent 50%);
    }

    .jum-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 800;
        color: #fff;
        position: relative;
    }

    .jum-cta p {
        color: rgba(255, 255, 255, .82);
        font-size: 15.5px;
        max-width: 500px;
        margin: 14px auto 34px;
        position: relative;
    }

    /* ── FOOTER ───────────────────────────────────── */
    .jum-footer {
        background: var(--jum-dark2);
        padding: 58px 0 26px;
    }

    .jum-footer h6 {
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;
        margin-bottom: 17px;
    }

    .jum-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .jum-footer ul li {
        margin-bottom: 9px;
    }

    .jum-footer ul li a {
        color: rgba(255, 255, 255, .4);
        font-size: 12.5px;
        text-decoration: none;
        transition: color .2s;
    }

    .jum-footer ul li a:hover {
        color: var(--jum-gold);
    }

    .jum-footer-copy {
        color: rgba(255, 255, 255, .28);
        font-size: 11.5px;
    }

    .jum-social {
        width: 33px;
        height: 33px;
        border-radius: 7px;
        background: rgba(255, 255, 255, .07);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .45);
        text-decoration: none;
        margin-right: 6px;
        transition: background .2s, color .2s;
        font-size: 13px;
    }

    .jum-social:hover {
        background: var(--jum-gold);
        color: #fff;
    }

    @media(max-width:768px) {
        .jum-int-grid {
            grid-template-columns: 1fr 1fr;
        }

        .jum-api-cluster {
            width: 260px;
            height: 260px;
        }

        .jum-step-arrow {
            display: none;
        }
    }

    @media(max-width:480px) {
        .jum-int-grid {
            grid-template-columns: 1fr;
        }
    }

/* Footer */

.cta-box {
  background: linear-gradient(135deg, #5f5e5e, #353535);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
}

.cta-btn {
  border-radius: 40px;
  padding: 12px 22px;
  margin: auto;
  font-weight: 600;
  width: fit-content;
  position: relative;
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  margin-left: 10px;
}

footer {
  background: #efefef !important;
}

.footer-area {
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.brand-logo {
  gap: 8px;
}

.logo-img {
  height: 70px;
  width: auto;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  color: #1f2937;
  letter-spacing: 0.3px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #6c757d;
  font-size: 15px;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  font-size: 12px;
  color: var(--theme-color);
  transition: 0.25s;
}

.footer-links a:hover {
  color: var(--theme-color);
  transform: translateX(6px);
}

.footer-links a:hover i {
  color: var(--theme-color);
}

.footer-links a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}

.copyright {
  position: relative;
  padding: 5px 0;
  /* border-bottom: 5px solid var(--theme-color); */
  z-index: 1;
}

.copyright p {
  padding: 5px !important;
  margin-bottom: 0px;
}

/* Our clients section */

.brand-section {
  background: #fff;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: calc(250px * 12);
  animation: scrollLeft 25s linear infinite;
}

.logo-track img {
  width: 140px;
  height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.6;
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ── Timeline Section ..................................................................... ── */

/* SECTION */
.process-section {
  background: #ffffff;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* HEADING */
.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 600;
}

.process-title {
  font-size: 36px;
  font-weight: 800;
  color: #111820;
}
.process-title span {
  color: #C9A84C;
}

.process-sub {
  max-width: 600px;
  margin: 15px auto 0;
  color: #7a8899;
  font-size: 15px;
  line-height: 1.8;
}

/* TIMELINE WRAPPER */
.timeline-center {
  position: relative;
  margin-top: 30px;
}

/* BASE LINE */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.08);
  transform: translateX(-50%);
}

/* SCROLL FILL LINE */
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0%;
  background: #C9A84C;
  transform: translateX(-50%);
  transition: height 0.25s linear;
  z-index: 1;
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
  /* padding: 40px; */
  /* padding-right: 40px; */
}

.timeline-item.left {
  left: 0;
  text-align: right;
   padding-right: 40px;
}

.timeline-item.right {
  left: 50%;
   padding-left: 40px;
}

/* CARD */
.timeline-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: #111820;
}

.timeline-content p {
  font-size: 14px;
  color: #7a8899;
  line-height: 1.7;
}

.tl-num {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.6;
  font-weight: 700;
}

/* ICON */
.timeline-icon {
  position: absolute;
  top: 50px;
  left: 100%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #999;
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item.right .timeline-icon {
  left: 0;
  transform: translateX(-50%);
}

/* ACTIVE STATE ON SCROLL */
.timeline-item.active .timeline-icon {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
  transform: translateX(-50%) scale(1.1);
}

.timeline-item.active .timeline-content {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .timeline-line,
  .timeline-progress {
    left: 20px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 80px;
  }

  .timeline-icon {
    left: 20px !important;
    transform: none !important;
  }
}
/* key Features................................................................................... */
/* Section */
.kf-section {
  background: linear-gradient(to bottom, #f4f6f8, #ffffff);
  padding: 30px 0;
}

/* Title */
.kf-main-title {
  font-size: clamp(28px,4vw,32px);
  font-weight: 800;
  color: #111820;
  letter-spacing: -1px;
}
.kf-main-title span {
  color: #C9A84C;
}
.kf-subtitle {
  max-width: 520px;
  margin: 15px auto 0;
  color: #7a8899;
  font-size: 15px;
  line-height: 1.8;
}

/* Card */
.kf-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #ececec;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  align-items: center;
}

/* Soft premium shadow */
.kf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(17,24,32,0.08);
  border-color: rgba(201,168,76,0.4);
}

/* Icon */
.kf-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #C9A84C;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.kf-card:hover .kf-card-icon {
  background: #C9A84C;
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

/* Content */
.kf-card-content h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #111820;
}

.kf-card-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.kf-card-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #6f7d8c;
  line-height: 1.6;
}

/* Premium dot bullet */
.kf-card-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #C9A84C;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .kf-card {
    flex-direction: column;
    align-items: flex-start;
  }
}



