html {
  scroll-behavior: smooth;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gravitas One', sans-serif;
  background-color: #f1f6fc;
  color: #333;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  height: 100%;
  object-fit: cover;
  filter: brightness(95%);
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  font-size: 28px;
  font-weight: 800;
  color: #005aa7;
  text-shadow: 0 0 8px #fff;
}

.manajemen-img {
  width: 100%;
  height: 350px; /* bisa disesuaikan */
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

#pengaduan-section .deskripsi-pengaduan {
  text-align: justify !important;
  text-justify: inter-word;
  line-height: 1.6;
}



/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-text {
  font-family: "Gravitas One", serif;
  font-size: 29px;
  font-weight: 800;
  color: #005aa7;
  text-shadow: 0 0 8px rgba(255,255,255,0.9),
               0 4px 12px rgba(0,0,0,0.9);
  max-width: 80%;
}

/* Responsif */
@media (max-width:768px){
  header{
    flex-direction: column;
    align-items:flex-start;
    padding:15px 20px;
  }
  .header-left{
    margin-bottom:10px;
    gap:10px;
  }
  nav ul{
    flex-direction: column;
    width:100%;
    gap:10px;
    justify-content:flex-start;
    display:none;
  }
  nav ul.show{
    display:flex;
  }
  nav ul li a{
    width:100%;
    padding:10px 14px;
    border-radius:6px;
  }
  nav ul li a:hover::after{
    width:100%;
  }
  .hero{
    height:320px;
  }
  .hero-text{
    font-size:1.4rem;
  }
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.623);
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-text {
  font-family: "Gravitas One", serif;
  font-size: 29px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  max-width: 80%;
  color: #005aa7;
  text-shadow: 
    0 0 8px rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeInUpScale 1.5s ease-out forwards;
}

@keyframes fadeInUpScale {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 320px;
  }
  .hero-text {
    font-size: 1.6rem;
  }
}

/* Profile Section */
.profile {
  padding: 50px 20px;
  max-width: 900px;
  margin: -30px auto 40px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-radius: 10px;
}

.profile h2 {
  color: #005aa7;
  margin-bottom: 20px;
  border-bottom: 2px solid #005aa7;
  padding-bottom: 10px;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  padding: 30px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* kiri-tengah-kanan sejajar */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 15px;
  text-align: left;
}

.footer-left, 
.footer-center, 
.footer-right {
  flex: 1;
  min-width: 250px;
}

/* Sosial Media */
.footer-social p {
  margin-bottom: 6px;
}

.footer-social {
  margin-top: 15px;
}

.footer-social .social-icon {
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  width: 40px;                      
  height: 40px;                   
  margin-right: 10px;
  border-radius: 50%;             
  background-color: #ffffff;       
  color: #333;                      
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15); 
}

.footer-social .social-icon:hover {
  color: #fff;                     
  background-color: #007bff;     
  transform: scale(1.1);           
}

/* Link info */
.footer-info a {
  color: #cce5ff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Garis bawah copy */
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gambar kanan footer */
.footer-images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* jarak antar gambar */
  margin-bottom: 8px;
}

.footer-image-row img {
  width: 150px;       /* ukuran logo */
  height: auto;      
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-image-row img:hover {
  transform: scale(1.05); /* efek zoom halus */
}

.footer-images-text {
  max-width: 250px;       
  text-align: justify;    
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.4;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, 
  .footer-center, 
  .footer-right {
    min-width: 100%;
  }

  .footer-images-text {
    text-align: center; /* biar rapi di layar kecil */
  }
}



  nav ul {
    justify-content: flex-start;
    padding-top: 10px;
  }

  .hero-text {
    font-size: 1.4rem;
    padding: 15px;
  }

  .header-left {
    gap: 10px;
  }

/* Slideshow baru */
.slideshow {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
}

/* âœ… Perubahan dimulai di sini */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 400px; /* tinggi tetap supaya rapi */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background-color: #f1f6fc; /* latar belakang hitam jika gambar kecil */
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* agar gambar tidak terpotong */
}
/* âœ… Perubahan sampai sini */

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.slide-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
  font-family: "Gravitas One", serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 0 15px;
}


