/* Reset Styles */

        body {
            line-height: 1.8;
            color: #333;
            background: #d5e0e8;
        }


        header {
            background: #fff;
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-title {
            font-size: 1.8rem;
            color: #2c3e50;
        }

        .site-title span {
            color: #e74c3c;
        }

/* استایل برای عنوان سایت */
.site-title img {
    display: block; /* اطمینان از اینکه تصویر به درستی نمایش داده شود */
}

/* استایل برای لینک‌های ناوبری */
.nav-links nav {
    display: flex; /* استفاده از flexbox برای چیدمان لینک‌ها */
    gap: 20px; /* فاصله بین لینک‌ها */
}

.nav-links nav a {
    text-decoration: none; /* حذف زیرخط لینک‌ها */
    color: #333; /* رنگ متن لینک‌ها */
    font-weight: bold; /* وزن فونت لینک‌ها */
}

.nav-links nav a:hover {
    color: #007bff; /* تغییر رنگ لینک‌ها هنگام hover */
}

        .breadcrumb {
            background: #f8f9fa;
            padding: 1rem;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }


        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

     p {font-size:17px;text-align:justify;}
     a {color:#7E21D4;;text-decoration: none;}

         img {
              max-width: 100%;
              height: auto;
              border-radius: 10px;
              margin:10px 0;

         }

        .hero-section {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(45deg, #3498db, #2c3e50);
            color: #fff;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }


        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pricing-card {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .pricing-card h2 {
            color: #e74c3c;
            margin-bottom: 1rem;
        }

  .pricing-card strong {
            color: #e74c3c;
            margin-bottom: 1rem;
           font-size: 18px;
        }


        .seo-content {
            background: #fff;
            padding: 1rem;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .seo-content h2 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .faq-section {
            margin: 3rem 0;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }


        footer {
            background: #2c3e50;
            color: #fff;
            padding: 3rem 1rem;
            margin-top: 3rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.5rem;
            }
        }

:root {
    --primary-red: #e63946;
    --dark-red: #d62839;
    --pure-white: #ffffff;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.floating-btn {
    position: fixed;
    bottom: 70px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-red);
    color: var(--pure-white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Yekan', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.floating-btn:hover .icon {
    transform: translateY(-3px);
}

/* افکت پالس */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(230, 57, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* حالت موبایل */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 90px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    
    .floating-btn .icon {
        font-size: 1.4rem;
        margin: 0;
    }
}