#header3.header {
    background: linear-gradient(90deg, #2C3E50 0%, #007780 100%);
    border-bottom: 3px solid rgba(0, 119, 128, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* کانتینر اصلی */
#header3 .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 75px;
    max-width: 1400px;
    margin: 0 auto;
}

/* بخش چپ - دکمه ورود به پنل */
#header3 .left-header {
    background: linear-gradient(135deg, #E8ECEF 0%, #F8F9FA 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 119, 128, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 119, 128, 0.25);
    min-width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#header3 .left-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
}

#header3 .left-header:hover::before {
    left: 100%;
}

#header3 .left-header:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 119, 128, 0.4);
    border-color: #007780;
    background: #1CC7D0;
}

/* دکمه ورود به پنل */
#header3 .panel-login-btn {
    color: #007780;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    white-space: nowrap;
    padding: 12px 24px;
    width: 100%;
    height: 100%;
    font-family: 'iranyekan', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

#header3 .panel-login-btn::before {
    content: "🔐";
    font-size: 18px;
    transition: transform 0.3s ease;
}

#header3 .panel-login-btn:hover {
    color: #1CC7D0;
}

#header3 .panel-login-btn:hover::before {
    transform: scale(1.2) rotate(10deg);
}

/* بخش مرکزی - منو */
#header3 .center-header {
    flex: 1;
    margin: 0 30px;
}

#header3 .nav-content {
    display: flex;
    justify-content: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#header3 .content-item {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    white-space: nowrap;
    font-family: 'iranyekan', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#header3 .content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 128, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#header3 .content-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007780, transparent);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

#header3 .content-item:hover {
    color: #ffffff;
    background: rgba(0, 119, 128, 0.25);
    transform: translateY(-2px);
    border: 1px solid rgba(0, 119, 128, 0.3);
    box-shadow: 0 6px 20px rgba(0, 119, 128, 0.35);
    padding: 10px 25px;
}

#header3 .content-item:hover::before {
    opacity: 1;
}

#header3 .content-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* بخش راست - لوگو */
#header3 .right-header {
    display: flex;
    align-items: center;
}

#header3 .nav-logo {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 2px solid rgba(0, 119, 128, 0.4);
    padding: 3px;
    background: linear-gradient(135deg, #E8ECEF, #F8F9FA);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.25);
    object-fit: contain !important;
}

#header3 .header-logo:hover .nav-logo {
    border-color: rgba(0, 119, 128, 0.7);
    transform: rotate(5deg) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 119, 128, 0.4);
}

#header3 .nav-title {
    color: #ffffff;
    font-family: 'iranyekan', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-left: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

#header3 .header-logo:hover .nav-title {
    color: #1CC7D0;
    text-shadow: 0 0 15px rgba(28, 199, 208, 0.6);
}

/* SVG در تم تیره */
#header3 .mobile-logo-path[style*="stroke:rgb(0, 0, 0)"] {
    stroke: #ffffff !important;
    stroke-width: 3 !important;
}

/* دکمه موبایل */
#header3 .mobile-login-btn {
    background: linear-gradient(135deg, #007780, #1CC7D0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.45);
    position: relative;
    overflow: hidden;
}

#header3 .mobile-login-btn svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

#header3 .mobile-login-btn path {
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

#header3 .mobile-login-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 119, 128, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #007780, #1CC7D0);
}

/* سایدبار */
#mySidenav.sidenav {
    background: linear-gradient(180deg, #2C3E50 0%, #007780 100%);
    width: 280px;
}

#mySidenav .closebtn {
    background: #ffffff !important;
    color: #007780 !important;
    border: 2px solid rgba(0, 119, 128, 0.3);
}

#mySidenav .sidebar-header {
    background: #2C3E50 !important;
    border-bottom: 2px solid rgba(0, 119, 128, 0.3);
}

#mySidenav .link-style,
#mySidenav .dropdown-item-mobile,
#mySidenav .sidenav-link {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 119, 128, 0.2);
}

#mySidenav .mobile-turn-content {
    background: #2C3E50 !important;
    color: white !important;
    border-top: 2px solid rgba(0, 119, 128, 0.3);
}

/* حالت موبایل زیر 1000px */
@media (max-width: 1000px) {
    #header3 .header-container {
        height: 70px;
        padding: 0 15px;
    }
    
    #header3 .panel-login-btn {
        display: none;
    }
    
    #header3 .left-header {
        min-width: auto;
        width: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        height: auto;
        order: 1;
        margin-right: auto;
    }
    
    #header3 .center-header {
        display: none;
    }
    
    #header3 .right-header {
        order: 2;
        margin-left: auto;
    }
    
    #header3 .nav-logo {
        width: 55px;
        height: 55px;
    }
    
    #header3 .nav-title {
        font-size: 22px;
        margin-left: 12px;
    }
}

/* حالت موبایل کوچک */
@media (max-width: 768px) {
    #header3 .header-container {
        height: 65px;
        padding: 0 12px;
    }
    
    #header3 .nav-logo {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    
    #header3 .nav-title {
        font-size: 20px;
        margin-left: 10px;
    }
    
    #header3 .mobile-login-btn {
        width: 48px;
        height: 48px;
        padding: 9px;
    }
    
    #header3 .mobile-login-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* حالت خیلی کوچک موبایل */
@media (max-width: 480px) {
    #header3 .header-container {
        height: 60px;
        padding: 0 10px;
    }
    
    #header3 .nav-title {
        font-size: 18px;
        margin-left: 8px;
    }
    
    #header3 .nav-logo {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    #header3 .mobile-login-btn {
        width: 44px;
        height: 44px;
        padding: 8px;
    }
    
    #header3 .mobile-login-btn svg {
        width: 24px;
        height: 24px;
    }
    
    #header3 .nav-title {
        display: none;
    }
}

/* دسکتاپ */
@media (min-width: 1001px) {
    #header3 .mobile-login-btn {
        display: none;
    }
}





/* بخش اصلی - ارتفاع و پوشش کامل */
#id-6267.article9 {
    background-color: #ffffff !important;
    background-image: url(/siteData/1001/6267.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 60px 0 80px 0 !important;
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* افکت پس‌زمینه مدرن و پزشکی */
#id-6267.article9::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 119, 128, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(44, 62, 80, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 250, 252, 0.9) 100%) !important;
    z-index: 1 !important;
}

#id-6267.article9::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100px !important;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* wrapper اصلی - کاملاً در مرکز */
#id-6267 .article-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    position: relative !important;
    z-index: 2 !important;
    align-items: stretch !important;
    justify-items: center !important;
    width: 100% !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
    transform: none !important;
    height: auto !important;
}

/* کارت‌های جدید - سبک شیشه‌ای پزشکی */
#id-6267 .article-card-item {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 30px !important;
    overflow: visible !important;
    box-shadow: 
        0 20px 60px rgba(0, 119, 128, 0.12),
        0 10px 40px rgba(44, 62, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 45px 35px 50px 35px !important;
    height: auto !important;
    min-height: 520px !important;
    border: 1px solid rgba(0, 119, 128, 0.1) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    position: relative !important;
    margin-top: 0 !important;
}

/* افکت هاله نور اطراف کارت‌ها */
#id-6267 .article-card-item::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, 
        rgba(0, 119, 128, 0.1) 0%, 
        rgba(28, 199, 208, 0.05) 25%,
        rgba(255, 255, 255, 0) 50%,
        rgba(44, 62, 80, 0.05) 75%,
        rgba(0, 119, 128, 0.1) 100%) !important;
    border-radius: 32px !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
    filter: blur(8px) !important;
    transition: all 0.6s ease !important;
}

/* کارت وسطی - کمی متفاوت */
#id-6267 .article-card-item:nth-child(2) {
    margin-top: 20px !important;
    background: rgba(248, 250, 252, 0.92) !important;
    border: 1px solid rgba(44, 62, 80, 0.1) !important;
    box-shadow: 
        0 20px 60px rgba(44, 62, 80, 0.12),
        0 10px 40px rgba(0, 119, 128, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.3) !important;
}

/* افکت hover پیشرفته برای کارت‌ها */
#id-6267 .article-card-item:hover {
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 
        0 30px 80px rgba(0, 119, 128, 0.18),
        0 20px 60px rgba(44, 62, 80, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(0, 119, 128, 0.15) !important;
    z-index: 10 !important;
    background: rgba(255, 255, 255, 0.96) !important;
}

#id-6267 .article-card-item:nth-child(2):hover {
    box-shadow: 
        0 30px 80px rgba(44, 62, 80, 0.18),
        0 20px 60px rgba(0, 119, 128, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(44, 62, 80, 0.15) !important;
    background: rgba(250, 252, 254, 0.96) !important;
}

#id-6267 .article-card-item:hover::before {
    opacity: 1 !important;
    filter: blur(12px) !important;
    background: linear-gradient(135deg, 
        rgba(0, 119, 128, 0.15) 0%, 
        rgba(28, 199, 208, 0.1) 25%,
        rgba(255, 255, 255, 0) 50%,
        rgba(44, 62, 80, 0.1) 75%,
        rgba(0, 119, 128, 0.15) 100%) !important;
}

/* بخش تصویر کارت - طراحی جدید با بک‌گراند رنگی */
#id-6267 .card-image-content {
    width: 160px !important;
    height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 35px auto !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

/* دایره بک‌گراند رنگی - طراحی جدید */
#id-6267 .article-card-item:nth-child(1) .card-image-content::after,
#id-6267 .article-card-item:nth-child(3) .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 140px !important;
    height: 140px !important;
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 
        inset 0 8px 25px rgba(0, 119, 128, 0.25),
        inset 0 -8px 25px rgba(255, 255, 255, 0.3),
        0 15px 40px rgba(0, 119, 128, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.4) !important;
    transition: all 0.6s ease !important;
}

#id-6267 .article-card-item:nth-child(2) .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 140px !important;
    height: 140px !important;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 
        inset 0 8px 25px rgba(44, 62, 80, 0.25),
        inset 0 -8px 25px rgba(255, 255, 255, 0.3),
        0 15px 40px rgba(44, 62, 80, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.4) !important;
    transition: all 0.6s ease !important;
}

