﻿/* بخش اصلی سرویس‌ها */
.service-section {
    background: linear-gradient(180deg, #fdfdfd, #f7f9fc);
    padding: 60px 20px;
    text-align: center
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* عنوان با border */
.section-title {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--color-primary);
    color: var(--color-text);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}


.page-title {
    font-size: var(--text-2xl);
    font-weight: bold;
    background-color: var(--color-bg);
    border-color: var(--color-primary-dark) !important;
    color: var(--color-primary-dark);
}

.textJustify{
    text-align:justify ;
}

body.loading {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body:not(.loading) {
    opacity: 1;
}

.footer-powered-by {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-inline: var(--space-3);
    font-size: var(--text-xs);
    line-height: 1.4;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

.footer-powered-by a {
    color: inherit;
    text-decoration: none;
}

.footer-powered-by a:hover,
.footer-powered-by a:focus {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .service-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .footer-powered-by {
        padding-inline: var(--space-4);
    }
}

