:root {
  --primary: #0b2e67;
  --primary-light: #1259c3;
  --blue: #0758c9;
  --text: #0d1f41;
  --muted: #64748b;
  --border: #e5ebf5;
  --light-blue: #eef5ff;
}article-description

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

/* ======= NAVBAR ======= */

.navbar {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.96);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-brand img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  line-height: 1.2;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.brand-subtitle {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.navbar-nav {
  gap: 28px;
}

.navbar-nav .nav-link {
  position: relative;
  color: #0f172a;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
  width: 45px;
  height: 2px;
  background: var(--primary);
  border-radius: 10px;
}

.btn-contact {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s;
}

.btn-contact:hover {
  background: #061f49;
  color: #fff;
  transform: translateY(-1px);
}


/* ======== HERO ======= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 35%,rgba(216, 237, 255, .7),rgba(255,255,255,0) 38%),
              linear-gradient(180deg,#f9fcff 0%,#ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -150px;
  top: -100px;
  background: rgba(221, 239, 255, .45);
  filter: blur(70px);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 30px;
  background: #e9f0fa;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 55px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.hero-title {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #172b4d;
  margin-bottom: 12px;
}

.hero-description {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.8;
  color: #53627a;
  margin-bottom: 28px;
}

.hero-benefits {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.hero-benefit span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #17213a;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: .25s;
}

.btn-primary-custom:hover {
  background: #061f49;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: .25s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(15, 52, 95, .12));
}

.klhk-badge {
  position: absolute;
  bottom: 15px;
  left: 35px;
  background: rgba(255,255,255,.96);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(18, 43, 77, .12);
}

.klhk-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.klhk-badge small {
  display: block;
  font-size: 12px;
  color: #17213a;
  font-weight: 600;
}

.klhk-badge strong {
  font-size: 21px;
  color: #111827;
  line-height: 1;
}

.klhk-badge span {
  display: block;
  font-size: 8px;
  color: #555;
  margin-top: 3px;
}

/* ======= SECTION GENERAL ======== */
.section {
  padding: 75px 0;
}

.section-label {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  color: var(--primary);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}


/* ======= FEATURES ======= */
.features-section {
  padding-top: 25px;
}

.features-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
}

.feature-card {
  height: 100%;
  border: 1px solid #e6edf7;
  border-radius: 10px;
  padding: 25px 20px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(20, 60, 120, .035);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(20, 60, 120, .09);
  border-color: #cfe0fa;
}

.feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: #53627a;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

/* ========= ABOUT ======== */
.about-section {
  padding-top: 30px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
}

.about-badge {
  position: absolute;
  left: -25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0754b8;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(7, 84, 184, .25);
}

.about-badge-icon {
  font-size: 28px;
}

.about-badge span {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.about-content {
  padding-left: 35px;
}

.about-content h2 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-content p {
  color: #53627a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-stat {
  text-align: center;
}

.about-stat-icon {
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 6px;
}

.about-stat strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.about-stat span {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

/* ======== INDUSTRIES ========= */
.industries-section {
  padding: 17px 0;
  background: linear-gradient(90deg,#06285d,#0758b8);
  color: #fff;
}

.industries-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

.industry-icon {
  font-size: 23px;
}

.industry-item span {
  font-size: 12px;
  font-weight: 600;
}

/* ======== FOOTER ======== */
.footer {
  padding: 45px 0 20px;
  background: #fff;
}

.footer-logo {
  width: 58px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand strong {
  font-size: 15px;
  color: var(--primary);
}

.footer-description {
  max-width: 270px;
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
}

.footer h6 {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 9px;
}

.footer ul li a {
  color: #334155;
  font-size: 12px;
}

.footer ul li a:hover {
  color: var(--blue);
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #334155;
  font-size: 12px;
  line-height: 1.5;
}

.contact-item i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

.copyright {
  border-top: 1px solid #edf0f5;
  margin-top: 30px;
  padding-top: 18px;
  text-align: center;
  color: #64748b;
  font-size: 12px;
}

hr {
    border: 0;
    border-top: 1.5px solid #007bff;
    width: 15%;
    margin: 15px auto;
}

/* ========= RESPONSIVE ======== */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0;
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar-contact {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 55px 0 20px;
  }

  .hero-image-wrapper {
    padding: 20px 0 50px;
  }

  .about-content {
    padding-left: 0;
    padding-top: 45px;
  }

  .about-badge {
    left: 20px;
  }
}



@media (max-width: 767.98px) {
  .navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    width: 52px;
    height: 44px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-title {
    font-size: 17px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-benefits {
    gap: 16px;
  }

  .hero-benefit {
    width: calc(50% - 10px);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-image-wrapper {
    padding-top: 5px;
  }

  .hero-product {
    max-width: 100%;
  }

  .klhk-badge {
    left: 10px;
    bottom: 0;
    padding: 10px 14px;
  }

  .klhk-logo {
    width: 38px;
    height: 38px;
  }

  .klhk-badge strong {
    font-size: 17px;
  }

  .section {
    padding: 55px 0;
  }

  .section-title {
    font-size: 23px;
  }

  .feature-card {
    padding: 22px;
  }

  .about-image {
    height: 280px;
  }

  .about-badge {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: -30px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .about-stat {
    margin-bottom: 25px;
  }

  .industries-section {
    padding: 30px 0;
  }

  .industry-item {
    margin-bottom: 18px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-column {
    margin-top: 30px;
  }
}



/* -------- START SLIDER --------- */
.gambar-slider{
    margin-top: 4%;
    width: 100%;
    height: 95vh;
    object-fit: contain;
}

.btn-slider {
    background-image: linear-gradient(#0B70FF, #000000);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-top: 25%;
    margin-left: 3%;
    margin-right: 3%;
}
    
.btn-slider:hover{
    background-color: #007bff;
}