/**
* Template Name: BizLand
* Updated: Jan 29 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.custom-icon {
  width: 8px;  
  height: 8px;
  fill: #444444; 
  margin-bottom: 10px; 
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.info-box:hover .custom-icon {
  fill: #007bff;
  transition: fill 0.3s ease;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #000000;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #000000;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #000000;
}

#header .logo img {
  max-height: 25px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #000000;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000000;
  font-size: 13px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar-2 .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar-2 .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #000000;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  #navbar:not(.navbar-mobile) ul {
    display: none;
  }

  #facility .navbar-2 {
    padding: 0 15px;
  }

  #facility .navbar-2 ul {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding: 0 15px;
    -webkit-overflow-scrolling: touch;
  }

  #facility .navbar-2 ul::-webkit-scrollbar {
    display: none;
  }

  #product .navbar-2 {
    padding: 0 15px;
  }

  #product .navbar-2 ul {
    overflow-x: auto;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #product .navbar-2 ul::-webkit-scrollbar {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  /* shorthand for top/right/bottom/left: 0; */
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  transition: background 0.3s;
  box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.14);
  backdrop-filter: blur(2px);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #222;
  font-size: 2rem;
  background: #f7f7f7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
  border: none;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 75px;
  right: 24px;
  left: 24px;
  bottom: 24px;
  padding: 24px 0;
  background: #fff;
  border-radius: 14px;
  overflow-y: auto;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
  margin: 0 0 6px 0;
  border-bottom: 1px solid #f2f2f2;
}

.navbar-mobile>ul>li:last-child {
  border-bottom: none;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 13px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  background: transparent;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
}

.navbar-mobile a .bi,
.navbar-mobile a i {
  margin-right: 7px;
  font-size: 1.15em;
}

.navbar-mobile .active,
.navbar-mobile a.active,
.navbar-mobile a:hover,
.navbar-mobile li:hover>a {
  color: #106eea;
  background: #f3f7fc;
  box-shadow: 0 2px 8px rgba(16, 110, 234, 0.085);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 18px 24px;
  background: linear-gradient(90deg, #106eea 0%, #3b8af2 100%);
  color: #fff !important;
  border-radius: 18px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(16, 110, 234, 0.16);
  text-align: center;
  letter-spacing: 0.04em;
  border: none;
  padding: 13px 0;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 8px 26px 14px 26px;
  padding: 12px 0;
  z-index: 98;
  background: #f7fafc;
  border-radius: 12px;
  box-shadow: 0px 3px 22px rgba(127, 137, 161, 0.10);
  opacity: 1;
  visibility: visible;
}

.navbar-mobile .dropdown ul li {
  min-width: 180px;
  margin-bottom: 2px;
}

.navbar-mobile .dropdown ul li:last-child {
  margin-bottom: 0;
}

.navbar-mobile .dropdown ul a {
  padding: 11px 22px;
  font-size: 15px;
  color: #555;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown ul a .bi {
  font-size: 13px;
  margin-right: 5px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
  background: #eaf4ff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/**
* Navbar 2
*/

.navbar-2 {
  padding: 0;
  margin-top: 27px;
}

.navbar-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-2 ul::-webkit-scrollbar {
  display: none;
}

.navbar-2>ul>li {
  padding: 10px 15px;
}

.navbar-2 li {
  position: relative;
  white-space: nowrap;
}

.navbar-2>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar-2 a,
.navbar-2 a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s;
  position: relative;
}

.navbar-2 a i,
.navbar-2 a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar-2>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar-2 a:hover:before,
.navbar-2 li:hover>a:before,
.navbar-2 .active:before {
  visibility: visible;
  width: 100%;
}

.navbar-2 a:hover,
.navbar-2 .active,
.navbar-2 .active:focus,
.navbar-2 li:hover>a {
  color: #ffffff;
}

.navbar-2 .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar-2 .dropdown ul li {
  min-width: 200px;
}

.navbar-2 .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar-2 .dropdown ul a i {
  font-size: 12px;
}

.navbar-2 .dropdown ul a:hover,
.navbar-2 .dropdown ul .active:hover,
.navbar-2 .dropdown ul li:hover>a {
  color: #ffffff;
}

.navbar-2 .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar-2 .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar-2 .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

.navbar-2-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.993);
  transition: 0.3s;
  z-index: 999;
}

.navbar-2-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-2-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-2-mobile a,
.navbar-2-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}

.navbar-2-mobile>ul>li {
  padding: 0;
}

.navbar-2-mobile a:hover:before,
.navbar-2-mobile li:hover>a:before,
.navbar-2-mobile .active:before {
  visibility: hidden;
}

.navbar-2-mobile a:hover,
.navbar-2-mobile .active,
.navbar-2-mobile li:hover>a {
  color: #106eea;
}

.navbar-2-mobile .getstarted,
.navbar-2-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-2-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-2-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-2-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-2-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-2-mobile .dropdown ul a:hover,
.navbar-2-mobile .dropdown ul .active:hover,
.navbar-2-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-2-mobile .dropdown>.dropdown-active {
  display: block;
}

.nav-link {
  cursor: pointer;
}

.content {
  display: none;
}

.nav-link {
  cursor: pointer;
}

.content.active {
  display: block;
}

.box {
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  height: auto;
  width: 200px;
}

.box img {
  max-width: 100px;
  height: auto;
}

.box h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 1366px) {
  .navbar-2 .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar-2 .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 85vh;
  background: url("../../img/cp_page_GKD/gkd_jkt_new.jpeg") no-repeat center center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(0 0 0 / 48%);
  ;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #e7e7e7c7;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #000000;
  /* Warna teks utama */
  text-shadow:
    -1px -1px 0 #FFFFFF,
    1px -1px 0 #FFFFFF,
    -1px 1px 0 #FFFFFF,
    1px 1px 0 #FFFFFF;
}

