.social-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

:root {
  --primary: #0229ac;
  --primary-dark: #001b76;
  --primary-light: #5570c7;
  --accent: #e61f28;
  --text-dark: #33475b;
  --text-muted: #5d6d7e;
  --bg-light: #f7f7f7;
  --bg-white: #fdfdfd;
  --radius: 10px;
  --radius-btn: 32px;
  --shadow: 0 10px 43px rgba(0, 0, 0, 0.15);
  --nav-height: 80px;
  --transition: 0.3s ease;
  --section-space-y: 3rem;
  --line-height-base: 1.6;
  --line-height-heading: 1.35;
  --content-gap-sm: 0.625rem;
  --content-gap-md: 1rem;
  --content-gap-lg: 1.375rem;
}

@media (min-width: 768px) {
  :root {
    --section-space-y: 3.75rem;
  }
}

/* Jarak antar section seragam — HANYA homepage (.home-page). Halaman lain kembali ke spacing asli. */
.home-page .jumbotron.jumbotron-fluid:not(.footer):not(.new-hero) {
  padding-top: var(--section-space-y) !important;
  padding-bottom: var(--section-space-y) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home-page .jumbotron.jumbotron-fluid.hero {
  padding-top: 0 !important;
  margin-top: var(--nav-height) !important;
}

.home-page .jumbotron.jumbotron-fluid.footer {
  padding-top: var(--section-space-y) !important;
  padding-bottom: var(--content-gap-lg) !important;
  margin: 0 !important;
}

.home-page .carousel.slide {
  padding-top: var(--section-space-y);
  padding-bottom: var(--section-space-y);
  margin-top: 0;
  margin-bottom: 0;
}

.home-page .carousel.slide .heading-carousel {
  padding-top: 0 !important;
}

.home-page .client-full.text-center {
  margin-top: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[loading="lazy"] {
  content-visibility: auto;
}

section,
.jumbotron {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: clip;
  margin: 0;
  box-sizing: border-box;
  line-height: var(--line-height-base);
  color: var(--text-dark);
}
@media (max-width: 991px) {
  body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
  }
}

/* Typography — jarak antar baris & paragraf seragam (homepage) */
.home-page .jumbotron:not(.footer) :is(h1, h2, h3, h4, h5, h6) {
  line-height: var(--line-height-heading);
}

.home-page .jumbotron:not(.footer) :is(p, li) {
  line-height: var(--line-height-base);
}

.home-page .info-exp,
.home-page .info-left .info-exp {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-md);
}

.home-page .info-exp h3,
.home-page .info-exp p,
.home-page .info-left .info-exp h3,
.home-page .info-left .info-exp p,
.home-page .jumbotron:not(.footer) .info-left h3.mb-4,
.home-page .jumbotron:not(.footer) .info-left p.mb-5,
.home-page .jumbotron:not(.footer) h3.mb-4,
.home-page .jumbotron:not(.footer) p.mb-5 {
  margin: 0 !important;
  padding: 0 !important;
}

.home-page .info-exp .row,
.home-page .info-left .info-exp .row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--content-gap-lg);
  margin: 0;
}

.home-page .info-exp .row > [class*="col-"],
.home-page .info-left .info-exp .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-sm);
  padding: 0;
  margin: 0 !important;
}

.home-page .info-exp .row > [class*="col-"] h3,
.home-page .info-exp .row > [class*="col-"] p,
.home-page .info-left .info-exp .row > [class*="col-"] h3,
.home-page .info-left .info-exp .row > [class*="col-"] p {
  margin: 0 !important;
  padding: 0 !important;
}

.span-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.span-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.home-page .hero :is(h1, .display-4, .display-5) {
  margin-bottom: var(--content-gap-md);
}

.home-page .hero :is(h1, .display-4, .display-5) + p {
  margin-bottom: var(--content-gap-md);
}

.home-page .jumbotron:not(.footer) > .container > h2:first-child,
.home-page .jumbotron:not(.footer) > h2:first-child,
.home-page .jumbotron:not(.footer) h2.text-center,
.home-page .jumbotron:not(.footer) h2.pb-3 {
  margin-top: 0;
  margin-bottom: var(--content-gap-lg) !important;
  padding-bottom: 0 !important;
}

.home-page .jumbotron:not(.footer) h2.my-5,
.home-page .jumbotron:not(.footer) h2.mb-5 {
  margin-top: 0 !important;
  margin-bottom: var(--content-gap-lg) !important;
}

.home-page .jumbotron:not(.footer) .container > p.pb-3,
.home-page .jumbotron:not(.footer) > p.pb-3 {
  margin-bottom: var(--content-gap-md) !important;
  padding-bottom: 0 !important;
}