/* ðŸ”¹ Responsif untuk tablet */
@media (max-width: 992px) {
  .slide-text {
    font-size: 22px;
    bottom: 30px;
  }
}

/* ðŸ”¹ Responsif untuk HP */
@media (max-width: 768px) {
  .slide-text {
    font-size: 16px;   /* kecilkan ukuran teks */
    bottom: 20px;      /* naikkan sedikit dari bawah */
    padding: 0 10px;   /* beri jarak biar tidak nempel tepi */
  }
}

/* ðŸ”¹ HP sangat kecil (contoh: layar 360px ke bawah) */
@media (max-width: 480px) {
  .slide-text {
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 250px;
  }
  .slide-text {
    font-size: 1.3rem;
  }
}

.Video {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  height: 360px;           /* sesuaikan dengan tinggi video */
  background-color: rgb(255, 255, 255);  /* optional, biar video terlihat */
}
.Video video {
  max-width: 100%;
  max-height: 100%;
}

/* ðŸ”¹ Tambahan untuk video di slideshow */
.hero-slideshow .Video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: none; /* default disembunyikan */
}

.hero-slideshow .Video.active {
  display: block;
}

.hero-slideshow .Video video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain; /* video tidak terpotong */
}


/* Tombol navigasi slideshow */
.hero-slideshow .prev,
.hero-slideshow .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s;
}

.hero-slideshow .prev:hover,
.hero-slideshow .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.hero-slideshow .prev { left: 10px; }
.hero-slideshow .next { right: 10px; }

/* Dot indikator */
.dots-container {
  text-align: center;
  margin-top: 12px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #005aa7;
}

.slideshow-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.slideshow-left {
  flex: 3;
}

.berita-terbaru {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.berita-terbaru h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  font-family: 'Gravitas One', sans-serif;
}

.berita-terbaru ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.berita-terbaru li {
  margin-bottom: 8px;
  border-bottom: 1px solid #ccc; /* garis tipis di bawah tiap item */
  padding-bottom: 5px;           /* jarak teks ke garis */
}

.berita-terbaru a {
  text-decoration: none;
 
  font-weight: 500;
  transition: color 0.3s ease; /* efek halus saat hover */
}

.berita-terbaru a:hover {
  color: #007bff; /* warna saat dihover (biru terang) */
  text-decoration: underline;
}

/* Halaman Visi & Misi */
.visiimg {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center jika section punya tinggi */
  width: 100%;
  max-height: 500px;       /* sesuaikan tinggi section */
  overflow: hidden;
  background-color: #f1f6fc; /* optional, kalau ada ruang kosong */
}

.visiimg img.visi-image {
  max-width: 100%;  /* agar tidak melebar melebihi container */
  height: auto;     /* proporsional */
  display: block;
  object-fit: cover; /* gambar tetap proporsional jika section lebih tinggi */
}


.visi-misi-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.visi-misi-section h2 {
  color: #005aa7;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.visi-misi-section p {
  color: #333;
  line-height: 1.6;
}

.visi-misi-section ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.visi-misi-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.visi-misi-section ul li::before {
  content: "âœ”";
  color: #005aa7;
  position: absolute;
  left: 0;
  top: 0;
}

.visi-misi-section .icon {
  font-size: 40px;
  color: #005aa7;
  margin-bottom: 10px;
}

.sejarah {
  text-align: center; /* supaya gambar di tengah */
  margin: 20px 0;     /* jarak atas dan bawah */
}

.sejarah .sejarah-image {
  width: 70%;        /* ubah persentase sesuai kebutuhan */
  max-width: 600px;  /* batas maksimal lebar */
  height: auto;      /* proporsional */
  border-radius: 8px; /* opsional, biar agak melengkung */
}

.sejarah-section {
  text-align: justify;   /* rata kiri-kanan */
  margin: 20px auto;     /* jarak atas-bawah */
  max-width: 900px;      /* lebar maksimal agar nyaman dibaca */
  line-height: 1.6;      /* jarak antar baris */
}

.sejarah-section ul {
  margin-left: 20px;     /* indent bullet */
  margin-bottom: 20px;
}

.sejarah-section li {
  margin-bottom: 10px;   /* jarak antar bullet */
}