#hero h2 {
  color: #f3eded;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px;
  transition: 0.5s;
  color: #fff;
  background: #000000;
}

#hero .btn-get-started:hover {
  background: #ffffff;
  color: #000000;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #6c63630f;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #76767629;
  color: #000000;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #000000;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

.prev-arrow,
.next-arrow {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: black;
}

.prev-arrow:hover:not(:disabled),
.next-arrow:hover:not(:disabled) {
  background-color: #ddd;
}

.prev-arrow:disabled,
.next-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
}

#cust {
  margin-right: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #c9c9c9;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #000000;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
#stats .journey-scroll {
  overflow: visible;
  padding: 20px 0;
}

#stats .journey-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch; /* Membuat semua slide memiliki tinggi yang sama dengan slide tertinggi */
}

#stats .journey-swiper .swiper-slide {
  height: auto; 
  display: flex;
}

#stats .timeline-container-cards {
  padding: 20px 0 30px 0;
  position: relative;
  width: 100%;
}

/* Garis horizontal timeline */
#stats .timeline-line {
  position: absolute;
  top: 10px;
  /* Sesuaikan agar pas di tengah dot */
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  z-index: 0;
}

/* Wrapper untuk setiap item*/
#stats .timeline-item {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
  flex: 1;
}

/* Tahun di atas garis timeline */
#stats .timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 18px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Menambahkan ikon lingkaran di depan tahun */
#stats .timeline-year::before {
  content: "â—‰";
  font-size: 16px;
  color: #666;
}

/* Titik (dot) pada garis timeline */
#stats .timeline-dot {
  margin-top: 30px;
  margin-bottom: 30px;  
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4px solid #e0e0e0;
  border-radius: 50%;
  z-index: 2;
  /* Pastikan dot di atas garis */
  transition: all 0.3s ease;
}

/* Kartu deskripsi di bawah dot */
#stats .timeline-card {
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  width: 100%;
  flex: 1; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s ease;
  overflow: visible !important; /* Agar watermark/shadow tidak terpotong */
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Watermark Angka di Belakang */
#stats .timeline-card::after {
  content: attr(data-year);
  position: absolute;
  top: 10px;
  right: -5px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03); 
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

/* Body Card (Bagian Teks) */
#stats .timeline-card .card-body {
  padding: 40px 30px 60px 30px; 
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
  position: relative;
}

/* Judul Tahun di dalam Card */
#stats .timeline-card .card-year {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

/* Deskripsi Teks */
#stats .timeline-card .card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

/* --- Efek Hover --- */
#stats .timeline-item:hover .timeline-dot {
  border-color: #000;
  transform: scale(1.2);
}

#stats .timeline-item:hover .timeline-card {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
 

/*--------------------------------------------------------------
# Featured Services Core Value
--------------------------------------------------------------*/
.featured-services-cv .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 #3c1d1b29;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 250px;
}

.featured-services-cv .icon-box::before {
  content: "";
  position: absolute;
  background: #c9c9c9;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services-cv .icon-box:hover::before {
  background: #000000;
  top: 0;
  border-radius: 0px;
}

.featured-services-cv .icon {
  margin-bottom: 15px;
}

.featured-services-cv .icon i {
  font-size: 48px;
  line-height: 1;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.featured-services-cv .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services-cv .title a {
  color: #000000;
}

.featured-services-cv .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services-cv .icon-box .description {
  display: none;
}

.featured-services-cv .icon-box:hover .icon img {
  display: none;
}

.featured-services-cv .icon-box:hover .description {
  display: block;
}

.featured-services-cv .icon-box .description {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.featured-services-cv .icon-box:hover .description {
  opacity: 1;
}

.featured-services-cv .icon-box:hover .title a,
.featured-services-cv .icon-box:hover .description {
  color: #fff;
}

.featured-services-cv .icon-box:hover .icon i {
  color: #fff;
}

.section-title-2 {
  text-align: center;
  padding-bottom: 15px;
}

.section-title-2 h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #76767629;
  color: #000000;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  text-shadow:
    -1px -1px 0 #f8f8f8,
    1px -1px 0 #f8f8f8,
    -1px 1px 0 #f8f8f8,
    1px 1px 0 #f8f8f8;
}

.section-title-2 h3 {
  margin: 15px 0 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #9f9f9f;
  /* text-align: left !important; */
}

.section-title-2 h3 span {
  color: #000000;
}

.section-title-2 p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title-2 p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000000;
}

.about .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.363);
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
  z-index: 1;
  color: white;
}

.about .icon-box::before {
  content: "";
  position: absolute;
  background: #c9c9c9;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
  color: rgb(255, 255, 255);
}

.about .icon-box:hover::before {
  background: #ffffff;
  top: 0;
  border-radius: 0px;
  color: #ffffff;
}

.about .icon-box:hover .title,
.about .icon-box:hover .description {
  color: #000000;
}

.about .icon-box:hover .icon i {
  color: #000000;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.prev-arrow-abt,
.next-arrow-abt {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: black;
}

.prev-arrow-abt:hover:not(:disabled),
.next-arrow-abt:hover:not(:disabled) {
  background-color: #ddd;
}

.prev-arrow-abt:disabled,
.next-arrow-abt:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #b7b7b7;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #000000;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 10px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* UL subfilter: horizontal */
.portfolio-flters--sub {
  padding: 0;
  margin: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* LI subfilter: teks doang */
.portfolio-flters--sub li {
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700;
  color: #9aa0a6;
  /* abu default */
  padding: 4px 0;
  /* biar ada area klik */
  transition: color .18s ease;
}

/* hover = hitam */
.portfolio-flters--sub li:hover {
  color: #000;
}

/* active = hitam */
.portfolio-flters--sub li.active {
  color: #000;
}

/* subfilter row biar tetep center */
#award-subfilter-row .col-lg-12 {
  display: flex !important;
  justify-content: center !important;
}

/* UL subfilter: horizontal */
#award-subflters.portfolio-flters--sub {
  padding: 0;
  margin: 0;
  list-style: none;

  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;

  /* biar gak kebawa style portfolio-flters yang lain */
  border-radius: 0 !important;
  background: transparent !important;
}