/* هاله رنگی در پشت دایره */
#id-6267 .article-card-item:nth-child(1) .card-image-content::before,
#id-6267 .article-card-item:nth-child(3) .card-image-content::before {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: -15px !important;
    right: -15px !important;
    bottom: -15px !important;
    background: conic-gradient(
        from 0deg,
        rgba(0, 119, 128, 0.3),
        rgba(28, 199, 208, 0.4),
        rgba(0, 119, 128, 0.3),
        rgba(44, 62, 80, 0.2),
        rgba(0, 119, 128, 0.3)
    ) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    animation: rotate 15s linear infinite !important;
    filter: blur(15px) !important;
    opacity: 0.7 !important;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#id-6267 .article-card-item:nth-child(2) .card-image-content::before {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: -15px !important;
    right: -15px !important;
    bottom: -15px !important;
    background: conic-gradient(
        from 0deg,
        rgba(44, 62, 80, 0.3),
        rgba(100, 116, 139, 0.4),
        rgba(44, 62, 80, 0.3),
        rgba(0, 119, 128, 0.2),
        rgba(44, 62, 80, 0.3)
    ) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    animation: rotate 15s linear infinite reverse !important;
    filter: blur(15px) !important;
    opacity: 0.7 !important;
}

/* تصویر آیکون - سفید روی بک‌گراند رنگی */
#id-6267 .article-image {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 3 !important;
    filter: 
        brightness(0) invert(1)  /* تبدیل به سفید */
        drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2)) !important;
    transition: all 0.6s ease !important;
}

#id-6267 .article-card-item:hover .article-image {
    transform: scale(1.2) rotate(8deg) !important;
    filter: 
        brightness(0) invert(1)
        drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* افکت hover برای دایره رنگی */
#id-6267 .article-card-item:hover .card-image-content::after {
    transform: scale(1.05) !important;
    box-shadow: 
        inset 0 10px 30px rgba(0, 119, 128, 0.3),
        inset 0 -10px 30px rgba(255, 255, 255, 0.4),
        0 20px 50px rgba(0, 119, 128, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.5) !important;
}

#id-6267 .article-card-item:nth-child(2):hover .card-image-content::after {
    box-shadow: 
        inset 0 10px 30px rgba(44, 62, 80, 0.3),
        inset 0 -10px 30px rgba(255, 255, 255, 0.4),
        0 20px 50px rgba(44, 62, 80, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.5) !important;
}

/* جزئیات کارت */
#id-6267 .card-detail {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: space-between !important;
    position: relative !important;
    z-index: 2 !important;
    gap: 20px !important;
}

#id-6267 .card-detail-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: 1 !important;
    gap: 15px !important;
}

/* عنوان کارت */
#id-6267 .article-card-title {
    color: #2c3e50 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    min-height: auto !important;
}

/* افکت ویژه برای عنوان */
#id-6267 .article-card-item:nth-child(1) .article-card-title::before,
#id-6267 .article-card-item:nth-child(3) .article-card-title::before {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780, #1CC7D0) !important;
    border-radius: 2px !important;
    transition: width 0.3s ease !important;
}

#id-6267 .article-card-item:nth-child(2) .article-card-title::before {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #2c3e50, #4a6491) !important;
    border-radius: 2px !important;
    transition: width 0.3s ease !important;
}

#id-6267 .article-card-item:hover .article-card-title::before {
    width: 80px !important;
}

/* حذف خط قدیمی */
#id-6267 .article-card-line {
    display: none !important;
}

/* متن توضیحات */
#id-6267 .article-card-description {
    color: #4a5568 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 5px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

#id-6267 .article-card-item:hover .article-card-description {
    color: #2d3748 !important;
    transform: translateY(-5px) !important;
}

#id-6267 .article-card-description p {
    margin-bottom: 15px !important;
    text-align: center !important;
    padding: 0 !important;
    position: relative !important;
}

#id-6267 .article-card-description p:last-child {
    margin-bottom: 0 !important;
    margin-top: auto !important;
}

/* دکمه‌ها */
#id-6267 .article-card-item:nth-child(1) .btn-mosta,
#id-6267 .article-card-item:nth-child(3) .btn-mosta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #007780 0%, #00a5b0 100%) !important;
    color: #ffffff !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 10px 30px rgba(0, 119, 128, 0.25),
        0 5px 15px rgba(0, 119, 128, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    min-width: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    letter-spacing: 0.5px !important;
    transform: translateY(0) !important;
    z-index: 1 !important;
}

#id-6267 .article-card-item:nth-child(2) .btn-mosta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%) !important;
    color: #ffffff !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 10px 30px rgba(44, 62, 80, 0.25),
        0 5px 15px rgba(44, 62, 80, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    min-width: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    letter-spacing: 0.5px !important;
    transform: translateY(0) !important;
    z-index: 1 !important;
}

/* افکت نور روی دکمه */
#id-6267 .btn-mosta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent) !important;
    transition: left 0.8s ease !important;
    z-index: 1 !important;
}

/* افکت hover برای دکمه */
#id-6267 .article-card-item:nth-child(1) .btn-mosta:hover,
#id-6267 .article-card-item:nth-child(3) .btn-mosta:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 
        0 15px 40px rgba(0, 119, 128, 0.35),
        0 8px 25px rgba(0, 119, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    background: linear-gradient(135deg, #00656d 0%, #00909a 100%) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#id-6267 .article-card-item:nth-child(2) .btn-mosta:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 
        0 15px 40px rgba(44, 62, 80, 0.35),
        0 8px 25px rgba(44, 62, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    background: linear-gradient(135deg, #1a252f 0%, #3a4a6e 100%) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#id-6267 .btn-mosta:hover::before {
    left: 100% !important;
}

/* افکت جدید: سایه زیر کارت هنگام هاور */
#id-6267 .article-card-item::after {
    content: '' !important;
    position: absolute !important;
    bottom: -30px !important;
    left: 20px !important;
    right: 20px !important;
    height: 40px !important;
    background: radial-gradient(ellipse at center, 
        rgba(0, 119, 128, 0.1) 0%, 
        rgba(0, 119, 128, 0) 70%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    transition: all 0.6s ease !important;
    filter: blur(10px) !important;
    opacity: 0 !important;
}

#id-6267 .article-card-item:nth-child(2)::after {
    background: radial-gradient(ellipse at center, 
        rgba(44, 62, 80, 0.1) 0%, 
        rgba(44, 62, 80, 0) 70%) !important;
}

#id-6267 .article-card-item:hover::after {
    opacity: 1 !important;
    bottom: -35px !important;
    left: 10px !important;
    right: 10px !important;
    height: 50px !important;
    filter: blur(15px) !important;
}

/* انیمیشن ورود */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#id-6267 .article-card-item {
    animation: slideUpFade 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

#id-6267 .article-card-item:nth-child(1) { 
    animation-delay: 0.1s; 
    animation-duration: 0.9s;
}
#id-6267 .article-card-item:nth-child(2) { 
    animation-delay: 0.25s; 
    animation-duration: 0.9s;
    z-index: 2;
}
#id-6267 .article-card-item:nth-child(3) { 
    animation-delay: 0.4s; 
    animation-duration: 0.9s;
}

/* =========================================== */
/* 💎 ریسپانسیو کاملاً بازطراحی شده - رنج 698px تا 1200px */
/* =========================================== */

/* ریسپانسیو - دسکتاپ متوسط (1025px تا 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    #id-6267.article9 {
        padding: 50px 0 70px 0 !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 1100px !important;
        padding: 0 35px !important;
        gap: 22px !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    #id-6267 .article-card-item {
        padding: 38px 28px 45px 28px !important;
        min-height: 480px !important;
        border-radius: 28px !important;
    }
    
    #id-6267 .article-card-item:nth-child(2) {
        margin-top: 15px !important;
    }
    
    #id-6267 .card-image-content {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 30px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 130px !important;
        height: 130px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -12px !important;
        left: -12px !important;
        right: -12px !important;
        bottom: -12px !important;
        filter: blur(12px) !important;
    }
    
    #id-6267 .article-image {
        width: 65px !important;
        height: 65px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 23px !important;
        margin-bottom: 8px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 15px !important;
        line-height: 1.75 !important;
        padding: 0 8px !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 16px !important;
        padding: 15px 35px !important;
        min-width: 180px !important;
    }
    
    #id-6267 .article-card-item:hover {
        transform: translateY(-18px) scale(1.02) !important;
    }
}

/* ریسپانسیو - تبلت بزرگ (901px تا 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    #id-6267.article9 {
        padding: 45px 0 65px 0 !important;
        min-height: auto !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 900px !important;
        padding: 0 30px !important;
        gap: 20px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        align-items: start !important;
    }
    
    #id-6267 .article-card-item {
        padding: 35px 25px 42px 25px !important;
        min-height: 460px !important;
        border-radius: 26px !important;
    }
    
    #id-6267 .article-card-item:nth-child(2) {
        margin-top: 10px !important;
    }
    
    #id-6267 .card-image-content {
        width: 140px !important;
        height: 140px !important;
        margin-bottom: 28px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 120px !important;
        height: 120px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -10px !important;
        left: -10px !important;
        right: -10px !important;
        bottom: -10px !important;
        filter: blur(10px) !important;
    }
    
    #id-6267 .article-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 14.5px !important;
        line-height: 1.7 !important;
        padding: 0 6px !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 15px !important;
        padding: 14px 32px !important;
        min-width: 170px !important;
    }
    
    #id-6267 .article-card-item:hover {
        transform: translateY(-15px) scale(1.01) !important;
    }
}

/* ریسپانسیو - تبلت متوسط (769px تا 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    #id-6267.article9 {
        padding: 40px 0 60px 0 !important;
        min-height: auto !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 750px !important;
        padding: 0 25px !important;
        gap: 18px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        align-items: start !important;
    }
    
    #id-6267 .article-card-item {
        padding: 32px 22px 40px 22px !important;
        min-height: 440px !important;
        border-radius: 24px !important;
    }
    
    #id-6267 .article-card-item:nth-child(2) {
        margin-top: 8px !important;
    }
    
    #id-6267 .card-image-content {
        width: 130px !important;
        height: 130px !important;
        margin-bottom: 26px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 110px !important;
        height: 110px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -8px !important;
        left: -8px !important;
        right: -8px !important;
        bottom: -8px !important;
        filter: blur(8px) !important;
        opacity: 0.6 !important;
    }
    
    #id-6267 .article-image {
        width: 55px !important;
        height: 55px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 21px !important;
        margin-bottom: 5px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 14px !important;
        line-height: 1.65 !important;
        padding: 0 4px !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 14.5px !important;
        padding: 13px 30px !important;
        min-width: 160px !important;
    }
    
    #id-6267 .article-card-item:hover {
        transform: translateY(-12px) scale(1.01) !important;
    }
}

/* ریسپانسیو - تبلت کوچک (698px تا 768px) */
@media (max-width: 768px) and (min-width: 699px) {
    #id-6267.article9 {
        padding: 35px 0 55px 0 !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 680px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 20px !important;
        align-items: start !important;
    }
    
    #id-6267 .article-card-item {
        padding: 30px 20px 38px 20px !important;
        min-height: 420px !important;
        border-radius: 22px !important;
        margin-top: 0 !important;
    }
    
    #id-6267 .article-card-item:nth-child(2) {
        margin-top: 0 !important;
    }
    
    #id-6267 .article-card-item:nth-child(3) {
        grid-column: span 2 !important;
        max-width: 450px !important;
        margin: 20px auto 0 auto !important;
    }
    
    #id-6267 .card-image-content {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 25px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -6px !important;
        left: -6px !important;
        right: -6px !important;
        bottom: -6px !important;
        filter: blur(6px) !important;
        opacity: 0.5 !important;
    }
    
    #id-6267 .article-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        padding: 0 2px !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 14px !important;
        padding: 12px 28px !important;
        min-width: 150px !important;
    }
    
    #id-6267 .article-card-item:hover {
        transform: translateY(-10px) scale(1.01) !important;
    }
}

