.circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  opacity: 0; /* د fade-in لپاره */
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 20px;
  line-height: 1.2;
  color: #ffffff;
  position: relative;
  margin-left: -50px; /* لږ overlap */
  transition: all 0.3s ease;
  z-index: 1;
}

/* custom colors */
.circle:nth-child(1) { background: #1FB5E7; }
.circle:nth-child(2) { background: #093b97; }
.circle:nth-child(3) { background: #1FB5E7; }
.circle:nth-child(4) { background: #093b97; }
.circle:nth-child(5) { background: #1FB5E7; }
.circle:nth-child(6) { background: #093b97; }
.circle:nth-child(7) { background: #1FB5E7; }

/* hover effect: کوم باندې هاور شي هغه پورته شي */
.circle:hover {
  transform: translateY(-20px);
  z-index: 10;
  border: 10px solid #ffffff;
  padding: 10px;
}

/* نورو دایرو باندې blur effect کله چې یو دایره هاور شي */
.circle-container:hover .circle {
  filter: blur(3px);
}

.circle-container .circle:hover {
  filter: blur(0); /* هاور شوی دایره صاف پاتې شي */
}

/* responsive */
@media (max-width: 991px) {
  .circle-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .circle {
    width: 160px;
    height: 160px;
    font-size: 16px;
    margin-left: -30px;
  }
}