/* LI subfilter: teks doang */
#award-subflters.portfolio-flters--sub li {
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700 !important;

  color: #9aa0a6;
  /* abu default */
  background: transparent !important;
  border: none !important;

  padding: 2px 0;
  /* area klik */
  line-height: 1.2;
  transition: color .18s ease;
}

/* hover = hitam */
#award-subflters.portfolio-flters--sub li:hover {
  color: #000 !important;
}

/* active = hitam (JS kamu set class filter-active) */
#award-subflters.portfolio-flters--sub li.filter-active {
  color: #000 !important;
}

/*--------------------------------------------------------------
# Mobile Responsive Carousel (Dynamic Height)
--------------------------------------------------------------*/
@media (max-width: 768px) {

  .portfolio-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 10px 10px 30px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: auto !important;
    align-items: flex-start;
  }

  /* 2. Item / Kartu Utama */
  .portfolio-container .portfolio-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .portfolio-container .portfolio-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  /* ---------------------------------------------------------
     4. BAGIAN DINAMIS (Setting Tinggi Gambar)
  --------------------------------------------------------- */

  .portfolio-container .portfolio-item .portfolio-wrap img {
    height: 275px;
    object-fit: contain;
    object-position: center;
    transition: height 0.3s ease;
  }

  /* KHUSUS Sertifikat (.filter-app) - Portrait */
  .portfolio-container .portfolio-item.filter-app .portfolio-wrap img {
    height: 480px;
    object-fit: cover;
    object-position: top center;
  }

  .portfolio-container .portfolio-item.filter-gov .portfolio-wrap img {
    height: 325px;
    object-fit: contain;
    object-position: center;
  }

  .portfolio-container .portfolio-info {
    opacity: 1 !important;
    position: relative !important;
    background: transparent !important;
    padding: 15px !important;
    text-align: left;
    display: block;
  }

  .portfolio-container .portfolio-info h4 {
    font-size: 16px !important;
    margin-bottom: 5px !important;
    color: #222;
  }

  .portfolio-container .portfolio-info p {
    font-size: 13px !important;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Sembunyikan link icon */
  .portfolio-container .portfolio-info .preview-link,
  .portfolio-container .portfolio-info .details-link {
    display: none;
  }

  .portfolio-container::-webkit-scrollbar {
    display: none;
  }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #000000;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #797979;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #303030;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* .contact .php-email-form {
  box-shadow: 0 0 30px rgba(111, 115, 118, 0.4);
  padding: 30px;
} */

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #000000;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #000000;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 8px 6px 10px rgba(0, 0, 0, 0.41);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Form Admin
--------------------------------------------------------------*/
.form-label {
  margin-bottom: .5rem;
  font-size: 15px;
  font-weight: 600;
}

.custom-box-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  /* Optional: Add padding for better appearance */
  border-radius: 8px;
  /* Optional: Add border radius for rounded corners */
  background-color: #fff;
  /* Optional: Set background color */
}

.file-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.btn-foto {
  margin-right: 4px;
  /* margin-bottom: 10px; */
}

.btn-hapus1 {
  margin-right: 8px;
  margin-top: 10px;
}

.btn-foto .bi {
  font-size: 1rem;
  /* Atur ukuran ikon sesuai kebutuhan */
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #00000024;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/* CARD */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #106eea;
}

.card:hover h4 {
  color: #106eea;
}

.card:hover .icon span {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.card-img {
  width: auto;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Additional fix for content display */
.content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.content[style*="display: block"] {
  opacity: 1;
}

/*--------------------------------------------------------------
# Facility Section Cards
--------------------------------------------------------------*/
.facility-title {
  font-size: 20px;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.facility-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  /* Perbaikan Desktop: Memastikan isi box sejajar */
  display: flex;
  flex-direction: column;
  background: #fff;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Ukuran Desktop */
.facility-card .img-fluid {
  height: 260px;
  width: 100%;
  object-fit: cover; 
}

.facility-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Memaksa body mengisi ruang yang kosong */
  padding: 20px;
  text-align: left;
}

.facility-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.facility-card .card-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
  margin-top: auto; /* Mendorong teks ke posisi yang konsisten */
}

/* --- JANGAN DI APA-APAIN (SESUAI REQUEST ANDA) --- */
@media (max-width: 767px) {
  .facility-card .img-fluid {
    height: 280px !important; 
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important; 
    margin-bottom: 1rem;
  }

  .facility-card .card-body {
    text-align: center;
    padding: 15px;
  }
}

/* production facility tabs - Tetap Sama */
#facilityTabs .nav-link {
  position: relative;
  color: #000000;
  transition: color 0.3s;
}

#facilityTabs .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #000000;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-underline .nav-link {
  border-bottom: none !important;
  padding-left: 0;
  padding-right: 0;
}

#facilityTabs .nav-link:hover::before,
#facilityTabs .nav-link.active::before {
  visibility: visible;
  width: 100%;
}

#facilityTabs .nav-link:hover,
#facilityTabs .nav-link.active {
  color: #000000;
}

/* --- CSS KOTAK (SQUARE) UNTUK WELDING --- */

.welding-square-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
}

/* Membuat wadah gambar menjadi kotak sempurna (1:1) */
.welding-square-card .img-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Kunci bentuk kotak */
    background: #f8f9fa; /* Latar belakang agar rapi jika gambar tidak full */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welding-square-card .img-fluid {
    max-width: 90%; /* Memberi sedikit napas agar tidak menempel pinggir */
    max-height: 90%;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* GARANSI: Gambar tidak terpotong & tidak gepeng */
}