/* ریسپانسیو - موبایل (زیر 698px) */
@media (max-width: 698px) {
    #id-6267.article9 {
        padding: 30px 0 50px 0 !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 25px !important;
    }
    
    #id-6267 .article-card-item {
        padding: 30px 25px 40px 25px !important;
        min-height: 420px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        border-radius: 24px !important;
    }
    
    #id-6267 .article-card-item:nth-child(2) {
        margin-top: 0 !important;
    }
    
    #id-6267 .card-image-content {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 25px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -8px !important;
        left: -8px !important;
        right: -8px !important;
        bottom: -8px !important;
        filter: blur(8px) !important;
        opacity: 0.6 !important;
    }
    
    #id-6267 .article-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 19px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 13.5px !important;
        padding: 11px 28px !important;
        min-width: 150px !important;
    }
}

/* ریسپانسیو - موبایل کوچک */
@media (max-width: 480px) {
    #id-6267.article9 {
        padding: 25px 0 40px 0 !important;
    }
    
    #id-6267 .article-wrapper {
        padding: 0 20px !important;
        gap: 20px !important;
    }
    
    #id-6267 .article-card-item {
        padding: 25px 20px 35px 20px !important;
        min-height: 400px !important;
        border-radius: 22px !important;
    }
    
    #id-6267 .card-image-content {
        width: 110px !important;
        height: 110px !important;
        margin-bottom: 22px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 90px !important;
        height: 90px !important;
    }
    
    #id-6267 .card-image-content::before {
        top: -6px !important;
        left: -6px !important;
        right: -6px !important;
        bottom: -6px !important;
        filter: blur(6px) !important;
        opacity: 0.5 !important;
    }
    
    #id-6267 .article-image {
        width: 45px !important;
        height: 45px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 18px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 13px !important;
        padding: 10px 25px !important;
        min-width: 140px !important;
    }
}

/* رسپانسیو - دسکتاپ بزرگ (1441px به بالا) */
@media (min-width: 1441px) {
    #id-6267.article9 {
        padding: 80px 0 100px 0 !important;
    }
    
    #id-6267 .article-wrapper {
        max-width: 1600px !important;
        padding: 0 60px !important;
        gap: 30px !important;
    }
    
    #id-6267 .article-card-item {
        padding: 50px 40px 60px 40px !important;
        min-height: 580px !important;
    }
    
    #id-6267 .card-image-content {
        width: 180px !important;
        height: 180px !important;
        margin-bottom: 40px !important;
    }
    
    #id-6267 .card-image-content::after {
        width: 160px !important;
        height: 160px !important;
    }
    
    #id-6267 .article-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    #id-6267 .article-card-title {
        font-size: 28px !important;
    }
    
    #id-6267 .article-card-description {
        font-size: 17px !important;
        line-height: 1.9 !important;
    }
    
    #id-6267 .btn-mosta {
        font-size: 18px !important;
        padding: 18px 45px !important;
        min-width: 220px !important;
    }
}

/* بهبود نمایش در مرورگرهای مختلف */
#id-6267 .article-card-item {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

#id-6267 .article-card-description pre,
#id-6267 .article-card-description p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* جلوگیری از کشیدگی بیش از حد */
#id-6267 .article-wrapper {
    min-height: 0 !important;
}

#id-6267 .article-card-item {
    flex-shrink: 0 !important;
}






/* استایل‌های بیوگرافی دکتر - طراحی مدرن و تمیز */
#id-6288.welcome1.introduction {
  padding: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  direction: rtl !important;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%) !important;
  min-height: auto !important;
}

/* خطوط تزئینی بالا و پایین */
#id-6288.welcome1.introduction::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, #007780 0%, #1CC7D0 50%, #007780 100%) !important;
}

#id-6288.welcome1.introduction::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, #2c3e50 0%, #4a6491 50%, #2c3e50 100%) !important;
}

#id-6288 .introdution-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 50px !important;
  padding: 0 40px !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

#id-6288 .left-introduction {
  flex: 0 0 40% !important;
  max-width: 400px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  position: relative !important;
  margin-top: 20px !important;
}

#id-6288 .introduction-image {
  width: 100% !important;
  max-width: 380px !important;
  height: 350px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 35px rgba(0, 119, 128, 0.15) !important;
  transition: all 0.4s ease !important;
  border: 5px solid white !important;
  position: relative !important;
  z-index: 2 !important;
}

/* افکت هاله نور دور عکس */
#id-6288 .left-introduction::before {
  content: '' !important;
  position: absolute !important;
  top: -10px !important;
  left: -10px !important;
  right: -10px !important;
  bottom: -10px !important;
  background: linear-gradient(135deg, 
    rgba(0, 119, 128, 0.1) 0%, 
    rgba(28, 199, 208, 0.2) 50%,
    rgba(0, 119, 128, 0.1) 100%) !important;
  border-radius: 18px !important;
  z-index: 1 !important;
  filter: blur(10px) !important;
  opacity: 0.7 !important;
}

#id-6288 .left-introduction:hover .introduction-image {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0, 119, 128, 0.25) !important;
  border-color: #007780 !important;
}

#id-6288 .right-introduction {
  flex: 0 0 55% !important;
  max-width: 650px !important;
  animation: fadeInUp 0.8s ease-out !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

#id-6288 .introduction-content {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

#id-6288 .introduction-title {
  font-family: 'iranyekan', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  color: #2c3e50 !important;
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 10px !important;
  text-align: right !important;
  width: 100% !important;
}

#id-6288 .introduction-title::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100px !important;
  height: 4px !important;
  background: linear-gradient(to left, #007780, #1CC7D0) !important;
  border-radius: 2px !important;
}

#id-6288 .introduction-divider {
  display: none !important;
}

#id-6288 .introduction-description {
  font-family: 'iranyekan', sans-serif !important;
  color: #424242 !important;
  line-height: 1.8 !important;
  white-space: normal !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  max-height: none !important;
  overflow: visible !important;
}

/* استایل‌دهی به محتوای داخل pre */
#id-6288 .introduction-description .container,
#id-6288 .introduction-description .row,
#id-6288 .introduction-description .col-lg-8,
#id-6288 .introduction-description .col-md-7,
#id-6288 .introduction-description .bg-white {
  all: unset !important;
  width: 100% !important;
  max-width: none !important;
  background: transparent !important;
}

/* استایل متن اصلی */
#id-6288 .introduction-description h2 {
  font-family: 'iranyekan', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  color: #007780 !important;
  position: relative !important;
  text-align: right !important;
  padding-right: 40px !important;
}

#id-6288 .introduction-description h2::before {
  content: '👨‍⚕️' !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 28px !important;
  opacity: 0.9 !important;
}

#id-6288 .introduction-description h6 {
  font-family: 'iranyekan', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 25px !important;
  color: #007780 !important;
  padding: 10px 20px !important;
  background: rgba(0, 119, 128, 0.08) !important;
  border-radius: 10px !important;
  border-right: 3px solid #1CC7D0 !important;
  display: inline-block !important;
  position: relative !important;
  text-align: right !important;
  box-shadow: 0 4px 12px rgba(0, 119, 128, 0.1) !important;
}

#id-6288 .introduction-description p {
  font-family: 'iranyekan', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  margin-bottom: 20px !important;
  color: #4a5568 !important;
  text-align: justify !important;
  padding: 18px !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 10px !important;
  border-right: 2px solid rgba(0, 119, 128, 0.1) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

#id-6288 .introduction-description p:hover {
  transform: translateX(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 119, 128, 0.12) !important;
  border-right-color: #007780 !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

/* استایل لیست - بدون هیچ علامت یا عدد */
#id-6288 .introduction-description ul {
  margin: 20px 0 30px 0 !important;
  padding-right: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px !important;
  list-style: none !important;
}

#id-6288 .introduction-description li {
  font-family: 'iranyekan', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #2d3748 !important;
  padding: 15px 20px !important;
  background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0, 119, 128, 0.1) !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
}

/* حذف کامل ::before (تیک) */
#id-6288 .introduction-description li::before {
  content: none !important;
}

#id-6288 .introduction-description li:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 119, 128, 0.15) !important;
  border-color: #007780 !important;
  background: linear-gradient(135deg, #ffffff, #f0f9ff) !important;
}

