* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'TW Cen MT', serif;
}



/* Dropdown Kanan (submenu Tata Kelola) */
.dropdown-right {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #e9e9e9;
  border-radius: 5px;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.dropdown li:hover>.dropdown-right {
  display: block;
}


.actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.language-dropdown {
  position: relative;
}

.lang-toggle {
  padding: 8px 16px;
  border: 1.5px solid currentColor;
  background: transparent;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease;
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  z-index: 999;
}

.lang-menu a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}

.lang-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.register-btn {
  background-color: #007d91;
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.register-btn:hover {
  background-color: #005e6b;
}

.top-left-image {
  position: absolute;
  top: 0px;
  /* Jarak dari atas */
  left: 0px;
  /* Jarak dari kiri */
  width: 6%;
  /* Ukuran gambar */
  height: auto;
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

.wa-float img {
  width: 40px;
  height: 40px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Footer Styling */
.main-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0f9ddb;
}

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

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

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.app-links img {
  width: 120px;
  margin: 0px 0px 0 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
}

.social-icons img {
  width: 50%;
  height: 50%;
}

/* Page Content Styles */
.content {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

/* css kegiatan */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 75px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 350px;
  height: 150px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'TW Cen MT', serif;
}

.card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;
}

.overlay p {
  font-size: 10%;
  font-family: 'TW Cen MT', serif;
}

.overlay h1 {
  font-size: 200%;
  font-family: 'TW Cen MT', serif;
}


.title {
  color: green;
  font-size: 200%;
  margin-bottom: 10px;
  text-align: center;

}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}


.card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  font-family: 'TW Cen MT', serif;
}

.card .amount {
  font-weight: bold;
}

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

.card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.card button {
  padding: 8px 16px;
  font-size: 14px;
  background: transparent;
  border: 1.5px solid #1a2e5c;
  border-radius: 50px;
  color: #1a2e5c;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card button:hover {
  background-color: #1a2e5c;
  color: white;
}

.hero {
  height: 200vh;
  background: url('') no-repeat center center/cover;
  color: black;
  padding: 1px 40px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.hero-text a {
  background-color: #007BFF;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-text a:hover {
  background-color: #0056b3;
}

.hero-text span {
  color: #ccc;
}

/* News */
.news-section {
  padding: 40px;
  background: #f9f9f9;
  font-family: sans-serif;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.news-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-tabs .tab {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 6px;
}

.news-tabs .tab.active {
  background: #0a2c24;
  color: white;
}

.news-search input {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.grid {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  margin-top: 20px;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* biar gambar proporsional */
}



.news-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}


.news-card img {
  width: 100%;
  border-radius: 8px;
}

.news-card h3 {
  margin: 10px 0 5px;
  font-size: 1rem;
}

.news-card h3 a {
  color: #0a2c24;
  text-decoration: none;
}

.news-card p {
  font-size: 0.9rem;
  color: #444;
}

.news-card img.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card .card-text {
  margin-top: 12px;
}

.news-card .card-text h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #007bff;
}



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

.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination button {
  padding: 8px 12px;
  margin: 2px;
  border: none;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
}

.pagination button.active {
  background-color: orange;
  color: white;
}

.visi-misi {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.item.visi .icon {
  order: 1;
}

.item.misi .icon {
  order: 2;
}

.item .icon img {
  width: 100px;
  height: auto;
}

.item .content {
  max-width: 700px;
}

.item h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0f2d2d;
}

.item p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.manajemen-header {
  text-align: center;
  padding: 0px 0%;
  font-family: 'TW Cen MT', serif;
}

.manajemen-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.manajemen-header p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tab-buttons {
  display: inline-flex;
  border: 2px solid #444;
  border-radius: 50px;
  overflow: hidden;
  font-family: 'TW Cen MT', serif;

}

.tab-buttons .tab {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 25px;
  background: none;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'TW Cen MT', serif;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  box-sizing: border-box;
  border: none;
}

.tab-buttons .tab:hover {
  background-color: #eee;
}

.tab-buttons .active {
  background-color: #007c91;
  color: #fff;
}

.manajemen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: -0px 6px;
  width: 5000px;
}


.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.info {
  padding: 16px;
  border-top: 6px solid #003c46;
  font-family: 'TW Cen MT', serif;

}