/* Penyesuaian Mobile: Tetap Kotak & Rapi */
@media (max-width: 767px) {
    .welding-square-card .card-body {
        padding: 8px 5px !important;
    }

    .welding-square-card .card-title {
        font-size: 11px !important;
        white-space: nowrap; /* Mencegah teks berantakan */
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Container gambar agar ukurannya pas & tidak raksasa */
.calibration-img-box {
    width: 100%;
    max-width: 180px; /* Ukuran identik dengan contoh QCI Anda */
    display: flex;
    justify-content: center;
    align-items: center;
}

.calibration-img-box img {
    width: 100%;
    height: auto;
    max-height: 160px; /* Membatasi tinggi agar box tetap ramping */
    object-fit: contain !important; /* Mencegah gambar gepeng/terpotong */
}

/* Penyesuaian agar teks tetap rapi */
.facility-card .card-body {
    padding: 1.5rem;
}

.facility-card .card-text {
    text-align: justify;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Mode Mobile */
@media (max-width: 767px) {
    .calibration-img-box {
        max-width: 150px; /* Dikecilkan sedikit di mobile agar proporsional */
        margin-bottom: 10px;
    }
    
    .facility-card .card-body {
        padding: 15px;
        text-align: center; /* Rapi di tengah untuk mobile */
    }
}

/* Styling Wrapper Gambar Learning Center */
/* Styling Box Gambar */
.lc-img-box-styled {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.lc-img-box-styled img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

/* Container Body - Sejajar di Desktop */
.lc-card-body-styled {
    padding: 20px !important;
    display: block !important;
}

/* Tinggi minimal judul agar deskripsi sejajar horizontal */
.lc-title-box {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px !important;
}

/* Deskripsi Rata Kanan-Kiri */
.lc-description-text {
    text-align: justify !important;
    text-justify: inter-word;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- PERBAIKAN KHUSUS MOBILE: TEKS NAIK LAGI --- */
@media (max-width: 767px) {
    .lc-img-box-styled {
        height: 260px; /* Ukuran gambar tetap besar */
        padding-bottom: 0 !important;
    }

    .lc-card-body-styled {
        padding-top: 0 !important; /* Hapus padding atas body */
    }

    .lc-title-box {
        min-height: auto; /* Biarkan fleksibel di mobile */
        /* NAIKIN LAGI: Gunakan margin negatif lebih besar agar rapat ke gambar */
        margin-top: -20px !important; 
        margin-bottom: 5px !important;
    }

    .lc-description-text {
        margin-top: 0 !important; /* Pastikan deskripsi juga ikut naik rapat ke judul */
    }
}


/* Styling untuk Slide dan Card */
.customer-logos-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-logos-slider .client-card {
  background-color: #ffffff;
  width: 100%;
  height: 120px;
  /* Tinggi kartu bisa disesuaikan */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Styling untuk Logo di dalam Card */
.customer-logos-slider .client-card img {
  max-width: 130px;
  /* Lebar maksimal logo */
  max-height: 70px;
  /* Tinggi maksimal logo */
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* --- EFEK HOVER --- */
/* Saat kursor diarahkan ke kartu */
.customer-logos-slider .client-card:hover {
  transform: translateY(-8px);
  /* Efek kartu terangkat */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Saat kursor diarahkan, ubah logo menjadi berwarna */
.customer-logos-slider .client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pastikan tombol navigasi tetap berfungsi */
#featured-services .prev-arrow,
#featured-services .next-arrow {
  z-index: 10;
  /* Agar tombol tetap di atas slider */
}

.assy-switcher {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.assy-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 50px;
  background-color: #e3e3e3;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.assy-btn:hover {
  background-color: #d0d0d0;
}

.assy-btn.active {
  background-color: #746969;
  color: #fff;
}

/* Bungkus gambar dan teks */
.image-info-block {
  padding: 8px;
  text-align: center;
}

/* Gambar responsif dan proporsional */
.image-info-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Judul di bawah gambar */
.image-info-block h6 {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.3;
}

/* Responsive tweak untuk mobile */
@media (max-width: 576px) {
  .image-info-block h6 {
    font-size: 12px;
    margin-top: 6px;
  }

  .image-info-block img {
    max-height: 200px;
  }
}

/*--------------------------------------------------------------
# Facility Tabs Horizontal Scroll (Mobile Only)
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Tab */
  #facilityTabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* Paksa tidak turun ke bawah */
    overflow-x: auto !important;
    /* Aktifkan scroll samping */
    overflow-y: hidden;
    justify-content: flex-start !important;
    /* Rata kiri agar awal tab terlihat */

    gap: 10px;
    /* Jarak antar tombol */
    padding-bottom: 10px;
    /* Ruang sedikit di bawah */
    margin-bottom: 20px !important;
    border-bottom: 0 !important;
    /* Hilangkan garis bawah default */

    /* Smooth scroll untuk iOS */
    -webkit-overflow-scrolling: touch;

    /* Hilangkan scrollbar default */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  /* Hilangkan scrollbar (Chrome/Safari/Webkit) */
  #facilityTabs::-webkit-scrollbar {
    display: none;
  }

  /* 2. Item Tab (Container li) */
  #facilityTabs .nav-item {
    flex: 0 0 auto;
    /* Item tidak boleh mengecil, ikut lebar konten */
  }

  /* 3. Link/Tombol Tab */
  #facilityTabs .nav-link {
    white-space: nowrap;
    /* Teks tidak boleh turun baris */
    font-size: 13px;
    padding: 8px 16px;

    /* Ubah tampilan jadi tombol "Pill" (Lonjong) biar lebih enak diklik */
    background-color: #f4f4f4;
    color: #555;
    border-radius: 50px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
  }

  /* 4. State Active (Saat dipilih) */
  #facilityTabs .nav-link.active {
    background-color: #000;
    /* Hitam atau warna tema Anda */
    color: #fff !important;
    border-color: #000;
    font-weight: 600;
  }

  /* 5. Matikan efek garis bawah animasi (nav-underline) bawaan */
  /* Karena sudah diganti model tombol Pill */
  #facilityTabs .nav-link::before {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Refactor Mobile Fix: Laser Cutting Section
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Slider (ROW) */
  #rawmaterial-laser-cut .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px;
    /* Jarak antar kartu */
    padding: 10px 10px 30px 10px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Sembunyikan scrollbar */
  #rawmaterial-laser-cut .row::-webkit-scrollbar {
    display: none;
  }

  #rawmaterial-laser-cut .col-6 {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    padding: 0 !important;
    /* Reset padding kolom */
    scroll-snap-align: center;
    /* Magnet berhenti di tengah */
  }

  #rawmaterial-laser-cut .facility-modern-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* 4. Wrapper Gambar (Fix Height) */
  #rawmaterial-laser-cut .card-img-top-wrapper {
    width: 100%;
    height: 220px !important;
    /* Tinggi seragam */
    position: relative;
    border-bottom: 1px solid #eee;
  }

  #rawmaterial-laser-cut .card-img-top-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    /* Crop rapi */
    object-position: center;
  }

  /* 5. Teks Judul */
  #rawmaterial-laser-cut .card-body-custom {
    padding: 15px;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }

  #rawmaterial-laser-cut .card-title-custom {
    font-size: 15px !important;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.4;
  }
}

