@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:ital,wght@0,400;0,500;0,600;1,400&family=Roboto:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins",serif;
}

body {
  background: #f7f7f7;
}

.container-fluid {
  width: 100%;
  margin: auto;
  text-align: left;
  background-color: #0c0c68;
}
h1 {
  padding-top: 50px;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.table-container {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap; /* Supaya konten tidak terlalu melebar di layar kecil */
}

.category-box {
  background-color: #007bff;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  width: 25%;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word; /* Membuat teks otomatis pindah ke baris berikutnya */
  overflow: hidden;
}

.content-box {
  background-color: white;
  color: black;
  padding: 15px;
  width: 70%;
  text-align: left;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

/* Responsif untuk layar tablet */
@media (max-width: 768px) {
  .table-row {
    flex-direction: column; /* Mengubah tata letak ke kolom di layar kecil */
  }

  .category-box {
    width: 100%; /* Supaya memenuhi lebar layar */
    font-size: 18px;
    padding: 15px;
  }

  .content-box {
    width: 100%; /* Supaya memenuhi lebar layar */
  }
}

/* Responsif untuk layar HP */
@media (max-width: 480px) {
  .category-box {
    font-size: 16px; /* Mengecilkan ukuran font agar tetap muat */
    padding: 10px;
  }
}


/* our Client */
.grid-item p {
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-top: 10px;
}
/* our client */
.client-box:hover {
  transform: scale(1.05);
}
.mb-5 {
  margin-bottom: 3rem !important;
}

/* swiper */
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-box {
  width: 200px; 
  height: 150px; 
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-box img {
  max-width: 80%; 
  max-height: 80%;
  object-fit: contain;
}