.home-page .contact :is(h2, h3) {
  margin-bottom: var(--content-gap-sm);
}

.home-page .contact p {
  margin-bottom: var(--content-gap-md);
}

.home-page .contact p:last-child {
  margin-bottom: 0;
}

/* Jarak bawah seragam — override utilitas Bootstrap di konten (homepage) */
.home-page .jumbotron:not(.footer) .mb-3,
.home-page .jumbotron:not(.footer) [class*="col-"].mb-3 {
  margin-bottom: var(--content-gap-md) !important;
}

.home-page .jumbotron:not(.footer) .mb-4 {
  margin-bottom: var(--content-gap-lg) !important;
}

.home-page .jumbotron:not(.footer) .mb-5,
.home-page .jumbotron:not(.footer) .pb-5:not(.btn):not(.form-control):not(textarea) {
  margin-bottom: var(--content-gap-lg) !important;
  padding-bottom: 0 !important;
}

.home-page .jumbotron:not(.footer) .pb-3:not(.btn):not(.form-control):not(textarea) {
  margin-bottom: var(--content-gap-md) !important;
  padding-bottom: 0 !important;
}

.home-page .jumbotron:not(.footer) .my-5 {
  margin-top: 0 !important;
  margin-bottom: var(--content-gap-lg) !important;
}

.home-page .jumbotron:not(.footer) h2.pb-5,
.home-page .jumbotron:not(.footer) h2.text-center.pb-5 {
  margin-bottom: var(--content-gap-lg) !important;
  padding-bottom: 0 !important;
}

.home-page .jumbotron:not(.footer) p.text-muted.mb-3 {
  margin-bottom: var(--content-gap-sm) !important;
}

.home-page .jumbotron:not(.footer) :is(h1, h2, h3, h4, h5, h6) + p {
  margin-top: 0;
}

.home-page .infos-exp {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-md);
}

.home-page .infos-exp :is(h2, h3, p, a) {
  margin: 0 !important;
}

.home-page .hero .kiri :is(h1, .display-4, .display-5) {
  margin-bottom: var(--content-gap-md);
}

.home-page .hero .kiri p {
  margin-bottom: var(--content-gap-md);
}

.home-page .hero .kiri .btn {
  margin-top: var(--content-gap-sm);
}

.new-hero h1 {
  margin-bottom: var(--content-gap-md);
}

.new-hero p.mb-4 {
  margin-bottom: var(--content-gap-md) !important;
}

.home-page .product .fill-product h3 {
  margin-bottom: var(--content-gap-sm);
}

.home-page .product .fill-product p {
  margin-bottom: var(--content-gap-md);
}

.home-page .product-sidebar h2 {
  margin-bottom: var(--content-gap-md);
}

.home-page .fill-form .row.g-3 {
  --bs-gutter-y: var(--content-gap-md);
}

.home-page .map .row.g-4 > [class*="col-"] :is(h2, h3, h4) {
  margin-bottom: var(--content-gap-sm);
}

.home-page .map .row.g-4 > [class*="col-"] p {
  margin-bottom: var(--content-gap-md);
}

.home-page .map .row.g-4 > [class*="col-"] p:last-child {
  margin-bottom: 0;
}

.home-page .list-blog .card-body :is(h3, h4, h5, h6) {
  margin-bottom: var(--content-gap-sm);
}

.home-page .list-blog .card-body p {
  margin-bottom: var(--content-gap-md);
}

.home-page .list-blog .card-body p:last-child {
  margin-bottom: 0;
}

.home-page .list-blog .container .row .mb-3.card {
  margin-bottom: var(--content-gap-md) !important;
}

/* Blog listing — jarak judul halaman ke Latest Stories (homepage) */
.home-page .jumbotron.jumbotron-fluid.blog-hero {
  padding-bottom: 1.25rem !important;
}

.home-page .jumbotron.jumbotron-fluid.blog-hero .container {
  padding-bottom: 0 !important;
}

.home-page .jumbotron.jumbotron-fluid.blog-hero + .jumbotron.list-blog {
  padding-top: 1.25rem !important;
}

@media (min-width: 768px) {
  .home-page .jumbotron.jumbotron-fluid.blog-hero {
    padding-bottom: 1.5rem !important;
  }

  .home-page .jumbotron.jumbotron-fluid.blog-hero + .jumbotron.list-blog {
    padding-top: 1.5rem !important;
  }
}

.home-page .client .container-xxl > p.pb-3 {
  margin-bottom: var(--content-gap-md) !important;
  padding-bottom: 0 !important;
}