/*--------------------------------------------------------------
# Mobile Fix: Line Painting & Powder Coating
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Slider (ROW) */
  #line-painting-powder-coat .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;

    /* PENTING: Flex-start agar item pertama mulai dari kiri */
    justify-content: flex-start !important;

    gap: 15px;
    padding: 10px 20px 30px 20px !important;
    /* Padding nyaman */

    margin-left: 0 !important;
    margin-right: 0 !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Sembunyikan scrollbar */
  #line-painting-powder-coat .row::-webkit-scrollbar {
    display: none;
  }

  /* 2. Item Kartu */
  #line-painting-powder-coat .col-6 {
    flex: 0 0 80% !important;
    /* Lebar 80% layar */
    max-width: 80% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  /* 3. Style Kartu */
  #line-painting-powder-coat .facility-modern-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* 4. Gambar (Fix Height) */
  #line-painting-powder-coat .card-img-top-wrapper {
    width: 100%;
    height: 200px !important;
    /* Tinggi seragam */
    position: relative;
    border-bottom: 1px solid #eee;
  }

  #line-painting-powder-coat .card-img-top-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
  }

  /* 5. Judul Teks */
  #line-painting-powder-coat .card-body-custom {
    padding: 15px;
    background: #fff;
    /* Vertikal align center untuk judul */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }

  #line-painting-powder-coat .card-title-custom {
    font-size: 15px !important;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.4;
  }
}

/*--------------------------------------------------------------
# Mobile Fix: Line Side Rail Medium
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Slider (ROW) */
  #line-side-rail-med .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;

    /* PENTING: Mulai dari kiri agar item 1 tidak kepotong */
    justify-content: flex-start !important;

    gap: 15px;
    padding: 10px 20px 30px 20px !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Sembunyikan scrollbar */
  #line-side-rail-med .row::-webkit-scrollbar {
    display: none;
  }

  /* 2. Item Kartu */
  #line-side-rail-med .col-6 {
    flex: 0 0 80% !important;
    /* Lebar 80% layar */
    max-width: 80% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  /* 3. Style Kartu */
  #line-side-rail-med .facility-modern-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* 4. Gambar (Fix Height) */
  #line-side-rail-med .card-img-top-wrapper {
    width: 100%;
    height: 200px !important;
    /* Tinggi seragam */
    position: relative;
    border-bottom: 1px solid #eee;
  }

  #line-side-rail-med .card-img-top-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
  }

  /* 5. Judul Teks */
  #line-side-rail-med .card-body-custom {
    padding: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }

  #line-side-rail-med .card-title-custom {
    font-size: 15px !important;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.4;
  }
}

/*--------------------------------------------------------------
# Mobile Fix: Assy Line (Single Stream Horizontal Scroll)
--------------------------------------------------------------*/
@media (max-width: 768px) {

  #assy-line .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px;
    padding: 10px 20px 30px 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #assy-line .row::-webkit-scrollbar {
    display: none;
  }

  #assy-line .col-6 {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  #assy-line .facility-modern-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #assy-line .card-img-top-wrapper {
    width: 100%;
    height: 200px !important;
    position: relative;
    border-bottom: 1px solid #eee;
  }

  #assy-line .card-img-top-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
  }

  /* 5. Judul Teks */
  #assy-line .card-body-custom {
    padding: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    /* Sedikit lebih tinggi karena judul Assy agak panjang */
  }

  #assy-line .card-title-custom {
    font-size: 14px !important;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.4;
  }

  /* 6. Matikan Switcher (Tombol 1 & 2) di Mobile */
  /* Karena semua item sudah ditampilkan dalam satu scroll */
  #assy-line .assy-switcher {
    display: none !important;
  }
}

