/* Reset dan base styles */
* {
  
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  overflow-x: hidden;
  background: transparent;
  margin:0 !important;
  padding:0 !important;
}

/* ===== GLOBAL BUTTON STYLES ===== */
.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #204f9d;
  border-radius: 25px;
  color: #204f9d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  background: #f3f0ee;
  box-shadow: 0px 14px 21px -10px #00000080;
}

.view-all-btn:hover {
  background: #ee3025;
  border-color: transparent;
  color: white;
}

/* Variasi tombol */
.view-all-btn.bottom {
  width: 185px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 27.5px;
}

.view-all-btn.bottom:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .view-all-btn.bottom {
    width: 160px;
    height: 50px;
    font-size: 14px;
  }
}

.arrow-icon-sub-menu {
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
  color: #ffffff !important;
  width: 20px;
}

.arrow-icon-sub-menu:hover{
  color: #EE3025 !important;
}


/* === GLOBAL ICON STYLE === */
.arrow-icon-sub-lang {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  color: #fff;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* === DESKTOP LANGUAGE DROPDOWN === */
.desktop-language {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
}

.lang-toggle img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.language-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 130%;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  min-width: 180px;
  list-style: none;
  z-index: 1000;
  padding: 8px 0;
}

.language-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  transition: background 0.3s ease;
}

.language-dropdown li a:hover {
  background: #333;
}

.desktop-language.active .language-dropdown {
  display: block;
}

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

/* === MOBILE LANGUAGE (SUDAH ADA, TAMBAH SEDIKIT) === */
.mobile-language {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
}

.mobile-language img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.mobile-language .arrow-icon-sub {
  width: 18px;
  height: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

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

.mobile-language .language-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  min-width: 180px;
  list-style: none;
  z-index: 999;
  padding: 8px 0;
}

.mobile-language.active .language-dropdown {
  display: block;
}

.mobile-language .language-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.mobile-language .language-dropdown li a:hover {
  background: #333;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top:20px;
  padding-left:40px;
  padding-right:40px;
  padding-bottom:80px;
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #E8E8E8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.info .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.info .role {
  font-size: 13px;
  color: var(--muted);
}

.solutions {
  background: #E8E8E8;
  padding-top: 40px;
  padding-bottom:60px;
  text-align: center;
}

.playbook {
  background: #E8E8E8;
  padding-top: 40px;
  text-align: center;
}

.solutions-section-title {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 40px;
  font-weight: 700;
}

/* Gunakan grid untuk 3 kolom */
.solutions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

.solutions-card {
  border-radius: 16px;
  padding: 30px 20px;
  width: 100%;
  
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solutions-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.solutions-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.solutions-card h3 {
  color: var(--red);
  font-size: 18px;
  margin-bottom: 8px;
}

.solutions-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.solutions-card a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
}

.solutions-card a:hover {
  text-decoration: underline;
}

/* Responsif */
@media (max-width: 992px) {
  .solutions-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-cards {
    grid-template-columns: 1fr;
  }
  .hero-content-policy .card-container a{
      width:30%;
      padding:0px;
  }
  .hero-content-policy .card-container a .card{
      width:100%;
      height:150px;
  }      
}

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

.sub-title{
    font-size:large;
}

.container-header{
  padding-left: 100px;
}

container-header h3{
  font-size: 20px;
}

.float-left{
  float: left !important;
}

.img-carousel{
  border-radius: 20px !important;
  box-shadow:none !important;
}

.tata-kelola-section { 
  background: #f1f1f1;
}

.header-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
  padding: 20px 140px;
}

.swiper-wrapper{
    padding-left:70px !important;
}

.icon-table{
    border:none;
    background:none;
}

.icon-table td{
    text-align:center !important;
    border:none !important;
}

.icon-table tr{
    border:none !important;
}

.icon-table tr:hover{
    background:none !important;
}

.icon-table td :hover{
    background:none;
}

/* Mobile */
@media (max-width: 760px) {
  .header-row {
    padding-left: 60px;
    padding-right: 20px; /* optional, sesuaikan kebutuhan */
  }
  
  
}

.title {
  color:#e93625;
  font-size:32px;
  font-weight:700;
}

.subtitle {
  margin-top:6px;
  color:#444;
  max-width:420px;
}