.home-page .client-full > h2.pb-3 {
  margin-bottom: var(--content-gap-md) !important;
  padding-bottom: 0 !important;
}

.home-page .client-full .container.mt-5 {
  margin-top: var(--content-gap-lg) !important;
}

.home-page .footer .row.mb-3 {
  margin-bottom: var(--content-gap-md) !important;
}

.home-page .footer .kiri.pb-2 {
  padding-bottom: var(--content-gap-sm) !important;
}

.home-page .footer .row.bawah {
  margin-bottom: var(--content-gap-sm);
  padding-bottom: var(--content-gap-md) !important;
}

.home-page .footer .container > .row.border-top .col {
  padding-top: var(--content-gap-md) !important;
  padding-bottom: var(--content-gap-md) !important;
}

@media (min-width: 768px) {
  .home-page .footer .row.bawah {
    padding-bottom: var(--content-gap-lg) !important;
  }

  .home-page .footer .container > .row.border-top .col {
    padding-top: var(--content-gap-lg) !important;
    padding-bottom: var(--content-gap-lg) !important;
  }
}

noscript iframe {
  display: none;
  visibility: hidden;
}
.menu-item-has-children .sub-menu .list-item:first-child div .title {
  color: #616161 !important;
}
.hero {
  margin-top: var(--nav-height);
  background-color: #f7f7f7;
}
.hero .kanan {
  background-size: cover;
  height: 70vh;
}
.hero .con {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero .con .kiri {
  padding-left: 20px;
}
.hero .con .kanan {
  width: 100%;
}
.btn-hero {
  color: #fff;
  background-color: #0229ac;
  border-radius: 50px;
  border: 1px solid #0229ac;
}
.btn-hero:hover {
  color: #0229ac;
  background-color: #fff;
  border: 1px solid #0229ac;
}
.nav-header-item .logo a svg,
.logo-nav-svg {
  width: 200px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 400 / 56;
  display: block;
  flex-shrink: 0;
}
.nav-header .navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.nav-header .logo {
  min-width: 0;
}
.client {
  color: #7f7f7f;
}
.client img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  filter: grayscale(100%);
}
.info {
  background-color: #f7f7f7;
}
.btn-info {
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #0229ac;
  font-weight: 600;
}
.btn-info.active {
  color: #fff;
  background-color: #0229ac;
  border: 1px solid #0229ac;
}
.btn-info:hover {
  color: #fff;
  background-color: #5570c7;
  border: 1px solid #5570c7;
}
.fill-info,
.fill-infos {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: var(--content-gap-lg);
}
.info .fill-infos .infos-right img {
  width: 100%;
}
.info .container .fill-infos .infos-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-exp a {
  color: #0229ac;
  text-decoration: none;
  font-size: 16px;
}
.info-right img,
.infos-right img {
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 43px rgba(0, 0, 0, 0.25);
}
.product {
  background-color: #fdfdfd;
}

.product.jumbotron {
  overflow: visible;
}

.product .container {
  overflow: visible;
}

.product-layout {
  display: grid;
  gap: var(--content-gap-lg);
  align-items: start;
}

@media (min-width: 992px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }

  .product-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    z-index: 5;
    align-self: start;
  }
}

.product-sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-sidebar-actions {
    grid-template-columns: 1fr;
  }
}

.product .product-col {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  height: clamp(220px, 35vw, 287px);
  border-radius: 10px;
}

.product .product-col .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product .product-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.product .fill-product {
  position: absolute;
  top: 50%;
  left: 45px;
  right: 1rem;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

/* Gap kartu produk di halaman industry (Bootstrap gutter tidak aktif di .row global) */
body:not(.solution-page) .product .row:has(> [class*="col-"].product-col),
.products .row:has(> [class*="col-"].product-col) {
  --product-card-gap: var(--content-gap-lg);
  margin-right: calc(var(--product-card-gap) * -0.5);
  margin-left: calc(var(--product-card-gap) * -0.5);
}

body:not(.solution-page) .product .row > [class*="col-"].product-col,
.products .row > [class*="col-"].product-col {
  padding-right: calc(var(--product-card-gap, 1.5rem) * 0.5);
  padding-left: calc(var(--product-card-gap, 1.5rem) * 0.5);
  margin-bottom: var(--product-card-gap, 1.5rem) !important;
}

/* Halaman solution — jarak antar konten */
.solution-page .fill-info,
.solution-page .fill-infos {
  gap: 2rem;
}

.solution-page .cover-btn-info,
.solution-page .info .pb-5.text-center {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.solution-page .cover-btn-info .btn-info,
.solution-page .info .pb-5.text-center .btn-info {
  margin-right: 0 !important;
}

/* Grid kartu produk dengan gap & overlay penuh (solution & industry) */
.product .product-card-grid {
  --product-card-gap: var(--content-gap-lg);
  margin-right: calc(var(--product-card-gap) * -0.5);
  margin-left: calc(var(--product-card-gap) * -0.5);
}

.product .product-card-grid > [class*="col-"] {
  padding-right: calc(var(--product-card-gap) * 0.5);
  padding-left: calc(var(--product-card-gap) * 0.5);
  margin-bottom: var(--product-card-gap);
}

.product .product-card-grid .product-col {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 220px;
  height: clamp(220px, 35vw, 287px);
  border-radius: 10px;
  isolation: isolate;
}

.product .product-card-grid .product-col .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
}

.product .product-card-grid .product-col::before {
  inset: 0;
  border-radius: 10px;
}

.product .product-card-grid .fill-product {
  position: absolute;
  inset: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2.25rem 2.5rem;
  gap: var(--content-gap-md);
  color: #fff;
  z-index: 2;
}

.product .product-card-grid .fill-product h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-heading);
}