@media (max-width: 768px) {

  #navbar-product ul {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding: 0 15px;
    -webkit-overflow-scrolling: touch;
  }

  #navbar-product ul::-webkit-scrollbar {
    display: none;
  }

  #navbar-product li {
    flex: 0 0 auto;
  }

  #navbar-product a.nav-link {
    white-space: nowrap;
    font-size: 13px;
    color: #fff !important;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
  }

  #navbar-product a.nav-link.active {
    background: #fff;
    color: #000 !important;
    font-weight: 700;
  }

  #frame-assy>div,
  #cross-member>div,
  #press-part>div,
  #assy-part>div,
  #body-panel>div {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    padding: 10px 5px 30px 5px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #frame-assy>div::-webkit-scrollbar,
  #cross-member>div::-webkit-scrollbar,
  #press-part>div::-webkit-scrollbar,
  #assy-part>div::-webkit-scrollbar,
  #body-panel>div::-webkit-scrollbar {
    display: none;
  }

  #product .card {
    flex: 0 0 160px !important;
    width: 160px !important;
    height: auto !important;
    min-height: 220px;
    scroll-snap-align: center;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    margin: 0 !important;
  }

  #product .card img {
    height: 100px !important;
    object-fit: contain !important;
    margin-bottom: 12px !important;
  }

  /* Judul di dalam kartu */
  #product .card h4 {
    font-size: 13px !important;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Batasi maksimal 3 baris judul */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Judul Section (Frame Assy, Cross Member, dll) */
  #product h3 {
    margin-bottom: 15px !important;
    font-size: 18px !important;
    font-weight: 700;
  }

  #product.clients {
    height: 500px !important;
  }
}

/*--------------------------------------------------------------
# Mobile Fix: Product Design & Calibration (FULL TEXT + JUSTIFY)
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Slider */
  #design .row,
  #calibration .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px;
    padding: 10px 20px 30px 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Agar tinggi kartu seragam mengikuti yang teksnya paling panjang */
    align-items: stretch !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #design .row::-webkit-scrollbar,
  #calibration .row::-webkit-scrollbar {
    display: none;
  }

  /* 2. Ukuran Wrapper Kartu */
  #design .col-lg-6,
  #calibration .col-lg-6 {
    flex: 0 0 85% !important;
    /* Lebar 85% layar */
    max-width: 85% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  /* 3. Style Kartu Utama */
  #design .facility-card,
  #calibration .facility-card {
    height: 100% !important;
    /* Isi penuh tinggi container */
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  #design .facility-card .row.g-0,
  #calibration .facility-card .row.g-0 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  /* 4. Bagian Gambar (Atas) */
  #design .facility-card .col-md-5,
  #calibration .facility-card .col-md-5 {
    width: 100% !important;
    max-width: 100% !important;
    height: 180px;
    /* Tinggi gambar tetap */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px !important;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
  }

  #design .facility-card img,
  #calibration .facility-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
  }

  /* 5. Bagian Teks (Bawah) */
  #design .facility-card .col-md-7,
  #calibration .facility-card .col-md-7 {
    width: 100% !important;
    max-width: 100% !important;
    flex-grow: 1;
    /* Mengisi sisa ruang ke bawah */
  }

  #design .facility-card .card-body,
  #calibration .facility-card .card-body {
    padding: 20px;
    /* Reset text align parent container jika ada */
    text-align: left;
  }

  #design .facility-card .card-title,
  #calibration .facility-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: left !important;
    /* Judul tetap rata kiri biar enak dibaca */
  }

  /* --- FIX: FULL TEXT + JUSTIFY --- */
  #design .facility-card .card-text,
  #calibration .facility-card .card-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;

    /* SETTING JUSTIFY */
    text-align: justify !important;
    /* Rata Kanan-Kiri */
    text-justify: inter-word;
    /* Merapikan spasi */
    hyphens: auto;
    /* Memecah kata panjang agar tidak ada celah besar */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;

    /* TAMPILKAN SEMUA TEKS (No Crop) */
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    white-space: normal !important;
    height: auto !important;
  }
}

/*--------------------------------------------------------------
# Mobile Fix: Learning Center (FULL TEXT + JUSTIFY)
--------------------------------------------------------------*/
@media (max-width: 768px) {

  /* 1. Container Slider */
  #lc .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px;
    padding: 10px 20px 30px 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Agar tinggi kartu seragam mengikuti konten terbanyak */
    align-items: stretch !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #lc .row::-webkit-scrollbar {
    display: none;
  }

  /* 2. Ukuran Wrapper Kartu */
  #lc .col-lg-6 {
    flex: 0 0 85% !important;
    /* Lebar 85% layar */
    max-width: 85% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  /* 3. Style Kartu Utama */
  #lc .facility-card {
    height: 100% !important;
    /* Paksa isi penuh container */
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Susun vertikal */
  }

  #lc .facility-card .row.g-0 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Isi ruang kosong */
  }

  /* 4. Bagian Gambar (Atas) */
  /* Kita targetkan div pertama di dalam row (tempat gambar) */
  #lc .facility-card .row.g-0>div:first-child {
    width: 100% !important;
    max-width: 100% !important;
    height: 180px;
    /* Tinggi gambar tetap */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    /* Background abu */
    padding: 20px !important;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    /* Jangan mengecil */
  }

  #lc .facility-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    /* Agar ilustrasi dojo utuh */
    border-radius: 0 !important;
  }

  /* 5. Bagian Teks (Bawah) */
  /* Kita targetkan div kedua/terakhir di dalam row (tempat teks) */
  #lc .facility-card .row.g-0>div:last-child {
    width: 100% !important;
    max-width: 100% !important;
    flex-grow: 1;
    /* Isi sisa ruang ke bawah */
  }

  #lc .facility-card .card-body {
    padding: 20px;
    text-align: left;
    /* Default wrapper rata kiri */
  }

  #lc .facility-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: left !important;
    /* Judul tetap rata kiri */
  }

  /* --- FIX: FULL TEXT + JUSTIFY --- */
  #lc .facility-card .card-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;

    /* SETTING JUSTIFY */
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;

    /* TAMPILKAN SEMUA TEKS */
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    white-space: normal !important;
    height: auto !important;
  }
}