.jabatan {
  font-size: 12px;
  text-transform: uppercase;
  color: #003c46;
  margin-bottom: 6px;
  font-family: 'TW Cen MT', serif;
}

h3 {
  font-size: 20px;
  margin: 0;
  color: #007c91;
  font-family: 'TW Cen MT', serif;
}

.posisi {
  font-size: 1000px;
  color: #444;
  margin-top: 4px;
  font-family: 'TW Cen MT', serif;
}

/*fsd */
.content-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 30px;
      font-family: 'TW Cen MT', serif;
}

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

  .content-section .image-box img {
    width: auto;
    height: auto;
  }
}

.text-box {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 600px;
  background-color: transparent;
  padding: 20px 30px;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'TW Cen MT', serif;
}

.text-box h1 {
  font-size: 180%;
  color: transparent;
  margin-bottom: 20px;
}

.text-box h4 {
  font-size: 130%;
  line-height: 1.7;
}

.text-box li {
  font-size: 140%;
  line-height: 1.7;
}

.text-box ul {
  font-size: 120%;
  line-height: 1.7;
}

.image-box {
  flex: 1 1 300px; /* Bisa mengecil sampai 300px, fleksibel */
  min-width: 150px; /* Tidak terlalu kecil di HP */
  max-width: 100%; /* Tidak melebihi lebar container */
  text-align: center;
}

.image-box img {
  width: 100%; /* Penuhi lebar box */
  height: auto;
  object-fit: cover;
  border-radius: 10px; /* Opsional: agar gambar lebih rapi */
}

/* Media queries untuk layar lebih kecil */
@media screen and (max-width: 768px) {
  .image-box {
    flex: 1 1 45%; /* Dua kolom di tablet */
  }
}

@media screen and (max-width: 480px) {
  .image-box {
    flex: 1 1 90%; /* Satu kolom di HP */
  }
}
.governance-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.title h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.title p {
  font-size: 30px;
  color: #222;
  margin-bottom: 40px;
}

.accordion {
  border-top: 1px solid #cfdfe4;
}

.accordion-item {
  border-bottom: 1px solid #cfdfe4;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  opacity: 0.4;
}

.title-text {
  flex: 1;
  font-size: 22px;
  color: #9ac1cb;
  font-weight: 400;
  text-align: left;
  font-family: 'TW Cen MT', serif;
}

.toggle-icon {
  font-size: 28px;
  font-weight: bold;
  color: #888;
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 0 20px 25px 80px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  background: transparent;
  text-align: left;
  font-family: 'TW Cen MT', serif;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .toggle-icon {
  content: '-';
  transform: rotate(45deg);
}

.publikasi {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.publikasi h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 30px;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.card background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 8px;
width: 1000%;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
transition: 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-text {
  padding: 15px;
}

.card-text h3 {
  font-size: 16px;
  color: #007b8f;
  margin-bottom: 8px;
  font-family: 'TW Cen MT', serif;
}


.card-text .kategori {
  font-size: 0.875rem;
  color: gray;
  margin-bottom: 12px;
}

.btn-read {
  padding: 6px 16px;
  border: 1px solid #007b8f;
  border-radius: 20px;
  background: none;
  color: #007b8f;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.btn-read:hover {
  background-color: #007b8f;
  color: white;
}

/* Banner Atas */
.promo-banner {
  background: #fff4e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1;
  min-width: 300px;
  font-family: 'TW Cen MT', serif;
}

.promo-text h1 {
  font-size: 36px;
  color: #f39c12;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;
}

.promo-text h3 {
  font-size: 36px;
  color: #f39c12;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;
}


.promo-text p {
  font-size: 18px;
  color: #e67e22;
  font-family: 'TW Cen MT', serif;
}

.promo-image img {
  width: 300px;
  max-width: 100%;
}

/* Form Cari */
.promo-search {
  background: #fff;
  margin-top: -40px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.promo-search h3 {
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;
}

.promo-search input {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: 'TW Cen MT', serif;

}

.promo-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'TW Cen MT', serif;

}

.promo-filter select,
.promo-filter button {
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.promo-filter button {
  background-color: #f39c12;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'TW Cen MT', serif;

}

/* Tab */
.promo-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  font-family: 'TW Cen MT', serif;

}

.promo-tab button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'TW Cen MT', serif;

}

.promo-tab .active {
  border-color: #f39c12;
  color: #f39c12;
  font-weight: bold;
  font-family: 'TW Cen MT', serif;

}

/* Kartu Promo */
.promo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 20px 40px;
  font-family: 'TW Cen MT', serif;

}

