/* Footer */
.footer {
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  background: rgba(32, 79, 157, 100);
  position: relative;
  z-index: 10;
  color: #f8f9fa;
}

/* Footer Atas (Content) */
.footer-top {
  padding: 100px 80px 0px;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row 1: Menu Content */
.footer-menu-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  align-items: start;
}

/* Kolom Email khusus */
.email-column {
  justify-self: end;
}

/* Group untuk 3 kolom yang berdekatan */
.footer-column-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align:left;
}

.footer-logo {
  width: 141px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100%;
  object-fit: contain;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Style khusus untuk h4 Email & Telepon */
.footer-subheading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-subheading[style*="margin-top"] {
  margin-top: 10px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.email-column{
    padding-top:20px;
}
.email-column ul {
  padding:0;
  list-style: none;
}

.email-column ul li {
  margin-bottom: 20px;
}

.email-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

/* Style untuk teks alamat */
.address-text {
  line-height: 28px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  min-width:200px;
}

/* Row 2: Social & Certifications */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}

/* Social Section */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align:left;
}

.social-text {
  font-size: 16px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Certifications */
.certifications {
  display: flex;
  gap: 10px;
  align-items: left;
  flex-wrap: wrap;
}

.certifications img {
  height: 50px;
  object-fit: contain;
}

/* Footer Bawah (Sticky) */
.footer-bottom {
  width: 100%;
  height: 94px;
  background: #f8f9fa;
  color: #ee3025;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  bottom: 0;
  z-index: 1000;
}

/* Responsive Design untuk Tablet */
@media (max-width: 1024px) {
  .footer-top {
    padding: 60px 80px 0;
  }

  .footer-menu-row {
    gap: 30px;
  }

  .footer-column-group {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .footer-top {
    padding: 50px 60px 0;
  }
}


#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    z-index: 9999;
    padding: 15px;
    display: none;
  }

  .modal-content {
    padding: 20px;
  }

  .checkbox-inline.disabled {
    opacity: 0.7;
  }

  .self-end{
    color:#000 !important;
    text-decoration: none;
  }

  .self-end:hover{
    color: #ee3025 !important;;
  }

  .self-end-w{
    color:#fff !important;
    text-decoration: none;
  }

  .self-end-w:hover{
    color: #ee3025 !important;;
  }


  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Modal Container */
.modal-container {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: red;
}

/* Title */
.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #b91c1c; /* dark red */
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Form Elements */
form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #dc2626; /* red focus */
  outline: none;
}

/* Button */
.form-actions {
  text-align: right;
}

