/* تنظیمات دایره برای آیکون‌ها */
.icon-circle {
    display: flex; /* استفاده از Flexbox */
    align-items: center; /* تراز عمودی */
    justify-content: center; /* تراز افقی */
    width: 50px; /* عرض دایره */
    height: 50px; /* ارتفاع دایره */
    background-color: #eafaf7; /* رنگ پس‌زمینه دایره */
    border-radius: 50%; /* گرد کردن دایره */
    font-size: 24px; /* اندازه آیکون */
    color: #00c2a8; /* رنگ آیکون */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* سایه برای دایره */
}

/* تنظیمات اختصاصی برای آیکون‌های Font Awesome */
.icon-circle i {
    display: inline-block; /* اطمینان از نمایش صحیح آیکون */
    font-size: 20px; /* اندازه آیکون */
    line-height: 1; /* حذف فاصله اضافی */
    vertical-align: middle; /* تنظیم تراز عمودی */
}

/* تنظیمات لینک‌ها */
.social-btn {
    display: flex; /* استفاده از Flexbox برای متن و آیکون */
    align-items: center; /* تراز عمودی */
    text-decoration: none; /* حذف خط زیر لینک */
    color: #333; /* رنگ متن لینک */
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #f1f1f1; /* تغییر رنگ پس‌زمینه هنگام هاور */
}

.social-btn .icon-circle {
    margin-left: 10px; /* فاصله بین دایره و متن */
}

.social-btn.highlighted {
    background-color: #00c2a8; /* رنگ پس‌زمینه لینک برجسته */
    color: white;
    font-weight: bold;
}

.social-btn.highlighted:hover {
    background-color: #00a890; /* تغییر رنگ پس‌زمینه هنگام هاور */
}

/* تنظیمات کلی برای منو */
/*ul.menu {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    display: flex;*/
/*    background-color: #fff;*/
/*}*/

/*ul.menu > li {*/
/*    position: relative;*/
/*    padding: 15px 20px;*/
/*}*/

ul.menu > li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

ul.menu > li.has_sub:hover .mega_menu {
    display: flex;
}

/* تنظیمات زیرمنو */
.mega_menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 1000px;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10;
    flex-wrap: wrap;
}

.menu_column {
    width: 20%;
    padding: 0 15px;
}

.menu_column h3 {
    font-size: 16px;
    color: #2777bd;
    margin-bottom: 10px;
    font-weight: bold;
}

.menu_column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.menu_column ul li {
    margin-bottom: 8px;
}

.menu_column ul li a {
    text-decoration: none;
    color: #777;
    font-size: 14px;
}

.menu_column ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* استایل برای منوی اصلی */
ul.menu > li:hover > a {
    color: #007bff;
}