.footer-container {
  display: flex;
  justify-content: space-between;
 
  color: white;
  padding: 40px 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Kolom kiri, tengah, kanan */
.footer-left, .footer-center, .footer-right {
  flex: 1;
  margin: 10px;
}

/* Produk di tengah, bullets */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center; /* benar-benar di tengah */
}

.footer-center ul {
  list-style-type: disc; /* menampilkan bullets */
  padding-left: 20px;    /* jarak bullets dari teks */
}

.footer-center ul li a {
  color: white;          /* warna link putih */
  text-decoration: none; /* default tidak underline */
}

.footer-center ul li a:hover {
  text-decoration: underline; /* underline hanya saat hover */
}

/* Maps di kanan */
.footer-right iframe {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border: 0;
}

/* Copy right */
.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-left, .footer-center, .footer-right {
    max-width: 100%;
    text-align: center;
  }
  .footer-social .social-icons {
    justify-content: center;
  }
}

/* Main section */
.struktur-section {
  padding: 30px 20px;
}

.struktur h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 10px;
  font-family: "Segoe UI", serif;
}

.struktur h3 {
  text-align: center;
  color: #0077cc;
  margin-bottom: 20px;
  font-weight: normal;
}

.struktur-image {
  display: block;
  margin: 0 auto 50px auto;
  width: 80% !important;        /* paksa gambar isi container penuh */
  max-width: 1200px !important;  /* batasi agar tidak terlalu besar */
  height: auto !important;       /* jaga proporsi */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* Responsif */
@media (max-width: 768px) {
  .struktur h2, .struktur h3 {
    font-size: 1.2rem;
  }
}

.manajemen-title {
  text-align: left;               /* rata kiri */
  background-color: #0077cc;      /* warna latar belakang */
  color: #fff;                    /* warna teks */
  padding: 15px 20px;             /* jarak dalam */
  border-radius: 8px;             /* sudut membulat */
  font-family: 'open sans';
  font-size: 25px;
  margin-bottom: 30px;            /* jarak bawah */
}

.subsection-title {
  font-size: 24px;
  color: #004080;
  margin: 40px 0 20px 0;
  text-align: center;
 font-family: "Segoe UI", serif;
}

.manajemen-section {
  padding: 20px 10px;     /* jarak dalam */
  max-width: 2000px;      /* batas lebar maksimum */
  margin: 0 auto;         /* membuat konten di tengah */
}

.visi h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 30px;
  font-family: 'Gravitas One', cursive;
}

h3 {
  font-family: 'Gravitas One', cursive;
}

/* Group anggota manajemen */
.manajemen-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.manajemen-member {
  text-align: center;
  background-color: #ffffff; /* latar belakang putih */
  padding: 15px 20px;        /* jarak dalam */
  border-radius: 10px;       /* sudut membulat */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* bayangan halus */
  margin: 10px;              /* jarak antar anggota */
}

.manajemen-member h4 {
  color: #0077cc;
  margin-bottom: 10px;
  font-weight: normal;
}

.manajemen-image {
  display: block;
  margin: 15px auto;
  width: 250px;          /* ukuran yang pas untuk foto orang */
  height: auto;
  border-radius: 10px;
  object-fit: cover;     /* biar proporsional */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsif */
@media (max-width: 768px) {
  .manajemen-group {
    flex-direction: column;
    align-items: center;
  }
  .manajemen-member h4 {
    font-size: 1.1rem;
  }
}

.nama-member {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 0.95rem;
}


/* Bagian Utama (Tabungan Citra) */
.tabungan-citra-section {
  max-width: 900px;
  margin: 10px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 90, 167, 0.15);
  color: #333;
  line-height: 1.8;
  font-family: 'Segoe UI', sans-serif;
}

/* Judul utama */
.tabungan-citra-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #005aa7;
  margin-bottom: 25px;
  border-bottom: 3px solid #005aa7;
  display: inline-block;
  padding-bottom: 8px;
  font-family: 'Segoe UI', sans-serif;
}