.form-actions button {
  background-color: #dc2626; /* red */
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.form-actions button:hover {
  background-color: #b91c1c;
}

/* Alert Message */
.alert {
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 500px) {
  .modal-container {
    padding: 1.5rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}


#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    z-index: 9999;
    padding: 15px;
    display: none;
  }

  .modal-content {
    padding: 20px;
  }

  .checkbox-inline.disabled {
    opacity: 0.7;
  }

  .btn-cookies {
  background-color: #10b981; /* Tailwind's emerald-500 */
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cookies:hover {
  background-color: #059669; /* Tailwind's emerald-600 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-cookies:active {
  background-color: #047857; /* Tailwind's emerald-700 */
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.btn-cookies:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4); /* emerald-500 outline */
}


.hero-gradient-ksm {
  min-height:70dvh;
  display: flex;
  justify-content: center; /* penting */
  color: white;
  padding-top:70px;
  padding-left:50px;
}



.btn-back-ksm{
    align-items: center;       /* sejajarkan ikon dan teks secara vertikal */
    gap: 8px;                  /* jarak antara ikon dan teks */
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.btn-back-ksm a{
    color :#fff;
    text-decoration:none;
}

.btn-back-ksm span{
    padding-top:5px;
}

.btn-back-ksm svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;            /* agar ikon tidak mengecil */
}

.smki{
    background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/smki.webp") center/cover no-repeat;
}

.csirt{
    background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/csirt-background.webp") center/cover no-repeat;
}

.management{
    background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/management-bg.webp") center/cover no-repeat;
    max-height:600px;
    padding-left:140px !important;
    padding-right:20px;
}


.title-header-sub{
    padding-left:50px;
}

@media(max-width:768px){
  .management{
    padding-left:40px !important; /* kiri kanan sama */
    padding-right:20px;
    max-height:350px;
  }
}

.boardmanual{
    background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/boardmanual-bg.webp") center/cover no-repeat;
}

.wl{
    background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/wl-bg.webp") center/cover no-repeat;
}
.bg-content-ksm{
    background:#f1f1f1;
    border-radius:20px;
    margin-right:80px;
    color:#000;
    padding-top:20px;
    padding-left:20px;
    padding-right:20px;
    margin-top:100px;
    clear: both;
    text-align:justify;
    line-height: 1.8;
}

.bg-content-ksm ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.clear-ksm{
    clear: both;
    min-height:700px;
}

.footer-column-group ul {
    margin:0;
    padding:0;
}

.des{
    padding-left:20px;
}

/* Layout utama */
.wl-container {
  display: flex;
  flex: 1;
  padding: 30px 40px;
  gap: 40px;
}

/* Sidebar kiri */
.wl-sidebar {
  padding: 20px 0;
}

.wl-menu {
  list-style: none;
}

.wl-menu-item {
  padding: 10px 25px;
  cursor: pointer;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.wl-menu-item:hover {
  background: #f7f7f7;
}

.wl-menu-item.wl-active {
  color: #EE3025 !important;
  font-weight: 600;
  border-left: 3px solid #EE3025;
}

.menu-active {
    color: #EE3025 !important;
}
.wl-menu-item a{
    text-decoration:none;
    color:#000;
}

/* Konten kanan */
.wl-content {
  flex: 1;
  padding: 20px 30px;
  line-height: 1.8;
}

.wl-content p {
  margin-bottom: 16px;
}




@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Poppins:wght@400;500;600&display=swap');

/* ====== SECTION ====== */
.wl-life-jalin {
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #D3F0FE);
  box-sizing: border-box;
}

/* ====== HEADER ====== */
.wl-header {
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
  min-width:1200px;
}

/* Kiri: Judul */
.wl-left h2 {
  font-family: 'Caveat Brush', cursive;
  font-weight: bold;
  font-size: 60px;
  line-height: 115px;
  color: #EE3025;
  margin: 0;
  
}

.wl-left{
    text-align:center;
    margin-left:10%;
}

.wl-left span {
  display: block;
}

/* Kanan: Deskripsi */
.wl-right {
  max-width: 550px;
}

.wl-right p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

/* ====== GALERI ====== */
.wl-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  justify-items: center;
}

.wl-gallery img {
  object-fit: cover;
  border-radius: 25px;
}

/* Atur ukuran gambar spesifik agar bentuknya mirip desain */
.wl-gallery img:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1;
}

.wl-gallery img:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1;
}

.wl-gallery img:nth-child(3) {
  grid-column: 3 / span 1;
  grid-row: 1;
}

.wl-gallery img:nth-child(4) {
  grid-column: 4 / span 1;
  grid-row: 1;
  height: 160px;
}

.wl-gallery img:nth-child(5) {
  grid-column: 1 / span 2;
  grid-row: 2;
  height: 220px;
}

.wl-gallery img:nth-child(6) {
  grid-column: 3 / span 2;
  grid-row: 2;
  height: 220px;
}

.wl-gallery img:nth-child(7) {
  grid-column: 1 / span 4;
  grid-row: 3;
  height: 240px;
}



/*==== // ==*/
.wl-galleries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  justify-items: center;
}

.wl-galleries img {
  object-fit: cover;
  border-radius: 25px;
}

.wl-galleries img:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1;
  
}

.wl-galleries img:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1;
}

.wl-galleries img:nth-child(3) {
  grid-column: 3 / span 1;
  grid-row: 1;
}

