/*
Theme Name:  tw1404
Theme URI: http://tabnakweb.ir
Description: 
Author: Tabnak Web
Author URI: http://tabnakweb.ir
Version: 0.2
*/

html {
    scroll-behavior: smooth;
}

 /* Reset و فونت ها */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Vazirmatn, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #202124;
            line-height: 1.6;
        }
        
        /* طرح رنگی گوگل */
        :root {
            --google-blue: #1a73e8;
            --google-red: #ea4335;
            --google-yellow: #fbbc04;
            --google-green: #34a853;
            --google-gray: #5f6368;
            --google-light-gray: #dadce0;
            --google-dark-gray: #3c4043;
            --card-shadow: 0 0 40px 0 rgba(119, 132, 157, .2);
            --card-hover-shadow:0 10px 40px 0 rgba(119,132,157,.30196078431372547);
        }
        
        /* هدر و ناوبری */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
        }
        /* استایل برای لوگو و عنوان */
.logo a {
    display: flex; /* نمایش المان‌ها در یک خط */
    align-items: center; /* تراز کردن المان‌ها در مرکز عمودی */
    gap: 10px; /* فاصله بین لوگو و عنوان */
    text-decoration: none; /* حذف خط زیر لینک */
}

/* استایل برای تصویر لوگو */
.site-logo-image {
    height: 40px; /* اندازه دلخواه برای لوگو */
    width: auto;
}
   
/* استایل برای لوگو و عنوان */
.logo-link {
    display: flex; /* المان‌ها را در یک خط قرار می‌دهد */
    align-items: center; /* المان‌ها را در مرکز عمودی تراز می‌کند */
    text-decoration: none; /* خط زیر لینک را حذف می‌کند */
    color: inherit; /* رنگ متن را از المان والد به ارث می‌برد */
}

/* استایل برای تگ H1 لوگو */
.site-logo-title {
    font-weight: bold; /* فونت را بولد می‌کند */
    margin: 0; /* حاشیه‌های پیش‌فرض h1 را حذف می‌کند */
    padding-right: 10px; /* یک فاصله از سمت راست (برای سمت راست به چپ) ایجاد می‌کند */
}