/* استایل دکمه */
#id-6288 .introduction-description a.btn {
  font-family: 'iranyekan', sans-serif !important;
  background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
  border: none !important;
  padding: 15px 40px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 8px 25px rgba(0, 119, 128, 0.3) !important;
  display: block !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 25px auto 0 auto !important;
  color: white !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  width: fit-content !important;
  max-width: 280px !important;
  text-align: center !important;
}

#id-6288 .introduction-description a.btn::before {
  content: '📅' !important;
  font-size: 20px !important;
  display: inline-block !important;
  margin-left: 8px !important;
}

#id-6288 .introduction-description a.btn:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 35px rgba(0, 119, 128, 0.4) !important;
  background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
  #id-6288 .introdution-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 0 30px !important;
  }
  
  #id-6288 .left-introduction,
  #id-6288 .right-introduction {
    flex: 0 0 100% !important;
    max-width: 600px !important;
  }
  
  #id-6288 .introduction-image {
    height: 320px !important;
    max-width: 350px !important;
  }
  
  #id-6288 .introduction-description ul {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  #id-6288.welcome1.introduction {
    padding: 50px 0 !important;
  }
  
  #id-6288 .introdution-container {
    padding: 0 20px !important;
    gap: 35px !important;
  }
  
  #id-6288 .introduction-image {
    height: 300px !important;
    max-width: 320px !important;
  }
  
  #id-6288 .introduction-title {
    font-size: 28px !important;
  }
  
  #id-6288 .introduction-description h2 {
    font-size: 24px !important;
  }
  
  #id-6288 .introduction-description h6 {
    font-size: 16px !important;
    padding: 8px 15px !important;
  }
  
  #id-6288 .introduction-description p {
    font-size: 15px !important;
    padding: 15px !important;
  }
  
  #id-6288 .introduction-description li {
    font-size: 14px !important;
    padding: 12px 15px !important;
  }
  
  #id-6288 .introduction-description a.btn {
    padding: 14px 35px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  #id-6288 .introduction-image {
    height: 280px !important;
    max-width: 300px !important;
  }
  
  #id-6288 .introduction-title {
    font-size: 26px !important;
  }
  
  #id-6288 .introduction-description h2 {
    font-size: 22px !important;
  }
  
  #id-6288 .introduction-description h2::before {
    font-size: 24px !important;
  }
  
  #id-6288 .introduction-description a.btn {
    width: 100% !important;
    max-width: 100% !important;
  }
}






/* بخش خدمات تخصصی - طراحی مدرن */
#id-6289.article9 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    padding: 80px 20px 90px 20px !important;
    font-family: 'iranyekan', 'Shabnam', 'Samim', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

/* خط تزئینی بالا */
#id-6289.article9::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780 0%, #2c3e50 50%, #007780 100%) !important;
    z-index: 2 !important;
}

#id-6289 .section-header {
    max-width: 1200px !important;
    margin: 0 auto 50px auto !important;
    text-align: center !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding: 0 20px !important;
}

#id-6289 .section-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    white-space: normal !important;
    text-align: center !important;
}

#id-6289 .section-description pre {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
}

#id-6289 .section-description p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
}

#id-6289 .section-description strong {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #007780 !important;
    text-shadow: 0 2px 8px rgba(0, 119, 128, 0.15) !important;
    display: inline-block !important;
    position: relative !important;
    padding-bottom: 15px !important;
    font-family: 'ShabnamBold', 'Shabnam', 'iranyekan', sans-serif !important;
    line-height: 1.6 !important;
}

#id-6289 .section-description strong::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780, #1CC7D0) !important;
    border-radius: 2px !important;
}

#id-6289 .article-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#id-6289 .article-card-item {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 119, 128, 0.1),
        0 5px 15px rgba(44, 62, 80, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: 380px !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    border: 1px solid rgba(0, 119, 128, 0.1) !important;
    padding: 25px 20px !important;
}

/* افکت هاله نور */
#id-6289 .article-card-item::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, 
        rgba(0, 119, 128, 0.05) 0%, 
        rgba(28, 199, 208, 0.1) 50%,
        rgba(0, 119, 128, 0.05) 100%) !important;
    border-radius: 17px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

#id-6289 .article-card-item:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 
        0 20px 50px rgba(0, 119, 128, 0.2),
        0 10px 30px rgba(44, 62, 80, 0.1) !important;
    border-color: rgba(0, 119, 128, 0.2) !important;
}

#id-6289 .article-card-item:hover::before {
    opacity: 1 !important;
}

#id-6289 .card-image-content {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

#id-6289 .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 119, 128, 0.1) 0%, rgba(28, 199, 208, 0.15) 100%) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    transition: all 0.4s ease !important;
}

#id-6289 .article-card-item:hover .card-image-content::after {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, rgba(0, 119, 128, 0.15) 0%, rgba(28, 199, 208, 0.2) 100%) !important;
}

#id-6289 .article-image {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.4s ease !important;
    filter: drop-shadow(0 2px 4px rgba(0, 119, 128, 0.2)) !important;
}

#id-6289 .article-card-item:hover .article-image {
    transform: scale(1.1) rotate(5deg) !important;
    filter: drop-shadow(0 4px 8px rgba(0, 119, 128, 0.3)) !important;
}

#id-6289 .card-detail {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
}

#id-6289 .card-detail-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

#id-6289 .article-card-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #007780 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-family: 'ShabnamBold', 'Shabnam', 'iranyekan', sans-serif !important;
    line-height: 1.4 !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#id-6289 .article-card-item:hover .article-card-title {
    transform: translateY(-2px) !important;
    color: #00656d !important;
}

#id-6289 .article-card-line {
    border: none !important;
    height: 2px !important;
    width: 60px !important;
    background: linear-gradient(90deg, #007780, #1CC7D0) !important;
    margin: 0 !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
}

#id-6289 .article-card-item:hover .article-card-line {
    width: 80px !important;
}

#id-6289 .article-card-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Samim', 'iranyekan', sans-serif !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    max-height: none !important;
    width: 100% !important;
    text-align: center !important;
}

#id-6289 .article-card-description pre {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
}

#id-6289 .article-card-description p {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-family: inherit !important;
    color: #2c3e50 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

#id-6289 .article-card-description strong {
    font-weight: 600 !important;
    font-family: inherit !important;
}

#id-6289 .article-card-description span {
    font-family: inherit !important;
}

/* استایل دکمه اطلاعات بیشتر */
#id-6289 .simple-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    font-family: 'Samim', 'iranyekan', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.2) !important;
}

#id-6289 .simple-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent) !important;
    transition: left 0.6s ease !important;
    z-index: -1 !important;
}

#id-6289 .simple-btn:hover {
    background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 119, 128, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

#id-6289 .simple-btn:hover::before {
    left: 100% !important;
}

#id-6289 .simple-btn:active {
    transform: translateY(0) !important;
}

/* حذف انیمیشن ورود */
#id-6289 .article-card-item {
    animation: none !important;
    opacity: 1 !important;
}

/* =========================================== */
/* 🎯 ریسپانسیو */
/* =========================================== */

/* لپتاپ متوسط (1201px تا 1400px) */
@media (max-width: 1400px) and (min-width: 1201px) {
    #id-6289 .article-wrapper {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 22px !important;
        max-width: 1300px !important;
    }
    
    #id-6289 .article-card-item {
        height: 370px !important;
        padding: 22px 18px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 17px !important;
        min-height: 48px !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 19px !important;
    }
}

/* لپتاپ کوچک (1025px تا 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    #id-6289 .article-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        max-width: 1100px !important;
    }
    
    #id-6289 .article-card-item {
        height: 360px !important;
        padding: 20px 16px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 16px !important;
        min-height: 46px !important;
        padding: 0 8px !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 18px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 7px 18px !important;
        font-size: 12.5px !important;
    }
}

/* تبلت بزرگ (901px تا 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    #id-6289.article9 {
        padding: 70px 15px 80px 15px !important;
    }
    
    #id-6289 .article-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 22px !important;
        max-width: 900px !important;
    }
    
    #id-6289 .article-card-item {
        height: 350px !important;
        padding: 20px 15px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 15.5px !important;
        min-height: 44px !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 17px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 7px 16px !important;
        font-size: 12px !important;
    }
    
    #id-6289 .card-image-content {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 18px !important;
    }
    
    #id-6289 .article-image {
        width: 42px !important;
        height: 42px !important;
    }
}

/* تبلت متوسط (769px تا 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    #id-6289.article9 {
        padding: 60px 15px 70px 15px !important;
    }
    
    #id-6289 .article-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 700px !important;
    }
    
    #id-6289 .article-card-item {
        height: 340px !important;
        padding: 22px 18px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 16px !important;
        min-height: 46px !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 16px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 6px 14px !important;
        font-size: 11.5px !important;
    }
    
    #id-6289 .card-image-content {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 16px !important;
    }
    
    #id-6289 .article-image {
        width: 40px !important;
        height: 40px !important;
    }
}

/* تبلت کوچک (641px تا 768px) */
@media (max-width: 768px) and (min-width: 641px) {
    #id-6289.article9 {
        padding: 50px 15px 65px 15px !important;
    }
    
    #id-6289 .article-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 600px !important;
    }
    
    #id-6289 .article-card-item {
        height: 330px !important;
        padding: 20px 16px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 15px !important;
        min-height: 42px !important;
        line-height: 1.35 !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 15px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
    
    #id-6289 .card-image-content {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 14px !important;
    }
    
    #id-6289 .article-image {
        width: 38px !important;
        height: 38px !important;
    }
    
    #id-6289 .article-card-description p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

/* موبایل بزرگ (481px تا 640px) */
@media (max-width: 640px) and (min-width: 481px) {
    #id-6289.article9 {
        padding: 40px 12px 60px 12px !important;
    }
    
    #id-6289 .article-wrapper {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 12px !important;
        max-width: 400px !important;
    }
    
    #id-6289 .article-card-item {
        height: 320px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 22px 20px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 16px !important;
        min-height: 44px !important;
        line-height: 1.4 !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 14px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 7px 16px !important;
        font-size: 12px !important;
    }
    
    #id-6289 .card-image-content {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 16px !important;
    }
    
    #id-6289 .article-image {
        width: 40px !important;
        height: 40px !important;
    }
    
    #id-6289 .article-card-item:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
}