.product .product-card-grid .fill-product p {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: var(--line-height-base);
}

.product .product-card-grid .fill-product .btn {
  margin-top: 0;
}

.solution-page .industries .row,
.solution-page .client .row {
  --section-card-gap: var(--content-gap-lg);
  margin-right: calc(var(--section-card-gap) * -0.5);
  margin-left: calc(var(--section-card-gap) * -0.5);
}

.solution-page .industries .row > [class*="col-"],
.solution-page .client .row > [class*="col-"] {
  padding-right: calc(var(--section-card-gap, 1.5rem) * 0.5);
  padding-left: calc(var(--section-card-gap, 1.5rem) * 0.5);
  margin-bottom: var(--section-card-gap, 1.5rem);
}

.solution-page .fill-industries {
  gap: var(--content-gap-md);
}

.solution-page .fill-industries h3,
.solution-page .fill-industries p {
  margin-bottom: 0;
}

.solution-page .contact .row > [class*="col-"] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.product .fill-product h3 {
  line-height: var(--line-height-heading);
}

.product .fill-product p {
  line-height: var(--line-height-base);
}

.product-sidebar h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: var(--line-height-heading);
}
.industries {
  background-color: #fdfdfd;
}
.fill-industries img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 43px rgba(0, 0, 0, 0.25);
}
.fill-industries a {
  color: #0229ac;
  text-decoration: none;
  font-weight: 600;
}
.btn-industries {
  border: 1px solid #0229ac;
  border-radius: 32px;
}
.btn-industries:hover {
  color: #fff;
  background-color: #5570c7;
}
.blog {
  background-color: #fdfdfd;
}
.blog .col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fill-blog img {
  /*width: 100%;*/
  border-radius: 10px;
  box-shadow: 0 10px 43px rgba(0, 0, 0, 0.25);
}
.btn-blog {
  border: 1px solid #0229ac;
  border-radius: 32px;
}
.btn-blog:hover {
  color: #fff;
  background-color: #5570c7;
}
.testi {
  background-color: #f7f7f7;
}
.testi .carousel-indicators button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #a3a3a3 !important;
  transition: 0.4s ease-in;
}
.testi .carousel-indicators button.active {
  width: 21px;
  border-radius: 20px !important;
  background-color: #8b9dd9 !important;
}
.testi img {
  width: 100%;
}
.btn-contact {
  border-radius: 32px;
  background-color: #0229ac;
  color: #fff;
}
.footer a {
  color: #000;
  text-decoration: none;
}
.footer .kanan a {
  font-size: 24px;
}
.footer .kanan > .row {
  --bs-gutter-x: 2rem;
}
.footer .bawah a {
  margin-right: 30px;
  margin-bottom: 15px;
}
.footer .container .row div svg {
  max-width: 400px;
}
.map .fill-form,
.fill-form form {
  background-color: #fff !important;
}
.map iframe,
.map .fill-form {
  box-shadow: 0 10px 43px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.map .container iframe {
  border: 0;
  width: 100%;
  height: 380px;
}
.map p i {
  color: #e6212a;
}
.client-full .container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: var(--content-gap-md);
}
.client-full img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  transition: 0.4s;
}
.client-full img:hover {
  transform: scale(1.1);
}
.harpers-logo .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--content-gap-md);
}
.harpers-logo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.list-blog .card,
.list-blog .card img {
  border-radius: 10px;
}
.list-blog .container .row .mb-3.card {
  width: 100%;
}
.list-blog .card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.btn-blog-read {
  background-color: #0229ac;
  color: #fff;
  border-radius: 32px;
}
.btn-blog-read:hover {
  background-color: #8b9dd9;
  color: #fff;
}
.btn-blogs {
  background-color: #0229ac !important;
  border-radius: 32px;
  color: #fff;
}
.btn-blogs:hover {
  color: #fff;
  background-color: #8b9dd9;
}
.carousel-item .fill-info .info-right img {
  width: 100%;
}
@media (max-width: 649.98px) {
  .navbar-brand img {
    width: 200px;
  }
  .hero .con {
    grid-template-columns: 1fr;
  }
  .hero .kanan {
    height: 50vh;
  }
}
@media (max-width: 768px) {
  .footer .bawah .col {
    display: flex;
    flex-direction: column;
  }
  .client-full .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .fill-info,
  .fill-infos {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "kanan kanan" "kiri kiri";
  }
  .info-right,
  .infos-right {
    grid-area: kanan;
    min-width: 0;
    max-width: 100%;
  }
  .info-left,
  .infos-left {
    grid-area: kiri;
    min-width: 0;
    max-width: 100%;
  }
  .info .container .fill-infos .infos-left {
    justify-content: flex-start;
  }
  .infos-exp {
    width: 100%;
    max-width: 100%;
  }
  .info .infos-exp .btn-blogs {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .cover-btn-info {
    display: flex;
    width: max-content;
  }
  .cover-info-btn {
    overflow-x: scroll;
  }
}
@media screen and (min-width: 1440px) {
  .hero .kanan {
    height: 50vh;
  }
}
:before,
:after {
  box-sizing: border-box;
}
.container-nav {
  max-width: 1200px;
  margin: auto;
  height: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.v-center {
  align-items: center;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.nav-header {
  background-color: #fff;
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 15px;
  height: 80px;
}
.nav-header .nav-item-left {
  display: flex;
  flex: 0 0 25%;
}
.nav-header .nav-item-right {
  flex: 0 70%;
  display: flex;
  justify-content: flex-end;
}
.nav-header .nav-item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  transition: color 0.3s ease;
}
.nav-header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}
.nav-header .menu > ul > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.nav-header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .nav-header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
.nav-header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
.nav-header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
.nav-header .menu > ul > li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}
.nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}
.nav-header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 30%;
  padding: 0 15px;
}
.products .card {
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.products .card .btn-products {
  background-color: #0229ac;
  border-radius: 32px;
  color: #fff;
}
.products .card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.products .product-col .card {
  width: 100%;
}
.btn-prod-link {
  border-radius: 32px;
  background-color: #0229ac;
  color: #fff;
}
.btn-prod-link:hover {
  background-color: #8b9dd9;
  color: #fff;
}
.fill-blog ol li ul li {
  list-style-type: circle;
  margin-left: 15px;
}
.fill-blog ul li {
  list-style-type: circle;
  margin-left: 20px;
}
@media (min-width: 991px) {
  .nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 48px 0;
  }
  .nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    border-right: 1px solid #000;
  }
  .nav-header .menu > ul > li .sub-menu.mega-menu-column-4 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    padding: 20px 15px;
  }
  .nav-header .menu > ul > li .sub-menu.mega-menu-column-4.industrial {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 20px 15px;
  }
  .list-item:last-child ul {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1.5fr 1.5fr;
  }
  .industrial .list-item:last-child ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .list-item:first-child {
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
  }
  .nav-header .logo {
    display: flex;
    margin: auto;
  }
}
.fill-det-prod {
  height: 100%;
}
.fill-det-prod img {
  width: 95%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.harpers img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.btn-harpers {
  border: 1px solid #0229ac;
  background-color: #fff;
  color: #000;
  border-radius: 32px;
}
.btn-harpers:hover {
  background-color: #0229ac;
  color: #fff;
}
.harpers-link {
  display: inline-block;
}
.type .card {
  width: 18rem;
  background-color: #f7f7f7;
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.type img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item:last-child {
  border-right: none;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
  text-align: center;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
}
.nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.nav-header .menu > ul > li .sub-menu > ul > li > a:hover,
.nav-header .nav-item-right a:hover,
.nav-header .menu > ul > li:hover > a {
  color: #0229ac;
}
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}
.btn-nav-product {
  background-color: #ffffff;
  border: 1px solid #0229ac;
  padding: 0 50px;
  border-radius: 32px;
}
.blog-desc .fill-blog h3 {
  font-size: 1.5rem !important;
}
.pagination .page-item.active .page-link {
  background-color: #0229ac !important;
  border-color: #0229ac;
  color: #fff;
}
.pagination .page-item .page-link {
  color: #0229ac;
  border-color: #000;
}
.pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(2, 41, 172, 0.25);
}
@media (max-width: 991px) {
  .nav-header {
    display: flex;
    align-items: center;
    padding: 0 12px 0 26px;
  }

  .nav-header .container-nav {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .nav-header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  .nav-header .nav-item-left {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
  }
  .nav-header .logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    min-width: auto;
  }
  .nav-header .navbar-brand {
    flex-shrink: 0;
  }
  .nav-header .row.v-center {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
  .nav-header .mobile-menu-trigger,
  .nav-header .navbar-toggler {
    display: flex;
    height: 44px;
    width: 44px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
  }
  .nav-header .mobile-menu-trigger:active,
  .nav-header .navbar-toggler:active {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .nav-header .mobile-menu-trigger span,
  .nav-header .navbar-toggler span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
    flex-shrink: 0;
  }
  .nav-header .mobile-menu-trigger span:before,
  .nav-header .mobile-menu-trigger span:after,
  .nav-header .navbar-toggler span:before,
  .nav-header .navbar-toggler span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .nav-header .mobile-menu-trigger span:before,
  .nav-header .navbar-toggler span:before {
    top: -6px;
  }
  .nav-header .mobile-menu-trigger span:after,
  .nav-header .navbar-toggler span:after {
    top: 6px;
  }
  .nav-header .nav-item-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    padding-right: 0;
    margin-left: auto;
  }
  .nav-header .menu {
    position: fixed;
    width: 320px;
    max-width: 88vw;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .nav-header .menu.active {
    transform: translate(0%);
  }
  .nav-header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .nav-header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
  }
  .nav-header .menu > ul > li > a:active {
    background-color: rgba(2, 41, 172, 0.05);
  }
  .nav-header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .nav-header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .nav-header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .nav-header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .nav-header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    flex: 1 1 auto;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .nav-header .menu .menu-main {
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-header .menu > ul > li .sub-menu.mega-menu,
  .nav-header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .nav-header .menu > ul > li .sub-menu.active {
    display: block;
  }
  .nav-header .menu > ul > li .sub-menu .list-item:first-child {
    text-align: center;
    margin-bottom: 15px;
  }
  .nav-header .menu > ul > li .sub-menu .list-item:first-child .btn-nav-product {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    padding: 0 20px;
    text-align: center;
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
  margin-bottom: 20px;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
  margin-bottom: 0px;
}
.nav-header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 100%;
  padding: 0px;
}
.nav-header .menu > ul > li .sub-menu > ul > li > a,
.nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  display: block;
}
.nav-header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
  margin-bottom: 15px;
}
.menu-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1098;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.list-case .container div .card .card-body p {
  margin-bottom: 0;
}
/*.tag-bl*/
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
.floating-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0229ac;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}
.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.floating-button i {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}
.social-buttons {
  position: absolute;
  bottom: 70px;
  right: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.social-buttons.active {
  opacity: 1;
  visibility: visible;
}
.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  background: #0229ac;
}
.social-buttons.active .social-button {
  transform: translateY(0);
  opacity: 1;
}
.social-buttons.active .social-button:nth-child(1) {
  transition-delay: 0.1s;
}
.social-buttons.active .social-button:nth-child(2) {
  transition-delay: 0.2s;
}
.social-buttons.active .social-button:nth-child(3) {
  transition-delay: 0.3s;
}
.whatsapp-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
}
.gmail-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
}
.instagram-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.social-button i {
  color: white;
  font-size: 20px;
}
.tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}
.social-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .floating-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-button {
    width: 55px;
    height: 55px;
  }
  .floating-button i {
    font-size: 22px;
  }
  .social-button {
    width: 45px;
    height: 45px;
  }
  .social-button i {
    font-size: 18px;
  }
  .demo-content h1 {
    font-size: 2rem;
  }
  .demo-content p {
    font-size: 1rem;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 41, 172, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(2, 41, 172, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 41, 172, 0);
  }
}
.floating-button.pulse {
  animation: pulse 2s infinite;
}
og {
  display: inline-block;
  border-radius: 50px;
  padding: 2px 15px;
  font-size: 10px;
}
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
.floating-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0229ac;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}
.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.floating-button i {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}
.floating-button.active i {
  transform: rotate(45deg);
}
.social-buttons {
  position: absolute;
  bottom: 70px;
  right: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.social-buttons.active {
  opacity: 1;
  visibility: visible;
}
.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  background: #0229ac;
}
.social-buttons.active .social-button {
  transform: translateY(0);
  opacity: 1;
}
.social-buttons.active .social-button:nth-child(1) {
  transition-delay: 0.1s;
}
.social-buttons.active .social-button:nth-child(2) {
  transition-delay: 0.2s;
}
.social-buttons.active .social-button:nth-child(3) {
  transition-delay: 0.3s;
}
.whatsapp-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
}
.gmail-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
}
.instagram-btn:hover {
  background: #001f7f;
  transform: scale(1.1) translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.social-button i {
  color: white;
  font-size: 20px;
}
.tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}
.social-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .floating-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-button {
    width: 55px;
    height: 55px;
  }
  .floating-button i {
    font-size: 22px;
  }
  .social-button {
    width: 45px;
    height: 45px;
  }
  .social-button i {
    font-size: 18px;
  }
  .demo-content h1 {
    font-size: 2rem;
  }
  .demo-content p {
    font-size: 1rem;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 41, 172, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(2, 41, 172, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 41, 172, 0);
  }
}
.tag-blog{display:inline-block;border-radius:50px;padding:2px 15px;font-size:10px;}
        
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    width : 50%;
    margin: auto;
}

