/*Custom CSS for Timeline */
        /* मराठीसाठी फॉन्ट */
        body { font-family: 'Noto Sans Devanagari', sans-serif; }
        
        /* व्हर्टिकल टाईमलाईन कंटेनर */
        .timeline {
            position: relative;
            padding-left: 50px; /* नोडसाठी जागा */
            max-width: 1000px;
            margin: 0 auto;
        }

        /* मध्यभागी असणारी लाल रेषा */
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 15px; /* मोबाईलसाठी रेषेची जागा */
            width: 4px;
            background-color: #b91c1c;
            z-index: 10;
        }

        /* प्रत्येक घटना (Timeline Item) */
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 30px; /* रेषेनंतर टेक्स्टची जागा */
        }

        /* घटना नोड (राजमुद्रेचा आयकॉन) */
        .timeline-node {
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            background-color: #b91c1c;
            border: 3px solid #fef3f2;
            border-radius: 50%;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 4px #b91c1c;
            transform: translateX(-50%);
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover .timeline-node {
            background-color: #7f1d1d;
            transform: scale(1.1) translateX(-50%);
        }

        /* घटना कार्ड */
        .timeline-content {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #b91c1c;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .timeline-item:hover .timeline-content {
            box-shadow: 0 8px 25px rgba(185, 28, 28, 0.2);
            transform: translateY(-5px);
        }

        /* मोठी स्क्रीन: रेष मध्यभागी आणि मजकूर दोन्ही बाजूंना */
        @media (min-width: 768px) {
            .timeline {
                padding-left: 0;
            }
            .timeline::before {
                left: 50%;
                transform: translateX(-50%);
            }
            .timeline-item {
                width: 50%;
                margin-bottom: 50px;
                padding-left: 0;
            }
            .timeline-item:nth-child(odd) {
                left: 0;
                padding-right: 50px;
                text-align: right;
            }
            .timeline-item:nth-child(odd) .timeline-content {
                border-left: none;
                border-right: 5px solid #b91c1c;
            }
            .timeline-item:nth-child(even) {
                left: 50%;
                padding-left: 50px;
                text-align: left;
            }
            .timeline-item:nth-child(odd) .timeline-node {
                left: auto;
                right: -2px;
                transform: translateX(50%);
            }
            .timeline-item:nth-child(even) .timeline-node {
                left: 0;
                right: auto;
                transform: translateX(-50%);
            }
        }