/* موبایل (361px تا 480px) */
@media (max-width: 480px) and (min-width: 361px) {
    #id-6289.article9 {
        padding: 35px 10px 50px 10px !important;
    }
    
    #id-6289 .article-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
        max-width: 350px !important;
    }
    
    #id-6289 .article-card-item {
        height: 310px !important;
        max-width: 350px !important;
        padding: 20px 18px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 15px !important;
        min-height: 42px !important;
        line-height: 1.35 !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 13px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 6px 14px !important;
        font-size: 11.5px !important;
    }
    
    #id-6289 .card-image-content {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 15px !important;
    }
    
    #id-6289 .article-image {
        width: 38px !important;
        height: 38px !important;
    }
    
    #id-6289 .article-card-item:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }
    
    #id-6289 .article-card-description p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }
}

/* موبایل کوچک (تا 360px) */
@media (max-width: 360px) {
    #id-6289.article9 {
        padding: 30px 8px 45px 8px !important;
    }
    
    #id-6289 .article-wrapper {
        gap: 18px !important;
        padding: 0 8px !important;
        max-width: 320px !important;
    }
    
    #id-6289 .article-card-item {
        height: 300px !important;
        max-width: 320px !important;
        padding: 18px 16px !important;
    }
    
    #id-6289 .article-card-title {
        font-size: 14px !important;
        min-height: 40px !important;
        line-height: 1.3 !important;
        padding: 0 5px !important;
    }
    
    #id-6289 .section-description strong {
        font-size: 12px !important;
    }
    
    #id-6289 .simple-btn {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
    
    #id-6289 .card-image-content {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 14px !important;
    }
    
    #id-6289 .article-image {
        width: 35px !important;
        height: 35px !important;
    }
    
    #id-6289 .article-card-description p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 8px !important;
    }
}

/* بهبود نمایش در مرورگرهای مختلف */
#id-6289 .article-card-item {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

/* تنظیمات خاص برای نمایش بهتر */
#id-6289 .card-detail {
    height: auto !important;
    min-height: unset !important;
}

#id-6289 .article-card-description {
    height: auto !important;
    min-height: unset !important;
}














/* فوتر اصلی */
#footer1.information {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%) !important;
    color: #ffffff !important;
    position: relative !important;
    padding: 60px 0 20px 0 !important;
    overflow: hidden !important;
    font-family: 'iranyekan', 'Vazir', sans-serif !important;
}

/* افکت گرادیانت بالا */
#footer1.information::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, #007780 0%, #1CC7D0 50%, #007780 100%) !important;
    z-index: 2 !important;
}

/* افکت بک‌گراند */
#footer1.information::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 119, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 199, 208, 0.05) 0%, transparent 50%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* کانتینر اصلی */
#footer1 .information-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* بخش badge-list */
#footer1 .badge-list {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    margin-bottom: 40px !important;
}

/* حذف خط divider بالا */
#footer1 .footer-top-divider {
    display: none !important;
}

/* badge-content */
#footer1 .badge-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
}

/* بخش‌های مختلف */
#footer1 .badge-section {
    margin-bottom: 0 !important;
}

#footer1 .section-title {
    color: #ffffff !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    position: relative !important;
    text-align: right !important;
}

#footer1 .section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #007780 0%, #1CC7D0 100%) !important;
    border-radius: 2px !important;
}

/* ====== نقشه گوگل ====== */
#footer1 .map-section {
    grid-column: span 2 !important;
}

#footer1 .google-map {
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

#footer1 .google-map iframe {
    border-radius: 10px !important;
    height: 200px !important;
    filter: brightness(0.9) contrast(1.1) !important;
}

/* دکمه‌های مسیریابی */
#footer1 .navigation-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

#footer1 .nav-btn {
    flex: 1 !important;
    min-width: 180px !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
}

#footer1 .google-maps-btn {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3) !important;
}

#footer1 .balad-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
}

#footer1 .waze-btn {
    background: linear-gradient(135deg, #33CCFF 0%, #3366FF 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(51, 204, 255, 0.3) !important;
}

#footer1 .nav-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

#footer1 .nav-btn i {
    font-size: 16px !important;
}

/* ====== بخش تماس ====== */
#footer1 .contact-section {
    grid-column: span 1 !important;
}

#footer1 .contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

#footer1 .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

#footer1 .contact-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(-5px) !important;
    border-color: rgba(0, 119, 128, 0.3) !important;
}

#footer1 .contact-detail {
    flex: 1 !important;
}

#footer1 .contact-label {
    display: block !important;
    color: #1CC7D0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-align: right !important;
}

#footer1 .contact-value {
    display: block !important;
    color: #e0e0e0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: right !important;
    direction: ltr !important;
    unicode-bidi: embed !important;
}

#footer1 .contact-email {
    color: #1CC7D0 !important;
    font-weight: 700 !important;
}

/* ====== بخش آدرس ====== */
#footer1 .address-section {
    grid-column: span 1 !important;
}

#footer1 .address-info {
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#footer1 .address-item {
    text-align: right !important;
}

#footer1 .address-text strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}

#footer1 .address-text p {
    color: #e0e0e0 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    text-align: justify !important;
}

/* ====== بخش ساعات کاری ====== */
#footer1 .hours-section {
    grid-column: span 1 !important;
}

#footer1 .hours-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#footer1 .hour-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

#footer1 .hour-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px) !important;
}

#footer1 .days {
    color: #1CC7D0 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

#footer1 .times {
    color: #e0e0e0 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    direction: ltr !important;
    unicode-bidi: embed !important;
}

/* ====== بخش شبکه‌های اجتماعی ====== */
#footer1 .social-section {
    grid-column: span 1 !important;
}

#footer1 .social-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#footer1 .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

#footer1 .social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #405DE6 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3) !important;
}

#footer1 .social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

#footer1 .social-link:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ====== دیوایدر ====== */
#footer1 .divider-device {
    max-width: 1400px !important;
    margin: 40px auto !important;
    padding: 0 40px !important;
}

#footer1 .divider-device > div {
    height: 2px !important;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(0, 119, 128, 0.5) 20%,
        rgba(0, 119, 128, 0.8) 50%,
        rgba(0, 119, 128, 0.5) 80%,
        rgba(255, 255, 255, 0) 100%) !important;
}

/* ====== بخش اپلیکیشن موبایل ====== */
#footer1 .footer-mobile-app {
    max-width: 1400px !important;
    margin: 0 auto 40px auto !important;
    padding: 0 40px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
}

#footer1 .footer-mobile-app h5 {
    color: #ffffff !important;
    font-family: 'iranyekan', 'Vazir', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#footer1 .footer-mobile-app .d-flex {
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

#footer1 .footer-mobile-app a {
    transition: all 0.3s ease !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 5px !important;
}

#footer1 .footer-mobile-app a:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0, 119, 128, 0.3) !important;
    border-color: rgba(0, 119, 128, 0.3) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

#footer1 .footer-mobile-app img {
    width: 160px !important;
    height: auto !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

/* ====== بخش کپی‌رایت ====== */
#footer1 .section-copyright {
    text-align: center !important;
    padding: 25px 20px 15px 20px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 2 !important;
}

#footer1 .section-copyright a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

#footer1 .section-copyright a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(0, 119, 128, 0.3) !important;
}

#footer1 .section-copyright .text-white {
    color: #e0e0e0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

#footer1 .section-copyright span[style*="color:#ffd800"] {
    color: #FFD700 !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#footer1 .section-copyright img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* =========================================== */
/* 🎯 ریسپانسیو */
/* =========================================== */

/* دسکتاپ بزرگ (1201px به بالا) */
@media (min-width: 1201px) {
    #footer1 .badge-content {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    #footer1 .map-section {
        grid-column: span 2 !important;
    }
    
    #footer1 .navigation-buttons {
        flex-direction: row !important;
    }
}

/* تبلت بزرگ (1025px تا 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    #footer1 .information-container,
    #footer1 .divider-device,
    #footer1 .footer-mobile-app {
        padding: 0 30px !important;
    }
    
    #footer1 .badge-list {
        padding: 35px !important;
    }
    
    #footer1 .badge-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
    
    #footer1 .map-section {
        grid-column: span 2 !important;
    }
    
    #footer1 .navigation-buttons {
        flex-direction: column !important;
    }
    
    #footer1 .nav-btn {
        min-width: 100% !important;
    }
}

/* تبلت متوسط (901px تا 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    #footer1 .information-container,
    #footer1 .divider-device,
    #footer1 .footer-mobile-app {
        padding: 0 25px !important;
    }
    
    #footer1 .badge-list {
        padding: 30px !important;
    }
    
    #footer1 .badge-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    #footer1 .map-section {
        grid-column: span 2 !important;
        order: 1 !important;
    }
    
    #footer1 .contact-section {
        order: 2 !important;
    }
    
    #footer1 .address-section {
        order: 3 !important;
    }
    
    #footer1 .hours-section {
        order: 4 !important;
    }
    
    #footer1 .social-section {
        order: 5 !important;
        grid-column: span 2 !important;
    }
    
    #footer1 .social-links {
        flex-direction: row !important;
        justify-content: center !important;
    }
    
    #footer1 .social-link {
        flex: 1 !important;
        max-width: 200px !important;
    }
}

/* تبلت کوچک (769px تا 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    #footer1.information {
        padding: 50px 0 20px 0 !important;
    }
    
    #footer1 .information-container,
    #footer1 .divider-device,
    #footer1 .footer-mobile-app {
        padding: 0 20px !important;
    }
    
    #footer1 .badge-list {
        padding: 25px !important;
    }
    
    #footer1 .badge-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    
    #footer1 .map-section,
    #footer1 .contact-section,
    #footer1 .address-section,
    #footer1 .hours-section,
    #footer1 .social-section {
        grid-column: span 1 !important;
    }
    
    #footer1 .google-map iframe {
        height: 180px !important;
    }
    
    #footer1 .navigation-buttons {
        flex-direction: column !important;
    }
    
    #footer1 .nav-btn {
        min-width: 100% !important;
    }
    
    #footer1 .social-links {
        flex-direction: row !important;
        justify-content: center !important;
    }
    
    #footer1 .social-link {
        flex: 1 !important;
        max-width: 200px !important;
    }
    
    #footer1 .footer-mobile-app .d-flex {
        gap: 20px !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 140px !important;
    }
}

/* موبایل (698px تا 768px) */
@media (max-width: 768px) and (min-width: 699px) {
    #footer1.information {
        padding: 40px 0 20px 0 !important;
    }
    
    #footer1 .information-container,
    #footer1 .divider-device,
    #footer1 .footer-mobile-app {
        padding: 0 20px !important;
    }
    
    #footer1 .badge-list {
        padding: 20px !important;
        border-radius: 15px !important;
    }
    
    #footer1 .badge-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    #footer1 .section-title {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    #footer1 .google-map iframe {
        height: 160px !important;
    }
    
    #footer1 .navigation-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    #footer1 .nav-btn {
        min-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 13px !important;
    }
    
    #footer1 .contact-item,
    #footer1 .address-info,
    #footer1 .hour-item {
        padding: 12px !important;
    }
    
    #footer1 .contact-value,
    #footer1 .address-text p {
        font-size: 14px !important;
    }
    
    #footer1 .social-links {
        flex-direction: column !important;
    }
    
    #footer1 .social-link {
        max-width: 100% !important;
    }
    
    #footer1 .footer-mobile-app {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }
    
    #footer1 .footer-mobile-app h5 {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    
    #footer1 .footer-mobile-app .d-flex {
        gap: 15px !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 130px !important;
    }
    
    #footer1 .section-copyright {
        padding: 20px 15px 10px 15px !important;
    }
    
    #footer1 .section-copyright a {
        padding: 10px 20px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    #footer1 .section-copyright .text-white {
        font-size: 14px !important;
    }
}