/* استایل برای تصویر لوگو */
.site-logo-image {
    height: 40px; /* اندازه دلخواه برای ارتفاع لوگو */
    width: auto; /* عرض را به صورت خودکار تنظیم می‌کند */
}







   .logo h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--google-dark-gray);
            background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .desktop-menu {
            display: none;
        }
        
        .desktop-menu ul {
            display: flex;
            list-style: none;
            gap: 15px;
        }
        
        .desktop-menu ul li a {
            text-decoration: none;
            color: var(--google-gray);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 15px;
            border-radius: 20px;
        }
        
        .desktop-menu ul li a:hover {
            color: var(--google-blue);
            background-color: #f1f3f4;
        }
        
        .desktop-menu ul li a.active {
            color: var(--google-blue);
            background-color: #e8f0fe;
        }
        
		
		/*
* استایل‌های زیرمنو برای منوی دسکتاپ - بهبود یافته
*/
.desktop-menu ul ul {
    display: none;
    position: absolute;
    top: 100%; /* نمایش زیرمنو در زیر لینک اصلی */
    left: 0;
    background-color: #f9f9f9; /* رنگ پس‌زمینه روشن‌تر */
    border: 1px solid #ddd; /* حاشیه نازک */
    border-top: none; /* حذف حاشیه بالا برای اتصال بهتر */
    border-radius: 0 0 8px 8px; /* گرد کردن گوشه‌های پایین */
    padding: 0; /* حذف padding پیش‌فرض */
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.desktop-menu ul li {
    position: relative;
}

.desktop-menu ul li:hover > ul {
    display: block;
}

.desktop-menu ul ul li {
    display: block;
}

.desktop-menu ul ul li a {
    color: #333; /* رنگ متن تیره‌تر */
    padding: 12px 20px; /* padding بیشتر برای فضای بهتر */
    display: block; /* لینک‌ها تمام عرض را بگیرند */
    text-decoration: none;
}

.desktop-menu ul ul li a:hover {
    background-color: #eee; /* تغییر رنگ پس‌زمینه هنگام هاور */
}

.desktop-menu ul li ul li:last-child a {
    border-radius: 0 0 8px 8px; /* گرد کردن گوشه‌های پایین آخرین آیتم */
}
		
		
		/* آیکون جستجو در هدر */
.search-icon {
    font-size: 20px;
    color: var(--google-gray);
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.search-icon:hover {
    color: var(--google-blue);
    background-color: #f1f3f4;
}

/* نوار جستجوی تمام صفحه */
.fullscreen-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-search.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    width: 90%;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-field {
    flex-grow: 1;
    height: 50px;
    padding: 0 20px;
    font-size: 1.2rem;
    border: 2px solid var(--google-light-gray);
    border-radius: 30px;
    background-color: #f1f3f4;
    color: var(--google-dark-gray);
    outline: none;
    transition: border-color 0.3s;
}

.search-field:focus {
    border-color: var(--google-blue);
    box-shadow: 0 0 0 4px #e8f0fe;
}

.search-submit {
    height: 50px;
    width: 50px;
    background-color: var(--google-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.search-submit:hover {
    background-color: #1967d2;
    transform: scale(1.05);
}

.search-submit i {
    font-size: 1.2rem;
}

.search-close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 2rem;
    color: var(--google-dark-gray);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.search-close-btn:hover {
    color: var(--google-red);
    transform: rotate(90deg);
}

/* برای موبایل */
@media (max-width: 480px) {
    .search-field {
        font-size: 1rem;
    }
    .search-submit {
        height: 40px;
        width: 40px;
    }
}
		
		
		
		
		
        .hamburger-menu {
            display: block;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        
        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--google-gray);
            transition: all 0.3s;
            border-radius: 2px;
        }
        
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* منوی همبرگر */
        .mobile-menu {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 80%;
            height: calc(100vh - 70px);
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease-in-out;
            z-index: 99;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu ul li {
            margin-bottom: 15px;
        }
        
        .mobile-menu ul li a {
            text-decoration: none;
            color: var(--google-dark-gray);
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 12px 15px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .mobile-menu ul li a:hover,
        .mobile-menu ul li a.active {
            background-color: #e8f0fe;
            color: var(--google-blue);
        }
        /*
* استایل‌های زیرمنو برای منوی موبایل - بهبود یافته
*/
.mobile-menu-items ul ul {
    padding-right: 20px; /* فرورفتگی بیشتر برای تشخیص زیرمنو */
}

.mobile-menu-items ul ul li a {
    font-size: 15px; /* فونت کمی کوچکتر */
    font-weight: normal;
    color: #555; /* رنگ متن ملایم‌تر */
    padding: 10px 25px; /* padding مناسب‌تر */
}

.mobile-menu-items ul ul li a:hover {
    background-color: #eee;
}
        .social-mobile {
            display: flex;
            margin-top: auto;
            justify-content: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid var(--google-light-gray);
        }
        
        .social-mobile a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #f1f3f4;
            border-radius: 50%;
            color: var(--google-gray);
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .social-mobile a:hover {
            background: var(--google-blue);
            color: white;
            transform: translateY(-3px);
        }
        
        /* بخش اصلی *//* استایل‌های مدرن برای بخش قهرمان (Hero) */
/* استایل‌های مدرن برای بخش قهرمان (Hero) */
.hero-dual {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding: 50px 20px;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    direction: rtl; /* برای اطمینان از راست‌چین بودن کل بخش */
}

/* لایه تیره روی تصویر پس‌زمینه برای خوانایی بهتر متن */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* کانتینر محتوای دو ستونی */
.hero-dual-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row; /* چینش ستون‌ها به صورت عادی (تصویر سمت راست، متن سمت چپ) */
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ستون محتوای متنی (متن سمت چپ) */
.hero-text-col {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.hero-text-col h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ستون تصویر (تصویر سمت راست) */
.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* دکمه مدرن */
.hero-text-col .btn {
    display: inline-block;
    background-color: var(--google-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-text-col .btn:hover {
    transform: translateY(-3px);
    background-color: #1967d2;
}

.hero-text-col .btn i {
    margin-left: 10px;
}

/* تنظیمات واکنشگرا (برای نمایش در موبایل) */
@media (max-width: 992px) {
    .hero-dual-content {
        flex-direction: column-reverse; /* برای اینکه تصویر در بالای متن قرار بگیرد */
        text-align: center;
        gap: 30px;
    }
    
    .hero-text-col {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-text-col .btn {
        display: block;
        margin: 0 auto;
    }

    .hero-text-col h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-dual {
        min-height: auto;
    }
    
    .hero-text-col h2 {
        font-size: 2rem;
    }
    
    .hero-image-col {
        justify-content: center;
    }
}
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--google-blue);
            color: white;
            padding: 14px 30px;
            border-radius: 24px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: var(--card-shadow);
        }
        
        .btn:hover {
            background-color: #1967d2;
            transform: translateY(-2px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .btn i {
            font-size: 16px;
        }
        
        /* بخش نمونه کارها */
        .portfolio {
            padding: 80px 20px;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--google-dark-gray);
            position: relative;
            font-weight: 700;
            font-size: 24px;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--google-blue), var(--google-green));
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .portfolio-item {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .portfolio-img {
            height: 200px;
            background: linear-gradient(120deg, #e8eaed 0%, #f1f3f4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--google-gray);
            font-size: 50px;
        }
        .portfolio-img img,
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        .portfolio-info {
            padding: 25px;
        }
        
		/* استایل دهی به لینک‌های عنوان در بخش نمونه کارها و وبلاگ */
.portfolio-info h3 a,
.blog-info h3 a {
    color: var(--google-dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.portfolio-info h3 a:hover,
.blog-info h3 a:hover {
    color: var(--google-blue);
}

/* استایل دهی به لینک‌های ادامه مطلب در وبلاگ */
.read-more {
    color: var(--google-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: #1967d2;
}
		
		
		
		
		
        .portfolio-info h3 {
            margin-bottom: 12px;
            color: var(--google-dark-gray);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .portfolio-info h3 i {
            color: var(--google-blue);
            font-size: 20px;
        }
        
        .portfolio-info p {
            color: var(--google-gray);
            font-size: 14px;
            line-height: 1.7;
        }
        
        /* بخش وبلاگ */
        .blog {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .blog-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }
        
        .blog-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .blog-img {
            height: 180px;
            background: linear-gradient(120deg, #f1f3f4 0%, #e8eaed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--google-gray);
            font-size: 40px;
        }
        
        .blog-info {
            padding: 25px;
        }
        
        .blog-info h3 {
            margin-bottom: 12px;
            color: var(--google-dark-gray);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .blog-info h3 i {
            color: var(--google-green);
            font-size: 18px;
        }
        
        .blog-info p {
            color: var(--google-gray);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--google-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            gap: 10px;
            color: #1967d2;
        }
        
		
		
		
		
		
		
		 /* ناوبری صفحه */
        .page-navigation {
            background-color: white;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--google-gray);
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: var(--google-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .breadcrumb span {
            color: var(--google-gray);
        }
        
        /* محتوای اصلی */
        .single-content {
            max-width: 800px;
            margin: 0 auto 50px;
            padding: 0 20px;
        }
        
        /* هدر مقاله - این هدر نباید sticky باشد */
        .article-header {
  background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            line-height: 1.8;
            margin-top: 20px;
        }
        
		/* اطمینان از عدم ثابت ماندن هدر مقاله */
main .article-header {
    position: static !important;
    z-index: auto !important;
    top: auto !important;
}

/* استایل دهی مجدد به تصویر شاخص */
.article-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
		
        .article-title {
            font-size: 28px;
            color: var(--google-dark-gray);
            margin-bottom: 15px;
            line-height: 1.4;
            font-weight: 700;
            padding-top: 10px;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--google-gray);
            font-size: 14px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        /* استایل برای لینک‌های دسته‌بندی در تک پست */
.article-meta .meta-item a {
    color: inherit; /* رنگ متن را از عنصر والد به ارث می‌برد */
    text-decoration: none; /* خط زیر لینک را حذف می‌کند */
    transition: color 0.3s;
}

.article-meta .meta-item a:hover {
    color: var(--google-blue); /* تغییر رنگ هنگام هاور */
}
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .meta-item i {
            color: var(--google-blue);
        }
        
        /* تصویر مقاله */
        .article-featured-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .article-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-body {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            line-height: 1.8;
            margin-top: 20px;
        }
        
        .article-body p {
            margin-bottom: 20px;
            color: var(--google-dark-gray);
            text-align: justify;
        }
        
        .article-body h2 {
            font-size: 24px;
            color: var(--google-blue);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--google-light-gray);
        }
        
        .article-body h3 {
            font-size: 20px;
            color: var(--google-green);
            margin: 25px 0 15px;
        }
        
        .article-body blockquote {
            border-right: 4px solid var(--google-blue);
            background-color: #e8f0fe;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            font-style: italic;
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-right: 20px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        /* اشتراک گذاری */
        .social-share {
            display: flex;
            gap: 15px;
            margin: 40px 0;
            justify-content: center;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 24px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .share-btn i {
            font-size: 18px;
        }
        
        .share-btn.twitter {
            background-color: #1da1f2;
        }
        
        .share-btn.facebook {
            background-color: #3b5998;
        }
        
        .share-btn.linkedin {
            background-color: #0077b5;
        }
        
        .share-btn.telegram {
            background-color: #0088cc;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* نویسنده */
        .author-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            margin: 40px 0;
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }
        
        .author-info h3 {
            color: var(--google-dark-gray);
            margin-bottom: 10px;
        }
        
        .author-info p {
            color: var(--google-gray);
            line-height: 1.6;
        }
        
        /* مقالات مرتبط */
        .related-posts {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .related-title {
            font-size: 24px;
            color: var(--google-dark-gray);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--google-light-gray);
            position: relative;
        }
        
        .related-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 100px;
            height: 2px;
            background: var(--google-blue);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .related-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .related-item-img {
            height: 180px;
            background: linear-gradient(120deg, #f1f3f4 0%, #e8eaed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--google-gray);
            font-size: 40px;
        }
        
        .related-item-info {
            padding: 20px;
        }
        
        .related-item-info h3 {
            font-size: 18px;
            color: var(--google-dark-gray);
            margin-bottom: 10px;
        }
        
        .related-item-info a {
            color: var(--google-blue);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        
        .related-item-info a:hover {
            gap: 10px;
        }
		
		
		
		
		
		
		
		
		  /* استایل‌های جدید برای صفحه آرشیو */
        .page-header {
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
            margin-bottom: 40px;
        }
        
        .page-header h2 {
            font-size: 28px;
            color: var(--google-dark-gray);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            color: var(--google-gray);
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: var(--google-blue);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: var(--google-gray);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* استایل‌های صفحه آرشیو */
        .archive-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .archive-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .archive-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }
        
        .archive-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .archive-img {
            height: 200px;
            background: linear-gradient(120deg, #e8eaed 0%, #f1f3f4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--google-gray);
            font-size: 50px;
        }
        
        .archive-info {
            padding: 25px;
        }
        
        .archive-info h3 {
            margin-bottom: 12px;
            color: var(--google-dark-gray);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .archive-info h3 a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .archive-info h3 a:hover {
            color: var(--google-blue);
        }
        
        .archive-info h3 i {
            color: var(--google-blue);
            font-size: 20px;
        }
        
        .archive-info p {
            color: var(--google-gray);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .archive-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--google-gray);
            font-size: 13px;
            margin-bottom: 15px;
        }
        /* استایل برای لینک‌های داخل archive-meta */
.archive-meta a {
    color: inherit; /* رنگ متن را از عنصر والد به ارث می‌برد */
    text-decoration: none; /* خط زیر لینک را حذف می‌کند */
    transition: color 0.3s;
}

.archive-meta a:hover {
    color: var(--google-blue); /* رنگ لینک هنگام هاور */
}
		
        .archive-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .read-more {
            color: var(--google-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            gap: 10px;
            color: #1967d2;
        }
        
     /* استایل دهی به دکمه‌های صفحه‌بندی */
/* استایل دهی به دکمه‌های صفحه‌بندی */
.pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagenavi .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    background-color: white;
    color: var(--google-gray);
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.pagenavi .page-numbers:hover {
    background-color: var(--google-blue);
    color: white;
    transform: translateY(-2px);
}

.pagenavi .current {
    background-color: var(--google-blue);
    color: white;
}

/* استایل دهی به لینک‌های "جدیدتر" و "قدیمی‌تر" */
.pagenavi .prev,
.pagenavi .next {
    background-color: var(--google-blue);
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    width: auto;
    box-shadow: none;
}

.pagenavi .prev:hover,
.pagenavi .next:hover {
    background-color: #1967d2;
}

.pagenavi .pages {
    font-size: 14px;
    color: var(--google-gray);
}
        
       /* استایل‌های فیلترهای آرشیو */
.archive-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.archive-filter-button {
    background: white;
    border: 1px solid var(--google-light-gray);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: var(--google-gray);
    text-decoration: none; /* خط زیر را حذف می‌کند */
}

.archive-filter-button:hover, 
.archive-filter-button.active {
    background: var(--google-blue);
    color: white;
    border-color: var(--google-blue);
}
        
        /* رسپانسیو */
        @media (min-width: 768px) {
            .hamburger-menu {
                display: none;
            }
            
            .desktop-menu {
                display: block;
            }
            
            .page-header h2 {
                font-size: 36px;
            }
            
            .archive-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        @media (min-width: 1024px) {
            .page-header h2 {
                font-size: 42px;
            }
            
            .archive-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .section-title {
                font-size: 28px;
            }
        }
		
		/* بخش اصلی درباره ما */
.about-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* بخش معرفی */
.about-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.about-heading {
    text-align: center;
    margin-bottom: 30px;
}

.about-title {
    font-size: 36px;
    color: var(--google-dark-gray);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--google-blue), var(--google-green));
    border-radius: 2px;
}

.about-subtitle {
    color: var(--google-gray);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--google-dark-gray);
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 400px;
    background: linear-gradient(120deg, #e8eaed 0%, #f1f3f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--google-gray);
    font-size: 20px;
}

/* بخش آمار و ارقام */
.stats-section {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    padding: 60px 20px;
    color: white;
    margin-bottom: 60px;
    border-radius: 12px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* بخش تیم */
.team-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--google-dark-gray);
    position: relative;
    font-weight: 700;
    font-size: 28px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--google-blue), var(--google-green));
    margin: 15px auto;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.member-image {
    height: 250px;
    background: linear-gradient(120deg, #f1f3f4 0%, #e8eaed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--google-gray);
    font-size: 60px;
}

.member-info {
    padding: 25px;
}

.member-name {
    font-size: 20px;
    color: var(--google-dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: var(--google-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.member-desc {
    color: var(--google-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f1f3f4;
    border-radius: 50%;
    color: var(--google-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--google-blue);
    color: white;
    transform: translateY(-3px);
}

/* بخش مزایا */
.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.feature-title {
    font-size: 20px;
    color: var(--google-dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-desc {
    color: var(--google-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* بخش تماس */
.contact-section {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--google-blue);
    font-size: 20px;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--google-dark-gray);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--google-gray);
    font-size: 14px;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.form-title {
    font-size: 22px;
    color: var(--google-dark-gray);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--google-dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--google-light-gray);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--google-blue);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--google-blue);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
    font-size: 16px;
}

.submit-btn:hover {
    background: #1967d2;
    transform: translateY(-2px);
    box-shadow: var(--card-hover-shadow);
}





/*
* ===============================================
* استایل‌های صفحه اختصاصی نمونه کار (Single Portfolio)
* ===============================================
*/

.portfolio-single-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* هدر با تصویر بنر */
.portfolio-single-header {
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.portfolio-single-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.portfolio-single-header .header-content {
    position: relative;
    z-index: 2;
}

.portfolio-main-title {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* محتوای اصلی و ستون کناری */
.portfolio-single-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .portfolio-single-main {
        grid-template-columns: 2fr 1fr; /* دو سوم برای محتوا، یک سوم برای سایدبار */
    }
}

.portfolio-content-area .article-body {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

/* کارت اطلاعات پروژه در ستون کناری */
.portfolio-sidebar .project-info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 90px; /* برای اینکه هنگام اسکرول در جای خود بماند */
}

.project-info-card h3 {
    font-size: 20px;
    color: var(--google-dark-gray);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--google-light-gray);
}

.project-info-card .info-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--google-gray);
}

.project-info-card .info-item strong {
    color: var(--google-dark-gray);
    font-weight: 600;
}

.visit-website-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    font-size: 16px;
}



/*
* ===============================================
* استایل‌های نهایی و بهبودیافته برای آرشیو نمونه کار
* ===============================================
*/

/* نگهدارنده محتوای اصلی کارت (تصویر و عنوان) */
.portfolio-item-content {
    flex-grow: 1; /* این باعث می‌شود فوتر همیشه به پایین کارت بچسبد */
}

/* لینک تصویر */
.portfolio-item-image-link {
    display: block;
    text-decoration: none;
}

/* استایل عنوان و لینک آن */
.archive-info h3 {
    padding: 0 25px; /* کمی فاصله از اطراف */
}
.archive-info h3 a {
    text-decoration: none; /* حذف خط زیر لینک */
    color: var(--google-dark-gray);
    transition: color 0.3s;
}
.archive-info h3 a:hover {
    color: var(--google-blue); /* تغییر رنگ در هاور */
}

/* استایل فوتر و دکمه‌ها */
.portfolio-item-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px 25px;
    margin-top: auto; /* اطمینان از چسبیدن به پایین */
    border-top: 1px solid var(--google-light-gray); /* یک خط جداکننده زیبا */
}

.btn-portfolio-details,
.btn-portfolio-visit {
    flex: 1; /* عرض مساوی برای هر دو دکمه */
    text-align: center;
    padding: 8px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

/* استایل دکمه جزئیات */
.btn-portfolio-details {
    background-color: #f1f3f4;
    color: var(--google-dark-gray);
}
.btn-portfolio-details:hover {
    background-color: #e8eaed;
    color: black;
}

/* استایل دکمه مشاهده سایت (استایل قبلی همچنان کار می‌کند) */
.btn-portfolio-visit i,
.btn-portfolio-details i {
    margin-left: 5px;
}




/* فوتر */
footer {
    background-color: white;
    padding: 60px 20px 30px;
    border-top: 1px solid var(--google-light-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-about {
    flex: 1;
}

.footer-about h3 {
    margin-bottom: 20px;
    color: var(--google-dark-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-about h3 i {
    color: var(--google-blue);
}

.footer-about p {
    color: var(--google-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links h3 {
    margin-bottom: 20px;
    color: var(--google-dark-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--google-gray);
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--google-blue);
    gap: 12px;
}

.footer-links ul li a i {
    font-size: 12px;
    color: var(--google-blue);
}

.social-icons {
    display: flex;
    margin-top: 20px;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f3f4;
    border-radius: 50%;
    color: var(--google-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background-color: var(--google-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--google-light-gray);
    color: var(--google-gray);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p i {
    color: var(--google-red);
}

/* رسپانسیو */
@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }

    .desktop-menu {
        display: block;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .contact-section {
        padding: 30px;
    }

    .member-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .stat-number {
        font-size: 32px;
    }
}
	/* دکمه اسکرول به بالا */
.back-to-top {
    position: fixed;
    bottom: 25px; /* فاصله از پایین */
    left: 25px; /* فاصله از سمت چپ */
    z-index: 99;
    width: 50px;
    height: 50px;
    background-color: var(--google-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.5s ease-in-out;
    box-shadow: var(--card-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #1967d2;
    box-shadow: var(--card-hover-shadow);
}

.back-to-top i {
    font-size: 24px;
}	
		
        /* فوتر */
        footer {
            background-color: white;
            padding: 60px 20px 30px;
            border-top: 1px solid var(--google-light-gray);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-top {
            display: flex;
            flex-direction: column;
            margin-bottom: 40px;
            gap: 30px;
        }
        
        .footer-about {
            flex: 1;
        }
        
        .footer-about h3 {
            margin-bottom: 20px;
            color: var(--google-dark-gray);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-about h3 i {
            color: var(--google-blue);
        }
        
        .footer-about p {
            color: var(--google-gray);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-links h3 {
            margin-bottom: 20px;
            color: var(--google-dark-gray);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links h3 i {
            color: var(--google-green);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            text-decoration: none;
            color: var(--google-gray);
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links ul li a:hover {
            color: var(--google-blue);
            gap: 12px;
        }
        
        .footer-links ul li a i {
            font-size: 12px;
            color: var(--google-blue);
        }
        
        .social-icons {
            display: flex;
            margin-top: 20px;
            gap: 12px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f1f3f4;
            border-radius: 50%;
            color: var(--google-gray);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }
        
        .social-icons a:hover {
            background-color: var(--google-blue);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--google-light-gray);
            color: var(--google-gray);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .footer-bottom p {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-bottom p i {
            color: var(--google-red);
        }
        
        /* رسپانسیو */
        @media (min-width: 768px) {
            .hamburger-menu {
                display: none;
            }
            
            .desktop-menu {
                display: block;
            }
            
            .hero h2 {
                font-size: 36px;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        @media (min-width: 1024px) {
            .hero h2 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .section-title {
                font-size: 28px;
            }
        }
   /* رسپانسیو */
        @media (min-width: 768px) {
            .hamburger-menu {
                display: none;
            }
            
            .desktop-menu {
                display: block;
            }
            
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        @media (min-width: 1024px) {
            .article-title {
                font-size: 36px;
            }
            
            .related-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .article-featured-image {
                height: 300px;
            }
            
            .article-meta {
                gap: 15px;
            }
            
            .meta-item {
                font-size: 13px;
            }
            
            .article-header {
                padding-top: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .article-featured-image {
                height: 250px;
            }
            
            .article-title {
                font-size: 24px;
                padding-top: 5px;
            }
            
            .article-body {
                padding: 20px;
            }
            
            .social-share {
                flex-wrap: wrap;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .article-header {
                padding-top: 10px;
            }
        }