/* Subjudul */
.tabungan-citra-section h3 {
  color: #005aa7;
  margin-top: 30px;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

/* Judul kecil (h4) */
.tabungan-citra-section h4 {
   color: #005aa7;
  margin-top: 20px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Paragraf */
.tabungan-citra-section p {
  margin-bottom: 15px;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
}

/* List tidak bernomor (bullet) */
.tabungan-citra-section ul {
  margin-left: 25px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.tabungan-citra-section ul li {
  margin-bottom: 6px;
  text-align: justify;
  line-height: 1.6;
}

/* List bernomor (ol) */
.tabungan-citra-section ol {
  margin-left: 25px;
  padding-left: 18px;
  margin-bottom: 15px;
  list-style-type: decimal;
}

.tabungan-citra-section ol li {
  margin-bottom: 6px;
  text-align: justify;
  line-height: 1.6;
}

/* Bold teks */
.tabungan-citra-section strong {
  color: #005aa7;
}

/* Responsif */
@media (max-width: 768px) {
  .tabungan-citra-section {
    padding: 20px;
  }

  .tabungan-citra-section h2 {
    font-size: 1.6rem;
  }
}
/* Smooth scroll */
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f4f7fb;
      color: #003366;
      margin: 0;
      padding: 0;
    }

    .publikasi-section {
      max-width: 900px;
      margin: 50px auto;
      padding: 30px 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .publikasi-title {
      text-align: center;
      color: #005aa7;
      margin-bottom: 40px;
      font-family: 'Gravitas One', cursive;
    }

    .tahun-list {
      margin-bottom: 30px;
    }

    .tahun-list a {
      display: block;
      padding: 10px 16px;
      margin-bottom: 5px;
      background-color: #e9f4ff;
      color: #003366;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
    }

    .tahun-list a:hover {
      background-color: #cce5ff;
      color: #005aa7;
    }

    .tahun-content {
      margin-top: 50px;
    }

    .tahun-content h3 {
      color: #0077cc;
      margin-bottom: 15px;
    }

    .tahun-content ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 40px;
    }

    .tahun-content ul li a {
      color: #003366;
      text-decoration: none;
    }

    .tahun-content ul li a:hover {
      color: #005aa7;
      text-decoration: underline;
    }
    
    /* Smooth scroll */
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f4f7fb;
      color: #003366;
      margin: 0;
      padding: 0;
    }

    .publikasi-section {
      max-width: 900px;
      margin: 50px auto;
      padding: 30px 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .publikasi-title {
      text-align: center;
      color: #005aa7;
      margin-bottom: 40px;
      font-family: 'Gravitas One', cursive;
    }

    .tahun-list {
      margin-bottom: 30px;
    }

    .tahun-list a {
      display: block;
      padding: 10px 16px;
      margin-bottom: 5px;
      background-color: #e9f4ff;
      color: #003366;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
    }

    .tahun-list a:hover {
      background-color: #cce5ff;
      color: #005aa7;
    }

    .tahun-content {
      margin-top: 50px;
    }

    .tahun-content h3 {
      color: #0077cc;
      margin-bottom: 15px;
    }

    .tahun-content ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 40px;
    }

    .tahun-content ul li a {
      color: #003366;
      text-decoration: none;
    }

    .tahun-content ul li a:hover {
      color: #005aa7;
      text-decoration: underline;
    }

    .file-item {
      display: flex;
      justify-content: space-between; /* teks kiri, ikon kanan */
      align-items: center;
      margin-bottom: 8px;
    }
    
    .file-item a {
      text-decoration: none;
      color: #003366;
      font-weight: 500;
    }
    
    .file-item a:hover {
      color: #005aa7;
    }
    
    .download-icon i {
      margin-left: 8px; /* jarak dari teks */
      color: #003366;
    }
    
    .download-icon i:hover {
      color: #005aa7;
    }

    /* ===== Hubungi Kami Section ===== */
/* ===== Hubungi Kami Section ===== */
.hubungi-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f1f6fc;
}

.hubungi-section .hubungi-title {
  font-family: 'Gravitas One', cursive;
  font-size: 2.5rem;
  color: #005aa7;
  margin-bottom: 10px;
}

/* ===== Konten Utama ===== */
.hubungi-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Informasi Kontak */
.kontak-info {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border: 1px solid #cce5ff;
}

.kontak-info h3 {
  color: #005aa7;
  margin-bottom: 15px;
}

.kontak-info p {
  font-size: 1rem;
  color: #003366;
  margin: 8px 0;
}

