﻿body {
    font-family: 'IRANSans' !important;
    background-color: #fcfcfc;
    color: #333;
}

:root {
    --primary-yellow: #ffc107;
    --primary-hover: #e0a800;
}

.navbar {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #555;
    margin: 0 12px;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-yellow);
    }

.btn-nav-yellow {
    background-color: var(--primary-yellow);
    color: #222;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 6px 16px;
    transition: background-color 0.2s;
}

    .btn-nav-yellow:hover {
        background-color: var(--primary-hover);
        color: #000;
    }

.btn-nav-outline {
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #555;
    font-size: 0.85rem;
    padding: 6px 16px;
    background: transparent;
    transition: background-color 0.2s, border-color 0.2s;
}

    .btn-nav-outline:hover {
        background-color: #f8f8f8;
        border-color: #ccc;
    }

 
 
.stats-strip {
    background: #fff;
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-bottom: -30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 5px;
}

    .stat-item .text-group {
        text-align: left;
        direction: ltr;
    }

        .stat-item .text-group .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-yellow);
            display: block;
            line-height: 1;
            text-align: center;
        }

        .stat-item .text-group .desc {
            font-size: 0.85rem;
            color: #555;
            margin-top: 4px;
            display: block;
            direction: rtl;
        }

    .stat-item .icon-box i {
        font-size: 2.2rem;
        color: var(--primary-yellow);
    }

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background-color: var(--primary-yellow);
        border-radius: 10px;
    }

.new-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.new-service-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .new-service-icon-wrap i {
        font-size: 2.5rem;
        color: #333;
        position: relative;
        z-index: 2;
    }

    .new-service-icon-wrap::after {
        content: '';
        position: absolute;
        bottom: 0px;
        right: -5px;
        width: 25px;
        height: 25px;
        background-color: var(--primary-yellow);
        border-radius: 50%;
        z-index: 1;
        opacity: 0.9;
    }

.new-service-card h6 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #222;
}

.new-service-card p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.new-service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

    .new-service-link i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

.new-service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffc107, #fff, #ffc107, #fff);
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: border-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.new-service-card:hover::before {
    opacity: 1;
}

.new-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

    .new-service-card:hover .new-service-link i {
        transform: translateX(-5px);
    }

    .new-service-card:hover .new-service-link {
        color: #d39e00;
    }

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.three-column-section {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.section-title-line {
    position: relative;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 12px;
}

    .section-title-line::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 3px;
        background-color: var(--primary-yellow);
        border-radius: 5px;
    }

.check-list-yellow {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .check-list-yellow li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 0.95rem;
    }

        .check-list-yellow li i {
            color: var(--primary-yellow);
            font-size: 1.2rem;
        }

.devices-cluster {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    padding-top: 20px;
}

