/* Icon Box Styles */
.pmc-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pmc-icon-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    border-style: solid; /* بوردر خارجی */
    box-sizing: border-box;
    z-index: 1;
}

.pmc-icon-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border-style: solid; /* بوردر داخلی */
    transition: all 0.3s ease;
    padding: 10px; /* افزایش پدینگ برای فاصله بیشتر */
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pmc-icon-icon i {
    font-size: inherit; /* اطمینان از نمایش آیکن با سایز درست */
    color: #ffffff !important; /* رنگ آیکن از text_color */
    display: block !important; /* جلوگیری از مخفی شدن */
    visibility: visible !important; /* اطمینان از نمایش */
    opacity: 1 !important; /* جلوگیری از شفافیت */
    line-height: 1; /* تنظیم فاصله عمودی */
}

.pmc-icon-icon.small {
    width: 120px; /* افزایش سایز برای نمایش بوردر خارجی حتی با 50px */
    height: 120px;
    font-size: 24px;
}

.pmc-icon-icon.medium {
    width: 140px; /* افزایش سایز برای نمایش بوردر خارجی */
    height: 140px;
    font-size: 32px;
}

.pmc-icon-icon.big {
    width: 160px; /* افزایش سایز برای نمایش بوردر خارجی */
    height: 160px;
    font-size: 40px;
}

.pmc-icon-icon.top {
    margin-bottom: 15px;
}

.pmc-icon-icon.left {
    margin-right: 15px;
}

.pmc-icon-wraper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pmc-icon-wraper.left {
    flex-direction: row;
    align-items: center;
}

.pmc-icon-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pmc-icon-border {
    width: 50px;
    height: 2px;
    background: #ccc;
    margin: 10px auto;
}

.pmc-icon-wraper.left .pmc-icon-border {
    width: 2px;
    height: 50px;
    margin: 0 15px;
}

.pmc-icon-content {
    font-size: 14px;
}

.animated {
    animation-duration: 1s;
}

.fadeInLeft, .fadeInRight, .fadeInUp {
    animation-fill-mode: both;
}

/* Progress Circle Styles */
.pmc-progress-circle {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pmc-pmc-progress-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}