.promo-card {
  width: 300px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'TW Cen MT', serif;

}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  font-family: 'TW Cen MT', serif;

}

.promo-content {
  padding: 15px;
  font-family: 'TW Cen MT', serif;

}

.promo-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;

}

.promo-content p {
  font-size: 13px;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;

}

.badge {
  background: #dff0da;
  color: #2e7d32;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  display: inline-block;
  margin-right: 5px;
  font-family: 'TW Cen MT', serif;

}

.code {
  font-size: 12px;
  color: #777;
}

.promo-search {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  top: -50px;
  z-index: 5;
  font-family: 'TW Cen MT', serif;

}

.promo-search input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'TW Cen MT', serif;

}

.promo-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'TW Cen MT', serif;

}

.custom-dropdown {
  position: relative;
  flex: 1;
  min-width: 200px;
  font-family: 'TW Cen MT', serif;

}

.dropdown-toggle {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: 'TW Cen MT', serif;

}



.checkbox-menu li {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-family: 'TW Cen MT', serif;

}

.search-btn {
  background: #f9a825;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'TW Cen MT', serif;

}

.content {
  flex: 1;
  padding: 4%;
}

.collaboration {
  margin-left: 1%;
  margin-right: 2%;
}


.header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #f47920;
}

.logo {
  height: 40px;
}

.region-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  color: #333;
}

.contact-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px;
  gap: 30px;
  font-family: 'TW Cen MT', serif;
}

.office-card {
  flex: 1;
  min-width: 500px;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.office-card h3 {
  color: #003366;
  margin-bottom: 20px;
  /* Tambah jarak dari bawah */
  font-size: 20px;
  position: relative;
  z-index: 2;
  font-family: 'TW Cen MT', serif;
}

.office-card::before {
  content: "";
  display: block;
  height: 3px;
  background-color: #003366;
  /* Warna biru */
  position: absolute;
  top: 50px;
  /* Jarak dari atas kontainer � disesuaikan agar pas di bawah judul */
  left: 0;
  width: 100%;
  z-index: 1;
}

.office-card p {
  line-height: 1.6;
  margin-top: 15px;
}

.download-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.download-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.download-image img {
  max-width: 180px;
  margin: 10px;
}

.download-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  font-family: 'TW Cen MT', serif;
}

.download-text h1 {
  font-size: 50px;
  color: #222;
  margin-bottom: 15px;
  font-family: 'TW Cen MT', serif;
}

.download-text h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  font-family: 'TW Cen MT', serif;
}

.download-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  font-family: 'TW Cen MT', serif;
}

.download-text ul {
  list-style: none;
  padding-left: 0;
  font-family: 'TW Cen MT', serif;
}

.download-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #222;
  font-family: 'TW Cen MT', serif;
}

.download-text ul li::before {
  content: " ";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 20px;
  font-family: 'TW Cen MT', serif;
}

