/* Nav */
.custom-button::part(base) {
  background: var(--wa-color-yellow-70);
  border: solid 1px var(--wa-color-yellow-70);
  transition:
    transform 100ms,
    box-shadow 100ms;
}

.custom-button::part(base):hover  {
  background-color: var(--wa-color-yellow-95);
  color: var(--wa-color-gray-10);
}

/* Home */
.custom-btn-1::part(base) {
  background: var(--wa-color-blue-60);
  border: solid 1px var(--wa-color-blue-60);
  transition:
    transform 100ms,
    box-shadow 100ms;
}

.custom-btn-1::part(base):hover {
  background: var(--wa-color-blue-50);
}

.custom-btn-2::part(base) {
  background: var(--wa-color-yellow-80);
  color: var(--wa-color-yellow-05);
  border: solid 1px var(--wa-color-yellow-80);
  transition:
    transform 100ms,
    box-shadow 100ms;
}

.custom-btn-2::part(base):hover {
  background: var(--wa-color-yellow-70);
}

.service-card {
    background: var(--wa-color-blue-95);
    border: 1px solid var(--wa-color-blue-95);
}

.service-card:hover {
  transform: translateY(-2px);
  border: 1px solid var(--wa-color-cyan-60);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: 500ms ease;
}
.watermark {
background-image: linear-gradient(135deg, var(--wa-color-blue-40), var(--wa-color-cyan-60));
background-repeat: no-repeat;
background-position: center;
background-size: cover; /* 👈 gradient, svg */
}

.feedback {
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 15px;
}
/* Blog */
.blog {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  z-index: 1;
}

.blog:hover {
  border: 1px solid var(--wa-color-blue-40);
}
/* --- Dots --- */

.container {
  position: absolute;
  inset: 0; /* same as top:0; right:0; bottom:0; left:0 */
}

.circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.circle-1 {
  top: 10px;
  left: 10px;
  width: 128px;  /* 32 * 4px */
  height: 128px;
}

.circle-2 {
  bottom: 10px;
  right: 10px;
  width: 96px;   /* 24 * 4px */
  height: 96px;
}

.circle-3 {
  top: 50%;
  left: 25%;     /* 1/4 */
  width: 64px;   /* 16 * 4px */
  height: 64px;
}