body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Top bar styling */
.top-bar {
  background-color: #F9F9F9;
  padding: 5px 20px;
  font-size: 12px;
  color: #6B6B6B;
  border-bottom: 1px solid #E5E5E5;
  text-align: left;
}

.top-bar a {
  color: #1A73E8;
  text-decoration: none;
  margin-left: 5px;
}

/* Header styling */
.header {
  background-color: #FFFFFF;
  color: white;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.header .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header .logo-container img {
  height: 35px;
}

.header .language-selector {
  display: flex;
  align-items: center;
  border: 1px solid #2F318C;
  color: #2F318C;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.header .language-selector i {
  margin-right: 5px;
}

.header .content {
  margin-top: 30px;
}

.header .content h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #2F318C;
}

.header .content p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #666;
}

.header .illustration {
  position: absolute;
  bottom: 0;
  right: -50px;
  height: 100px;
}


.spinner {
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-top: 5px solid #24A1DE;
  border-right: 5px solid #1E88E5;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;

  /* Animasi super halus */
  animation: spinStable 1.2s linear infinite;
  will-change: transform;
  transform-origin: center;
  backface-visibility: hidden;

  /* Performa tinggi, tidak akan drop frame */
  perspective: 1000px;
  contain: layout paint style;
}

/* keyframe animasi */
@keyframes spinStable {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#loader {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#000000 0 0);
  background:
    var(--c) 0% 50%,
    var(--c) 50% 50%,
    var(--c) 100% 50%;
  background-size: 20% 100%;
  animation: l1 .5s infinite linear;
}

@keyframes l1 {
  0% {
    background-size: 20% 100%, 20% 100%, 20% 100%
  }

  33% {
    background-size: 20% 10%, 20% 100%, 20% 100%
  }

  50% {
    background-size: 20% 100%, 20% 10%, 20% 100%
  }

  66% {
    background-size: 20% 100%, 20% 100%, 20% 10%
  }

  100% {
    background-size: 20% 100%, 20% 100%, 20% 100%
  }
}



footer {
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.list-scrolling {
  animation: marquee 20s linear infinite;
  height: 200px;
  overflow-y: auto;
}



.input-group-text {
  background-color: #010066;
  color: #FFCC00;
  border: none;
}

.form-control {
  border: 1px solid #010066;
  color: #313130;
}

.btn {
  background-color: #010066;
  color: #FFCC00;
  border-radius: 5px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



.item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #eee;
}

.item:last-child {
  border-bottom: none;
}

.icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.icon img {
  width: 50px;
}

.content {
  flex: 1;
}

.title {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.description {
  margin: 5px 0 0 0;
  color: #666;
}

.arrow {
  color: #a17a8a;
  font-size: 24px;
  margin-left: auto;
}

.updated .tag {
  background: #db3d44;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  margin-right: 10px;
}

h2 {
  font-size: 20px;
}

#testimoni {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  margin-top: 25px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimoni-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.05s linear;
  /* halus setiap langkah */
}

.tests {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.test-card {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #007bff;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info .name {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.testimonial-info .text {
  font-size: 14px;
  color: #555;
}

.successful {
  font-size: 16px !important;
  font-weight: bold;
  color: green;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}