#message-box {
    display: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* تصميم الأزرار وتحسين المظهر */
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* تأثير النبض عند التحويم */
.btn-lg-square:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.3);
}

/* تأثير الدوران عند التحويم */
.btn-lg-square:hover i{
    transform: translateY(-1px);
    transition: transform 0.6s ease-in-out;
}

/* تأثير عند الضغط */
.btn-lg-square:active {
    transform: scale(0.9);
}

/* تأثير الإضاءة */
.btn-lg-square::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* تشغيل تأثير الإضاءة عند التحويم */
.btn-lg-square:hover::before {
    opacity: 1;
}

/* تأثير تحريك الأيقونات عند التحويم */
.twitter-icon:hover {
    background:black;
    color: white;
}

.facebook-icon:hover {
    background: #1877F2;
    color: white;
}

.linkedin-icon:hover {
    background: #0A66C2;
    color: white;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.contact-box {
    background: rgba(256, 256, 256, .05);
    border-radius: 10px;
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-icon {
    font-size: 25px;
    color: #806e49; /* لون أيقونة البريد */
}

.text-white {
    color: white;
    font-size: 20px;
    margin-top: 11px !important;
    margin-bottom: -5px;
    font-weight: bold !important;
    position: relative;
}

.underline {
    width: 66px;
    height: 1px;
    background-color: #806e49; /* لون الخط الذهبي */
    margin: 5px auto; /* توسيط الخط */
}

.email-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: -7px !important;
}
.location-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: -7px !important;
}
.phone-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: -7px !important;
}
@media (max-width: 992px) {
    .contact-box {
        margin-bottom: 35px; /* إضافة مسافة تحت البوكس */
    }
}