/* Form Kontak */
.hubungi-form {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border: 1px solid #cce5ff;
}

.hubungi-form h3 {
  color: #005aa7;
  margin-bottom: 15px;
}

.hubungi-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hubungi-form label {
  font-weight: 500;
  color: #003366;
}

.hubungi-form input,
.hubungi-form textarea {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #cce5ff;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.hubungi-form button {
  padding: 12px;
  background-color: #005aa7;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hubungi-form button:hover {
  background-color: #003366;
}

/* Peta Lokasi */
.hubungi-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.hubungi-map h3 {
  color: #005aa7;
  margin-bottom: 15px;
}

.hubungi-map iframe {
  width: 100%;
  border: 0;
  height: 300px;
  border-radius: 10px;
}

/* ===== Responsif ===== */
@media screen and (min-width: 768px) {
  .hubungi-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Tukar posisi: form kiri, peta kanan */
  .hubungi-form {
    order: 1;  /* kiri */
    flex: 1 1 45%;
  }

  .hubungi-map {
    order: 2;  /* kanan */
    flex: 1 1 45%;
  }
}

/* Inline CSS untuk layout koran */
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }


    main {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
    }

    /* Layout koran */
    .koran-layout {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .koran-text {
      flex: 1 1 600px; /* teks fleksibel, minimal 600px */
      font-family: "Segoe UI", serif;
    }

    .koran-image {
      flex: 0 0 300px; /* lebar tetap 300px */
      max-width: 100%;
    }

    .koran-image img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    h3 {
      color: #005aa7;
      margin-top: 20px;
      font-family: "Segoe UI", serif;
    }

    ul {
      margin: 10px 0 20px 20px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      margin-bottom: 20px;
    }

    table, th, td {
      border: 1px solid #ccc;
    }

    th, td {
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #e1eaff;
    }

    @media (max-width: 900px) {
      .koran-layout {
        flex-direction: column;
      }

      .koran-image {
        flex: 1 1 100%;
      }
    }

   /* Container Karir */
   .karir-container {
    display: flex;
    flex-wrap: wrap;  /* agar di mobile bisa stack */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Brosur */
  .karir-brosur {
    flex: 1 1 300px;  /* minimal 300px, bisa menyesuaikan */
  }
  
  .karir-brosur img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  /* Form */
  .karir-form {
    flex: 2 1 500px;  /* form lebih besar dari brosur */
  }
  
  /* Pesan kosong */
  #karir-kosong {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    font-size: 1.2rem;
    color: #004080;  /* biru gelap */
    font-weight: bold;
  }
  
  #karir-kosong {
  display: none;
}

  /* Responsif untuk mobile */
  @media (max-width: 768px) {
    .karir-container {
      flex-direction: column;  /* stack brosur & form */
    }
  
    .karir-brosur, .karir-form {
      flex: 1 1 100%;
    }
  }

  /* Grid Berita */
/*.brita-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}*/

/* susunan ke*/
.brita-grid {
  display: flex;
  flex-direction: column; 
  gap: 20px;     
  max-width: 600px; 
  margin: 0 auto;
  padding: 20px;
}


.brita-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.brita-card img {
  width: 80%;      
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}


.brita-card h3 {
  padding: 10px 15px 5px;
  font-size: 1.1rem;
  font-family: 'Merriweather', serif;
  margin: 5px 15px 8px;
}

.brita-card p {
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #555;
  margin: 5px 15px 8px;
  text-align: justify;
}

/* Tombol Baca Selengkapnya */
.btn-baca {
  display: inline-block;
  margin: -25px 29px 15px;
  color: #003f7f;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;

}

/* Pesan kosong */
#brita-kosong {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
  font-size: 1.2rem;
  color: #555;
  font-weight: bold;
}

/* Modal Pop-up */
.modal {
  display: none; /* default hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  overflow-y: auto; /* memungkinkan scroll jika modal lebih tinggi dari layar */
}

.modal-content {
  background: #fff;
  margin: 50px auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  max-height: 90vh; /* maksimal tinggi 90% viewport */
  overflow-y: auto;  /* scroll di dalam modal */
}

.modal-content h3 {
  text-align: left; /* judul tetap kiri */
  margin-bottom: 15px;
}