.select-wrapper:hover {
    border-color: #667eea;
}

.select-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-icon {
    padding: 12px;
    background: #f8f9fa;
    color: #667eea;
}

.select-with-icon {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    appearance: none;
    flex: 1;
}

.floating-button.pulse {
  animation: pulse 2s infinite;
}

.hero .container-xxl .row .kanan {
  background-image: url(../img/EAS-img.jpg);
}

.select-wrapper {
  width: 100%;
}

/* Homepage hero – tampilan asli, perbaikan responsif saja */
.new-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  margin-top: var(--nav-height);
  background-image: url("../img/hero-banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.new-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 1;
}

.new-hero .row {
  position: relative;
  z-index: 2;
}

.new-hero .container-xxl,
.new-hero .row {
  height: 100%;
  min-height: inherit;
}

.new-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: var(--line-height-heading);
}

.new-hero p {
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: var(--line-height-base);
}

.word-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-height: 1.1em;
  padding-bottom: 12px;
  text-align: left;
  transition: width 0.35s ease;
}

.animated-word {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  max-width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  white-space: nowrap;
}

.animated-word.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
  background-color: var(--primary);
  border-radius: 6px;
}

@keyframes swipeUpIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes swipeUpOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  40% {
    opacity: 1;
    transform: translateY(-8px) scale(0.99);
  }
  to {
    opacity: 0;
    transform: translateY(-40px) scale(0.98);
  }
}

