.hero {
  height: 95vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  overflow: hidden; /* WAJIB */
  border-bottom-right-radius: 140px;
  border-bottom-left-radius: 140px;
  max-height:1000px;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1442px;
  width: 100%;
  padding: 100px 80px;
  
}

.hero-video,
.hero::before {
  border-bottom-right-radius: 140px;
  border-bottom-left-radius: 140px;
}

.hero-video {
  position: absolute;
  inset: 0;                /* lebih aman dari translate */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;              /* JANGAN NEGATIF */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    62.45% 62.42% at 50% 50%,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}


.hero-content h1 {
  font-weight: 700;
  font-size: 65px;
  color: #ffffff;
  text-transform: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding:0px;
  margin:0 0 10px;
  line-height:1.1em;
}

.hero-content h1 .highlight {
  color: #ff4444;
  background: linear-gradient(90deg, #ff4444, #ff7b7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  vertical-align: middle;
  color: #ffffff;
  max-width: 900px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.pclear{
  padding:100px;
}





@media screen and (max-width: 1199px) {
  .hero {
    height: 600px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  .hero-content {
    padding: 80px 50px;
  }

  .hero-video,
  .hero::before {
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 42px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 700px;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    height: 500px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .hero-content {
    padding: 60px 80px;
  }

  .hero-video,
  .hero::before {
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 42px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 26px;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .pclear{
    padding:50px;
  }
  .hero {
    height: 450px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .hero-video,
  .hero::before {
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
  }
}

@media screen and (max-width: 480px) {
  .pclear{
    padding:50px;
  }
  .hero {
    height: 400px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .hero-video,
  .hero::before {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

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

  .hero-content p {
    font-size: 14px;
    line-height: 20px;
    max-width: 350px;
  }
}

.hero-gradient {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #204F9D99 60%, #99999900 0%);
  overflow: hidden;
}

/* Gambar penuh sebagai background visual */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(80%); /* sedikit gelap agar teks kontras */
}

/* Gradient overlay */
.hero-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Title overlay */
.hero-title {
  position: absolute;
  top: 70%;
  left: 100px; /* posisi kiri di desktop */
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.hero-title h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* --- Tablet (≤ 992px) --- */
@media (max-width: 992px) {
  .hero-gradient {
    height: 400px;
  }

  .hero-title {
    left: 60px;
  }

  .hero-title h1 {
    font-size: 36px;
  }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  .hero-gradient {
    height: 300px;
  }

  .hero-title {
    left: 30px;
  }

  .hero-title h1 {
    font-size: 28px;
  }
}

/* --- Mobile portrait (≤ 480px) --- */
@media (max-width: 480px) {
  .hero-gradient {
    height: 220px;
  }

  .hero-title {
    left: 0;
    width: 100%;
    text-align: center;
  }

  .hero-title h1 {
    font-size: 22px;
  }
}


.news-container{
  background: white;
  position: relative;
  padding-top: 85px;
  padding-bottom: 85px;
  margin-right:60px;
}

.news-container > .container {
  margin: 0 auto;
}

.news-container .red-text{
  color: #EE3025 !important;
}

.news-container h2{
  padding-left: 140px;
}


/* --- Laptop / Tablet (≤ 992px) --- */
@media (max-width: 992px) {
  .news-container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .news-container h2 {
    font-size: 34px;
    padding-left: 60px;
  }
}

/* --- Tablet / Small devices (≤ 768px) --- */
@media (max-width: 768px) {
  .news-container {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-right: 0px;
  }

  .news-container > .container {
    padding: 0 16px;
  }

  .news-container h2 {
    font-size: 28px;
    padding-left: 30px;
  }
}

/* --- Mobile portrait (≤ 480px) --- */
@media (max-width: 480px) {
  .news-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-container > .container {
    padding: 0 12px;
  }

  .news-container h2 {
    font-size: 22px;
    padding-left: 0; /* biar teks rata kiri layar */
    text-align: center; /* opsional: tengah di layar kecil */
  }
}


/*NEWS*/
.news-list {
  padding: 0px 40px;
  background: #fff;
  box-sizing: border-box;
}

/* --- SEARCH AREA --- */
.news-search {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-bottom: 40px;
  gap: 16px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-toggle {
  background: #f4f4f4;
  border: none;
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-toggle:hover {
  background: #EE3025;
  color: #fff;
}

/* --- INPUT --- */
.search-input-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.search-input-wrap input {
  width: 100%;
  padding: 12px 80px 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}
.search-input-wrap input:focus {
  border-color: #EE3025;
}

/* --- ICON SEARCH --- */
.search-btn {
    position: absolute;
    right: 1px;
    /* bottom: 0px; */
    width: 42px;
    color: #000;
    font-size: 16px;
    border-left: none;
    border-right: none;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 69%;
    background:#c92218;
}


/* --- RESET BUTTON (X) --- */
.reset-btn {
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #999;
  cursor: pointer;
  display: none;
  user-select: none;
}
.reset-btn:hover {
  color: #EE3025;
}

/* --- FILTER GROUP --- */
.filter-group {
  display: none;
  flex-wrap: wrap;
  justify-content: left;
  gap: 14px;
  animation: fadeIn 0.3s ease;
}
.filter-group.active {
  display: flex;
}
.filter-group label {
  font-size: 14px;
  background: #fff;
  border-radius: 15px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  border:2px solid #204F9D;
  text-align: center;
}
.filter-group input {
  margin-right: 6px;
  cursor: pointer;
}
.filter-group label:hover {
  background: #EE3025;
  color: #fff;
}

/* --- GRID --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.news-card {
  position: relative;
  height: 300px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.news-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: #fff;
}
.overlay h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.overlay p {
  margin: 0;
  font-size: 14px;
}

/* --- LOAD MORE --- */
.load-more-wrap {
  text-align: center !important;
}
.load-more {
  padding: 12px 40px;
  background: #EE3025;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}
.load-more:hover {
  background: #c92218;
}

/* --- ANIMATION --- */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .search-bar {
    flex-direction: column;
  }
}


.text-white{
  color: #fff !important;
}

.load-more-btn{
  border: 2px solid #204f9d;
  border-radius: 27.5px;
  color: #204f9d;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
  padding:10px;
  font-weight: bold;
  cursor: pointer;
}

.load-more-btn:hover{
  background: #EE3025;
  color: #fff;
}

/* 🔍 Autocomplete Wrapper */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

/* List Style */
.autocomplete-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item Style */
.autocomplete-results li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.15s ease;
    list-style: none;
}

/* Hover effect */
.autocomplete-results li:hover {
    background-color: #f5f5f5;
    color: #d62828;
}

/* Last item no border */
.autocomplete-results li:last-child {
    border-bottom: none;
}

/* Not found text */
.autocomplete-results .not-found {
    padding: 12px;
    color: #777;
    text-align: center;
    font-size: 14px;
}


.auto-complate li{
  list-style: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  padding-top:5px;
  cursor: pointer;
}

.auto-complate li:hover {
    background-color: #f5f5f5;
    color: #d62828;
}

.video-carousel-section {
  padding: 60px 0;
  background: #fafafa;
}

.videoSwiper {
  width: 100%;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.swiper{
  padding:50px !important
}

.video-card {
  text-align: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-title {
  font-size: 16px;
  padding: 10px 15px;
  color: #222;
}

.border-top-bottom {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

/* Untuk mengatur kiri-kanan */
.page-header-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Style teks */
.page-title-sub {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Style icon arrow */
.arrow-icon-sub{
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Efek saat hover atau rotate */
.arrow-icon-sub:hover {
  transform: rotate(180deg);
}

.member-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 40px 20px;
  justify-items: center;
}

/* Card container */
.member-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 200px;
  min-height:200px;
  text-align: center;
}


/* Foto member — versi tidak terpotong */
.member-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;  /* biar tidak crop */
  padding: 5px; /* beri jarak kecil biar tidak nempel ke border */
}


@media (max-width: 1200px) {
  .member-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .member-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .member-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .member-list {
    grid-template-columns: 1fr;
  }
}

.hero-digital{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/bg-digital.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    height:70hdv;
    max-height: 600px;
}

.hero-detail-karir{
    background:
  linear-gradient(270deg, #204F9D99 0%, transparent 100%),
  url('../images/karir-detail-bg-up.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 500px;
    height:500px;
}

.hero-news{
    background:
  linear-gradient(270deg, #204F9D99 0%, transparent 100%),
  url('../images/media-header.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
    height:500px;
}

.hero-digital p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-gradient-ksm h1{
    font-size: 3.2rem;
    line-height: 4.0rem;
    font-weight: 500;
    letter-spacing: -0.09rem;
    margin-inline: 0px;
    max-width: 608px;
    padding-bottom: 10px;
    overflow: hidden;
    display:flex;
}

.hero-gradient-ksm h2{
    font-size: 3.8rem;
    max-width: 608px;
    overflow: hidden;
    display:flex;
    margin:0;
    padding-bottom:20px;
}

.hero-ksm-title{
    font-size: 3.0rem !important;
    line-height: 3.0rem;
    font-weight: 800;
    letter-spacing: -0.09rem;
    margin-inline: 0px;
    max-width: 608px;
    padding-bottom: 10px;
    overflow: hidden;
    display:flex;
    margin:0;
}

.hero-ksm-sub-title{
    font-size:large;
    max-width: 608px;
}

.hero-gradient-ksm .container-max-ksm {
  width: 100%;
  max-width: 1442px;
  padding-left: 80px;
  padding-right: 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-fms{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/fmas-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}

.hero-fms p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-soc{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/soc-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}

.hero-about{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/header-tentang.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}

.hero-pengadaan{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/pengadaan-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}


.hero-soc p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-pos{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/pos-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}

.hero-pos p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-anual{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/anual-report.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
    padding-top:10% !important;
}

.hero-anual p{
    width:70%;
    font-size:20px !important;
    line-height:30px;
    text-align:justify;
}

.hero-switching{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/switching-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
    padding-top:130px !important;
}

.hero-switching p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-managed-service{
    background:
  linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
  url('../images/managed-service-bg.webp') no-repeat center bottom;
    background-size: cover;
    background-position: center bottom;
    background-color: #000; /* opsional supaya area kosong tidak terlihat */
    width: 100%;
    max-height: 600px;
}

.hero-managed-service p{
    width:50%;
    font-size:20px !important;
    line-height:30px;
}

.hero-gradient-product-page{
    background: url('../images/header-product.webp') no-repeat center bottom;
background-size: cover;
background-position: center bottom;
background-color: #000; /* opsional supaya area kosong tidak terlihat */
width: 100%;
min-height:70dvh;
max-height: 600px;
}

.hero-gradient-karir-page{
    background: url('../images/karir-detail-bg.webp') no-repeat center bottom;
background-size: cover;
background-position: center bottom;
background-color: #000; /* opsional supaya area kosong tidak terlihat */
width: 100%;
max-height: 600px;
}

.hero-contact-us{
    background:
  linear-gradient(
    to right,
    #204F9DFF 0%,    /* Biru solid penuh di kiri */
    #204F9DF0 25%,   /* Masih kuat di seperempat kiri */
    #204F9DB3 50%,   /* Mulai menurun */
    #204F9D66 70%,   /* Semakin pudar */
    #99999900 100%   /* Transparan penuh di kanan */
  ),
  url('../images/contact-us-bg.webp') no-repeat center bottom;
background-size: cover;
background-position: center;
  min-height:756px;
}

@media(max-width:768px){
    .hero-anual{
        background-size: cover;
        padding-right:40px !important; /* kiri kanan sama */
        max-height:600px !important;
    }
    
    .hero-gradient-ksm h1{
        width:100%;
        font-size: 2em;
        line-height:1.4em;
    }
    .hero-digital{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .hero-fms{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .hero-soc{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .hero-pos{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }

    .hero-digital p{
        width:80%;
        font-size:18px !important;
        line-height:25px;
    }
    
    .hero-switching{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }

    .hero-switching p{
        width:80%;
        font-size:18px !important;
        line-height:25px;
    }
    
    .hero-managed-service{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }

    .hero-managed-service p{
        width:80%;
        font-size:18px !important;
        line-height:25px;
    }
    
    .hero-gradient-product-page{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .hero-gradient-karir-page{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .hero-detail-karir{
        padding-left:40px !important; /* kiri kanan sama */
        padding-right:20px;
        max-height:350px !important;
    }
    
    .join-section{
        padding: 80px 20px 200px!important;
    }
}

.title-desc{
    max-width:650px !important;
    font-size:32px;
}
/* HERO PRODUCT SECTION */
.hero-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding-top:85px;
    padding-left:130px;
}



.hero-product-left h1 {
    font-size: 3.7rem;
    font-weight:500;
    margin: 0;
    padding-top:15px;
}

.hero-product-right p {
    line-height: 1.6;
    font-size: 16px;
    max-width: 480px;
}

/* STATS BOXES */
.stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    width:100%;
    margin:0 auto;
    padding-top:30px;
    padding-left:130px;
    padding-right:130px;
}

.stats-card {
    background: #f2f2f2;
    padding: 30px 40px;
    border-radius: 18px;
    text-align: center;
    width: 450px;
}

.stats-card h2 {
    font-size: 45px;
    color: #d93a2f;
    margin: 0;
    padding-left:20px !important;
}

.stats-card p {
    margin-top: 10px;
    font-size: 15px;
}

/* FEATURES SECTION */
.features {
    padding-top:40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
    justify-content: center;
    width:65%;
    margin:auto;
}

.feature-item {
    text-align: center;
    max-width: 420px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d93a2f;
    margin-bottom: 12px;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.feature-item p {
    line-height: 1.6;
    color: #444;
    font-size:large;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    
    .hero-product {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left:10px;
    }

    .hero-product-right p {
        margin: 0 auto;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    .features {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left:5%;
        padding-right:5%;
    }
    .feature-item {
        margin: 0 auto;
    }
}

.product-list-section{
    background:#E8E8E8;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}
/* =========================================
   SECTION JOIN TOP (BIRU + BACKGROUND IMAGE)
   ========================================= */
.join-section {
    position: relative;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    overflow: hidden;
    min-height: 540px;

    background:
        linear-gradient(to bottom, #204F9D 0%, rgba(32,79,157,0.4) 40%, rgba(32,79,157,0) 70%),
        url('../images/header-bottom.webp') center bottom no-repeat;

    background-size: cover;
    text-align: center;
    padding: 80px 20px 120px;
}

.join-content {
    position: relative;
    z-index: 0;
    max-width: 820px;
    margin: auto;
    color: #fff;
}

.join-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.join-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON STYLE */
.join-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    border: 2px solid #fff;
    background: #f8f8f8;
    color: #204F9D;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.join-btn:hover {
    background: #204F9D;
    color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-section {
    background: #204F9D;
    color: #fff;
    border-top-left-radius: 110px;
    border-top-right-radius: 110px;
    margin-top: -120px; /* naik ke background seperti screenshot */
    position: relative;
    z-index: 20;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 80px;
    justify-content: space-between;
}

.footer-grid h4 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid ul li {
    margin-bottom: 8px;
}

.footer-grid ul li a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    transition: .2s;
}

.footer-grid ul li a:hover {
    opacity: 1;
}

.footer-logo {
    width: 120px;
    margin-bottom: 25px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #ffdfdf;
}

/* SOCIAL ICONS (placeholder) */
.footer-social i {
    margin-right: 12px;
    font-size: 18px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .join-section h2 { font-size: 26px; }
    .join-section p { font-size: 16px; }
    .footer-grid { flex-direction: column; }
}

.product-wl-section {
    width: 100%;
    padding: 50px 0;
}

.product-wl-item {
    width: 90%;
    margin: 60px auto;
    padding: 40px;
    border: 3px solid #d12f28; /* merah */
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f5f5f5;
    position: relative;
}

.product-wl-item.reverse {
    flex-direction: row-reverse;
}

.product-wl-left, .product-wl-right {
    flex: 1;
}

.product-wl-right{
    float:right;
}

.product-wl-left{
    float:left;
}

.product-wl-left h2, .product-wl-right h2 {
    font-size: 30px;
    color: #d12f28;
    margin-bottom: 15px;
}

.product-wl-left p, .product-wl-right p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.product-wl-btn {
    display: inline-block;
    background: white;
    padding: 10px 22px;
    border-radius: 25px;
    border: 2px solid #204F9D;
    color: #204F9D;
    text-decoration: none;
    font-size: 15px;
}

.product-wl-item img {
    width: 100%;
    border-radius: 40px 40px 40px 40px / 80px 80px 80px 80px; /* Membuat oval */
    object-fit: cover;
}

.contact-section {
  padding: 50px 20px;
  
}

.contact-us-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.left-column, .right-column {
  flex: 1;
  min-height: 500px;
  padding: 20px;
}

/* Map Styling */
.mapouter, .gmap_canvas iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #204F9D;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #163a7c;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-us-container {
    flex-direction: column;
  }
  .left-column, .right-column {
    min-height: 300px;
  }
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Error / warning */
.flash-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.product-data-container {
    width: 100%;
    margin: auto;
    margin-top:70px;
    align-content:center;
}

.product-data-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 200px;
    margin-bottom: 100px;
    border: 2px solid #c22e2e;
    gap: 30px;
    background: #fff;
    align-content:center;
    width:80%;
    padding:60px;
}

.product-data-reverse {
    flex-direction: row-reverse;
}

.product-data-img img {
    width: 100%;
    border-radius: 100px;
    max-width: 350px;
    width:350px;
    height:250px;
}

.product-data-content {
    flex: 1;
    text-align:left;
}

.product-data-content h3 {
    margin: 0 0 10px;
    color: #c22e2e;
    font-weight:500;
    line-height:28px;
    font-size:28px;
    text-align:left;
}

.product-data-content p {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size:large;
    text-align:left;
}

.product-data-btn {
    padding: 10px 25px;
    background: #002b80;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    display: inline-block;
    text-decoration: none;
}

/* Section Base */
.solusi-data-section {
    width: 95%;
    margin: auto;
    padding: 40px 0;
}

.solusi-data-wrapper{
     border-bottom:1px solid red;
     padding-bottom:40px;
}

/* Title */
.solusi-data-title {
    font-size: 38px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 45px;
    line-height: 1.3;
}

/* Layout (Image Left, Text Right) */
.solusi-data-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Image Styling */
.solusi-data-image-box img {
    width: 522px;
    height: 392px;
    object-fit: cover;
    border-radius: 12px;
}

/* Text Styling */
.solusi-data-text {
    flex: 1;
    font-size:large;
    line-height: 1.6;
}

.solusi-data-text p {
    margin-bottom: 18px;
}

.solusi-data-subtitle {
    font-size:x-large;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 60px;
    text-align:center;
}

.solusi-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 80px;
    text-align:center;
    width:70%;
    margin:0 auto;
}

.solusi-data-item {
    max-width: 460px;
    margin: auto;
    text-align:center;
}

.solusi-data-icon {
    width: 90px;
    height: auto;
    margin-bottom: 22px;
}

.solusi-data-item h3 {
    font-size: xx-large;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.solusi-data-item p {
    font-size: large;
    line-height: 1.6;
}

.soc-solution {
    color: #333;
    max-width: 1150px;
    margin: auto;
    padding: 40px 20px;
}

.soc-solution-header h2 {
    font-size: 38px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 45px;
    line-height: 1.3;
}

.soc-solution-header-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.soc-solution-image img {
    width: 522px;
    border-radius: 12px;
}

.soc-solution-text{
    line-height: 1.6;
    margin-bottom: 14px;
    font-size:large;
}
.soc-solution-text p {
    line-height: 1.6;
    margin-bottom: 14px;
    font-size:large;
}

.soc-solution-divider {
    margin: 50px 0;
    border: none;
    border-top: 1px solid red;
}

.soc-solution-title h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 8px;
    font-weight:500;
}

.soc-solution-title p {
    text-align: center;
    max-width: 600px;
    margin: auto;
    line-height: 1.5;
    font-size:large;
}

.soc-solution-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    text-align: center;
    margin-bottom:100px;
}

.two-card{
    padding-left: 150px;
    padding-right: 150px;
    padding-top:50px;
}

.soc-card img {
    width: 65px;
    margin-bottom: 15px;
}

.soc-card h3 {
    font-size:xx-large;
    margin-bottom: 10px;
    font-weight: 600;
}

.soc-card p {
    font-size: large;
    line-height: 1.5;
}

.reporting-system{
    text-align:center;
}

.wl-bg-system {
  margin: 0;
  background-color: #F3F0EE; /* warna solid setelah gambar */
  position: relative;
  min-height: 100vh;
}

/* Layer background image fixed 600px height */
.wl-bg-system::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* tinggi gambar yang Anda inginkan */
  background: linear-gradient(90deg, rgba(0, 51, 153, 0.9) 20%, rgba(0, 51, 153, 0.3) 100%),url("../images/wl-bg.webp") no-repeat center top;
  background-size: cover; /* full width, responsive */
  z-index: -1;
  
}

.wl-bg-system-csirt {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  background-color: #F3F0EE; /* warna solid setelah gambar */
  position: relative;
  min-height: 100vh;
}

/* Layer background image fixed 600px height */
.wl-bg-system-csirt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* tinggi gambar yang Anda inginkan */
  background: linear-gradient(90deg, rgba(0, 51, 153, 0.9) 10%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/csirt-background.webp") no-repeat center top;
  background-size: cover; /* full width, responsive */
  z-index: -1;
  
}

.wl-bg-system-ksm {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  background-color: #F3F0EE; /* warna solid setelah gambar */
  position: relative;
  min-height: 100vh;
}

/* Layer background image fixed 600px height */
.wl-bg-system-ksm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* tinggi gambar yang Anda inginkan */
  background: linear-gradient(90deg, rgba(0, 51, 153, 0.9) 10%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/smki.webp") no-repeat center top;
  background-size: cover; /* full width, responsive */
  z-index: -1;
  
}

.wl-bg-system-board {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  background-color: #F3F0EE; /* warna solid setelah gambar */
  position: relative;
  min-height: 100vh;
}

/* Layer background image fixed 600px height */
.wl-bg-system-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* tinggi gambar yang Anda inginkan */
  background: linear-gradient(90deg, rgba(0, 51, 153, 0.9) 10%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/boardmanual-bg.webp") no-repeat center top;
  background-size: cover; /* full width, responsive */
  z-index: -1;
  
}


/* HERO SECTION */
.wbs-hero{
  max-width:1200px;
  margin:auto;
  padding:180px 30px 190px;
  color:#fff;
  position:relative;
  
}

.wbs-hero-title{
  font-size:36px;
  font-weight:800;
  margin-top:20px;
  padding-left:30px;
}

.wbs-hero-text{
  line-height:1.5;
  margin-left:30px;
}

/* CONTENT CARD */
.wbs-card{
  max-width:1200px;
  background:#fff;
  margin:-80px auto 100px;
  border-radius:24px;
  padding:40px 36px;
  display:flex;
  gap:40px;
  position:relative;
  z-index:5;
}

.wbs-card-g{
  max-width:1200px;
  background:#fff;
  margin:-80px auto 100px;
  border-radius:24px;
  padding:40px 36px;
  gap:40px;
  position:relative;
  z-index:5;
  line-height: 1.6;
}

.wbs-card-g ul li{
    list-style:none;
    line-height: 2;
}

.wbs-tab-area{
  width:260px;
}

.wbs-tab-title{
  color:var(--wbs-red);
  font-weight:normal;
  margin-bottom:16px;
  font-size:20px;
}

.wbs-tab-list{
  list-style:none;
  padding:0;
  margin:0;
}

.wbs-tab-list li{
  margin-bottom:16px;
  padding:10px 6px;
  cursor:pointer;
  border-left:4px solid transparent;
  font-weight:600;
  color:#444;
}

.wbs-tab-list li.wbs-active{
  color:var(--wbs-red);
  border-left-color:red;
}

.wbs-tab-list li a{
    color:#000;
    text-decoration:none;
}

.wbs-tab-list li a:hover{
    color:red;
}

.wbs-content{
  flex:1;
  line-height:1.7;
  color:#555;
  padding-top:40px;
}

.wbs-content h3{
  color:var(--wbs-red);
  margin-top:0;
}

.wrapper-news{
    margin:0 !important;
}

.swiper-news{
    padding-left:0 !important;
    padding-right:60px !important;
}

/* Container */
.faq-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

/* Title */
.faq-title {
    text-align: center;
    font-size: 28px;
    color: #1b4da1;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* FAQ Block */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 24px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e1e1e1;
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* Question */
.faq-question {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
    color: #00398e;
}

/* Answer */
.faq-answer {
    margin-top: 14px;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0.8;
}

/* Fade In Up Animation */
.fadeInUp {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}
.tac ul li{
    list-style:none;
    text-align:justify;
    letter-spacing:2;
    line-height: 1.8;
    margin-bottom:15px;
}

.tac .text-lg{
    font-size:18px;
    color:red;
}

.tac .list-disc li{
    list-style: circle;
}

.red-line {
  border: 0;
  height: 2px;
  background: red;
}

/* ================= MODAL ================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999;
}

.modal-box {
    background: white;
    width: 100%;
    max-width: 650px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    color: #003399;
}

.modal-desc {
    margin-bottom: 20px;
    color: #555;
}

/* Form */
.wl-form-container {
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    border: 4px solid #0F4AA3;
    
}

.wl-form-title {
    color: #0F4AA3;
    font-size: 28px;
    font-weight: bold;
}

.wl-form-desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.wl-form-divider {
    border: none;
    border-top: 2px solid #E6E6E6;
    margin: 25px 0;
}

.wl-form-group {
    border-left:7px solid #EE3025;
    padding-left:20px;
}

.wl-form-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #0F4AA3;
    margin-bottom: 15px;
}

.wl-form-label {
    font-size: 14px;
    font-weight: bold;
    color: #C62828;
    display: block;
    margin-bottom: 6px;
}

.wl-form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #D6D6D6;
    border-radius: 6px;
    font-size: 14px;
}

.wl-form-textarea {
    height: 110px;
    resize: vertical;
}

.wl-form-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.wl-form-col {
    flex: 1;
}

.wl-form-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #D6D6D6;
    border-radius: 6px;
    margin-bottom: 12px;
}

.wl-form-radio,
.wl-form-checkbox {
    display: flex;
    gap: 10px;
    margin: 8px 0;
    cursor: pointer;
}

.wl-form-submit {
    display: block;
    margin: 30px auto 0;
    background: #0F4AA3;
    border: none;
    padding: 12px 35px;
    color: white;
    font-size: 16px;
    border-radius: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.wl-form-submit:hover {
    background: #073B87;
}

.mt-20 {
    margin-top: 20px;
}


.career-container{
    width:85%;
    margin:auto;
    padding-top:40px;
}

.career-title{
    font-size:38px;
    font-weight:700;
    color:#CE3C32;
}

.career-subtitle{
    margin-top:6px;
    font-size:14px;
    color:#666;
}

/* Filters */
.career-filter-row{
    display:flex;
    gap:28px;
    align-items:center;
    margin-top:40px;
}

.career-filter-item{
    font-size:14px;
    position:relative;
    padding-bottom:7px;
    cursor:pointer;
}

.career-filter-item::after{
    content:"";
    height:2px;
    width:100%;
    background:#CE3C32;
    position:absolute;
    bottom:0;
    left:0;
}

.career-filter-item::before{
    content:"▾";
    position:absolute;
    right:-18px;
    font-size:12px;
    color:#444;
}

.career-search-input{
    border:none;
    border-bottom:2px solid #CE3C32;
    outline:none;
    width:260px;
    padding:6px 5px;
}

.career-search-icon{
    margin-left:-20px;
    cursor:pointer;
}

/* Job List */
.career-job-list{
    margin-top:40px;
    border:1px solid #d9d9d9;
}

.career-job-item{
    padding:20px 18px;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #d9d9d9;
    cursor:pointer;
}

.career-job-item a{
    color:#CE3C32;
    text-decoration:none;
}

.career-job-item a:hover{
    color:#000;
}

.career-job-item:last-child{
    border-bottom:none;
}

.career-job-title{
    font-size:16px;
    font-weight:bold;
    color:#CE3C32;
}

.career-job-meta{
    margin-top:5px;
    font-size:12px;
    color:#555;
}

.career-job-arrow{
    font-size:20px;
}

/* Pagination Updated */
.career-pagination-wrapper{
    width:100%;
    margin-top:30px;
    margin-bottom:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.career-pagination-dots{
    display:flex;
    gap:10px;
}

.career-dot{
    width:9px;
    height:9px;
    background:#d4d4d4;
    border-radius:50%;
    cursor:pointer;
}

.career-dot.active{
    background:#CE3C32;
}

/* Buttons */
.career-pagination-buttons{
    display:flex;
    gap:20px;
}

.career-page-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    border:2px solid #d4d4d4;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:22px;
    background:#fff;
    transition:.25s;
}

.career-page-btn:hover:not(.disabled){
    border-color:#CE3C32;
}

.career-page-btn.disabled{
    opacity:.4;
    cursor:not-allowed;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: transparent;
    border: none;
    border-bottom: 2px solid #b03a2e; /* warna underline */
    padding: 6px 25px 6px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.custom-select:focus {
    border-color: #8b1e14;
}

/* Arrow Icon */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select-wrapper::after {
    content: "▼";
    font-size: 12px;
    color: #000;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.job-page-container {
    margin: 0;
    background: #F3F0EE;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-title {
    font-size: 24px;
    font-weight: 700;
    color: #d04a3a;
}

.job-apply-btn {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.job-content-wrapper {
    display: flex;
    gap: 30px;
}

/* LEFT SECTION */

.job-main-content {
    width: 65%;
    background:#fff;
    border:1px solid #f1f1f1;
    border-radius:14px;
    padding:20px;
    margin-top:40px;
    margin-left:20px;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.job-intro-text {
    margin-top: 20px;
    font-size: 15px;
}

.job-list {
    margin-top: 10px;
    padding-left: 20px;
}

.job-list li {
    margin-bottom: 10px;
}

/* SIDEBAR RIGHT */

.job-sidebar {
    width: 35%;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    margin-right:20px;
    margin-top:40px;
}

.job-sidebar-text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 2;
}

.btn-read-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #0066FF;
    font-weight: bold;
}

.hidden {
    display: none;
}

/* Similar Jobs */
.similar-job-section {
    margin-top: 40px;
    padding-right:50px;
    margin-left:20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    width:65%;
    margin-bottom:40px;
}

/* Wrapper untuk layout jadi 2 kolom */
.similar-job-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Card item */
.similar-job-card {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    width: calc(50% - 8px); /* supaya muat 2 kolom */
    box-sizing: border-box;
}

.similar-job-card a{
    color:#000;
}

.brand-hero {
    background:
        linear-gradient(
            to right,
            rgba(234,245,255,0) -40%,
            rgba(234,245,255,0.6) -30%,
            #eaf5ff 80%,
            #eaf5ff 100%
        ),
        url('../images/info-perusahaan-bg.webp');

    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    width: 100%;
    border-bottom: 2px solid #e2e2e2;
}


/* pembatas lebar konten */
.brand-hero-wrapper {
    max-width: 1442px;
    margin: 0 auto;
    padding-left:130px;
    padding-right:130px;
    padding-top:100px;
    padding-bottom:100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* kiri */
.brand-hero-left {
    flex: 1.2;
}

.brand-hero-left h1 {
    font-size: 48px;
    color: #d7372a;
    font-weight: 700;
    margin: 0;
}

/* logo tengah */
.image-identity {
    flex: 0 0 auto;
    margin: 0 60px;
}

.brand-logo {
    width: 130px;
    margin-bottom: 10px;
}

/* kanan */
.brand-hero-right {
    flex: 1;
    text-align: left;
}

.brand-hero-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-hero-right li {
    font-size: 15px;
    margin-bottom: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}


/* Resolution label */
.resolution-box {
    text-align: center;
    margin: 10px auto 40px;
    width: fit-content;
    background: #eef5ff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #3c3c3c;
}

/* ===== IMAGE BANK ===== */

.image-bank {
    padding: 10px 80px 60px;
}

.image-bank h2 {
    font-size: 38px;
    font-weight: 700;
    color: #d7372a;
    margin-bottom: 40px;
}

/* ===== GRID ===== */

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.image-card {
    text-align: left;
    cursor:pointer;
}

.image-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 10px;
}

.count {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.image-card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}


.image-identity{
    text-align:right;
    padding:20px;
}

.life-at-jalin-container{
    margin:0;
    padding:0;
    background:url("../images/lf-bg.png");
    background-position:cover;
}

.lf-c-container{
max-width:1100px;
margin:0 auto;
}


/* Wrapper 1 baris 2 kolom. Gunakan flex agar responsif dan mudah dikendalikan */
.row-2col{
    display:flex;
    gap:var(--gap);
    align-items:center; /* sejajarkan vertikal konten */
    justify-content:space-between;
    flex-wrap:wrap; /* saat ruang sempit, kolom akan turun ke baris baru */
    padding:16px;

}


/* Setiap kolom: fleksibel, dasar 50% tapi bisa menyusut. min-width mengontrol titik wrap */
.col{
flex: 1 1 calc(50% - var(--gap)/2);
min-width: var(--min-col-width);
padding:8px 12px;
}


/* gaya teks contoh */
.col .title{
font-weight:700;
font-size:1rem;
margin-bottom:6px;
}
.col .subtitle{
font-size:1.5rem;
color:#374151;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-icon {
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  border-radius:50px;
  border:1px solid #fff;
  padding:2px;
  width:25px;
  height:25px;
}

/* Hover effect */
.info-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}

.u-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 200px auto;
}

/* CARD */
.u-stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8); 
  border-radius: 32px;
  padding: 70px 20px 30px; /* ruang lebih atas supaya icon bisa overlap */
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* WRAPPER IKON (yang membuat ikon melayang di atas card) */
.u-stat-icon-wrapper {
  position: absolute;
  top: -55px; /* mengatur seberapa jauh ikon keluar ke atas */
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
}

/* IKON */
.u-stat-icon {
  height: 70%;
}

/* CONTENT */
.u-stat-value {
  font-size: 50px;
  font-weight: 800;
  color: #ff2e2e;
  margin-top: 10px;
}

.u-stat-label {
  font-size: 20px;
  margin-top: 5px;
  color: #444;
  font-weight: 500;
}


/* =========================
   BASE DESKTOP (original)
   ========================= */
.fs-title {
  font-size: 52px;
  font-weight: 700;
  color: #ff3b30;
  margin-bottom: 10px;
  margin-left:50px;
}

.fs-category-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  margin-left:50px;
}

.fs-cat-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  background: #e0e0e0;
}

.fs-cat-btn.active {
  background: #ff3b30;
  color: #fff;
}

.fs-slider-container {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.fs-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fs-slide {
  position: absolute;
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 35px;
  transition: 0.4s ease;
  border: 3px solid transparent;
}

/* ACTIVE */
.fs-slide.fs-active {
  transform: scale(1);
  filter: none;
  opacity: 1;
  z-index: 3;
  border-color: #0090ff;
}

/* LEFT */
.fs-slide.fs-left {
  transform: translateX(-450px) scale(0.75);
  filter: grayscale(90%) blur(2px);
  opacity: 0.4;
  z-index: 1;
  border-radius: 999px 0 0 999px;
}

/* RIGHT */
.fs-slide.fs-right {
  transform: translateX(450px) scale(0.75);
  filter: grayscale(90%) blur(2px);
  opacity: 0.4;
  z-index: 1;
  border-radius: 0 999px 999px 0;
}

/* NAV BUTTON */
.fs-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid #0090ff;
  background: white;
  color: #0090ff;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: -20px;
}

.fs-prev { right: 90px; }
.fs-next { right: 30px; }

.row-gal{
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column-gal {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column-gal img {
  margin-top: 8px;
  vertical-align: middle;
  border-radius:20px;
}

.gallery-wl-fs{
    margin-top:100px;
    padding-top:60px;
}
.moment-1{
    width:70%;
    height:100%;
}

.testimoni-area {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background:#E8E8E8;
    margin-top:50px;
    text-align:center;
}

.testimoni-container{
    padding:20px;
    margin:0 auto;
}

.zg-testimonial-marquee {
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
}

/* Row container */
.zg-testimonial-marquee .zg-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 40px 0;
}

/* Konten berjalan */
.zg-testimonial-marquee .zg-track {
    display: inline-flex;
    gap: 30px;
    animation: zg-slide-left 40s linear infinite;
}

/* Row kedua arah sebaliknya */
.zg-testimonial-marquee .zg-right .zg-track {
    animation: zg-slide-right 25s linear infinite;
}

/* ITEM TESTIMONI (multiline fix) */
.zg-testimonial-marquee .zg-item {
    background: #fff;
    width: 300px; /* fix supaya kotak tetap rapi */
    border-radius: 18px;
    padding: 15px 20px;
    display: inline-block;
    white-space: normal; /* 🔥 penting untuk membuat teks turun */
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    text-align:left;
}

/* Hover pause animation */
.zg-testimonial-marquee .zg-track:hover {
    animation-play-state: paused;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transform: translateY(-5px); /* efek naik sedikit */
}

.zg-item img{
    width:80px;
    height:80px;
    border-radius:50px;
}

.zg-desc{
    height:75%;
}

/* Kontainer baris atas: avatar kiri, meta, avatar kanan */
.zg-testimonial-marquee .zg-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Avatar umum */
.zg-testimonial-marquee .zg-avatar {
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Avatar kiri (lebih besar) */
.zg-testimonial-marquee .zg-avatar-left {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Avatar kanan (ikon kecil atau logo) */
.zg-testimonial-marquee .zg-avatar-right {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    opacity: 0.95;
}

/* Nama dan jabatan */
.zg-testimonial-marquee .zg-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* penting untuk ellipsis */
}

.zg-testimonial-marquee .zg-name {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zg-testimonial-marquee .zg-role {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-right{
    font-size:large;
    line-height: 2rem;
    padding-left:50px;
    padding-right:130px;
}

.hero-left{
    font-size:4.5rem;
    padding-left:5%;
}

.galleris-life{
    width:70%;
}

#product_service .container-max-ksm {
  width: 100%;
  max-width: 1442px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin:auto;
}

.kebijakan{
    font-size:3.5rem;
    letter-spacing:0.06rem;
    font-weight:500;
}

.contact-us-container h2{
    font-size:3.0rem;
}

/* Overlay */
.ms-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:999;
  display:none;
}

/* Modal */
.ms-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

/* Box */
.ms-box{
  position:relative;
  width:90%;
  max-width:900px;
  background:#000;
  border-radius:18px;
  overflow:hidden;
}

/* Close */
.ms-close{
  position:absolute;
  top:10px;
  right:14px;
  z-index:10;
  font-size:30px;
  color:#000;
  background:none;
  border:none;
  cursor:pointer;
}

/* Slider */
.ms-slider{
  width:100%;
  overflow:hidden;
}

.ms-slides{
  display:flex;
  transition:transform .4s ease;
}

.ms-slides img{
  width:100%;
  flex-shrink:0;
  display:block;
}

/* Dots */
.ms-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px;
  background:#000;
}

.ms-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#555;
  cursor:pointer;
}

.ms-dots span.active{
  background:#fff;
}

.modal-main-image{
    width:50%;
}


.ksm-imgmdl {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.ksm-imgmdl.hidden {
    display: none;
}

.ksm-imgmdl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}

.ksm-imgmdl-content {
    position: relative;
    height: 100%;
    padding: 40px;
    color: #fff;
}

.ksm-imgmdl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ksm-imgmdl-close {
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.ksm-imgmdl-body {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    margin-top: 30px;
}

.ksm-imgmdl-preview {
    position: relative;
}

.ksm-imgmdl-preview img {
    width: 100%;
}

.ksm-imgmdl-counter {
    position: absolute;
    top: 10px;
    left: 10px;
}

.ksm-imgmdl-meta {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ksm-imgmdl-meta li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ksm-imgmdl-download {
    color: red;
    font-weight: bold;
    text-decoration: none;
}

.ksm-imgmdl-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.ksm-imgmdl-thumb {
    width: 80px;
    cursor: pointer;
    opacity: .6;
}

.ksm-imgmdl-thumb.active {
    opacity: 1;
    outline: 2px solid red;
}

.ksm-imgmdl-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid red;
    color: red;
    cursor: pointer;
}

.ksm-prev {
    right: 100px;
}

/* PRODUCT SERVICE */
.product-service {
	transition: padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-service.is-open {
	padding-top:0px;
}

.product-service.is-closed {
	padding-top:0px;
}

/* ACCORDION CONTENT (member & testimonial) */
.member-accordion-content,
.accordion-content,
.accordion-content-solutions,
.accordion-content-playbook{
	will-change: height, opacity, transform;
	transition:
		height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease,
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.4s ease;
}

.member-accordion-content.closed,
.accordion-content.closed,
.accordion-content-solutions.closed,
.accordion-content-playbook.closed{
	height: 0;
	opacity: 0;
	transform: translateY(-12px);
	padding-top: 0;
	padding-bottom: 0;
}

.member-accordion-content.open,
.accordion-content.open,
.accordion-content-solutions.open,
.accordion-content-playbook.open{
	opacity: 1;
	transform: translateY(0);
}

/* ARROW */
.arrow-icon-sub {
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-icon-sub.rotate {
	transform: rotate(180deg);
}

/* TRIGGER */
.member-accordion-trigger,
.accordion-trigger,
.accordion-trigger-solutions,
.accordion-trigger-playbook{
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion{
    padding-top:0 !important;
}

.container-max-home{
    max-width:1280px;
    margin:0 auto;
}

.c-1{
    text-align:left;
}

.c-right{
    text-align: right;           /* text ke tengah */
    justify-items: right;
}

.c-left{
    text-align: left;           /* text ke tengah */
    justify-items: left;
    margin-top:15px;
}

/** Update 07.01.2026 **/
@media screen and (min-width: 980px) and (max-width:1430px) {
.tata-kelola-section .swiper-wrapper{
    gap: 10%;
    margin-left:-50px;
    padding-left:0px!important;
    }
}
@media screen and (min-width: 980px) {
    
    .u-stats-wrapper {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    padding:0px 20px;
    }
    .u-stat-card {width:20%;min-height: 200px;}

}

@media screen and (max-width: 980px) {
     .u-stats-wrapper {
         display: flex;
         flex-direction: column;
         padding:0px 20px;
         gap: 80px;
     }
     .u-stat-icon {
         width:auto!important;
     }
     .tata-kelola-section .swiper-wrapper {
        gap: 0px;
        margin-left: 0px;
        padding-left: 0px !important;
    }
     .tata-kelola-section .swiper-backface-hidden .swiper-slide {
        width: 80% !important;
        margin-right: 45% !important;
    }
}

@media screen and (max-width: 768px) {
    .product-data-img img {
        object-fit: cover; /* The magic property that makes it cover the div */
        object-position: center; 
    }
    .member-photo {
        width: 100%;
        height: 110px;
        border-radius: 12px;
        display: block;
        object-fit: contain;
        padding: 5px;
    }
}