.modal-content p {
  text-align: justify; /* isi teks rata kanan-kiri */
  line-height: 1.6;
  margin-bottom: 15px;
}


.modal-content img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Responsif mobile */
@media (max-width: 768px) {
  .brita-grid {
    grid-template-columns: 1fr;
  }
}

/* Grid khusus untuk pengumuman */
.pengumuman-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 20px; /* jarak antar kartu */
  padding: 10px;  
}

/* Kartu pengumuman */
.pengumuman-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 6px rgba(0,0,0,0.1);
  overflow: hidden; /* konten tidak meluber */
  transition: transform 0.2s;
  cursor: pointer;

  /* jarak luar */
  margin: 15px; /* kiri kanan atas bawah rapi */

  /* tinggi tetap tidak mengikuti konten */
  height: 350px;

  /* jarak dalam */
  padding: 10px;
}



.pengumuman-card a {
  display: block; /* supaya menutupi seluruh card */
  text-decoration: none; /* hilangkan garis bawah link */
  color: inherit; /* agar teks tetap mengikuti warna default */
}


.pengumuman-card:hover {
  transform: translateY(-5px);
}

.pengumuman-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}


.pengumuman-card h3 {
  font-size: 20px;
  font-family: 'open sans';
  margin: 10px;
}

.pengumuman-card p {
  font-size: 0.95rem;
  margin: 10px;
  flex-grow: 1; /* isi area kosong */
}

/* Responsive: untuk layar kecil, 1 kolom saja */
@media (max-width: 768px) {
  .pengumuman-grid {
    grid-template-columns: 1fr;
  }
}


/* Gebyar */
.gebyar-section {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.gebyar-img {
  width: 80%;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.gebyar-section h2 {
  color: #005aa7;
  margin-top: 20px;
}

.gebyar-section ul {
  margin-left: 20px;
  text-align: left;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0 30px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  padding: 10px;
  transition: 0.3s;
  user-select: none;
}

.prev { left: 5%; }
.next { right: 5%; }

.prev:hover, .next:hover {
  color: #00bfff;
}

body.no-scroll {
  overflow: hidden;
}

.lightbox {
  z-index: 9999; /* pastikan di atas header/footer */
}
.closing {
  text-align: center;
  font-weight: 500;
  color: #005aa7;
  margin-top: 30px;
}



/* ✅ Atur tampilan mobile: slideshow di atas, berita di bawah */
@media (max-width: 768px) {
  .slideshow-container {
    flex-direction: column; /* ubah dari horizontal ke vertikal */
    align-items: center;    /* biar elemen di tengah */
  }

  .slideshow-left,
  .berita-terbaru {
    width: 100%;            /* masing-masing isi lebar penuh */
  }

  .berita-terbaru {
    margin-top: 20px;       /* beri jarak antara slideshow dan berita */
  }
}

/* Hero Karir */
/* Hero Karir */
#hero-karir {
  display: flex;
  width: 100%;
  height: 100vh; /* full tinggi layar */
  overflow: hidden;
}

/* TEKS KIRI */
.hero-karir-text {
  flex: 1;
  background-color: #003366;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px; /* kanan-kiri seimbang */
  margin-left: 0;     /* pastikan tidak ada jarak dari kiri */
  box-sizing: border-box;
}


.hero-karir-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero-karir-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-karir {
  background-color: #ffeb80;
  color: #003366;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
}
.btn-karir:hover {
  background-color: #ffd700;
}

/* GAMBAR KANAN */
.hero-karir-img {
  position: relative;
  flex: 1;
  height: 100%;
}

.hero-karir-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LAPISAN TRANSPARANSI */
.hero-karir-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); /* ubah angka 0.25 → makin besar = makin gelap */
  z-index: 1;
}

.hero-karir-img img {
  position: relative;
  z-index: 0;
}

/* RESPONSIF HP */
@media (max-width: 768px) {
  #hero-karir {
    flex-direction: column;
    height: auto;
  }

  .hero-karir-text, .hero-karir-img {
    width: 100%;
    height: auto;
  }

  .hero-karir-text {
    padding: 40px 20px;
    text-align: center;
  }

  .hero-karir-img .overlay {
    background-color: rgba(0, 0, 0, 0.35);
  }
}