.animated-word.active {
  opacity: 1;
  animation: swipeUpIn 0.6s cubic-bezier(0.83, 0, 0.17, 1) both;
  z-index: 2;
}

.animated-word.out {
  opacity: 0;
  animation: swipeUpOut 0.4s cubic-bezier(0.83, 0, 0.17, 1) both;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .animated-word.active,
  .animated-word.out {
    animation: none !important;
    transition: none !important;
  }
  .animated-word.active {
    opacity: 1;
  }
  * {
    scroll-behavior: auto !important;
  }
}

.btn-demo,
.btn-req {
  border-radius: 6px;
  border: 1px solid var(--primary);
  display: inline-block;
  width: 100%;
  transition: var(--transition);
  text-decoration: none;
}

.btn-demo {
  background-color: var(--primary);
  color: #fff;
}

.btn-demo:hover {
  background-color: rgb(0, 27, 118);
  color: #fff;
}

.btn-req {
  background-color: #fff;
  color: var(--primary);
}

.btn-req:hover {
  background-color: #e4e4e4;
  color: var(--primary);
}

@media (min-width: 992px) {
  .new-hero {
    background-position: center -100px;
  }
}

@media (min-width: 1200px) {
  .new-hero h1 {
    font-size: calc(1.75rem + 1.5vw);
  }

  .new-hero p {
    font-size: x-large;
  }
}