/*--------------------------------------------------------------
# Modern Language Switcher with Flags (Fixed & Optimized)
--------------------------------------------------------------*/
.lang-switcher-wrapper {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.switcher-box {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px; 
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 120px; /* Lebar ditambah sedikit agar teks tidak sesak */
  height: 32px;
  overflow: hidden;
  cursor: pointer;
}

.btn-lang {
  position: relative;
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
}

/* Ukuran Bendera (Image atau Emoji) */
.btn-lang img, .flag {
  width: 18px;
  height: auto;
  border-radius: 2px;
  line-height: 1;
}

/* Warna teks saat tombol aktif (di atas slider putih) */
.btn-lang.active {
  color: #000 !important;
}

/* Slider Efek Background Putih */
.switcher-box::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

/* Logika Pergerakan Slider */
/* Jika tombol ID aktif, posisi di kiri (0) */
.switcher-box:has(#btn-id.active)::before {
  transform: translateX(0);
}

/* Jika tombol EN aktif, geser ke kanan (100%) */
.switcher-box:has(#btn-en.active)::before {
  transform: translateX(100%);
}

/* Hover effect untuk tombol yang sedang tidak aktif */
.btn-lang:not(.active):hover {
  color: #106eea; /* Berubah jadi biru BizLand saat hover */
}

/* Responsif untuk Mobile agar tidak terlalu besar */
@media (max-width: 768px) {
  .lang-switcher-wrapper {
    margin-left: 10px;
  }
  .switcher-box {
    width: 100px;
    height: 28px;
  }
  .btn-lang {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Portofolio
--------------------------------------------------------------*/
 /* Container Navigasi yang mengapit label */
/* Container Navigasi */
/* 1. Pastikan Container Slider memiliki jarak napas */
/* 1. CONTAINER & JUDUL */
.achievement-slider-custom {
    padding: 20px 5px !important;
}

/* 2. KARTU UTAMA */
.achievement-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* 3. AREA GAMBAR - JUMBO & FULL */
.card-img-container {
    position: relative;
    width: 100%;
    height: 420px; /* Sesuai request Anda */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px !important;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 4. TOMBOL ZOOM (BUKA GAMBAR) - DIPERBAIKI (MUNGIL) */
.zoom-btn-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(158, 158, 158, 0.7) !important; /* Abu-abu transparan elegan */
    color: #ffffff !important;
    width: 32px; /* Ukuran mungil */
    height: 32px; /* Ukuran mungil */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Ikon lebih kecil */
    z-index: 10;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.zoom-btn-top:hover {
    background: rgba(0, 0, 0, 0.8) !important; /* Hitam transparan saat hover */
    transform: scale(1.1);
}

/* 5. INFO TEKS - RATA & MINIMALIS */
.card-info {
    padding: 12px 10px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f5f5f5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px; /* Sedikit dikecilkan agar seimbang */
}

.card-info h4 {
    font-size: 14px; /* Font lebih kecil agar rapi */
    font-weight: 700;
    color: #333;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.card-info p {
    font-size: 11px; /* Font lebih kecil agar rapi */
    color: #999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 6. NAVIGASI (Kapsul Abu-abu) */
.category-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 35px 0 20px 0;
}

/* CAPSULE - DIKECILIN SEDIKIT */
.label-capsule-modern {
    background: #f0f0f0 !important;
    color: #555 !important;
    border: 1px solid #ddd;

    padding: clamp(9px, 1.4vw, 14px)
             clamp(24px, 3.5vw, 38px);

    font-size: clamp(15px, 2.8vw, 20px); /* ⬆️ gedein lagi */
    font-weight: 700;

    border-radius: 4px;
    min-width: clamp(150px, 42vw, 200px);
    min-height: clamp(40px, 6.5vw, 48px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-transform: uppercase;
}

/* PANAH NAVIGASI */
.nav-arrow-custom {
    padding: clamp(5px, 1.1vw, 9px);
    min-width: clamp(32px, 4.8vw, 40px);
    min-height: clamp(40px, 6.5vw, 48px);

    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #999;

    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(13px, 2.4vw, 15px); /* ⬆️ ikut naik */
    transition: 0.2s;
}


.nav-arrow-custom:hover {
    background: #f8f8f8;
    color: #333;
    border-color: #bbb;
}

/* ========================================
   ACHIEVEMENT SECTION - UKURAN DIPERKECIL
   ======================================== */

/* 1. CONTAINER & JUDUL */
.achievement-slider-custom {
    padding: 15px 5px !important;
}

/* 2. KARTU UTAMA - DIPERKECIL */
.achievement-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 3. AREA GAMBAR - DIPERKECIL TAPI TETAP PROPORSIONAL */
.card-img-container {
    position: relative;
    width: 100%;
    height: 320px; /* Dikecilkan dari 420px */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px !important;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 4. TOMBOL ZOOM - LEBIH KECIL & ELEGAN */
.zoom-btn-top {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(158, 158, 158, 0.7) !important;
    color: #ffffff !important;
    width: 28px; /* Diperkecil dari 32px */
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; /* Icon lebih kecil */
    z-index: 10;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.zoom-btn-top:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1);
}

/* 5. INFO TEKS - LEBIH COMPACT */
.card-info {
    padding: 10px 8px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f5f5f5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px; /* Dikecilkan dari 70px */
}

.card-info h4 {
    font-size: 13px; /* Dikecilkan dari 14px */
    font-weight: 700;
    color: #333;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.card-info p {
    font-size: 10px; /* Dikecilkan dari 11px */
    color: #999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 6. NAVIGASI - LEBIH COMPACT */
.category-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 15px 0;
}

.label-capsule-modern {
    background: #f0f0f0 !important;
    color: #555 !important;
    border: 1px solid #ddd;
    padding: 5px 20px; /* Lebih ramping */
    font-size: 13px; /* Dikecilkan */
    font-weight: 700;
    border-radius: 4px;
    min-width: 100px; /* Dikecilkan dari 180px */
    text-align: center;
    text-transform: uppercase;
}

/* 7. TOMBOL PANAH NAVIGASI - LEBIH KECIL */
.nav-arrow-custom {
    width: 30px; /* Dikecilkan dari 34px */
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 13px;
}

.nav-arrow-custom:hover {
    background: #f8f8f8;
    color: #333;
    border-color: #bbb;
}

/* ========================================
   SERTIFIKAT CARD - PORTRAIT (DIPERKECIL)
   ======================================== */

.achievement-card.cert-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  margin: 10px 5px;
  width: 100%;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* Container Gambar - PORTRAIT PENUH */
.cert-card .card-img-container {
  position: relative;
  width: 100%;
  height: 520px; /* Tinggi tetap untuk portrait penuh */
  overflow: hidden;
  padding: 0;
  background: #f8f9fa;
}

.cert-card .card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover penuh tanpa white space */
  object-position: top center; /* Fokus ke bagian atas */
  transition: transform 0.5s ease;
}

.cert-card:hover .card-img-container img {
  transform: scale(1.05);
}

/* Tombol Zoom - KIRI ATAS */
.cert-card .zoom-btn-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cert-card .zoom-btn-top:hover {
  background: #000;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

.cert-card .zoom-btn-top i {
  font-size: 20px;
  line-height: 1;
}

/* Info Card */
.cert-card .card-info {
  padding: 22px 18px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px; /* Tinggi minimal untuk teks */
}

.cert-card .card-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cert-card .card-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

@media (max-width: 1200px) {
  .cert-card .card-img-container {
    height: 480px;
  }
}

@media (max-width: 992px) {
  .cert-card .card-img-container {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .cert-card .card-img-container {
    height: 420px;
  }

  .cert-card .zoom-btn-top {
    width: 40px;
    height: 40px;
  }

  .cert-card .zoom-btn-top i {
    font-size: 18px;
  }

  .cert-card .card-info {
    padding: 18px 14px;
    min-height: 80px;
  }

  .cert-card .card-info h4 {
    font-size: 16px;
  }

  .cert-card .card-info p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .cert-card .card-img-container {
    height: 380px;
  }

  .cert-card .card-info h4 {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
/* Hero Styling - Gambar gedung Anda tetap ada di sini */
#hero.hero-bw {
  width: 100%;
  height: 100vh;
  /* Latar belakang menggunakan gambar gedung asli Anda dengan overlay gelap agar teks putih menonjol */
  background: linear-gradient url('../assets/img/cp_page_GKD/gkd_jkt_new.jpeg') center center; 
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

/* Teks Welcome */
.welcome-text {
  margin: 0;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

/* Container GKD tanpa garis bawah */
.gkd-animate {
  display: inline-flex;
  margin-left: 12px;
  /* Border-bottom (garis putih) telah dihapus */
}

/* Efek Huruf Jatuh */
.drop-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-120px);
  animation: smoothDrop 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* Delay jatuh berurutan */
.drop-letter:nth-child(1) { animation-delay: 0.2s; }
.drop-letter:nth-child(2) { animation-delay: 0.4s; }
.drop-letter:nth-child(3) { animation-delay: 0.6s; }

@keyframes smoothDrop {
  0% {
    opacity: 0;
    transform: translateY(-120px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  12% {
    transform: translateY(-15px); /* Efek pantulan */
  }
  16% {
    transform: translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  95% {
    opacity: 0;
    transform: translateY(40px); /* Jatuh ke bawah saat hilang */
  }
  100% {
    opacity: 0;
  }
}

/* Subtitle Gemala Kempa Daya */
.company-subtext {
  color: #cccccc;
  font-size: 26px;
  font-weight: 300;
  margin: 10px 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 6px;
}

/* Button Company - Hitam Putih */
.btn-get-started-bw {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 14px 42px;
  border-radius: 2px;
  transition: 0.4s;
  color: #ffffff;
  border: 2px solid #ffffff;
  background: transparent;
}

.btn-get-started-bw:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.05);
}

/* Responsif Mobile */
@media (max-width: 768px) {
  .welcome-text { font-size: 34px; }
  .company-subtext { font-size: 16px; letter-spacing: 3px; }
}
/* Styling Tombol Filter */
.filter-btn {
  background: transparent;
  border: none;
  color: #555;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #1a1a1a !important; /* Hitam Tema */
  color: #fff !important;
}

/* Memastikan Swiper tidak memakan ruang ekstra saat slide disembunyikan */
.award-slider .swiper-slide[style*="display: none"] {
  margin: 0 !important;
  padding: 0 !important;
}

/* Jarak antar section tetap terjaga */
#portfolio .swiper {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #frame-assy .card {
    height: 260px;   /* dari 240px → +20px */
  }
}



#frame-assy .card img {
  width: 100% !important;
  height: 75% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
}

@media (max-width: 768px) {
  #cross-member .card {
    height: 260px;          /* samain kaya frame-assy */
  }

  #cross-member .card img {
      width: 100% !important;
  height: 30% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
  }
}

@media (max-width: 768px) {
  #press-part .card {
    height: 260px;          /* samain */
  }

  #press-part .card img {
    width: 100% !important;
  height: 55% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
  }
}

@media (max-width: 768px) {
  #assy-part .card {
    height: 260px;          /* samain tinggi card */
  }

  #assy-part .card img {
    width: 100% !important;
  height: 55% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
  }
}

@media (max-width: 768px) {
  #body-panel .card {
    height: 260px;          /* panjangkan card */
  }

  #body-panel .card img {
     width: 100% !important;
  height: 55% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
  }
}

