/* Extracted from Site/document.blade.php for CSP hardening. */
.hero-card_contact {
                                        text-align: center;
                                        padding: 25px 15px;
                                        transition: all 0.3s ease;
                                    }

                                    .hero-card_contact:hover {
                                        transform: translateY(-5px);
                                        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                                    }

                                    /* الأيقونة داخل الدائرة */
                                    .hero-card_contact .link i {
                                        font-size: 40px; /* حجم الأيقونة */
                                        color: #1bc6ff; /* لون الأيقونة */
                                        background-color: #f0f4ff; /* لون خلفية الدائرة */
                                        width: 80px;
                                        height: 80px;
                                        border-radius: 50%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        margin: 0 auto 15px; /* توسيط الدائرة وإضافة مسافة تحتها */
                                        transition: all 0.3s ease;
                                    }

                                    /* تأثير عند المرور بالماوس */
                                    .hero-card_contact .link i:hover {
                                        background-color: #7bc6ff;
                                        color: #fff;
                                        transform: scale(1.1);
                                    }

                                    .hero-card_contact h5 {
                                        font-weight: bold;
                                        margin-bottom: 8px;
                                    }

                                    .hero-card_contact p {
                                        color: #555;
                                        font-size: 15px;
                                    }