.wl-galleries img:nth-child(4) {
  grid-column: 4 / span 1;
  grid-row: 1;
  height: 160px;
}

.wl-galleries img:nth-child(5) {
  grid-column: 1 / span 2;
  grid-row: 2;
  height: 220px;
}

.wl-galleries img:nth-child(6) {
  grid-column: 3 / span 2;
  grid-row: 2;
  height: 220px;
}

.wl-galleries img:nth-child(7) {
  grid-column: 1 / span 4;
  grid-row: 3;
  height: 240px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .wl-left h2 {
    font-size: 90px;
    line-height: 90px;
  }

  .wl-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-gallery img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .wl-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wl-left h2 {
    font-size: 72px;
    line-height: 72px;
  }

  .wl-right {
    margin-top: 20px;
  }

  .wl-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .wl-gallery img {
    height: auto;
  }
}

.nilai-perusahaan-box{
    margin:30px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-align:center;
}

/* ===== TITLE & DESC ===== */
.sc-title {
  color: #d6332a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sc-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== CARD NILAI ===== */
.sc-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.sc-card {
  flex: 1 1 280px;
  border-radius: 20px;
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;

  /* Tambahan supaya konten bisa dorong ke bawah */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left:10px;
  padding-right:10px;
}

.sc-card:hover {
  transform: translateY(-6px);
}

.sc-card img {
  height: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.sc-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.sc-red {
  background: #d6332a;
}

.sc-blue {
  background: #204f9d;
}

.sc-bottom-bg {
  position: relative;
  background: url("../images/bg-karir.jpg") no-repeat center bottom;
  background-size: cover;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 320px;
  overflow: hidden; /* penting agar overlay tidak keluar area */
  padding:50px;
}

/* Overlay transparan di atas gambar */
.sc-bottom-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55); /* ubah 0.55 sesuai kebutuhan */
  z-index: 1;
}

/* Konten di atas tetap terlihat jelas */
.sc-bottom-bg > * {
  position: relative;
  z-index: 2;
}

/* STATISTIK SECTION */
.sc-stats-section {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}

.sc-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to top right, #f8e1e1 0%, #c9e4ff 40%, #dcd6ff 100%),
    url('b7b89e6c343ef0d1cc50904fbe877727ead2a859.jpg') bottom center no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 1;
}

.sc-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
}

.sc-stat-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  width: 160px;
  text-align: center;
}

.sc-stat-card img {
  width: 60px;
  margin-bottom: 10px;
}

.sc-stat-card h3 {
  font-size: 28px;
  color: #d93232;
  margin: 0;
}

.sc-stat-card p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #333;
}

/* HEADER */
.top-bar-news {
background: #fff;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}


.top-bar-news input {
    width: 260px;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #ccc;
}


.nav-news {
    display: flex;
    gap: 16px;
    padding: 10px 20px;
    font-size: 14px;
    overflow-x: auto;
}

.nav-news ul li{
    list-style:none;
    float:left;
    font-size: 14px;
    color:red;
    font-weight:bold;
    margin-right:30px;
}

.nav-news ul li a{
    color:red;
    text-decoration:none;
}

.nav-news ul li a:hover{
    color:#204F9D;
}




/* LAYOUT WRAPPER */
.container-detail-news {
    padding-top:20px;
    padding-left:60px;
    align-items: center;    /* ikon & text sejajar secara vertikal */
    gap: 10px; 
}


/* LEFT CONTENT */
.content-detail-news {
flex: 3;
}


.breadcrumb {
font-size: 14px;
color: #d80000;
margin-bottom: 10px;
padding-left:20px;
padding-top:20px;
text-align:left;
}


.content-detail-news h1 {
font-size: 26px;
margin-top: 0;
}


.meta {
font-size: 13px;
color: gray;
margin-bottom: 20px;
}


.headline-bar .active{
    background:#EE3025;
    color:#fff;
    font-weight:bold;
}

.headline-bar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    background:#204F9D;
    padding-left:60px;
    font-size:14px;
    scrollbar-width: none; 
}

