header {
  position: relative; /* supaya anak bisa diatur absolute */
}

header .logo {
  position: absolute;
  top: 10px;   /* jarak dari atas layar, bisa ganti 0px biar bener2 nempel */
  left: 10px;  /* jarak dari kiri layar */
  width: 135px; /* atur ukuran logo biar nggak kebesaran */
  height: auto;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

h1 {
  color: #007bff;
  text-align: center;
  margin-top: 20px;
}

.card {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  background: white;
  margin: 10px;
}

.clients {
  text-align: center;
  margin: 40px 0;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* jarak antar logo */
}

.client-logos img {
  max-width: 180px; /* atur ukuran logo */
  height: auto;
  transition: transform 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.1); /* efek hover biar interaktif */
}

.qualifications {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}

.qualifications  {
  margin: 2px 0;        /* lebih rapat */
  padding-left: 12px;   /* jarak text ke bullet */
  position: relative;
  font-size: 14px;      /* font lebih kecil biar padat */
  line-height: 1.4;     /* bikin rapih */
}

.qualifications :before {
  content: "•";
  position: absolute;
  left: 0;
  color: #004080;       /* biru biar matching */
  font-size: 12px;      /* bullet lebih kecil */
}


.credo h2 {
  font-size: 28px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 40px;
}

.credo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Grid foto 2x2 */
.foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.credo-img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease-in-out;
}

.credo-img:hover {
  transform: scale(1.05);
}

.credo-list {
  list-style: none;
  text-align: left;
  font-size: 18px;
  padding: 0;
}

.credo-list li {
  margin: 10px 0;
  font-weight: 500;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.6s forwards;
}

.credo-list li:nth-child(1) { animation-delay: 0.2s; }
.credo-list li:nth-child(2) { animation-delay: 0.4s; }
.credo-list li:nth-child(3) { animation-delay: 0.6s; }
.credo-list li:nth-child(4) { animation-delay: 0.8s; }
.credo-list li:nth-child(5) { animation-delay: 1s; }
.credo-list li:nth-child(6) { animation-delay: 1.2s; }

.highlight {
  background: hsl(51, 100%, 50%);
  color: #003366;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 8px;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}