.elementor-679 .elementor-element.elementor-element-1de0786{--display:flex;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-12be2f3 *//* متغیرهای رنگ (سرمه‌ای مدرن و روشن‌تر) */
:root {
    --navy-modern: #235788;
    --navy-dark: #14324d;
    --white-pure: #ffffff;
    --gray-bg: #f8f9fb;
    --text-dark: #1a2530;
    --text-gray: #5b6e80;
}

/* کانتینر اصلی */
.rounded-industrial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 60px;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    background: var(--white-pure);
}

/* هدر صفحه */
.rounded-industrial-header {
    text-align: center;
    margin-bottom: 45px;
}
.rounded-industrial-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 5px;
}
.rounded-industrial-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* گرید کارت‌ها */
.rounded-industrial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* استایل اصلی کارت (با گوشه‌های گرد) */
.rounded-industrial-card {
    background: var(--white-pure);
    border-radius: 18px; /* گردی زیبای کارت */
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(35, 87, 136, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* خط سرمه‌ای ضخیم و ساده در بالای کارت (حس صنعتی) */
.rounded-industrial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--navy-modern);
    z-index: 2;
    transition: height 0.3s ease;
}

.rounded-industrial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35, 87, 136, 0.12);
}
.rounded-industrial-card:hover::before {
    height: 8px;
    background: var(--navy-dark);
}

/* تصویر کارت */
.rounded-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.rounded-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.rounded-industrial-card:hover .rounded-img-box img {
    transform: scale(1.04);
}

/* محتوای کارت */
.rounded-content {
    padding: 30px 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* آیکون صنعتی درون باکس گرد */
.rounded-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--navy-modern);
    color: var(--white-pure);
    font-size: 1.5rem;
    border-radius: 14px; /* گردی آیکون */
    margin-bottom: 15px;
}

.rounded-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 12px 0;
}

.rounded-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* دکمه مدرن */
.rounded-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-modern);
    color: var(--white-pure);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--navy-modern);
    transition: all 0.3s ease;
    border-radius: 8px; /* گردی دکمه */
}
.rounded-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.rounded-btn:hover {
    background: var(--white-pure);
    color: var(--navy-modern);
}
.rounded-btn:hover i {
    transform: translateX(-6px);
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
    .rounded-industrial-grid {
        grid-template-columns: 1fr;
    }
    .rounded-img-box {
        height: 180px;
    }
}/* End custom CSS */