        :root {
            --bg-color: #05050a;
            --accent: #6366f1;
            --glass: rgba(255, 255, 255, 0.03);
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background: radial-gradient(circle at 50% 0%, #1a1a3a 0%, #05050a 70%);
            color: #e2e8f0;
            margin: 0;
            overflow-x: hidden;
        }

.vanta-canvas{
    top:-32rem !important;
}
/* --- Components --- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
}

        .glass-card p {
            line-height: 1.8;
        }

        .hero-title {
            font-size: 3.85rem;
            font-weight: 900;
            background: linear-gradient(to right, #fff, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

/* کارت آمار */
.stats-row {
    margin: 0 0 3rem 0;
    padding: 0 0 20px;
}

.stat-card {
    backdrop-filter: blur(12px);
    transition: all 0.3s;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    line-height: 1;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: #94a3b8;
    font-size: 1em;
    margin-top: 8px;
}

        /* ==================== تایم‌لاین نقاط عطف ==================== */
        .timeline-section {
            margin-bottom: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 12px;
        }

        .section-title p {
            color: #94a3b8;
        }

        /* time line */

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, #4f46e5, #818cf8, #c084fc);
            opacity: 0.3;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-dot {
            position: absolute;
            right: 50%;
            top: 46%;
            transform: translateX(50%);
            width: 16px;
            height: 16px;
            background: #818cf8;
            border-radius: 50%;
            /* box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.2); */
            z-index: 2;
        }

        .timeline-dot .spinner-grow {
            position: relative;
            top: -3px;
            text-align: center;
            right: -3px;
            width: 22px;
            height: 22px;
            background: #818cf8;
            --bs-spinner-animation-speed: .95s !important;
        }



        .timeline-content {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            width: 45%;
            padding: 24px;
            transition: all 0.3s;
        }

        .timeline-content:hover {
            border-color: rgba(164, 165, 168, 0.4);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            float: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            float: left;
        }

        .timeline-year {
            font-size: 18px;
            font-weight: 700;
            color: #818cf8;
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 18px;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 8px;
        }

        .timeline-text {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.6;
        }

        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
/* موبایل */
@media (max-width: 768px) {
    .timeline-title {
        font-size:.9em;
    }

    .timeline-text {
        font-size: .75em;
    }

}