/* Make default swiper buttons appear beside title */
/* CONTAINER tombol di kanan title */
.header-nav {
  display:flex;
  gap:10px;
  align-items:center;
}
.swiper-wrapper{
  margin-left: 25px;
  margin-right: 25px;
}
/* Override Swiper default button behavior */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;   /* hentikan absolute */
  margin: 0 !important;
  inset: unset !important;
  opacity: 1 !important;         /* ← MENCEGAH HILANG */
  pointer-events: auto !important;
  transform: none !important;

  width: 36px;
  height: 36px;
  border:2px solid #204F9D;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#204F9D;
  background: #fff;
  transition: .25s;
  z-index: 5;                    /* ← pastikan tombol terlihat */
}

/* Icon panah di dalam swiper */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size:16px !important;
  font-weight:600;
}

/* Hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background:#204F9D;
  color:#fff;
  border-color:#204F9D;
}


/* Rest same as before */
.card-img {
  width:380px; height:320px;
  background-size:cover;
  background-position:center;
  border-radius:18px;
  position:relative;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.card-img::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(32, 79, 157, 0.55) 10%, rgba(153,153,153,0) 70%);
}

.card-title {
  position:absolute; top:12px; left:12px;
  color:#fff; font-size:18px; font-weight:600;
  z-index:2;
}

.swiper-pagination-bullet { background:#bdbdbd; }
.swiper-pagination-bullet-active { background:#e93625; }

@media(max-width:768px){
  .header-row { flex-direction:column; align-items:flex-start; gap:12px; }
}
/* Info Perusahaan Section */
.info-perusahaan {
  background-color: #f8fafc;
  text-align: center;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  margin-top: 0px;
  padding-top:20px;
}

.content-perusahaan{
    padding-left:140px;
    padding-right:80px;
    margin-bottom:150px;
}


.info-perusahaan h2 {
  color: #1e3a8a;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.info-perusahaan p {
  color: #333;
  font-size: 15px;
  margin: 0 auto 30px;
}

.info-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.at-glance h3 {
  color: #d82419;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}

.at-glance h3 span {
  color: #000;
  font-weight: 500;
}

.at-glance p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

.info{
  text-align: justify;
  margin-top: 40px;
}

.info .blue-text{
  color:#204F9D !important;
}

.info h3{
  color:#EE3025 !important;
}

.layanan {
  text-align: center;
  padding-top: 60px;
  padding-right:60px;
}

@media (max-width: 768px) {
  .layanan {
    padding: 60px 20px 0 20px;
  }
}

.layanan h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.layanan h2 span {
  color: #d82419;
}

.layanan-grid {
  display: flex;
  justify-content: justify;
  gap: 50px;
  flex-wrap: wrap;
}

.layanan-grid > div {
  text-align: center;
}

.layanan-item {
  text-align: center;
  max-width: 140px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  background: #eef2f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.icon-circle img {
  width: 100px;
  height: 100px;
}

.layanan-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}

/* === VISI & MISI === */
.visi-misi {
  margin: 0 auto;
  text-align: left;
}

.visi-container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* Nav kiri */
.visi-nav {
  flex: 1;
  min-width: 100px;
  padding-right: 30px;
}

.visi-nav h3 {
  color: #d82419;
  font-size: 20px;
  margin-bottom: 15px;
}

.visi-nav ul {
  list-style: none;
  padding: 0;
}

.visi-nav li {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.visi-nav li.active {
  color: #d82419;
  border-left: 3px solid #d82419;
}

/* Konten kanan */
.visi-content {
  flex: 2;
  text-align: left;

}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.judul-merah {
  color: #d82419;
  font-size: 22px;
  margin-bottom: 10px;
}

.judul-biru {
  color: #1e3a8a;
  font-size: 22px;
  margin-bottom: 10px;
}

.visi-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsif */
@media (max-width: 768px) {
  .visi-container {
    flex-direction: column;
  }

  .visi-nav {
    border-right: none;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .visi-content {
    padding-left: 0;
  }

  .layanan-grid {
    gap: 30px;
  }
}

.milestone{
  text-align: left;
}

.timeline-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline {
  flex: 1;
  min-width: 100px;
  padding-right: 20px;
  padding-left: 20px;
}

.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  font-size: 15px;
  color: #444;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #ccc;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  transition: all 0.3s ease;
}

.timeline li.active {
  color: #d82419;
  font-weight: bold;
}

.timeline li.active::before {
  border-color: #d82419;
  background: #d82419;
}

/* ===== KONTEN TAHUN ===== */
.content-area {
  flex: 3;
  min-width: 280px;
  position: relative;
}

.year-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.year-content.active {
  display: block;
  opacity: 1;
}

.year-content img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.year-content p {
  background: #f3f4f6;
  padding: 15px 20px;
  border-radius: 10px;
  color: #444;
  line-height: 1.6;
  font-size: 16px;
}

/* Animasi */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
  }

  .timeline {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding-right: 0;
    margin-bottom: 20px;
  }
}


.report{
  max-width: 700px;
  line-height: 1.5em;
}

.report-container {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.report-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  padding-top: 20px;
}

.report-image {
  position: relative;
  width: 250px;
  flex-shrink: 0;
}

.report-image img {
  width: 100%;
  border-radius: 12px;
}

.year-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e71c24;
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
}

