body { 
    font-family: 'Vazirmatn', sans-serif; 
    scroll-behavior: smooth; 
}

.section-title { 
    text-align: center; 
    font-size: 2.25rem; 
    font-weight: 700; 
    margin-bottom: 2.5rem; 
    position: relative; 
    padding-bottom: 1rem; 
}

.section-title::after { 
    content: ''; 
    position: absolute; 
    display: block; 
    width: 80px; 
    height: 3px; 
    background-color: #10B981; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}

.cta-button { 
    display: inline-block; 
    background-color: #10B981; 
    color: white; 
    font-weight: 700; 
    padding: 0.75rem 1.5rem; 
    border-radius: 9999px; 
    transition: all 0.3s; 
    transform-origin: center; 
}

.cta-button:hover { 
    background-color: #059669; 
    transform: scale(1.05); 
}

.rtl-timeline { 
    position: relative; 
    padding-right: 2rem; 
    border-right: 2px solid #374151; 
}

.rtl-timeline-item::before { 
    content: ''; 
    position: absolute; 
    right: -9px; 
    top: 5px; 
    width: 16px; 
    height: 16px; 
    border-radius: 50%; 
    background-color: #10B981; 
    border: 2px solid #1f2937; 
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.3s ease-in-out;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10B981;
}

.modal-text {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.modal-button {
    background-color: #10B981;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

.modal-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
}
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
/* استایل جدید برای دات ناوبری فعال */
.dot.active-dot {
    /* افزایش اندازه دات فعال برای تمایز بیشتر */
    width: 10px; /* w-2.5 یا w-3 */
    height: 10px; /* h-2.5 یا h-3 */
    background-color: #10B981 !important; /* رنگ اصلی تم (زمردی) */
    opacity: 1 !important;
    
    /* جلوه شیک‌تر: تبدیل دایره به کپسول یا استفاده از دایره با حاشیه */
    /* در این مثال، دایره با رنگ تم را استفاده می‌کنیم */
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8); /* Glow effect */
}

.dot:hover {
    opacity: 1 !important;
    background-color: #10B981; /* رنگ اصلی تم */
}