.store-links {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.store-links .store {
  text-align: center;
}

.store-links img {
  height: 50px;
}

.store-links small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.video-container {
  max-width: 85%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Responsif untuk layar kecil (HP) */
@media (max-width: 768px) {
  .video-container {
    max-width: 95%;
    margin: 15px auto;
    border-radius: 12px;
  }

  video {
    border-radius: 12px;
  }
}

.title {
  font-family: 'TW Cen MT', serif;
  font-size: 120%;
  font-weight: bold;
  color: black;
}

.footer {
  display: flex;
  justify-content: space-around;
  background-color: #111;
  padding: 40px 100px;
  flex-wrap: wrap;
  gap: 60px;
  font-family: 'TW Cen MT', serif;
}

.footer-section {
  flex: 1 1 200px;
  max-width: 200px;
}

.footer-title {
  font-size: 1.2em;
  margin-bottom: 100px;
}

.footer-section p,
.footer-section a {
  color: white;
  margin: 5px 0;
  font-size: 15px;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}


.telpon {
  margin-top: 10px;
}

.app-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  margin-top: 10%;
}

.app-icons img {
  width: 100px;
  height: auto;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.socials {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 2% 5%;
  border-top: 1px solid #333;
}

.icons i {
  font-size: 20px;
  margin: 0 10px;
  color: #ccc;
}

.struktur-container {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  padding: 20px 15px 40px;
  /* kurangi padding atas */
  margin-top: -30px;
  /* jika ingin naik lebih dekat lagi */
  position: relative;
}


.judul {
  font-size: 28px;
  color: #0f2d2d;
  margin-bottom: 5px;
  font-family: 'TW Cen MT', serif;
}

.subjudul {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
  font-family: 'TW Cen MT', serif;
}

.struktur {
  position: relative;
  max-width: 1000px;
  margin: auto;
  margin-top: 10px;
  /* struktur lebih dekat dengan deskripsi di atas */
}
}

.garis-utama {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 2px;
  height: 500px;
  background-color: #888;
  transform: translateX(-50%);
  z-index: 0;
}

.level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.box {
  background-color: #ffffff;
  border: 2px solid #1a3e3e;
  color: #1a3e3e;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 13px;
  min-width: 150px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'TW Cen MT', serif;
}

.deskripsi-kotak {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 20px;
  border: 1.5px solid #333;
  border-radius: 25px;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  color: #111;
  font-family: 'TW Cen MT', serif;
}

.pengaduan-container {
  max-width: 700px;
  background: #ffffff;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.pengaduan-container h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #004d40;
  font-family: 'TW Cen MT', serif;

}

.pengaduan-container p {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  font-family: 'TW Cen MT', serif;

}

.pengaduan-form .form-group {
  margin-bottom: 20px;
}

.pengaduan-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-family: 'TW Cen MT', serif;
}

.pengaduan-form input,
.pengaduan-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline-color: #00897b;
  transition: border-color 0.3s;
}

.pengaduan-form input:focus,
.pengaduan-form textarea:focus {
  border-color: #00796b;
}

.pengaduan-form button {
  background-color: #00897b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'TW Cen MT', serif;
}

.pengaduan-form button:hover {
  background-color: #00695c;
}

.invest-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.text-area {
  flex: 1;
  min-width: 300px;
}

.text-area h1 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 0;
}

.text-area h2 {
  font-size: 50px;
  font-weight: bold;
  color: #1a237e;
  margin-top: 0;
}

.text-area p {
  font-size: 16px;
  margin: 20px 0 10px;
  color: #333;
}

.text-area .store-info {
  color: #1a237e;
  font-weight: bold;
  font-size: 1.2rem; /* ukuran default desktop */
  text-align: left; /* rata kiri di desktop */
  margin: 10px 0;
}

/* Tablet */
@media screen and (max-width: 768px) {
  .text-area .store-info {
    font-size: 1rem; /* lebih kecil agar pas di tablet */
    text-align: center; /* bisa ditengahkan jika ingin */
  }
}

/* HP */
@media screen and (max-width: 480px) {
  .text-area .store-info {
    font-size: 0.9rem; /* lebih kecil di HP */
    text-align: center;
  }
}

.store-buttons img {
  height: 50px;
  margin-right: 15px;
  margin-top: 10px;
  cursor: pointer;
}

.image-area {
  flex: 1;
  text-align: right;
  min-width: 280px;
}

.image-area img {
  max-width: 100%;
  height: auto;
}

.section-panduan {
  padding: 40px 20px;
  text-align: center;
  font-family: 'TW Cen MT', serif;
}

.judul h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'TW Cen MT', serif;

}

.judul h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'TW Cen MT', serif;

}

.judul h2 span {
  color: #3a3fd6;
}

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

.panduan-item {
  width: 260px;
  text-align: center;
}

.panduan-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'TW Cen MT', serif;

}

.panduan-item h3 span {
  color: #3a3fd6;
}

.panduan-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.steps .step {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 16px;
  font-size: 14px;
}

.step .icon {
  margin-right: 8px;
  font-size: 18px;
  color: #3a3fd6;
  min-width: 24px;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 100px;
}

.footer-col h3 {
  color: #00a0c6;
  margin-bottom: 10px;
  font-size: 25px;
}

.footer-col p {
  font-size: 17px;
  margin: 5px 0;
  color: #ddd;
}


.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.box {
  border: 2px solid #333;
  padding: 10px 15px;
  text-align: center;
  border-radius: 5px;
  background: #f8f8f8;
  font-size: 14px;
  min-width: 150px;
}