.headline-bar ul {
    display: inline-flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.headline-bar li {
    display: inline-block;
    white-space: nowrap;
    font-weight:bold;
    padding-top:15px;
    padding-bottom:15px;
    padding-left:10px;
    padding-right:10px;
}

.headline-bar li a{
    color:#fff;
    text-decoration:none;
}

.headline-bar::-webkit-scrollbar {
    height: 6px;
}

.headline-bar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.content-news-wrap{
    display:grid;
}

.breadcrumb-detail-news{
    display: flex;
}

/* ===================== Layout Wrapper ===================== */
.detail-news-container {
width: 100%;
margin: 0 auto;
display: flex;
gap: 30px;
}


.detail-news-main {
width: 75%;
}


.detail-news-sidebar {
width: 25%;
position: relative;
}

.detail-news-sidebar-sticky {
position: sticky;
top: 20px;
}


/* ===================== Tag ===================== */
.detail-news-tag {
display:inline-block;
background:#d43f3a;
padding:6px 14px;
border-radius:20px;
color:#fff;
font-size:14px;
margin:10px 0;
}


/* ===================== Social ===================== */
.detail-news-social {
margin:15px 0;
}
.detail-news-social a {
display:inline-block;
margin-right:10px;
font-size:18px;
text-decoration:none;
color:#d33;
}


/* ===================== Image ===================== */
.detail-news-image img {
width:100%;
border-radius:8px;
margin:25px 0;
}

/* ===================== Sidebar Boxes ===================== */
margin-top:0;
}


/* ===================== Rekomendasi List ===================== */
.detail-news-rekomendasi-item {
display:flex;
gap:10px;
margin-bottom:15px;
}
.detail-news-sidebar img {
width:96%;
border-radius:6px;
}

.post-content img{
    width:90% !important;
}

.detail-news-popular-box li a{
    color:#fff;
    text-decoration:none !important;
}

/* Floating rotated title on sidebar */
.detail-news-sidebar-title-vertical {
position:absolute;
left:-70px;
top:200px;
transform:rotate(-90deg);
font-size:28px;
font-weight:bold;
color:#555;
}


/* Topic Popular box style */
.detail-news-popular-box {
    padding:20px;
    border-radius:20px;
    color:white;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    margin-bottom:30px;
    margin-right:20px;
    background: rgba(238, 48, 37, 0.8);
}
.detail-news-popular-box ul {
    list-style:none;
    padding:0;
    margin:0;
}
.detail-news-popular-box li {
    padding: 8px 0 8px 22px; /* ruang untuk bullet */
    position: relative;
    list-style: none;
}

/* Custom bullet: white bold circle */
.detail-news-popular-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.detail-news-popular-box li:last-child {
    border-bottom:none;
}


/* Scroll behavior: sticky until end then normal */
.detail-news-sidebar-sticky {
    position:sticky;
    top:100px;
}

.breadcrumb-detail-news span{
    margin-top:7px;
    margin-left:10px;
}

.detail-news-adv{
    margin-bottom:10px;
}

.detail-news-sidebar-box h3 {
    font-weight: bold;
    font-size: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Half underline red */
.detail-news-sidebar-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25%;    /* setengah */
    height: 3px;   /* tebal garis */
    background: #EE3025; /* merah */
    border-radius: 2px;
}

.detail-news-sidebar-box .category-article{
    background: #EE3025;
    border-radius:50px;
    color:#fff;
    border:0;
}

.detail-news-sidebar-box a{
    color:#000;
    text-decoration:none;
}

.detail-news-sidebar-box a:hover{
    color:#EE3025;
}
/* ===================== Responsive Layout ===================== */

/* Tablet */
@media (max-width: 992px) {
    .detail-news-container {
        flex-direction: column;
    }

    .detail-news-main {
        width: 100%;
    }

    .detail-news-sidebar {
        width: 100%;
        position: static;
        margin-top: 30px;
    }

    .detail-news-sidebar-sticky {
        position: static;
        top: auto;
    }

    .detail-news-sidebar-title-vertical {
        display: none; /* hide rotated text on small screens */
    }
}