#karir-form {
  width: 100%;
    text-align: center;
    padding: 50px 20px;
    font-size: 1.2rem;
    color: #004080;  /* biru gelap */
    font-weight: bold;
}

#karir-form h3 {
  color: #003366;
  text-align: center;
  margin-bottom: 10px;
}

#karir-form h4 {
  color: #003366;
  margin-top: 25px;
  margin-bottom: 10px;
}

#karir-form label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: bold;
  color: #003366;
  font-size: 16px;
}

#karir-form input,
#karir-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

#karir-form input[type="file"] {
  border: none;
}

#karir-form button {
  width: 100%;
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

#karir-form button:hover {
  background-color: #0055aa;
}

#karir-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #fff;
}
.subjudul {
  text-align: center;
  font-size: 16px; /* sesuaikan ukuran */
  color: #333;      /* sesuaikan warna */
  margin-bottom: 20px; /* jarak ke bawah */
  font-weight: normal; /* jika tidak mau bold */
}


.garis {
  width: 60px;
  height: 3px;
  background-color:#005aa7;
  margin: 0 auto 20px;
}

/* Bungkus agar tidak ganggu CSS lain */
/* Semua dibungkus agar aman */
.jaringan-kantor {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fff;
}

/* Judul utama */
.jaringan-kantor .judul-besar {
  text-align: center;
  color: #005aa7;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Subjudul */
.jaringan-kantor .subjudul {
  text-align: center;
  color: #003366;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
}


.jaringan-kantor .garis {
  width: 60px;
  height: 3px;
  background-color:#005aa7;
  margin: 0 auto 20px;
}

/* Penjelasan */
.jaringan-kantor .penjelasan {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Grid dua kolom */
.jaringan-kantor .daftar-kantor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px 30px;
}

/* Setiap item kantor */
.jaringan-kantor .item-kantor {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Kolom gambar dan maps */
.jaringan-kantor .gambar-maps {
  flex: 1 1 50%;
}

.jaringan-kantor .gambar-maps img {
  width: 100%;
  height: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 10px;
}

.jaringan-kantor .gambar-maps iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Kolom teks */
.jaringan-kantor .info-kantor {
  flex: 1 1 50%;
}

.jaringan-kantor .info-kantor h4 {
  color: #005aa7;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.jaringan-kantor .info-kantor p {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Responsif */
@media (max-width: 768px) {
  .jaringan-kantor .item-kantor {
    flex-direction: column;
  }

  .jaringan-kantor .daftar-kantor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #karir-form {
    padding: 20px;
  }
}   

/* Scroll smooth global (modern browsers) */
html {
  scroll-behavior: smooth;
}

/* Tombol scroll-top */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 70px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: rgba(0, 51, 102, 0.9); /* ganti sesuai tema */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9999;
}

/* Tampil ketika aktif */
.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.scroll-top:hover {
  transform: translateY(-2px);
}

/* Ukuran ikon (sesuaikan jika tidak pakai FA) */
.scroll-top i {
  font-size: 16px;
}

/* Ukuran ikon (sesuaikan jika tidak pakai FA) */
.scroll-top i {
  font-size: 16px;
}

/* Posisi ikon di pojok kiri bawah */
.social-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Gaya tiap ikon */
.social-fixed a {
  width: 42px;
  height: 42px;
  background-color: #003366; /* Warna tema */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Efek hover */
.social-fixed a:hover {
  background-color: #0059b3;
  transform: scale(1.1);
}

/* Posisi ikon di pojok kiri bawah + efek muncul */
.social-media {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

/* Tampil saat dapat class show */
.social-media.show {
  opacity: 1;
  visibility: visible;
}

/* Gaya tiap ikon */
.social-media a {
  width: 42px;
  height: 42px;
  background-color: #003366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Efek hover */
.social-media a:hover {
  background-color: #0059b3;
  transform: scale(1.1);
}

#pengaduan-section .deskripsi-pengaduan {
  text-align: justify !important;
  text-justify: inter-word;
  line-height: 1.6;
}

.list-group-item:hover {
  background-color: #f4f9ff;
  transform: translateX(3px);
  transition: 0.25s ease;
}

.nav-pills .nav-link {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
}

.nav-pills .nav-link.active {
  background-color: #003366;
}