/* موبایل کوچک (زیر 698px) */
@media (max-width: 698px) {
    #footer1.information {
        padding: 35px 0 15px 0 !important;
    }
    
    #footer1 .information-container,
    #footer1 .divider-device,
    #footer1 .footer-mobile-app {
        padding: 0 15px !important;
    }
    
    #footer1 .badge-list {
        padding: 20px !important;
        border-radius: 12px !important;
        margin-bottom: 30px !important;
    }
    
    #footer1 .badge-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    #footer1 .section-title {
        font-size: 17px !important;
        margin-bottom: 18px !important;
        padding-bottom: 12px !important;
    }
    
    #footer1 .section-title::after {
        width: 50px !important;
    }
    
    #footer1 .google-map iframe {
        height: 150px !important;
    }
    
    #footer1 .navigation-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    #footer1 .nav-btn {
        min-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 13px !important;
    }
    
    #footer1 .contact-item,
    #footer1 .address-info,
    #footer1 .hour-item {
        padding: 12px !important;
    }
    
    #footer1 .contact-value,
    #footer1 .address-text p {
        font-size: 13.5px !important;
    }
    
    #footer1 .social-links {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    #footer1 .social-link {
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    #footer1 .divider-device {
        margin: 30px auto !important;
    }
    
    #footer1 .footer-mobile-app {
        padding: 20px !important;
        margin-bottom: 25px !important;
    }
    
    #footer1 .footer-mobile-app h5 {
        font-size: 15px !important;
        margin-bottom: 18px !important;
    }
    
    #footer1 .footer-mobile-app .d-flex {
        gap: 15px !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 120px !important;
    }
    
    #footer1 .section-copyright {
        padding: 15px 10px 10px 10px !important;
    }
    
    #footer1 .section-copyright a {
        padding: 10px 15px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    #footer1 .section-copyright .text-white {
        font-size: 13px !important;
    }
    
    #footer1 .section-copyright span[style*="color:#ffd800"] {
        font-size: 14px !important;
    }
    
    #footer1 .section-copyright img {
        width: 20px !important;
        height: 20px !important;
    }
}

/* موبایل خیلی کوچک (زیر 480px) */
@media (max-width: 480px) {
    #footer1 .google-map iframe {
        height: 140px !important;
    }
    
    #footer1 .nav-btn {
        font-size: 12px !important;
        padding: 10px 12px !important;
        min-height: 44px !important;
    }
    
    #footer1 .contact-label,
    #footer1 .days,
    #footer1 .times {
        font-size: 13px !important;
    }
    
    #footer1 .contact-value,
    #footer1 .address-text p {
        font-size: 13px !important;
    }
    
    #footer1 .address-text strong {
        font-size: 15px !important;
    }
    
    #footer1 .footer-mobile-app h5 {
        font-size: 14px !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 110px !important;
    }
    
    #footer1 .social-link {
        padding: 12px 18px !important;
        font-size: 13.5px !important;
    }
    
    #footer1 .section-copyright a {
        padding: 8px 12px !important;
    }
    
    #footer1 .section-copyright .text-white {
        font-size: 12px !important;
    }
    
    #footer1 .section-copyright span[style*="color:#ffd800"] {
        font-size: 13px !important;
    }
}

/* بهبود نمایش در مرورگرهای مختلف */
#footer1 * {
    box-sizing: border-box !important;
}

#footer1 pre {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

#footer1 .badge-pre {
    all: unset !important;
    display: block !important;
}




/* دکمه دریافت نوبت - مینیمال و مدرن */
#id-6308.reservation {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    color: white !important;
    font-family: 'iranyekan', sans-serif !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(0, 119, 128, 0.4) !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
    text-align: center !important;
    font-size: 18px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* رفع مشکل نمایش */
#id-6308.reservation pre {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: normal !important;
}

#id-6308.reservation pre p {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* آیکون */
#id-6308.reservation pre p::before {
    content: '📅' !important;
    font-size: 20px !important;
}

/* هاور */
#id-6308.reservation:hover {
    background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
    transform: translateX(-50%) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 119, 128, 0.5) !important;
}

/* اکتیو */
#id-6308.reservation:active {
    transform: translateX(-50%) translateY(1px) !important;
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.4) !important;
}

/* موبایل */
@media (max-width: 768px) {
    #id-6308.reservation {
        bottom: 15px !important;
        left: 15px !important;
        right: 15px !important;
        transform: none !important;
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }
    
    #id-6308.reservation:hover {
        transform: translateY(-3px) !important;
    }
    
    #id-6308.reservation:active {
        transform: translateY(1px) !important;
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    #id-6308.reservation {
        bottom: 12px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 12px 15px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        font-size: 15px !important;
    }
}









/* بخش خدمات ما - طراحی کارتی مدرن */
#id-6302.article1 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    padding: 70px 20px 90px 20px !important;
    font-family: 'iranyekan', 'Shabnam', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

/* خط تزئینی بالا */
#id-6302.article1::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780 0%, #2c3e50 50%, #007780 100%) !important;
    z-index: 2 !important;
}

#id-6302 .section-header {
    max-width: 1200px !important;
    margin: 0 auto 50px auto !important;
    text-align: center !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding: 0 20px !important;
}

#id-6302 .section-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    white-space: normal !important;
    text-align: center !important;
}

#id-6302 .section-description pre p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
}

#id-6302 .section-description strong {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #007780 !important;
    text-shadow: 0 2px 8px rgba(0, 119, 128, 0.15) !important;
    display: inline-block !important;
    position: relative !important;
    padding-bottom: 15px !important;
    font-family: 'ShabnamBold', 'Shabnam', 'iranyekan', sans-serif !important;
}

#id-6302 .section-description strong::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780, #1CC7D0) !important;
    border-radius: 2px !important;
}

#id-6302 .article1-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#id-6302 .article-card-item {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 119, 128, 0.1),
        0 5px 15px rgba(44, 62, 80, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 370px !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    border: 1px solid rgba(0, 119, 128, 0.1) !important;
}

/* افکت هاله نور */
#id-6302 .article-card-item::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, 
        rgba(0, 119, 128, 0.05) 0%, 
        rgba(28, 199, 208, 0.1) 50%,
        rgba(0, 119, 128, 0.05) 100%) !important;
    border-radius: 17px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

#id-6302 .article-card-item:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 
        0 20px 50px rgba(0, 119, 128, 0.2),
        0 10px 30px rgba(44, 62, 80, 0.1) !important;
    border-color: rgba(0, 119, 128, 0.2) !important;
}

#id-6302 .article-card-item:hover::before {
    opacity: 1 !important;
}

#id-6302 .article-header {
    border-radius: 15px 15px 0 0 !important;
    height: 280px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

#id-6302 .article-header::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 40px !important;
    background: linear-gradient(to top, 
        rgba(0, 119, 128, 0.2) 0%,
        rgba(0, 119, 128, 0.1) 30%,
        rgba(0, 119, 128, 0) 100%) !important;
    transition: height 0.4s ease !important;
}

#id-6302 .article-card-item:hover .article-header::after {
    height: 60px !important;
}

#id-6302 .article-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.6s ease !important;
    filter: brightness(0.95) contrast(1.05) !important;
}

#id-6302 .article-card-item:hover .article-image {
    transform: scale(1.08) !important;
    filter: brightness(1.05) contrast(1.1) !important;
}

#id-6302 .article-content {
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    min-height: 90px !important;
    width: 100% !important;
    border-radius: 0 0 15px 15px !important;
    padding: 20px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    border: none !important;
    box-shadow: none !important;
    gap: 8px !important;
}

#id-6302 .article-card-item:hover .article-content {
    background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
    min-height: 100px !important;
}

#id-6302 .article-content::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent) !important;
    transition: left 0.8s ease !important;
}

#id-6302 .article-card-item:hover .article-content::before {
    left: 100% !important;
}

#id-6302 .article-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-family: 'ShabnamBold', 'Shabnam', 'iranyekan', sans-serif !important;
    line-height: 1.4 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

#id-6302 .article-card-item:hover .article-title {
    transform: translateY(-2px) !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
    font-size: 19px !important;
}

/* استایل‌های دکمه ادامه مطلب */
#id-6302 .article-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'iranyekan', 'Shabnam', sans-serif !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    max-height: none !important;
    width: 100% !important;
}

#id-6302 .article-description pre {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
}

