.elementor-75 .elementor-element.elementor-element-f1e20be{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-75 .elementor-element.elementor-element-e0577f3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-75 .elementor-element.elementor-element-f4d48d5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-75 .elementor-element.elementor-element-9139ea1{--display:flex;}@media(min-width:768px){.elementor-75 .elementor-element.elementor-element-e0577f3{--width:50%;}.elementor-75 .elementor-element.elementor-element-f4d48d5{--width:50%;}}/* Start custom CSS for container, class: .elementor-element-f1e20be *//* --- تنظیمات کانتینر برای حذف فواصل مزاحم --- */
.elementor-widget-wd_infobox {
    margin-bottom: 25px !important;
}

/* --- بدنه اصلی کارت (Card Body) --- */
.wd-info-box {
    background: #ffffff !important;
    /* گوشه‌های گرد غیرقرینه برای زیبایی مدرن */
    border-radius: 24px !important; 
    padding: 30px 25px 25px 25px !important;
    /* انتقال نرم تمام ویژگی‌ها */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important; 
    /* سایه بسیار محو و لوکس */
    box-shadow: 0 10px 30px -10px rgba(148, 163, 184, 0.15) !important; 
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* ایجاد یک نوار رنگی مخفی در پایین کارت */
    border-bottom: 4px solid transparent !important;
}

/* --- افکت هاور روی کارت (جادوی اصلی) --- */
.wd-info-box:hover {
    transform: translateY(-10px) scale(1.02) !important; /* کمی بزرگ شدن و بالا آمدن */
    box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.25) !important; /* سایه آبی */
    border-bottom-color: #0ea5e9 !important; /* نوار رنگی پایین ظاهر می‌شود */
}

/* --- استایل عنوان (Typography) --- */
.wd-info-box .info-box-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #1e293b !important; /* رنگ تیره و سنگین */
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    text-align: center;
    /* این خط باعث می‌شود دکمه‌ها همیشه پایین بچسبند */
    flex-grow: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- پس‌زمینه محو دایره‌ای پشت کارت (تزئینی) --- */
.wd-info-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: 0;
}

.wd-info-box:hover::before {
    transform: scale(1.5); /* دایره بزرگ می‌شود */
    opacity: 0.8;
}

/* --- کانتینر محتوا --- */
.wd-info-box .info-box-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1; /* روی دایره تزئینی قرار بگیرد */
}

/* --- استایل دکمه (Button) --- */
.wd-info-box .btn {
    background: transparent !important; /* در حالت عادی بدون رنگ */
    color: #64748b !important; /* رنگ خاکستری */
    border-radius: 14px !important;
    padding: 12px 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border: 1px solid #e2e8f0 !important; /* کادر نازک */
    width: 100%;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    margin-top: auto; /* چسبیدن به پایین */
    position: relative;
    overflow: hidden;
}

/* --- افکت هاور دکمه --- */
.wd-info-box:hover .btn {
    background: linear-gradient(90deg, #0ea5e9, #2563eb) !important; /* گرادینت آبی زیبا */
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4) !important;
    letter-spacing: 1px; /* فاصله حروف کمی باز شود */
}

/* --- آیکون فلش داخل دکمه --- */
.wd-info-box .wd-btn-icon {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wd-info-box:hover .wd-btn-icon {
    transform: translateX(-8px); /* پرتاب شدن فلش */
}

/* --- ریسپانسیو موبایل --- */
@media (max-width: 768px) {
    .wd-info-box {
        padding: 20px 15px !important;
        border-radius: 18px !important;
        min-height: 160px; /* حداقل ارتفاع برای یکدستی */
    }
    
    .wd-info-box .info-box-title {
        font-size: 15px !important;
        margin-bottom: 15px !important;
    }

    .wd-info-box .btn {
        padding: 10px 0 !important;
        font-size: 13px !important;
        /* در موبایل دکمه همیشه رنگی باشد تا بهتر دیده شود */
        background: #f1f5f9 !important; 
        color: #334155 !important;
        border: none !important;
    }
}/* End custom CSS */