@media (max-width: 991.98px) {
  .new-hero {
    min-height: auto;
    padding: 3rem 0;
    background-position: center center;
  }

  .new-hero .container-xxl,
  .new-hero .row {
    min-height: auto;
  }

  .new-hero .word-container {
    padding-bottom: 8px;
  }

  .new-hero .animated-word {
    font-weight: 400;
    font-size: 0.92em;
    letter-spacing: -0.025em;
  }

  .new-hero .animated-word.active::after {
    height: 7px;
    bottom: -7px;
    border-radius: 4px;
  }
}

@media (max-width: 575.98px) {
  .new-hero {
    margin-top: 70px;
    padding: 2.5rem 0;
  }

  .new-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .new-hero .word-container {
    padding-bottom: 6px;
  }

  .new-hero .animated-word {
    font-size: 0.88em;
    letter-spacing: -0.035em;
  }

  .new-hero .animated-word.active::after {
    height: 5px;
    bottom: -5px;
  }
}

/* Carousel homepage */
.carousel.slide {
  background-color: var(--bg-light);
}

.carousel-item {
  padding: 30px 0;
  background-color: var(--bg-light);
}

.platform-title {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: var(--content-gap-sm);
  line-height: var(--line-height-heading);
  color: var(--text-dark);
}

.platform-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-bottom: var(--content-gap-md);
  line-height: var(--line-height-base);
  color: var(--text-muted);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--text-dark);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: var(--primary);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  top: auto;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7f7f7f;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--text-dark);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.carousel-indicators {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  position: absolute;
  right: auto;
}

