/* ============================
   انیمیشن Breathing (تنفس)
   ============================ */

@keyframes govah-breathing {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

.govah-point {
    animation: govah-breathing 2.5s ease-in-out infinite;
}

/* تاخیر انیمیشن برای هر نقطه */
.govah-point:nth-child(1) { animation-delay: 0s; }
.govah-point:nth-child(2) { animation-delay: 0.1s; }
.govah-point:nth-child(3) { animation-delay: 0.2s; }
.govah-point:nth-child(4) { animation-delay: 0.3s; }
.govah-point:nth-child(5) { animation-delay: 0.4s; }
.govah-point:nth-child(6) { animation-delay: 0.5s; }
.govah-point:nth-child(7) { animation-delay: 0.6s; }
.govah-point:nth-child(8) { animation-delay: 0.7s; }
.govah-point:nth-child(9) { animation-delay: 0.8s; }
.govah-point:nth-child(10) { animation-delay: 0.9s; }

/* برای نقاط بیشتر */
.govah-point:nth-child(n+11) {
    animation-delay: calc(1s + (var(--index, 0) * 0.05s));
}