.komisaris {
  border-color: #004b87;
  font-weight: bold;
}

.dirut {
  border-color: #004b87;
  background: #e0f2ff;
}

.direktur {
  border-color: #004b87;
  background: #e6f7ff;
}

.audit {
  border-color: #a00;
  background: #fee;
  position: absolute;
  top: 120px;
  right: 40px;
}

.row {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.sub-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.app-icons {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.app-icons img {
  height: 20%;
  width: 48%;
  filter: brightness(0) invert(1);
}

.login-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #003d5c;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
  color: #333;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  width: 100%;
  margin-top: 20px;
  background-color: #007999;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #005f73;
}

.forgot {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.forgot a {
  color: #007999;
  text-decoration: none;
}

.forgot a:hover {
  text-decoration: underline;
}

.admin-container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

th {
  background: #007b91;
  color: white;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}


h1 {
  font-size: 38px;
  margin-bottom: 15px;
  font-family: 'TW Cen MT', serif;
}

.desc {
  max-width: 850px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  font-family: 'TW Cen MT', serif;
}

.tab-content {
  margin-top: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
}


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

.info {
  padding: 10px 15px 20px;
}

.posisi {
  font-size: 13px;
  color: #666;
  margin: 5px 0;
  font-family: 'Segoe UI';
}

.nama {
  font-weight: bold;
  color: #007c91;
  font-size: 16px;
  margin: 5px 0;
}

.jabatan {
  font-size: 14px;
  color: #444;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #007bff;
  color: white;
  border: none;
}

.logout {
  display: inline-block;
  margin-bottom: 10px;
  color: red;
  float: right;
  text-decoration: none;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 10px;
}

table th {
  background-color: #007bff;
  color: white;
}

@media (max-width: 768px) {

  table th,
  table td {
    font-size: 14px;
  }
}

/*untuk layar device berukuran besar*/
@media screen and (min-width: 800px) {
  .container {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*untuk layar device berukuran sedang*/
@media screen and (min-width: 550px) {
  .red {
    width: 33%;
  }

  .orange {
    width: 67%;
  }
}

@media (max-width:768px) {
  nav {
    display: block !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}



.sort-bar {
  text-align: center;
  margin: 20px;
}

.sort-bar button {
  padding: 10px 20px;
  background-color: #eee;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.sort-bar button:hover {
  background-color: #ccc;
}


.promo-container {
  max-width: 1200px;
  margin: auto;
}

.sort-button {
  text-align: left;
  margin-bottom: 20px;
}

#sortBtn {
  background-color: #eee;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.promo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  transition: transform 0.2s;
}

.promo-card:hover {
  transform: scale(1.02);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-card p {
  padding: 15px;
  font-size: 14px;
  text-align: center;
}


h2#dynamicText {
  font-size: 36px;
  color: #1a237e;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  min-width: 300px;
  /* lebar tetap agar tidak loncat */
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #1a237e;
  vertical-align: middle;
}

#cursor {
  display: inline-block;
  width: 1px;
  animation: blink 1s infinite;
  color: #1a237e;
  font-weight: bold;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.read-more {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #007bff;
  border-radius: 6px;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.read-more:hover {
  background: #007bff;
  color: #fff;
}

/* table trading */
.wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.top-box {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 45%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.top-box h2 {
  color: blue;
  text-align: center;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 10px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background: #eee;
  border: none;
  font-weight: bold;
}

.tab-btn.active {
  background: #4CAF50;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #007bff;
  color: white;
  padding: 8px;
}

td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

td:last-child {
  font-weight: bold;
  color: green;
}

/* Popup Overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Popup Content */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;

  .popup-content h2 {
    margin-bottom: 20px;
    color: #333;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #555;
    cursor: pointer;
  }

  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }

  .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }

  .btn-login {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: 0.3s;
  }

  .btn-login:hover {
    background: #0056b3;
  }

  /* Animasi popup */
  @keyframes fadeIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

.typing-container {
  height: 50px;
  line-height: 50px;
  min-width: 300px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  font-family: 'TW Cen MT', sans-serif;
}

#cursor {
  animation: blink 1s infinite;
  color: black;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsif di layar kecil */
@media (max-width: 480px) {
  .typing-container {
    height: 40px;
    line-height: 40px;
    min-width: 200px;
    font-size: 16px;
  }
}