.carousel-control-prev {
  left: 10%;
}

.carousel-control-next {
  right: 10%;
}

.carousel-item img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.carousel-slide-row {
  min-height: 200px;
}

.sticky-top {
  top: calc(var(--nav-height) + 5px) !important;
}

.heading-carousel h2,
.sticky-top h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: var(--line-height-heading);
  margin-bottom: var(--content-gap-sm);
}

.heading-carousel p {
  line-height: var(--line-height-base);
  margin-bottom: var(--content-gap-md);
}

.home-page .footer .bawah {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .home-page .footer .bawah {
    justify-content: flex-start;
  }
}

.home-page .footer .bawah a {
  margin-right: 0;
  margin-bottom: 0;
}

.client img {
  transition: filter var(--transition), transform var(--transition);
}

.client img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.home-page .fill-industries,
.home-page .fill-blog {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-md);
}

.home-page .fill-industries :is(h2, h3, p, a),
.home-page .fill-blog :is(h2, h3, p, a) {
  margin: 0 !important;
  line-height: var(--line-height-base);
}

.home-page .fill-industries :is(h2, h3),
.home-page .fill-blog :is(h2, h3) {
  line-height: var(--line-height-heading);
}

.home-page .fill-industries img,
.home-page .fill-blog img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0 !important;
}

.home-page .contact .row {
  align-items: center;
  gap: 1rem;
}

.home-page .btn-contact {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .nav-header .menu > ul > li {
    margin-left: 0;
  }

  .carousel-control-prev {
    left: 5%;
  }

  .carousel-control-next {
    right: 5%;
  }

  .product .fill-product {
    left: 25px;
  }

  .product .product-card-grid .fill-product {
    left: 0;
    padding: 1.75rem 1.5rem;
  }

  .product .fill-product h3 {
    font-size: 1.25rem;
  }

  .client-full .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .nav-header {
    padding: 0 12px 0 26px;
    height: 70px;
  }

  :root {
    --nav-height: 70px;
  }

  .nav-header-item .logo a svg,
  .logo-nav-svg {
    width: 160px;
    max-width: calc(100vw - 90px);
    height: auto;
    aspect-ratio: 400 / 56;
  }

  .hero,
  .new-hero {
    margin-top: 70px;
  }

  .client-full .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-demo,
  .btn-req {
    font-size: 0.9rem;
    padding: 0.65rem 0.5rem !important;
  }
}

/* Cookie consent banner */
.cookie-consent {
  --cookie-banner-height: 0px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  background: #fff;
  border-top: 3px solid var(--primary, #0229ac);
  box-shadow: 0 -4px 24px rgba(2, 41, 172, 0.15);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.cookie-consent__content {
  flex: 1;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #0229ac);
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}

.cookie-consent__btn {
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background-color: var(--primary, #0229ac);
  color: #fff;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
  background-color: #001f7f;
  color: #fff;
}

.cookie-consent__btn--decline {
  background-color: transparent;
  color: var(--primary, #0229ac);
  border: 1px solid var(--primary, #0229ac);
}

.cookie-consent__btn--decline:hover,
.cookie-consent__btn--decline:focus {
  background-color: rgba(2, 41, 172, 0.08);
  color: var(--primary, #0229ac);
}

.floating-container {
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.cookie-consent-active .floating-container {
  bottom: calc(var(--cookie-banner-height, 110px) + 12px);
}

@media (max-width: 767.98px) {
  .cookie-consent {
    padding-left: 0;
    padding-right: 0;
  }

  .cookie-consent .cookie-consent__inner.container {
    width: 100%;
    max-width: none;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    padding-top: 0.875rem;
    padding-bottom: 0.75rem;
  }

  .cookie-consent__content {
    max-height: 28vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-consent__title {
    font-size: 0.9375rem;
    line-height: 1.35;
    margin-bottom: 0.25rem;
  }

  .cookie-consent__text {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    width: 100%;
  }

  .cookie-consent__btn {
    flex: none;
    min-height: 44px;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
  }
}