#id-6302 .article-description p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-family: inherit !important;
}

#id-6302 .article-description a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    font-family: 'iranyekan', 'Shabnam', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

#id-6302 .article-description a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent) !important;
    transition: left 0.6s ease !important;
    z-index: -1 !important;
}

#id-6302 .article-description a:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

#id-6302 .article-description a:hover::before {
    left: 100% !important;
}

#id-6302 .article-description a:active {
    transform: translateY(0) !important;
}

#id-6302 .article-description span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: inherit !important;
}

#id-6302 .article-description img {
    width: 16px !important;
    height: 16px !important;
    transition: transform 0.3s ease !important;
    filter: brightness(0) invert(1) !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

#id-6302 .article-description a:hover img {
    transform: translateX(5px) !important;
}

/* =========================================== */
/* 🎯 ریسپانسیو */
/* =========================================== */

/* لپتاپ متوسط (1201px تا 1400px) */
@media (max-width: 1400px) and (min-width: 1201px) {
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 22px !important;
        max-width: 1300px !important;
    }
    
    #id-6302 .article-card-item {
        height: 360px !important;
    }
    
    #id-6302 .article-header {
        height: 270px !important;
    }
}

/* لپتاپ کوچک (1025px تا 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        max-width: 1100px !important;
    }
    
    #id-6302 .article-card-item {
        height: 350px !important;
    }
    
    #id-6302 .article-header {
        height: 260px !important;
    }
    
    #id-6302 .article-description a {
        padding: 7px 18px !important;
        font-size: 13.5px !important;
    }
}

/* تبلت بزرگ (901px تا 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    #id-6302.article1 {
        padding: 60px 15px 80px 15px !important;
    }
    
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 22px !important;
        max-width: 900px !important;
    }
    
    #id-6302 .article-card-item {
        height: 340px !important;
    }
    
    #id-6302 .article-header {
        height: 250px !important;
    }
    
    #id-6302 .article-title {
        font-size: 17px !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 28px !important;
    }
    
    #id-6302 .article-description a {
        padding: 7px 16px !important;
        font-size: 13px !important;
    }
    
    #id-6302 .article-description img {
        width: 15px !important;
        height: 15px !important;
    }
}

/* تبلت متوسط (769px تا 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    #id-6302.article1 {
        padding: 50px 15px 70px 15px !important;
    }
    
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 700px !important;
    }
    
    #id-6302 .article-card-item {
        height: 330px !important;
    }
    
    #id-6302 .article-header {
        height: 240px !important;
    }
    
    #id-6302 .article-title {
        font-size: 16px !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 26px !important;
    }
    
    #id-6302 .article-content {
        min-height: 85px !important;
        padding: 18px 12px !important;
        gap: 6px !important;
    }
    
    #id-6302 .article-description a {
        padding: 6px 14px !important;
        font-size: 12.5px !important;
    }
    
    #id-6302 .article-description img {
        width: 14px !important;
        height: 14px !important;
    }
}

/* تبلت کوچک (641px تا 768px) */
@media (max-width: 768px) and (min-width: 641px) {
    #id-6302.article1 {
        padding: 45px 15px 65px 15px !important;
    }
    
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 600px !important;
    }
    
    #id-6302 .article-card-item {
        height: 320px !important;
    }
    
    #id-6302 .article-header {
        height: 230px !important;
    }
    
    #id-6302 .article-title {
        font-size: 15.5px !important;
        line-height: 1.35 !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 24px !important;
    }
    
    #id-6302 .article-content {
        min-height: 80px !important;
        padding: 16px 10px !important;
        gap: 5px !important;
    }
    
    #id-6302 .article-description a {
        padding: 5px 12px !important;
        font-size: 12px !important;
    }
    
    #id-6302 .article-description img {
        width: 13px !important;
        height: 13px !important;
    }
}

/* موبایل بزرگ (481px تا 640px) */
@media (max-width: 640px) and (min-width: 481px) {
    #id-6302.article1 {
        padding: 40px 12px 60px 12px !important;
    }
    
    #id-6302 .article1-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
        padding: 0 12px !important;
    }
    
    #id-6302 .article-card-item {
        height: 300px !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    #id-6302 .article-header {
        height: 220px !important;
    }
    
    #id-6302 .article-title {
        font-size: 15px !important;
        line-height: 1.3 !important;
        padding: 0 8px !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 22px !important;
    }
    
    #id-6302 .article-content {
        min-height: 75px !important;
        padding: 14px 8px !important;
        gap: 4px !important;
    }
    
    #id-6302 .article-card-item:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
    
    #id-6302 .article-description a {
        padding: 4px 10px !important;
        font-size: 11.5px !important;
    }
    
    #id-6302 .article-description img {
        width: 12px !important;
        height: 12px !important;
    }
}

/* موبایل (361px تا 480px) */
@media (max-width: 480px) and (min-width: 361px) {
    #id-6302.article1 {
        padding: 35px 10px 50px 10px !important;
    }
    
    #id-6302 .article1-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
        max-width: 350px !important;
    }
    
    #id-6302 .article-card-item {
        height: 320px !important;
        max-width: 350px !important;
    }
    
    #id-6302 .article-header {
        height: 230px !important;
    }
    
    #id-6302 .article-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 20px !important;
    }
    
    #id-6302 .article-content {
        min-height: 80px !important;
        padding: 16px 12px !important;
        gap: 6px !important;
    }
    
    #id-6302 .article-card-item:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }
    
    #id-6302 .article-description a {
        padding: 6px 14px !important;
        font-size: 12.5px !important;
    }
    
    #id-6302 .article-description img {
        width: 13px !important;
        height: 13px !important;
    }
}

/* موبایل کوچک (تا 360px) */
@media (max-width: 360px) {
    #id-6302.article1 {
        padding: 30px 8px 45px 8px !important;
    }
    
    #id-6302 .article1-wrapper {
        gap: 18px !important;
        padding: 0 8px !important;
        max-width: 320px !important;
    }
    
    #id-6302 .article-card-item {
        height: 300px !important;
        max-width: 320px !important;
    }
    
    #id-6302 .article-header {
        height: 220px !important;
    }
    
    #id-6302 .article-title {
        font-size: 15px !important;
        line-height: 1.35 !important;
        padding: 0 6px !important;
    }
    
    #id-6302 .section-description strong {
        font-size: 18px !important;
    }
    
    #id-6302 .article-content {
        min-height: 75px !important;
        padding: 14px 10px !important;
        gap: 5px !important;
    }
    
    #id-6302 .article-description a {
        padding: 5px 12px !important;
        font-size: 12px !important;
    }
    
    #id-6302 .article-description img {
        width: 12px !important;
        height: 12px !important;
    }
}

/* بهبود نمایش در مرورگرهای مختلف */
#id-6302 .article-card-item {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

/* حذف انیمیشن ورود کارت‌ها */
#id-6302 .article-card-item {
    animation: none !important;
    opacity: 1 !important;
}







/* بخش مقالات منتشر شده */
#id-6310.article1 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    padding: 80px 20px 100px 20px !important;
    font-family: 'iranyekan', 'Shabnam', 'Samim', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

/* خط تزئینی بالا */
#id-6310.article1::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #007780 0%, #2c3e50 50%, #007780 100%) !important;
    z-index: 2 !important;
}

/* استایل‌های هدر */
#id-6310 .section-header {
    max-width: 1200px !important;
    margin: 0 auto 60px auto !important;
    text-align: center !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding: 0 20px !important;
}

#id-6310 .parent-div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 25px !important;
}

#id-6310 .child1-div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

#id-6310 .title-container {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

#id-6310 .title-container strong {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

#id-6310 .title-container span {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-family: 'ShabnamBold', 'Shabnam', sans-serif !important;
}

#id-6310 .title-container img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 119, 128, 0.2)) !important;
    transition: transform 0.3s ease !important;
}

#id-6310 .title-container img:hover {
    transform: scale(1.1) !important;
}

#id-6310 .title-container span[style*="font-size: 24pt"] {
    color: #007780 !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 8px rgba(0, 119, 128, 0.15) !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

#id-6310 .title-container span[style*="font-size: 24pt"]::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #007780, #1CC7D0) !important;
    border-radius: 2px !important;
}

/* استایل دکمه مقالات جدید */
#id-6310 p:has(button) {
    margin: 25px 0 0 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

#id-6310 button {
    width: 210px !important;
    height: 55px !important;
    border: none !important;
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    color: white !important;
    padding: 10px !important;
    margin-top: 10px !important;
    border-radius: 12px !important;
    font-family: 'Samim', 'iranyekan', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(0, 119, 128, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

#id-6310 button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent) !important;
    transition: left 0.6s ease !important;
    z-index: -1 !important;
}

#id-6310 button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 119, 128, 0.35) !important;
    background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
}

#id-6310 button:hover::before {
    left: 100% !important;
}

#id-6310 button:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.25) !important;
}

/* استایل بخش کارت‌ها */
#id-6310 .article1-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#id-6310 .article-card-item {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 
        0 12px 35px rgba(0, 119, 128, 0.12),
        0 6px 20px rgba(44, 62, 80, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 550px !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    border: 1px solid rgba(0, 119, 128, 0.08) !important;
}

/* افکت هاله نور */
#id-6310 .article-card-item::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, 
        rgba(0, 119, 128, 0.05) 0%, 
        rgba(28, 199, 208, 0.1) 50%,
        rgba(0, 119, 128, 0.05) 100%) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

#id-6310 .article-card-item:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 
        0 25px 60px rgba(0, 119, 128, 0.2),
        0 15px 40px rgba(44, 62, 80, 0.12) !important;
    border-color: rgba(0, 119, 128, 0.15) !important;
}

#id-6310 .article-card-item:hover::before {
    opacity: 1 !important;
}

#id-6310 .article-header {
    border-radius: 20px 20px 0 0 !important;
    height: 250px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

#id-6310 .article-header::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 50px !important;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0) 100%) !important;
    transition: height 0.4s ease !important;
}

#id-6310 .article-card-item:hover .article-header::after {
    height: 70px !important;
}

#id-6310 .article-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.6s ease !important;
    filter: brightness(0.92) contrast(1.05) !important;
}