.report-content {
  flex: 1;
  text-align: justify;
}

.report-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #2b6df2;
  background: #eaf2ff;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 8px;
  border:none;
}

.report-content h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #1a1a1a;
}

.report-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-top: 5px;
}

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

  .report-image {
    width: 100%;
  }
  
  .dataTables_wrapper .dataTables_filter {
        margin-bottom: 1em;
    }
}

.card-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.card-container a{
  text-decoration: none !important;
}

/* Setiap card */
.card {
  background-color: #21252999;
  border-radius: 16px;
  text-align: center;
  padding: 20px 10px;
  width: 200px;
  height:160px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px); /* efek kaca lembut */
  margin-top: 50px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  background-color: #fff;
  align-items: center;
}

.image-border{
  background: #fff;
  border:1px solid #fff;
  border-radius: 40px;
  width: 60px;
  height: 60px;
  padding-top: 10px;
}

.card span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  margin-top:10px;
}

.wrap-text p{
    font-size:large;
}

.card:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.hero-gradient-policy {
  background: 
    linear-gradient(90deg, rgba(0, 51, 153, 0.9) 50%, rgba(0, 51, 153, 0.3) 100%),
    url("../images/kebijakan-background.webp") center/cover no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 5%;
  min-height:650px;
}

.hero-content-policy {
  z-index: 2;
  max-width:1442px;
  margin:auto;
}

.hero-content-policy h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content-policy p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.wrap-text{
  padding-left: 80px;
  padding-right: 80px;
}
  .subtitle {
    color: #444;
    font-size: large;
    margin-bottom: 15px;
  }

  /* ===== Filter Button ===== */
  .filter-bar {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 20px;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e63946;
    color: #e63946;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
  }

  .filter-btn:hover {
    background: #e63946;
    color: #fff;
  }

  .filter-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 8px 0;
    display: none;
    z-index: 100;
  }

  .filter-menu.active {
    display: block;
  }

  .filter-menu button {
    display: block;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
  }

  .filter-menu button:hover {
    background: #f1f1f1;
  }

  /* ===== Table ===== */
  table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
  }

  thead {
    background: #0d47a1;
    color: white;
    font-weight:500;
  }
  th{
      font-weight:500;
      letter-spacing:0.05rem;
  }
  th, td {
    text-align: left;
    padding: 25px 25px;
    font-size: large;
  }

  th:nth-child(3), td:nth-child(3) {
    text-align: center;
  }

  tr {
    border-bottom: 1px solid #eee;
  }


  .file-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .file-icon {
    width: 20px;
    height: 20px;
    background: url('https://cdn-icons-png.flaticon.com/512/337/337946.png') no-repeat center/contain;
  }

  .lihat-btn {
    cursor: pointer;
    transition: 0.2s;
    text-decoration:none;
    color:#000;
  }

  .lihat-btn:hover {
    text-decoration: underline;
  }

  input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #e63946;
    
    padding:10px;
  }
  
  .chex{
      width:20px;
      height:20px;
      border:1px solid #e63946;
  }

  /* ===== Pagination ===== */
  .pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 15px 5px;
    font-size: 14px;
  }

  .pagination button {
    border: none;
    background: none;
    cursor: pointer;
    color: #e63946;
    font-weight: bold;
  }

  .pagination span {
    color: #333;
    font-weight: 600;
  }

  .page-active {
    color: #fff;
    background: #e63946;
    border-radius: 5px;
    padding: 10px 15px;
  }
  
  .title-page-data{
      top:50% !important;
  }
  
  
  ul.py-6, ul.py-6 li{
    padding:0px;  
    margin:0px!important;
  }
  
  ul.py-6 li ol{
    margin:20px 0px!important;
    padding:0px 0px 0px 15px;
  }
  
  ul.py-6 li ol li{
    margin-bottom:15px!important;
  }
  
  .post-content iframe{
     max-width:100%; 
  }
  
  .container-detail-news{
     padding:40px 20px!important; 
  }
  
  .headline-bar{
     padding-left: 0px!important; 
  }
  
  .nav-news ul{
     padding:0px; 
  }