.laptop-mockup {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.map-side-wrapper {
    text-align: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    margin: 20px 0;
}

.btn-map-action {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .btn-map-action:hover {
        background: #f8f8f8;
        border-color: #ccc;
    }
 
 
.news-section {
    background: #fafafa;
    padding: 30px 0;
}

.news-card-horizontal {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-card-horizontal:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

.news-img-right {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    height: 100%;
    min-height: 130px;
}

    .news-content h6 {
        font-weight: 800;
        font-size: 1rem;
        color: #222;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .news-content p {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 8px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.news-date {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

.news-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

    .news-link:hover {
        color: #d39e00;
    }

    .news-link i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .news-link:hover i {
        transform: translateX(-5px);
    }

.footer {
    background: #222;
    color: #aaa;
    padding: 50px 0 20px 0;
}

    .footer h5 {
        color: #fff;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 10px;
        }

            .footer ul li a {
                color: #aaa;
                text-decoration: none;
                transition: 0.3s;
            }

                .footer ul li a:hover {
                    color: var(--primary-yellow);
                }

@media (max-width: 992px) {
    .float-link {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-strip {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .news-card-horizontal {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 20px;
    }

    .news-img-right {
        width: 100%;
        height: 180px;
    }

    .news-content {
        width: 100%;
        min-height: auto;
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .laptop-mockup {
        max-width: 280px;
    }

    .devices-cluster {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .section-title-line::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title-line,
    .check-list-yellow li {
        text-align: center;
        justify-content: center;
    }

    .map-image {
        max-height: 200px;
    }
}
.page-header {
    padding: 120px 0 70px;
    background: linear-gradient(135deg,#1f2329,#2d333b);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,193,7,.08);
        border-radius: 50%;
        top: -220px;
        left: -120px;
    }

    .page-header::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(255,193,7,.06);
        border-radius: 50%;
        bottom: -120px;
        right: -80px;
    }

    .page-header .container {
        position: relative;
        z-index: 5;
    }

    .page-header h1 {
        font-size: 42px;
        font-weight: 800;
        margin: 20px 0;
    }

    .page-header p {
        max-width: 750px;
        color: #d8d8d8;
        line-height: 2;
    }

.breadcrumb-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

    .breadcrumb-box a {
        color: #ffc107;
        text-decoration: none;
    }

    .breadcrumb-box span {
        color: #fff;
    }

.inner-page {
    padding: 70px 0;
    min-height: 500px;
}



.inner-page {
    background: #f5f7fb;
    padding: 70px 0;
    min-height: 700px;
}

.content-wrapper {
    max-width: 980px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    border: 1px solid #ececec;
}

    .content-wrapper h1,
    .content-wrapper h2,
    .content-wrapper h3,
    .content-wrapper h4 {
        font-weight: 800;
        color: #1d2939;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .content-wrapper h2 {
        font-size: 30px;
    }

    .content-wrapper h3 {
        font-size: 24px;
    }

    .content-wrapper p {
        font-size: 17px;
        line-height: 2.3;
        color: #555;
        text-align: justify;
        margin-bottom: 22px;
    }

    .content-wrapper img {
        width: 100%;
        border-radius: 15px;
        margin: 30px 0;
    }

    .content-wrapper ul {
        padding: 0 20px 0 0;
        margin: 25px 0;
    }

    .content-wrapper li {
        line-height: 2.2;
        margin-bottom: 10px;
        color: #555;
    }

    .content-wrapper table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
    }

        .content-wrapper table th {
            background: #ffc107;
            color: #222;
            padding: 14px;
        }

        .content-wrapper table td {
            padding: 14px;
            border: 1px solid #ececec;
        }

    .content-wrapper blockquote {
        background: #fff9e6;
        border-right: 5px solid #ffc107;
        padding: 20px;
        border-radius: 10px;
        margin: 30px 0;
        color: #444;
        line-height: 2;
    }

    .content-wrapper a {
        color: #d39e00;
        text-decoration: none;
        font-weight: 700;
    }

        .content-wrapper a:hover {
            color: #000;
        }

    .content-wrapper hr {
        margin: 40px 0;
        border-color: #eee;
    }

@media(max-width:992px) {

    .content-wrapper {
        padding: 35px 25px;
        border-radius: 15px;
    }
}

@media(max-width:576px) {

    .inner-page {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 25px 18px;
    }

        .content-wrapper h2 {
            font-size: 24px;
        }

        .content-wrapper p {
            font-size: 15px;
            line-height: 2;
        }
}



.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .contact-card .icon {
        width: 75px;
        height: 75px;
        margin: auto auto 20px;
        background: #fff8e1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .contact-card .icon i {
            font-size: 30px;
            color: #ffc107;
        }

    .contact-card h5 {
        font-weight: 800;
        margin-bottom: 18px;
    }

    .contact-card a {
        display: block;
        color: #444;
        text-decoration: none;
        margin-bottom: 8px;
    }

    .contact-card p {
        color: #666;
        line-height: 2;
    }

.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    border: 1px solid #eee;
}

    .contact-box h3 {
        font-weight: 800;
        margin-bottom: 30px;
    }

    .contact-box .form-control {
        height: 55px;
        border-radius: 12px;
        margin-bottom: 18px;
        border: 1px solid #ddd;
    }

    .contact-box textarea.form-control {
        height: 170px;
    }

    .contact-box .form-control:focus {
        border-color: #ffc107;
        box-shadow: none;
    }

.default-btn-one {
    background: #ffc107;
    color: #222;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

    .default-btn-one:hover {
        background: #e8af00;
    }

.map-box {
    height: 100%;
    min-height: 620px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


.news-widget {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.widget-title {
    background: #ffc107;
    color: #222;
    padding: 16px 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

    .widget-title i {
        font-size: 20px;
    }

.widget-body {
    padding: 25px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: #f8f9fa;
    color: #555;
    padding: 10px 16px;
    border-radius: 30px;
    transition: .3s;
    border: 1px solid #ececec;
    font-size: 14px;
}

    .tag-item i {
        color: #ffc107;
    }

    .tag-item:hover {
        background: #ffc107;
        color: #222;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255,193,7,.35);
    }

        .tag-item:hover i {
            color: #222;
        }

/* استایل فایل‌های پیوست */

.widget-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-body li {
    margin-bottom: 12px;
}

    .widget-body li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border: 1px solid #ececec;
        border-radius: 12px;
        color: #444;
        text-decoration: none;
        transition: .3s;
    }

        .widget-body li a::before {
            content: "\f15b";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #ffc107;
            font-size: 20px;
        }

        .widget-body li a:hover {
            background: #fff9e6;
            border-color: #ffc107;
            transform: translateX(-5px);
        }


.news-details-section {
    padding: 50px 0;
}

.news-content-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.news-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #222;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.meta-item {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meta-item i {
        color: #ffc107;
    }

.news-body {
    line-height: 2.3;
    color: #555;
    font-size: 17px;
}

    .news-body img {
        width: 100%;
        border-radius: 15px;
        margin: 30px 0;
    }

    .news-body table {
        width: 100%;
        margin: 25px 0;
    }

    .news-body p {
        line-height: 2.3;
        margin-bottom: 20px;
    }

.news-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.btn-news {
    background: #ffc107;
    color: #222;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .btn-news:hover {
        background: #e8af00;
        color: #222;
    }

.news-widget {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.widget-title {
    background: #ffc107;
    padding: 16px 22px;
    color: #222;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-body {
    padding: 25px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #555;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .tag-item:hover {
        background: #ffc107;
        color: #222;
    }

    .tag-item i {
        color: #ffc107;
    }

    .tag-item:hover i {
        color: #222;
    }

.widget-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-body li {
    margin-bottom: 12px;
}

    .widget-body li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        border: 1px solid #eee;
        border-radius: 10px;
        text-decoration: none;
        color: #555;
        transition: .3s;
    }

        .widget-body li a::before {
            content: "\f15b";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #ffc107;
        }

        .widget-body li a:hover {
            background: #fff8e1;
            border-color: #ffc107;
        }

@media(max-width:992px) {

    .news-content-card {
        padding: 25px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn-news {
        text-align: center;
    }
}