#id-6310 .article-card-item:hover .article-image {
    transform: scale(1.08) !important;
    filter: brightness(1) contrast(1.1) !important;
}

#id-6310 .article-content {
    background: white !important;
    min-height: 300px !important;
    width: 100% !important;
    border-radius: 0 0 20px 20px !important;
    padding: 30px 25px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center !important;
    gap: 20px !important;
}

#id-6310 .article-content::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 119, 128, 0.03), 
        transparent) !important;
    transition: left 0.8s ease !important;
}

#id-6310 .article-card-item:hover .article-content::before {
    left: 100% !important;
}

#id-6310 .article-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #007780 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 15px 15px 15px !important;
    font-family: 'ShabnamBold', 'Shabnam', sans-serif !important;
    line-height: 1.5 !important;
    text-shadow: 0 1px 2px rgba(0, 119, 128, 0.1) !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
    border-bottom: 2px solid rgba(0, 119, 128, 0.1) !important;
    width: 100% !important;
    padding-bottom: 15px !important;
}

#id-6310 .article-card-item:hover .article-title {
    transform: translateY(-2px) !important;
    color: #00656d !important;
    border-bottom-color: rgba(0, 119, 128, 0.2) !important;
}

/* استایل دکمه اطلاعات بیشتر */
#id-6310 .article-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Samim', 'iranyekan', sans-serif !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    max-height: none !important;
    width: 100% !important;
    text-align: center !important;
    line-height: 1.8 !important;
    color: #2c3e50 !important;
    font-size: 14px !important;
}

#id-6310 .article-description pre {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
}

#id-6310 .article-description p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-family: inherit !important;
    line-height: 1.8 !important;
}

#id-6310 .article-description span {
    display: block !important;
    font-family: inherit !important;
    color: #2c3e50 !important;
    line-height: 2.5 !important;
}

#id-6310 .simple-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #007780 0%, #1CC7D0 100%) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 10px 28px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 1.5px solid rgba(0, 119, 128, 0.2) !important;
    font-family: 'Samim', 'iranyekan', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 119, 128, 0.2) !important;
}

#id-6310 .simple-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent) !important;
    transition: left 0.6s ease !important;
    z-index: -1 !important;
}

#id-6310 .simple-btn:hover {
    background: linear-gradient(135deg, #00656d 0%, #00a5b0 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 119, 128, 0.3) !important;
    border-color: rgba(0, 119, 128, 0.3) !important;
}

#id-6310 .simple-btn:hover::before {
    left: 100% !important;
}

#id-6310 .simple-btn:active {
    transform: translateY(0) !important;
}

/* بهبود نمایش در مرورگرهای مختلف */
#id-6310 .article-card-item {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

/* =========================================== */
/* 🎯 ریسپانسیو */
/* =========================================== */

/* لپتاپ متوسط (1201px تا 1400px) */
@media (max-width: 1400px) and (min-width: 1201px) {
    #id-6310 .article1-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        max-width: 1300px !important;
    }
    
    #id-6310 .article-card-item {
        height: 530px !important;
    }
    
    #id-6310 .article-title {
        font-size: 17px !important;
    }
}

/* لپتاپ کوچک (1025px تا 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    #id-6310 .article1-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        max-width: 1100px !important;
    }
    
    #id-6310 .article-card-item {
        height: 520px !important;
    }
    
    #id-6310 .article-title {
        font-size: 16px !important;
        padding: 0 12px 12px 12px !important;
    }
    
    #id-6310 .article-content {
        padding: 25px 20px !important;
        gap: 18px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 9px 24px !important;
        font-size: 13px !important;
    }
}

/* تبلت بزرگ (901px تا 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
    #id-6310.article1 {
        padding: 70px 15px 90px 15px !important;
    }
    
    #id-6310 .article1-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 22px !important;
        max-width: 900px !important;
    }
    
    #id-6310 .article-card-item {
        height: 500px !important;
    }
    
    #id-6310 .article-header {
        height: 230px !important;
    }
    
    #id-6310 .article-title {
        font-size: 15.5px !important;
        padding: 0 10px 10px 10px !important;
    }
    
    #id-6310 .article-content {
        padding: 22px 18px !important;
        gap: 16px !important;
        min-height: 270px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 24px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 8px 22px !important;
        font-size: 12.5px !important;
    }
}

/* تبلت متوسط (769px تا 900px) */
@media (max-width: 900px) and (min-width: 769px) {
    #id-6310.article1 {
        padding: 60px 15px 80px 15px !important;
    }
    
    #id-6310 .article1-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 700px !important;
    }
    
    #id-6310 .article-card-item {
        height: 500px !important;
    }
    
    #id-6310 .article-header {
        height: 230px !important;
    }
    
    #id-6310 .article-title {
        font-size: 16px !important;
        padding: 0 12px 12px 12px !important;
    }
    
    #id-6310 .article-content {
        padding: 24px 20px !important;
        gap: 18px !important;
        min-height: 270px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 22px !important;
    }
    
    #id-6310 button {
        width: 190px !important;
        height: 50px !important;
        font-size: 15px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
    }
}

/* تبلت کوچک (641px تا 768px) */
@media (max-width: 768px) and (min-width: 641px) {
    #id-6310.article1 {
        padding: 50px 15px 70px 15px !important;
    }
    
    #id-6310 .article1-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 600px !important;
    }
    
    #id-6310 .article-card-item {
        height: 480px !important;
    }
    
    #id-6310 .article-header {
        height: 220px !important;
    }
    
    #id-6310 .article-title {
        font-size: 15px !important;
        padding: 0 10px 10px 10px !important;
        line-height: 1.4 !important;
    }
    
    #id-6310 .article-content {
        padding: 20px 16px !important;
        gap: 15px !important;
        min-height: 260px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 20px !important;
    }
    
    #id-6310 .title-container img {
        width: 35px !important;
        height: 35px !important;
    }
    
    #id-6310 button {
        width: 180px !important;
        height: 48px !important;
        font-size: 14px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 7px 18px !important;
        font-size: 11.5px !important;
    }
    
    #id-6310 .article-description {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
}

/* موبایل بزرگ (481px تا 640px) */
@media (max-width: 640px) and (min-width: 481px) {
    #id-6310.article1 {
        padding: 45px 12px 65px 12px !important;
    }
    
    #id-6310 .section-header {
        margin-bottom: 40px !important;
    }
    
    #id-6310 .article1-wrapper {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 12px !important;
        max-width: 450px !important;
    }
    
    #id-6310 .article-card-item {
        height: 500px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }
    
    #id-6310 .article-header {
        height: 230px !important;
    }
    
    #id-6310 .article-title {
        font-size: 16px !important;
        padding: 0 15px 15px 15px !important;
    }
    
    #id-6310 .article-content {
        padding: 25px 22px !important;
        gap: 18px !important;
        min-height: 270px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 18px !important;
    }
    
    #id-6310 .title-container img {
        width: 32px !important;
        height: 32px !important;
    }
    
    #id-6310 .child1-div {
        gap: 15px !important;
    }
    
    #id-6310 button {
        width: 170px !important;
        height: 46px !important;
        font-size: 13.5px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
    }
    
    #id-6310 .article-card-item:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
}

/* موبایل (361px تا 480px) */
@media (max-width: 480px) and (min-width: 361px) {
    #id-6310.article1 {
        padding: 40px 10px 60px 10px !important;
    }
    
    #id-6310 .section-header {
        margin-bottom: 35px !important;
    }
    
    #id-6310 .article1-wrapper {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 0 10px !important;
        max-width: 400px !important;
    }
    
    #id-6310 .article-card-item {
        height: 480px !important;
        max-width: 400px !important;
    }
    
    #id-6310 .article-header {
        height: 220px !important;
    }
    
    #id-6310 .article-title {
        font-size: 15px !important;
        padding: 0 12px 12px 12px !important;
    }
    
    #id-6310 .article-content {
        padding: 22px 18px !important;
        gap: 16px !important;
        min-height: 260px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 17px !important;
    }
    
    #id-6310 .title-container img {
        width: 30px !important;
        height: 30px !important;
    }
    
    #id-6310 .child1-div {
        gap: 12px !important;
    }
    
    #id-6310 button {
        width: 160px !important;
        height: 44px !important;
        font-size: 13px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 7px 18px !important;
        font-size: 11.5px !important;
    }
    
    #id-6310 .article-description {
        font-size: 12.5px !important;
        line-height: 1.6 !important;
    }
}

/* موبایل کوچک (تا 360px) */
@media (max-width: 360px) {
    #id-6310.article1 {
        padding: 35px 8px 55px 8px !important;
    }
    
    #id-6310 .section-header {
        margin-bottom: 30px !important;
    }
    
    #id-6310 .article1-wrapper {
        gap: 20px !important;
        padding: 0 8px !important;
        max-width: 350px !important;
    }
    
    #id-6310 .article-card-item {
        height: 460px !important;
        max-width: 350px !important;
    }
    
    #id-6310 .article-header {
        height: 200px !important;
    }
    
    #id-6310 .article-title {
        font-size: 14px !important;
        padding: 0 10px 10px 10px !important;
        line-height: 1.3 !important;
    }
    
    #id-6310 .article-content {
        padding: 20px 15px !important;
        gap: 14px !important;
        min-height: 260px !important;
    }
    
    #id-6310 .title-container span[style*="font-size: 24pt"] {
        font-size: 16px !important;
    }
    
    #id-6310 .title-container img {
        width: 28px !important;
        height: 28px !important;
    }
    
    #id-6310 .child1-div {
        gap: 10px !important;
        flex-direction: column !important;
    }
    
    #id-6310 .title-container {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    #id-6310 button {
        width: 150px !important;
        height: 42px !important;
        font-size: 12.5px !important;
    }
    
    #id-6310 .simple-btn {
        padding: 6px 16px !important;
        font-size: 11px !important;
    }
    
    #id-6310 .article-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}

/* تنظیمات خاص برای نمایش بهتر در مرورگرهای مختلف */
#id-6310 .section-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    white-space: normal !important;
    text-align: center !important;
}

#id-6310 .section-description pre {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
}

#id-6310 .section-description p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
}