

        .arrow-box {
            position: relative;
            z-index: 1;
        }

            .arrow-box:first-child::before {
                content: '\f0a9';
                font-family: 'Font Awesome 6 Pro';
                font-weight: 900;
                position: absolute;
                left: -10px;
                top: 50%;
                transform: translateY(-50%);
                color: #005d5a;
                font-size: 1.3rem;
                z-index: 10;
            }

            .arrow-box:not(:first-child):not(:nth-child(5))::before {
                content: '\f061';
                font-family: 'Font Awesome 6 Pro';
                font-weight: 900;
                position: absolute;
                left: -10px;
                top: 50%;
                transform: translateY(-50%);
                color: #005d5a;
                font-size: 1.3rem;
                z-index: 10;
                transition: all 0.3s ease;
            }

            .arrow-box:nth-child(4)::after {
                content: '\f051';
                font-family: 'Font Awesome 6 Pro';
                font-weight: 900;
                position: absolute;
                right: -10px;
                top: 47%;
                transform: translateX(-50%);
                color: #005d5a;
                font-size: 1.3rem;
                z-index: 10;
            }

            .arrow-box:nth-child(5)::before {
                content: '\f04e';
                font-family: 'Font Awesome 6 Pro';
                font-weight: 900;
                position: absolute;
                left: -10px;
                top: 50%;
                transform: translateY(-50%);
                color: #005d5a;
                font-size: 1.3rem;
                z-index: 10;
            }

            .arrow-box:last-child::after {
                content: '\f14a';
                font-family: 'Font Awesome 6 Pro';
                font-weight: 900;
                position: absolute;
                right: -10px;
                top: 50%;
                transform: translateY(-50%);
                color: #005d5a;
                font-size: 1.3rem;
                z-index: 10;
            }

            /* انیمیشن برای فلش‌ها */
            .arrow-box:hover::before {
                animation: pulseArrow 0.8s ease infinite;
            }

        @keyframes pulseArrow {
            0%, 100% {
                transform: translateY(-50%);
            }

            50% {
                transform: translateY(-50%) translateX(5px);
            }
        }

        @media (max-width: 991px) {
            .arrow-box {
                margin-left: 0;
                padding-top: 30px;
            }

                .arrow-box::before,
                .arrow-box::after {
                    left: 50% !important;
                    right: auto !important;
                    transform: translateX(-50%) rotate(90deg) !important;
                }

                .arrow-box:first-child::before,
                .arrow-box:nth-child(5)::before {
                    top: -15px !important;
                }

                .arrow-box:nth-child(4)::after {
                    top: auto !important;
                    bottom: -15px !important;
                }

                .arrow-box:last-child::after {
                    top: auto !important;
                    bottom: -15px !important;
                    right: 50% !important;
                }
        }
    


        .medeed-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 0;
        }

        .vision-content {
            text-align: center;
        }

        .vision-subtitle {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .vision-title {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .vision-divider {
            width: 40px;
            height: 1px;
            background: #95a5a6;
            margin: 0 auto 15px auto;
        }

        .vision-description {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
    