/* Mobile */
@media (max-width: 600px) {
    .detail-news-tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    .detail-news-rekomendasi-item {
        gap: 8px;
    }

    .detail-news-rekomendasi-item img {
        width: 96%;
    }

    .detail-news-popular-box {
        padding: 15px;
        border-radius: 14px;
    }

    .detail-news-popular-box li {
        font-size: 14px;
    }

    .detail-news-social a {
        font-size: 16px;
    }

    .detail-news-image img {
        margin: 15px 0;
    }

    .breadcrumb-detail-news span {
        margin-top:4px;
        margin-left:5px;
    }
    
    .detail-news-sidebar-title-vertical{
        display:none;
    }
}

.two-column-news {
    width: 100%;
}

.two-column-news h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
}

.two-column-news-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.two-column-news-news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
}

.two-column-news-news-link {
    text-decoration: none;
    color: #222;
}

.tow-colomn-news-title {
    font-size: 17px;
    margin-top: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.two-column-news-news-link:hover .tow-colomn-news-title {
    text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.padding-left-50{
    padding-left:40px;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.search-bar-news-category{
    padding-left:20px;
}

.result-search-form-cat{
    position:absolute;
    z-index:1000;
    background:#f1f1f1;
    margin-top:50px;
}

.result-search-form-cat li{
    padding:10px;
}

.pengadaan-container{
    padding:20px;
}

.container-management{
    padding-left:130px;
    padding-right:60px;
}

.container-management hr {
    border: none;
    border-top: 2px solid red; /* atau ubah ketebalan sesuai kebutuhan */
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: left;
    margin-top:40px;
}
.card-management {
    cursor: pointer;
}
.card-management img {
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-management-img-1{
    max-width:45%;
}

.card-management-img-2{
    max-width:90%;
}

@media (max-width: 678px) {
    .card-management img {
        max-width: 90%;
    }
    .container-management{
        padding-left:0px;
        padding-right:0px;
    }
    
}
@media (max-width: 768px) {
    .card-management img {
        max-width: 100%;
    }
    .container-management{
        padding-left:0px;
        padding-right:0px;
    }
    .management-grid {
        gap:50px;
    }
    
}

@media (max-width: 834px) {
    .card-management-img-1{
        max-width:90%;
    }
    
}
.card-management h3 {
    margin: 10px 0 5px 0;
    font-size: 20px;
}
.card-management p {
    margin: 0;
    font-weight: bold;
    color: red;
}
/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
}
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* container besar */
.org-container {
  margin: 0 auto 60px;
  padding:40px;
}

/* header preview image (opsional) */
.org-preview {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 28px;
  position: relative;
}
.org-preview img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display:block;
  object-fit:cover;
}

/* tombol zoom */
.zoom-wrap {
  text-align: center;
  margin-top: 18px;
}
.btn-zoom {
  display:inline-block;
  padding: 10px 22px;
  border-radius: 28px;
  border: 2px solid #2a4b8d;
  background: white;
  cursor:pointer;
  font-weight:600;
  box-shadow: 0 6px 16px rgba(42,75,141,0.12);
}

/* tree wrapper - scrollable horizontally */
.tree-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  overflow-x: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* the tree */
.tree {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* vertical column for each subtree */
.col {
  display:flex;
  flex-direction: column;
  align-items: center;
  margin: 0 18px;
  min-width: 220px;
}

/* node box */
.node {
  background: #123a73;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  margin-bottom: 20px;
}
.node .title { font-weight:700; font-size:14px; }
.node .sub { font-size:12px; opacity:0.9; margin-top:6px; color:#ffdcdc; }

/* connectors (simple vertical line) */
.col > .connector {
  width: 2px;
  height: 30px;
  background: #2c3e88;
  margin-bottom: 10px;
}

/* children container - horizontal row of columns */
.children {
  display:flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 6px;
}

/* responsive: mobile stack columns vertically */
@media (max-width: 880px) {
  .tree { padding: 20px 10px; flex-direction: column; align-items: center; }
  .col { min-width: 260px; margin: 12px 0; }
}

/* modal detail */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal .card {
  width: 92%;
  max-width: 720px;
  background:#fff;
  border-radius:12px;
  padding:20px;
  position:relative;
}
.modal .close {
  position:absolute; right:14px; top:10px; cursor:pointer; font-size:22px;
}
.detail-image {
  float: right;
  width: 160px;
  margin-left: 16px;
  border-radius: 10px;
  object-fit: cover;
}
.detail-title { font-size:20px; font-weight:700; margin-bottom:6px; }
.detail-sub { color:#555; margin-bottom:12px; }
.clearfix::after { content:""; display:block; clear:both; }

/* zoom transform (simple) */
.tree.zoomed { transform: scale(1.2); transform-origin:center top; transition: transform 0.25s ease; }


.dataimage-wrapper{
  width:100%;
  display:flex;
  flex-direction:column;
  padding:20px;
}

.dataimage-title{
  font-size:28px;
  font-weight:600;
  margin:0;
}

.dataimage-title span{ color:var(--accent); }

.dataimage-grid{
  display:flex;
  flex-wrap:wrap;
  gap:90px;
  width:100%;
}

.dataimage-item{
  width:160px;
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}

.dataimage-icon{
  width:88px;
  height:88px;
  border-radius:50%;
  background:var(--boxbg);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.dataimage-icon svg{
  width:46px;
  height:46px;
  stroke:#0f172a;
  stroke-width:1.8;
  fill:none;
}

.dataimage-label{
  font-size:14px;
  font-weight:500;
  line-height:1.3;
}

.dataimage-sub{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-top:3px;
}

@media (max-width:720px){
  .dataimage-title{ font-size:22px; }
  .dataimage-item{ width:140px; }
  .dataimage-icon{ width:72px; height:72px; }
  .dataimage-icon svg{ width:38px; height:38px; }
}

@media (max-width:420px){
  .dataimage-wrapper{padding:0px;}    
  .dataimage-item{ width:40%;min-width:100px; }
}

@media (max-width:320px){
  .dataimage-item{ width:100%; }
}

.zoom-wrapper {
    width:100%;
    text-align: center;
    border:2px solid #ccc;
    border-radius:20px;
    padding:10px;
}

.zoom-box {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
}

.zoom-box img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.zoom-active img {
    transform: scale(1.2);
}

/* Layout Wrapper */
.orgPage-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}

/* Sidebar Styles */
.orgSidebar-nav {
    width: 350px;
    padding-right: 20px;
    padding-left:20px;
    margin-left:40px;
}

.orgSidebar-menu {
    list-style: none;
}

.orgSidebar-link {
    text-decoration: none;
    position: relative;
    color: #333;
    font-size: 15px;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

.orgSidebar-link:hover,
.orgSidebar-link.active {
    color: #c10000;
}

/* Content Area */
.orgContent-container {
    flex: 1;
    max-width: 900px;
    padding-left:60px;
}

.orgSection-block {
    margin-bottom: 60px;
}

.orgTitle-main {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight:normal;
}

.orgTitle-sub {
    margin: 25px 0 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    font-weight:normal;
    font-size: 16px;
}

/* Grid & Profile Card */
.orgGrid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom:20px;
}

.orgProfile-card {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 12px;
}

.orgProfile-role {
    font-weight: bold;
    font-size: 14px;
}

.highlight-red {
    color: #C62828;
}

.orgProfile-name {
    font-size: 16px;
    margin-top: 6px;
}

.orgProfile-image{
    border-radius:50px;
    width:105px;
    height:105px;
    float:left;
    margin-right:10px;
}

/* Responsive */
@media(max-width:900px) {
    .orgPage-wrapper {
        flex-direction: column;
    }
    .orgSidebar-nav {
        width: 100%;
        border-right: none;
        margin-bottom: 30px;
    }
}

.card-testimoni{
    background-color: #E8E8E8;
    border-radius: 16px;
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-service h2{
    font-size:32px !important;
    padding-left:160px;
}

.product-service{
    padding-top:30px;
}

.container-max{
    max-width:1442px;
    margin:auto;
    text-align:left;
}


/* SEARCH */
.jalin-playbook-searchbox {
    width: 400px;
    background: #fff;
    margin: 25px auto;
    border-radius: 30px;
    padding: 12px 20px;
    position: relative;
    border: 1px solid #d3d3d3;
}

.jalin-playbook-searchbox input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
}

.jalin-playbook-searchicon {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 18px;
}

/* SLIDER */
/* Container full width */
.jalin-playbook-slidercontainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-bottom:150px;
  padding-left:10px;
  padding-right:10px;
}

/* Scroll area */
.jalin-playbook-slider {
  gap: 30px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  max-width:30%;
  padding: 10px;
}

/* Hide scrollbar (Chrome/Safari/Edge) */
.jalin-playbook-slider::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar (Firefox) */
.jalin-playbook-slider {
  scrollbar-width: none;
}

/* Card size */
.jalin-playbook-card {
  flex: 0 0 calc(25% - 20px); /* 4 items */
  text-align: center;
  cursor: pointer;
}

.jalin-playbook-headertext{
    max-width:800px;
    margin:0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .jalin-playbook-card {
    flex: 0 0 calc(33.33% - 20px); /* tablet → 3 item */
  }
}

@media (max-width: 768px) {
  .jalin-playbook-card {
    flex: 0 0 calc(50% - 20px); /* mobile landscape → 2 item */
  }
  .product-service h2{
        font-size:28px !important;
   }
}

@media (max-width: 480px) {
  .jalin-playbook-card {
    flex: 0 0 80%; /* mobile portrait → 1 item */
  }
}

.jalin-playbook-card img {
    width: 100%;
    border-radius: 6px;
}

/* BUTTON DOWNLOAD */
.jalin-playbook-downloadbtn {
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid #1a68d1;
    cursor: pointer;
    background: #fff;
    transition: .3s;
}

.jalin-playbook-downloadbtn a{
    color:#000;
    text-decoration:none;
}

.jalin-playbook-downloadbtn:hover {
    background: #1a68d1;
    color: #fff;
}

/* ARROWS */
.jalin-playbook-arrow {
    background: #fff;
    border: 2px solid #1a68d1;
    padding: 15px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.jalin-playbook-arrow:hover {
    background: #EE3025;
    color: #fff;
}

/* MODAL */
.jalin-playbook-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    justify-content: center;
    align-items: center;
}

.jalin-playbook-modalcontent {
    background: white;
    width: 70%;
    height: 80%;
    position: relative;
    border-radius: 10px;
    padding: 10px;
}

#jalinPlaybookFrame {
    width: 100%;
    height: 100%;
}

.jalin-playbook-close {
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
    font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .jalin-playbook-searchbox {
        width: 90%;
    }
    .jalin-playbook-card {
        width: 120px;
    }
    .mobile-center{
        justify-content: center!important;
    }
    .org-container{
        margin-bottom:60px;
    }
    .hero-gradient-ksm {
        padding: 0 40px;
    }
}


.playbook-footer{
    text-align:left !important;
}

.ztr-row-2col {
  display: flex;
  width: 100%;
  min-height: 300px;
}

.ztr-col {
  padding: 24px;
}

/* KIRI: tengah horizontal & vertikal */
.ztr-col-left {
  display: flex;
  justify-content: right;
  align-items: right;
  text-align: right;
  width:50%;
  padding-top:70px;
}

.ztr-center-wrapper {
  max-width: 90%;
}

/* KANAN: rata kiri kanan */
.ztr-col-right {
  text-align: left;
  font-size:large;
  line-height:50px;
  padding-right:5%;
  width:45%;
}

.fs-1{
    margin-top:0;
    padding-top:0;
}

.footer-menu-row-2column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}




