.mobile-menu>ul>li:nth-child(3)>a {
    color: var(--accent);
}








.service-card h2 {
    text-align: center;
}

/* جدول زمانی */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 4px;
    background: var(--bg-abi);
    transform: translateX(50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background: var(--bg-khak2);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-khak2);
    top: 20px;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
}

.timeline-year {
    font-weight: bold;
    color: var(--white-s);
    font-size: 25px;
    background-color: var(--bg-abi);
    text-align: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* آمار و ارقام */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    background: var(--bg-khak);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--black-hover);
}

.stat-item p {
    color: var(--black);
}

/* انیمیشن‌های کلیدی */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* رسپانسیو */
@media (max-width: 768px) {

    .feature-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 15px;
    }

    .timeline-item:nth-child(even) {
        left: 0px;
    }

    .timeline-content::after {
        left: -10px !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .urgent-cta {
        flex-direction: column;
        gap: 10px;
    }
}