:root {
    --gold-main: #d4a017;
    --gold-light: #efbe0b;
    --gold-dark: #c78b1e;
    --gray-dark: #3d3d3d;
    --gray-mid: #666;
    --gray-light: #868686;
    --bg-light: #f7f8fa;
    --bg-section: #ecf0fd;
    --bg-soft: #eeeeee;
    --white: #ffffff;
    --border: #eee;
}

.number {
    font-family: yekanf;
}

body {
    background-color: var(--bg-light);
}

.container {
    max-width: 1400px;
}


/* سرویس های زیر اسلایدر*/

.service-categories {
    position: absolute;
    width: 96%; /* کمی فاصله از طرفین برای تنفس بیشتر */
    left: 2%;
    bottom: -60px; /* تنظیم موقعیت برای هم‌پوشانی بهتر */
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 15px; /* ایجاد فاصله بین کارت‌ها */
}

    .service-categories .card {
        border: none;
        background: rgba(45, 45, 45, 0.85); /* حالت شیشه‌ای تیره */
        backdrop-filter: blur(10px); /* مات کردن پشت کارت */
        border-radius: 12px; /* لبه‌های نرم */
        padding: 25px 15px;
        color: #ffffff;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
        border-top: 3px solid transparent; /* جلوگیری از پرش هنگام hover */
        will-change: transform;
    }

        /* آیکون‌ها */
        .service-categories .card i,
        .service-categories .card img {
            font-size: 30px;
            margin-bottom: 15px;
            color: #d4af37; /* رنگ طلایی برای آیکون */
        }

    .service-categories .card-title {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 10px;
        color: #d4af37; /* تیتر طلایی */
    }

    .service-categories .card-title-two {
        font-size: 13px;
        line-height: 1.8;
        color: #e0e0e0;
        font-weight: 300;
    }

    .service-categories .card:hover {
        transform: translateY(-8px); /* کمی کمتر، طبیعی‌تر */
        background: rgba(55, 55, 55, 0.95);
        box-shadow: 0 18px 45px rgba(212, 175, 55, 0.18);
        border-top-color: #ffdb70;
    }
    .service-categories .card-desc {
        font-size: 13px;
        line-height: 1.9;
        margin: 0;
        color: #e0e0e0;
    }
    .service-categories .card {
        min-height: 250px; /* بسته به طراحی شما 230-280 تست کنید */
    }
        .service-categories .card .fa {
            width: 54px;
            height: 54px;
            line-height: 54px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #d4af37;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .service-categories .card:hover .fa {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.28);
            color: #ffdb70;
        }



/* بهینه‌سازی برای موبایل */
@media (max-width: 768px) {
    .service-categories {
        position: relative;
        bottom: 0;
        width: 100%;
        left: 0;
        flex-direction: column;
        padding: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .service-categories .card {
        transition: none;
    }

        .service-categories .card:hover {
            transform: none;
        }
}

 
/**/
.aboutV2 {
    background: #f6f7f9;
}

.aboutV2__textCard {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(0,0,0,.08);
    padding: 42px 44px;
    height: 100%;
}

.aboutV2__title {
    font-weight: 900;
    color: #1b1b1b;
}

.aboutV2__p {
    color: #616b74;
    line-height: 2;
    text-align: justify;
}

/* قاب تصویر + کنترل فرم */
.aboutV2__imgCard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.12);
    min-height: 380px; /* ارتفاع منطقی، نه بی‌نهایت */
    background: #ddd;
    border: 1px solid rgba(0,0,0,.06);
}

    .aboutV2__imgCard img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* مهم‌ترین بخش برای خوش‌فرم شدن */
        display: block;
        transform: scale(1.03);
    }

    /* افکت اتصال: گرادیان نرم روی لبه‌ی نزدیک متن */
    .aboutV2__imgCard::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 70%, rgba(255,255,255,.70) 100% );
        pointer-events: none;
    }

/* دکمه طلایی */
.btn-gold {
    background: #b7924a;
    color: #fff;
    border: 1px solid rgba(0,0,0,.05);
}

    .btn-gold:hover {
        background: #9f7f3f;
        color: #fff;
    }

/* موبایل */
@media (max-width: 991.98px) {
    .aboutV2__imgCard {
        min-height: 240px;
    }

    .aboutV2__textCard {
        padding: 26px 22px;
    }

    .aboutV2__imgCard::after {
        background: linear-gradient( to bottom, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 55% );
    }
}



    .service-categories a:hover {
        text-decoration: none;
    }

.service-card {
    background: var(--gray-dark);
    border: 1px solid var(--white);
    color: var(--white);
}

    .service-card:hover {
        background: var(--white);
        box-shadow: 10px 9px 9px 4px rgba(46, 61, 73, 0.2);
        color: var(--gold-dark);
    }

.about {
    margin-top: 100px;
}

    .about .container {
        max-width: 772px;
    }

        .about .container .lead {
            font-size: 16px;
        }


.layout {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 100%;
    z-index: 3;
}

.top-header {
    background-color: var(--bg-section);
    color: var(--gray-light);
    font-size: 13px;
}

.contact-top {
    margin-top: 15px;
}

.icon-box-header {
    color: var(--gray-light);
    font-size: 13px;
    display: flex;
    text-align: left;
}

    .icon-box-header .description {
        font-size: 13px;
        float: right;
        margin: 0;
    }

    .icon-box-header .title {
        font-size: 13px;
        margin: 0;
        width: 100%;
    }

    .icon-box-header .icon {
        float: left;
        border: 1px solid var(--border);
        padding: 15px;
    }

    .icon-box-header .desc {
        font-size: 13px;
        float: right;
        margin: 0;
    }


.header .header-parent {
    background-image: url("../images/HeaderBG.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 2px;
    margin-bottom: 10px;
}

.header .logo {
    display: flex;
}

    .header .logo h1 {
        padding: 5px;
        border: 0;
        margin: 0;
        font-size: medium;
        color: var(--gold-dark);
        align-self: center;
    }

.header .page-logo img {
    max-width: 140px;
}

@media (max-width: 768px) {
    .header .page-logo img {
        max-width: 90px;
    }
}

.header .page-title h1 {
    margin-top: 15px;
    margin-bottom: 0;
}

.header .page-title .first-title {
    font-size: 18px;
    color: var(--gold-main);
    text-decoration: none;
}

.header .page-title .second-title {
    font-size: 14px;
    color: var(--gray-mid);
    margin-right: 15px;
    text-decoration: none;
}

.header .phone-number {
    margin-bottom: 12px;
}

    .header .phone-number p {
        color: var(--gray-dark);
        font-size: 16px;
        display: inline-block;
        margin-bottom: 0;
    }

    .header .phone-number i {
        font-size: 18px;
        background-color: var(--gray-dark);
        border-radius: 50%;
        width: 26px;
        height: 26px;
        text-align: center;
        line-height: 1.8rem;
        color: var(--white);
        display: inline-block;
        margin-right: 4px;
    }

.header .social-networks {
    list-style: none;
    display: flex;
    padding-right: 0;
}

    .header .social-networks a {
        text-decoration: none;
        font-size: 18px;
        align-items: center;
        margin-right: 10px;
    }

        .header .social-networks a:hover {
            transform: rotateY(360deg);
        }

        .header .social-networks a i,
        .header .social-networks a img {
            transition-duration: 0.55s;
        }

            .header .social-networks a i:hover,
            .header .social-networks a img:hover {
                transform: rotateY(360deg);
            }


    .header .social-networks .whatsapp {
        color: #296d19;
    }

    .header .social-networks .linkedin {
        color: #1279BF;
    }

    .header .social-networks .instagram {
        color: #6C3696;
    }

    .header .social-networks .telegram {
        color: #1EB8EA;
    }

.header .page-language {
    padding: 0 30px;
    width: 120px;
    position: relative;
    height: 22px;
    line-height: 1.5rem;
}

    .header .page-language .skew-bg {
        background-color: var(--gray-dark);
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 0;
    }

    .header .page-language a {
        position: relative;
        z-index: 1;
        color: var(--gray-light);
        font-size: 15px;
        text-decoration: none;
        transition-duration: 0.3s;
        margin: 0 5px;
    }

        .header .page-language a:hover {
            color: var(--white);
        }

.menu {
    list-style: none;
    padding-right: 0;
    background-color: var(--gray-dark);
    position: relative;
    display: flex; /* برای اینکه لینک و آیکن کنار هم و ارتفاع درست بگیرند */
    align-items: center;
}

    .menu .submenu {
        position: absolute;
        top: calc(100% + 2px); /* خیلی نزدیک زیر آیتم والد */
        right: 0;
        width: 190px;
        background-color: var(--gray-mid);
        list-style: none;
        padding: 6px 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
        z-index: 999;
    }

    .menu .submenu::before {
        content: "";
        position: absolute;
        top: -10px;
        right: 0;
        left: 0;
        height: 10px; /* پل */
    }

    .menu > .item > a {
        display: block;
        padding: 12px 12px; /* کمی بزرگتر برای راحتی */
        line-height: 1.2;
    }

    .menu .item:hover > .submenu,
    .menu .item:focus-within > .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu .item {
        margin: 0 3px;
        transition-duration: 0.4s;
        background-color: rgba(255, 255, 255, 0);
        position: relative;
        display: flex; /* برای اینکه لینک و آیکن کنار هم و ارتفاع درست بگیرند */
        align-items: center;
    }

        .menu .item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu .item a {
            text-decoration: none;
            padding: 11px 10px;
            color: var(--white);
            font-size: 14px;
            transition-duration: 0.4s;
            display: inline-block;
        }

            .menu .item a:hover {
                color: var(--gold-light);
            }

        .menu .item i {
            color: var(--white);
            font-size: 12px;
            margin-left: 5px;
            margin-right: -5px;
        }




.slider-category-section {
    background-color: var(--bg-light);
    padding: 8px 0;
}

.original-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

    .original-slider .slider-item img {
        max-height: 65vh;
    }

    /* .original-slider .owl-dots{
    margin-top: -15px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
}
.original-slider .owl-dots button{
    background-color: rgba(0, 0, 0, 0.2);
    height: 10px;
    width: 20%;
    color: var(--white);
    font-size: 13px;
    transition-duration: 0.3s;
    outline: none;
    border-bottom: 2px solid #ccc;
}
.original-slider .owl-dots .active{
    background-color: var(--white);
    color: #222;
    border-bottom: 2px solid #aaa;
}
.original-slider .owl-dots span{
    display: none;
} */

    .original-slider .owl-nav button {
        color: rgba(255, 255, 255, 0.63);
        font-size: 40px;
        position: absolute;
        top: 41%;
        outline: none;
        transition-duration: 0.3s;
        visibility: hidden;
        opacity: 0;
        width: 35px;
    }

    .original-slider:hover .owl-nav button {
        visibility: visible;
        opacity: 1;
    }

    .original-slider .owl-nav .owl-prev {
        right: 30px;
    }

    .original-slider .owl-nav .owl-next {
        left: 30px;
    }


/* FontAwesome for working BootSnippet :> */
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: var(--white);
    background-color: var(--gold-main);
    border-color: var(--gold-main);
}


section .section-title {
    text-align: center;
    color: var(--gold-main);
    margin-bottom: 50px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: var(--white);
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

    .frontside .card,
    .backside .card {
        min-height: 312px;
    }

        .backside .card a {
            font-size: 18px;
            color: var(--blue-main) !important;
        }

        .frontside .card .card-title,
        .backside .card .card-title {
            color: var(--blue-main) !important;
        }

        .frontside .card .card-body img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
        }


.articles {
    background-color: var(--bg-section);
    padding: 35px 0;
}

    .articles .card-text {
        font-size: 13px;
        color: var(--gray-mid);
        text-align: justify;
        overflow: auto;
        line-height: 2.1;
        padding: 10px;
    }

    .articles .more-link {
        z-index: 3;
        text-decoration: none;
        transition-duration: 0.3s;
        background-color: var(--blue-main);
        color: var(--white);
        font-size: 12px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        height: 22px;
        line-height: 1.3rem;
        width: 110px;
        display: inline-block;
        text-align: center;
    }

    .articles .title-line {
        display: flex;
        align-items: center;
        margin-bottom: 35px;
    }

    .articles h3 {
        margin: 0 30px;
    }

    .articles .title-line .line {
        flex-grow: 1;
        background-color: var(--black);
        height: 1px;
    }

.art-card {
    position: relative;
    background-color: var(--white);
    padding: 0;
    padding-bottom: 16px;
    margin-bottom: 15px;
    transition-duration: 0.6s;
}

    .art-card:hover {
        position: relative;
        padding: 0;
        padding-bottom: 16px;
        margin-bottom: 15px;
        transition-duration: 0.6s;
        box-shadow: 1px 7px 20px 0px;
    }

    .art-card .card-img img {
        width: 100%;
        height: 200px;
    }

    .art-card .card-title {
        color: var(--gray-dark);
        font-weight: 600;
        font-size: 15px;
        display: block;
        text-align: center;
        margin-top: 10px;
        text-decoration: none;
        transition-duration: 0.3s;
    }

        .art-card .card-title:hover {
            color: var(--gold-main);
        }

.articles .archive {
    background-color: var(--blue-main);
    color: var(--white);
    font-size: 14px;
    height: 26px;
    border-radius: 4px;
    display: block;
    width: 240px;
    margin-right: auto;
    position: relative;
    text-decoration: none;
    transition-duration: 0.3s;
    padding-right: 35px;
    padding-left: 10px;
    line-height: 1.6rem;
    margin-top: 25px;
}

    .articles .archive:hover {
        color: var(--gold-main);
    }

    .articles .archive i {
        background-color: var(--blue-dark);
        font-size: 20px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        line-height: 2.6rem;
        text-align: center;
        position: absolute;
        top: -7px;
        right: -10px;
    }

.product-slider {
    background-color: var(--white);
    padding: 25px 35px;
}

.product-card {
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    margin: 10px 3px;
}

    .product-card .card-img {
        position: relative;
        overflow: hidden;
    }

        .product-card .card-img img {
            width: 100%;
            height: 200px;
            transition-duration: 0.4s;
        }

    .product-card:hover .card-img img {
        transform: scale(1.1);
    }

    .product-card .card-img .img-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.0);
        visibility: hidden;
        opacity: 0;
        transition-duration: 0.3s;
    }

    .product-card:hover .img-overlay {
        background-color: rgba(0, 0, 0, 0.6);
        visibility: visible;
        opacity: 1;
    }

    .product-card .card-img .img-overlay a {
        width: 160px;
        height: 35px;
        font-size: 14px;
        color: var(--white);
        background-color: var(--pink-main);
        border-radius: 5px;
        text-decoration: none;
        transition-duration: 0.4s;
        overflow: hidden;
        line-height: 2.1rem;
        margin-bottom: 80px;
    }

    .product-card:hover .card-img .img-overlay a {
        margin-bottom: 0;
    }

    .product-card .card-img .img-overlay a:hover {
        background-color: var(--pink-light);
    }

    .product-card .card-img .img-overlay a i {
        background-color: var(--pink-light);
        width: 35px;
        height: 100%;
        vertical-align: middle;
        font-size: 20px;
        line-height: 2.1rem;
        text-align: center;
        margin-left: 8px;
    }

    .product-card .card-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-mid);
        text-decoration: none;
        transition-duration: 0.3s;
        display: block;
        text-align: center;
        margin: 5px;
    }

        .product-card .card-title:hover {
            color: var(--red);
        }

    .product-card .card-body {
        padding: 0;
    }

    .product-card .product-price {
        background-color: var(--bg-card);
        text-align: center;
        line-height: 1.4rem;
        font-weight: 600;
    }

        .product-card .product-price .text {
            color: var(--gray-mid);
            font-size: 13px;
            margin-bottom: 0;
        }

        .product-card .product-price .discount {
            font-size: 12px;
            color: var(--red);
            margin-bottom: 0;
            text-decoration: line-through;
        }

        .product-card .product-price .price {
            font-size: 13px;
            color: var(--green);
            margin-bottom: 0;
        }

        .product-card .product-price .number {
            font-size: 14px;
        }

.product-slider .owl-nav.disabled {
    display: block !important;
}

.product-slider .owl-nav button {
    color: var(--gray-dark);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    text-align: center;
    bottom: 45%;
    border-radius: 50%;
    outline: none;
    width: 40px;
    height: 40px;
    transition-duration: 0.4s;
}

    .product-slider .owl-nav button:hover {
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
    }

    .product-slider .owl-nav button.owl-prev {
        right: -12px;
        font-size: 40px !important;
        background-color: var(--white);
        line-height: 2.6rem;
    }

    .product-slider .owl-nav button.owl-next {
        left: -12px;
        font-size: 40px !important;
        background-color: var(--white);
        line-height: 2.6rem;
    }

/* ===== Collaboration Network (Different Look) ===== */
.collab-network {
    background: #20252b;
    position: relative;
    overflow: hidden;
}

    /* gold glow background */
    .collab-network:before,
    .collab-network:after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        filter: blur(60px);
        opacity: .35;
        background: radial-gradient(circle, rgba(212,175,55,.55), rgba(212,175,55,0) 60%);
        pointer-events: none;
    }

    .collab-network:before {
        top: -220px;
        right: -180px;
    }

    .collab-network:after {
        bottom: -240px;
        left: -200px;
        opacity: .25;
    }

.cn-wrap {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 30px 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    backdrop-filter: blur(6px);
}

.cn-title {
    color: #fff;
    font-weight: 900;
    font-size: 1.75rem;
    margin: 0;
}

.cn-lead {
    color: rgba(255,255,255,.72);
    line-height: 2;
    margin: 0;
    text-align: justify;
}

.cn-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cn-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .92rem;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,162,39,.22);
}

    .cn-badge i {
        color: #c9a227;
    }

/* grid cards */
.cn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cn-card {
    border-radius: 18px;
    padding: 16px 16px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
    transition: all .25s ease;
    height: 100%;
}

    .cn-card:hover {
        transform: translateY(-4px);
        border-color: rgba(201,162,39,.35);
        box-shadow: 0 22px 65px rgba(0,0,0,.35);
    }

.cn-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cn-ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    background: linear-gradient(135deg, rgba(201,162,39,.16), rgba(201,162,39,.04));
    border: 1px solid rgba(201,162,39,.25);
}

    .cn-ico i {
        font-size: 18px;
        line-height: 1;
    }

.cn-card-title {
    margin: 0;
    font-size: .98rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.7;
}

.cn-card-text {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 2;
    font-size: .93rem;
    text-align: justify;
}

/* responsive */
@media (max-width: 991.98px) {
    .cn-wrap {
        padding: 26px 18px;
    }

    .cn-grid {
        grid-template-columns: 1fr;
    }
}

/*
.partners-section {
    background: #f7f7f7;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1b1b1b;
}

.section-subtitle {
    color: #66707a;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
}

.partner-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
    transition: all .25s ease;
}

    .partner-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 55px rgba(0,0,0,.09);
    }

.partner-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.partner-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
    border: 1px solid rgba(212,175,55,.35);
    color: #c9a227;
    flex-shrink: 0;
}

    .partner-icon i {
        font-size: 18px;
        line-height: 1;
        display: block;
    }

.partner-title {
    font-size: .95rem;
    font-weight: 800;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.8;
}

.partner-text {
    color: #4f5963;
    line-height: 2;
    margin: 0;
    text-align: justify;
    font-size: .95rem;
}*/


/*
.our-clients {
    background-color: var(--bg-section);
    padding: 35px 0;
}

    .our-clients .title-row {
        text-align: center;
        margin-bottom: 25px;
    }

        .our-clients .title-row .title-bottom {
            display: flex;
            align-items: center;
            width: 160px;
            margin: 10px auto;
        }

        .our-clients .title-row .line {
            flex-grow: 1;
            background-color: var(--red);
            height: 1px;
        }

        .our-clients .title-row i {
            font-size: 7px;
            color: var(--red);
            margin: 1px;
        }*/

.clients-slider .slider-item {
    padding: 10px 45px;
}

.clients-slider .owl-nav.disabled {
    display: block !important;
}

.clients-slider .owl-nav button {
    color: var(--gray-dark);
    position: absolute;
    text-align: center;
    bottom: 20px;
    outline: none;
    width: 40px;
    height: 40px;
    transition-duration: 0.4s;
}

    .clients-slider .owl-nav button.owl-prev {
        right: -12px;
        font-size: 40px !important;
    }

    .clients-slider .owl-nav button.owl-next {
        left: -12px;
        font-size: 40px !important;
    }

.footer {
    /*background: var(--footer-bg) url("../images/Footer-Background-Image.png");*/
    background:  url("../images/Footer-Background-Image.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 25px;
}

    .footer h5 {
        color: var(--white);
        border-bottom: 1px solid var(--white);
        padding-bottom: 14px;
    }

    .footer .my-list {
        list-style: none;
        padding: 0;
        margin-bottom: 0;
    }

        .footer .my-list .item {
            height: 30px;
            line-height: 3.2rem;
        }

        .footer .my-list a {
            color: var(--white);
            font-size: 15px;
            text-decoration: none;
            transition-duration: 0.3s;
        }

            .footer .my-list a:hover {
                color: var(--blue-light);
            }

            .footer .my-list a i {
                margin-left: 5px;
                vertical-align: middle;
                font-size: 7px;
            }

    .footer .contact-list {
        list-style: none;
        padding: 0;
        margin-bottom: 0;
    }

        .footer .contact-list .item {
            color: var(--gray-light);
            background-color: var(--footer-item-bg);
            font-size: 13px;
            margin: 4px 0;
            line-height: 2.2rem;
            align-items: center;
            padding: 0;
            padding-left: 5px;
        }

            .footer .contact-list .item i {
                width: 35px;
                color: var(--white);
                font-size: 20px;
                border-left: 1px solid var(--gray-dark);
                text-align: center;
                height: 37px;
                margin-left: 10px;
                line-height: 2.1rem;
            }

    .footer .news-card {
        display: flex;
        margin: 4px;
        align-items: center;
        color: var(--white);
        font-size: 14px;
    }

        .footer .news-card .card-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-left: 6px;
        }

            .footer .news-card .card-img img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }

        .footer .news-card .card-title {
            color: var(--white);
            font-size: 13px;
            text-decoration: none;
            transition-duration: 0.3s;
        }

            .footer .news-card .card-title:hover {
                color: var(--blue-light);
            }

.copyright {
    border-top: 1px solid rgba(170, 170, 170, 0.5);
    padding: 5px 0;
    background-color: var(--footer-bg);
}

    .copyright p {
        color: var(--gray-light);
        font-size: 13px;
        margin-bottom: 0;
    }

@media (max-width: 575px) {
    .clients-slider .slider-item {
        padding: 10px 120px;
    }

    .footer .news-card .card-title {
        width: 300px;
    }
}

@media (min-width: 576px) {
    .services-card-parent {
        width: 238px;
    }

        .services-card-parent .card-effect {
            right: 34px;
        }

    .services-card .more-link {
        right: 70px;
    }

    .services-card svg {
        right: 59px;
    }
}

@media (max-width: 767px) {
    .header .page-title h1 {
        text-align: center;
    }

    .header .page-title .second-title {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .header .page-logo {
        margin-left: 25px;
    }

    .header .page-language .skew-bg {
        transform: skewX(-30deg);
    }

    /* .main .original-slider .owl-dots{
        margin-top: 0;
    }
    .main .original-slider .owl-dots button{
        height: 40px;
    }
    .main .original-slider .owl-dots span{
        display: inline-block;
    } */
    .services-card-parent {
        width: 326px;
    }

        .services-card-parent .card-effect {
            right: 78px;
        }

    .services-card .more-link {
        right: 114px;
    }

    .services-card svg {
        right: 103px;
    }
}

@media (max-width: 991px) {
    .header .menu {
        position: fixed;
        top: 0;
        right: -251px;
        background-color: var(--gray-mid);
        flex-direction: column;
        z-index: 10;
        width: 250px;
        border-left: 2px solid var(--gray-mid);
        border-bottom: 2px solid var(--gray-mid);
        padding-left: 0;
        border-bottom-left-radius: 20px;
        visibility: hidden;
        opacity: 0;
        transition-duration: 0.5s;
    }

        .header .menu .item {
            margin: 0;
            margin-right: 3px;
        }

            .header .menu .item > a {
                color: var(--white);
                border-bottom: 1px solid var(--gray-mid);
                display: block;
            }

            .header .menu .item:last-child > a {
                border-bottom: 0;
            }

        .header .menu .active {
            background-color: var(--blue-main);
        }

            .header .menu .active a {
                color: var(--white);
            }

        .header .menu .item > a:hover {
            color: var(--gold-dark);
        }

        .header .menu .active a:hover {
            color: var(--gold-main);
        }
        .header .menu .submenu {
            background-color: var(--gray-light);
            display: none;
            padding-right: 15px;
        }

        .header .menu .item.open > .submenu {
            display: block;
        }


        .header .menu .item > i {
            display: inline-block;
            float: left;
            margin-left: 10px;
            cursor: pointer;
        }

        .header .menu .skew-menu {
            display: none;
        }

    .header .menu-btn {
        position: relative;
        background-color: var(--bg-light);
        padding: 7px 15px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        margin-left: 40px;
    }

    .menu-btn .skew-menu {
        position: absolute;
        left: -25px;
        top: 0;
        height: 44px;
        background-color: var(--blue-main);
        width: 40px;
        transform: skewX(30deg);
    }

    .header .menu-btn .line {
        display: inline-block;
        width: 33px;
        height: 4px;
        background-color: var(--gray-dark);
        margin: 3px 0;
        transition-duration: 0.4s;
    }

    .header .menu-btn:hover .one,
    .header .menu-btn:hover .three {
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .header .menu .menu-btn {
        display: none;
    }

    .original-slider {
        margin-bottom: 0;
    }

        .original-slider .owl-dots {
            margin-top: -15px;
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            display: block;
        }

    .services-card-parent {
        width: 208px;
    }

        .services-card-parent .card-effect {
            right: 19px;
        }

    .services-card .more-link {
        right: 55px;
    }

    .services-card svg {
        right: 44px;
    }

    .last-project h3 {
        width: 150px;
        margin: 45px auto;
    }

    .introduction-text {
        padding-left: 30px;
    }

    .introduction .continue {
        margin-left: 25px;
    }
}

@media (max-width: 1199px) {
    .category-list .item {
        position: relative;
    }

    .category-list .open-collection {
        display: flex;
        align-items: center;
        position: absolute;
        cursor: pointer;
        top: 10px;
        left: 10px;
    }

        .category-list .open-collection .fa-circle {
            font-size: 3px;
            width: 5px;
            display: inline-block;
            color: var(--gray-light);
            transition-duration: 0.3s;
        }

        .category-list .open-collection:hover .fa-circle {
            color: var(--gold-main);
        }

        .category-list .open-collection .fa-chevron-down {
            font-size: 12px;
            width: 17px;
            color: var(--gray-mid);
            transition-duration: 0.3s;
        }

        .category-list .open-collection:hover .fa-chevron-down {
            color: var(--gray-mid);
        }

    .category-list .collection {
        padding: 6px 5px;
        display: none;
    }

    .category-list .collection-list {
        list-style: none;
        margin-bottom: 15px;
        padding: 0;
    }

        .category-list .collection-list .header-list {
            color: var(--gray-mid);
            font-size: 11px;
            margin-bottom: 1px;
            margin-right: 10px;
        }

        .category-list .collection-list li {
            line-height: 1.4rem;
        }

            .category-list .collection-list li a {
                margin-right: 15px;
            }

    .category-list .collection .category-img {
        display: none;
    }
}

@media (min-width: 1200px) {
    .category-list {
        min-height: 260px;
        max-height: 260px;
    }

        .category-list .open-collection {
            display: none;
        }

        .category-list .collection {
            position: absolute;
            right: 98%;
            top: 0;
            background-color: var(--white);
            border-radius: 3px;
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
            width: 840px;
            z-index: 3;
            padding: 6px 5px;
            visibility: hidden;
            opacity: 0;
        }

        .category-list .item:hover .collection {
            visibility: visible;
            opacity: 1;
        }

        .category-list .collection-list {
            list-style: none;
            margin-bottom: 15px;
            padding: 0;
        }

            .category-list .collection-list .header-list {
                color: var(--gray-mid);
                font-size: 11px;
                margin-bottom: 6px;
                margin-right: 10px;
            }

            .category-list .collection-list li {
                line-height: 1.4rem;
            }

        .category-list .collection .category-img {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 200px;
        }

    .services-card-parent {
        width: 254px;
    }

        .services-card-parent .card-effect {
            right: 42px;
        }

    .services-card .more-link {
        right: 78px;
    }

    .services-card svg {
        right: 67px;
    }
}
/*استایل های صفحه تماس با ما*/
.white-bg {
    background-color: var(--white);
}

.contact-us-main {
    padding: 15px 0;
}

    .contact-us-main h1 {
        font-size: 23px;
        padding-bottom: 15px;
        color: var(--blue-main);
        border-bottom: 1px solid var(--bg-section);
    }

    .contact-us-main .propagation-date {
        color: var(--gray-mid);
        font-size: 12px;
        display: flex;
        align-items: center;
    }

        .contact-us-main .propagation-date p {
            margin: 0 5px;
        }

    .contact-us-main .text {
        font-size: 13px;
        color: var(--gray-mid);
        margin-bottom: 0;
    }

    .contact-us-main .contact-form {
        border-top: 1px solid var(--bg-section);
        padding-top: 15px;
        margin-top: 15px;
    }

        .contact-us-main .contact-form .form-label {
            font-size: 14px;
            color: var(--gray-mid);
            margin-bottom: 0;
        }

        .contact-us-main .contact-form .form-input {
            border-radius: 2px;
            border-color: var(--gray-light);
            box-shadow: 0 0 0 0 transparent;
            font-size: 14px;
            margin-bottom: 10px;
            color: var(--gray-mid);
        }

        .contact-us-main .contact-form .form-textarea {
            resize: none;
            border-radius: 2px;
            border-color: var(--gray-light);
            box-shadow: 0 0 0 0 transparent;
            font-size: 14px;
            color: var(--gray-mid);
        }

        .contact-us-main .contact-form .form-submit {
            color: var(--white);
            font-size: 13px;
            background-color: var(--blue-main);
            border-radius: 2px;
            padding: 5px 25px;
            margin: 15px 0 30px 0;
            transition-duration: 0.4s;
            cursor: pointer;
            border: 0;
        }

    .contact-us-main .sidebar-section h6 {
        background-color: var(--gray-dark);
        padding: 8px 5px;
        font-size: 18px;
        color: var(--gold-dark);
        display: flex;
        align-items: center;
    }

        .contact-us-main .sidebar-section h6 i {
            color: var(--gold-dark);
            background-color: var(--white);
            height: 20px;
            width: 20px;
            margin-left: 10px;
            font-size: 12px;
            text-align: center;
            border-radius: 50%;
            line-height: 1.2rem;
        }

    .contact-us-main .sidebar-section .section-list {
        list-style: none;
        padding: 10px;
        margin-bottom: 15px;
    }

        .contact-us-main .sidebar-section .section-list .item {
            margin-bottom: 10px;
        }

        .contact-us-main .sidebar-section .section-list .section-link {
            text-decoration: none;
            transition-duration: 0.3s;
            color: var(--gray-mid);
            font-size: 13px;
            line-height: 1.2rem;
            display: block;
        }

            .contact-us-main .sidebar-section .section-list .section-link:hover {
                color: var(--blue-main);
            }

            .contact-us-main .sidebar-section .section-list .section-link i {
                color: var(--blue-main);
                font-size: 6px;
                margin-left: 3px;
            }

    .contact-us-main .sidebar-section .section-text {
        font-size: 13px;
        line-height: 1.6rem;
        color: var(--gray-mid);
        text-align: justify;
    }


@media (min-width: 992px) {
    .contact-us-main .contact-form .form-input {
        max-width: 300px;
    }

    .contact-us-main .contact-form .form-textarea {
        max-width: 450px;
    }
}



/*استایل های صفحه درباره ما*/
.about-us-main {
    padding: 15px 0;
}

    .about-us-main img {
        width: 150px;
        height: 150px;
        border: 1px solid var(--gray-light);
        border-radius: 4px;
        padding: 5px;
        margin-left: 10px;
        margin-bottom: 10px;
        background-color: var(--white);
    }

    .about-us-main h1 {
        font-size: 23px;
        padding-bottom: 15px;
        color: var(--blue-main);
        border-bottom: 1px solid var(--bg-section);
    }

    .about-us-main .propagation-date {
        color: var(--gray-mid);
        font-size: 12px;
        display: flex;
        align-items: center;
    }

        .about-us-main .propagation-date p {
            margin: 0 5px;
        }

    .about-us-main .text {
        font-size: 13px;
        color: var(--gray-dark);
        margin-bottom: 30px;
        text-align: justify;
    }

    .about-us-main .sidebar-section h6 {
        background-color: var(--blue-main);
        padding: 8px 5px;
        font-size: 18px;
        color: var(--white);
        display: flex;
        align-items: center;
    }

        .about-us-main .sidebar-section h6 i {
            color: var(--blue-main);
            background-color: var(--white);
            height: 20px;
            width: 20px;
            margin-left: 10px;
            font-size: 12px;
            text-align: center;
            border-radius: 50%;
            line-height: 1.2rem;
        }

    .about-us-main .sidebar-section .section-list {
        list-style: none;
        padding: 10px;
        margin-bottom: 15px;
    }

        .about-us-main .sidebar-section .section-list .item {
            margin-bottom: 10px;
        }

        .about-us-main .sidebar-section .section-list .section-link {
            text-decoration: none;
            transition-duration: 0.3s;
            color: var(--gray-mid);
            font-size: 13px;
            line-height: 1.2rem;
            display: block;
        }

            .about-us-main .sidebar-section .section-list .section-link:hover {
                color: var(--blue-main);
            }

            .about-us-main .sidebar-section .section-list .section-link i {
                color: var(--blue-main);
                font-size: 6px;
                margin-left: 3px;
            }

    .about-us-main .sidebar-section .section-text {
        font-size: 13px;
        line-height: 1.6rem;
        color: var(--gray-mid);
        text-align: justify;
    }

/*استایل های صفحه لاگین*/
.login-main {
    padding: 25px;
    /*position: fixed;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*right: 0;*/
    /*left: 0;*/
    /*min-height: 400px;*/
}

.bg-login {
    height: 420px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/map.png");
}

.bg-gradient {
    /* background: linear-gradient(135deg, rgba(35, 86, 139, 0.75), rgba(23, 120, 209, 0.75)); */
    height: 100%;
    margin-top: 70px;
}

.login-main .login-form {
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.login-main h1 {
    font-size: 22px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.login-main .login-form img {
    width: 80px;
    transform: rotateZ(180deg);
    transform: rotateY(180deg);
    margin-bottom: 25px;
}

.login-main .login-form .form-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.login-main .login-form .form-input {
    border: 0 transparent;
    border-bottom: 1px solid var(--gray-light);
    border-right: 1px solid var(--gray-light);
    border-radius: 0;
    box-shadow: 0 0 0 0 transparent;
    height: 25px;
    color: var(--gray-mid);
    font-size: 13px;
    margin-bottom: 15px;
}

.login-main .login-form .remember {
    color: var(--blue-dark);
    text-decoration: none;
    transition-duration: 0.3s;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

    .login-main .login-form .remember:hover {
        color: var(--blue-main);
    }

.login-main .login-form .form-submit {
    color: var(--white);
    font-size: 13px;
    padding: 3px 45px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(35, 86, 139, 0.75), rgba(23, 120, 209, 0.75));
    border: 0;
    cursor: pointer;
    transition-duration: 0.3s;
    margin-bottom: 35px;
}

    .login-main .login-form .form-submit:hover {
        color: var(--red);
    }

@media (min-width: 768px) {
    .login-main .login-form {
        padding: 20px 60px;
    }
}



/*استایل های صفحه لیست مقالات*/
.article-list-main .sidebar-section h6 {
    background-color: var(--gray-light);
    padding: 8px 5px;
    font-size: 18px;
    color: var(--gold-light);
    display: flex;
    align-items: center;
}

    .article-list-main .sidebar-section h6 i {
        color: var(--gold-dark);
        background-color: var(--white);
        height: 20px;
        width: 20px;
        margin-left: 10px;
        font-size: 12px;
        text-align: center;
        border-radius: 50%;
        line-height: 1.2rem;
    }

.article-list-main .sidebar-section .section-list {
    list-style: none;
    padding: 10px;
    margin-bottom: 15px;
}

    .article-list-main .sidebar-section .section-list .item {
        margin-bottom: 10px;
    }

    .article-list-main .sidebar-section .section-list .section-link {
        text-decoration: none;
        transition-duration: 0.3s;
        color: var(--gray-mid);
        font-size: 13px;
        line-height: 1.2rem;
        display: block;
    }

        .article-list-main .sidebar-section .section-list .section-link:hover {
            color: var(--gray-dark);
        }

        .article-list-main .sidebar-section .section-list .section-link i {
            color: var(--gray-dark);
            font-size: 6px;
            margin-left: 3px;
        }

.article-list-main .sidebar-section .section-text {
    font-size: 13px;
    line-height: 1.6rem;
    color: var(--gray-mid);
    text-align: justify;
}

.article-list-main h1 {
    font-size: 22px;
    color: var(--gray-dark);
    margin-top: 15px;
    margin-bottom: 10px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.article-list-main .article-item {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(35, 86, 139, 0.35);
    border-right: 1px solid rgba(35, 86, 139, 0.35);
    margin-bottom: 10px;
    padding: 10px;
}

    .article-list-main .article-item img {
        width: 100px;
        height: 80px;
        float: right;
        border: 1px solid var(--blue-main);
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .article-list-main .article-item .article-title {
        text-decoration: none;
        transition-duration: 0.3s;
        color: var(--blue-main);
        font-size: 14px;
        display: block;
    }

        .article-list-main .article-item .article-title:hover {
            color: var(--gold-dark);
        }

    .article-list-main .article-item .article-desc {
        font-size: 12px;
        color: var(--gray-dark);
        line-height: 1.2rem;
        text-align: justify;
    }

    .article-list-main .article-item .continue {
        text-decoration: none;
        transition-duration: 0.3s;
        color: var(--white);
        font-size: 14px;
        background-color: var(--blue-main);
        padding: 1px 12px;
        margin-right: auto;
        width: 92px;
        display: block;
    }

        .article-list-main .article-item .continue:hover {
            color: var(--gold-dark);
        }

.pagination {
    margin-top: 50px;
    margin-bottom: 25px;
}

    .pagination ul {
        display: flex;
        list-style: none;
        padding-right: 0;
        width: 334px;
    }

        .pagination ul:hover a {
            border-color: var(--gray-light);
        }

        .pagination ul:hover p {
            border-color: var(--gray-light);
        }

        .pagination ul:hover .item:last-child a {
            border-left-color: var(--gray-light);
        }

    .pagination .item {
        height: 30px;
        width: 30px;
        text-align: center;
    }

        .pagination .item:last-child,
        .pagination .item:first-child {
            width: 60px;
        }

        .pagination .item p {
            display: block;
            color: var(--gray-light);
            font-size: 12px;
            margin-bottom: 0;
            border: 1px solid var(--border);
            border-left: 0;
        }

        .pagination .item a {
            display: block;
            color: var(--gray-mid);
            font-size: 12px;
            text-decoration: none;
            transition-duration: 0.3s;
            border: 1px solid var(--border);
            border-left: 0;
        }

            .pagination .item a:hover {
                color: var(--white);
                background-color: var(--blue-main);
                font-weight: bold;
                font-size: 13px;
            }

    .pagination .this-page a {
        background-color: var(--blue-main);
        color: var(--white);
        font-weight: bold;
        font-size: 13px;
    }

    .pagination .item:last-child a {
        border-left: 1px solid var(--border);
        border-top-left-radius: 0;
        border-bottom-left-radius: 15px;
    }

    .pagination .item:first-child a {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 0;
    }


/*استایل های صفحه جزئیات مقاله*/
.art-det-main {
    padding: 15px 0;
}

    .art-det-main .art-img {
        float: left;
        width: 350px;
        height: 350px;
        padding: 5px;
        border: 1px solid var(--gray-light);
        border-radius: 3px;
        margin: 0 0 15px 15px;
        background-color: var(--white);
    }

    .art-det-main .art-title {
        font-size: 24px;
        color: var(--blue-main);
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
        line-height: 2.6rem;
    }

    .art-det-main .art-date {
        font-size: 13px;
        color: var(--gray-mid);
    }

    .art-det-main .art-text {
        font-size: 14px;
        color: var(--black);
        text-align: justify;
    }

    .art-det-main .desc-img {
        margin: 10px auto;
        display: block;
    }

    .art-det-main .stickers,
    .art-det-main .category {
        background-color: var(--bg-light);
        padding: 5px 10px;
        margin-bottom: 15px;
    }

        .art-det-main .stickers .list,
        .art-det-main .category .list {
            list-style: none;
            padding: 0;
            display: flex;
            margin-bottom: 0;
        }

            .art-det-main .stickers .list p,
            .art-det-main .category .list p {
                margin-bottom: 0;
                font-size: 14px;
                margin-left: 5px;
            }

            .art-det-main .stickers .list a,
            .art-det-main .category .list a {
                color: var(--gray-light);
                padding: 2px 10px;
                background-color: var(--blue-main);
                font-size: 14px;
                margin-left: 10px;
                transition-duration: 0.3s;
                text-decoration: none;
            }

                .art-det-main .stickers .list a:hover,
                .art-det-main .category .list a:hover {
                    color: var(--gold-main);
                }

    .art-det-main .sidebar-section h6 {
        background-color: var(--gray-light);
        padding: 8px 5px;
        font-size: 18px;
        color: var(--gold-light);
        display: flex;
        align-items: center;
    }

        .art-det-main .sidebar-section h6 i {
            color: var(--gold-main);
            background-color: var(--white);
            height: 20px;
            width: 20px;
            margin-left: 10px;
            font-size: 12px;
            text-align: center;
            border-radius: 50%;
            line-height: 1.2rem;
        }

    .art-det-main .sidebar-section .section-list {
        list-style: none;
        padding: 10px;
        margin-bottom: 15px;
    }

        .art-det-main .sidebar-section .section-list .item {
            margin-bottom: 10px;
        }

        .art-det-main .sidebar-section .section-list .section-link {
            text-decoration: none;
            transition-duration: 0.3s;
            color: var(--gray-mid);
            font-size: 13px;
            line-height: 1.2rem;
            display: block;
        }

            .art-det-main .sidebar-section .section-list .section-link:hover {
                color: var(--blue-main);
            }

            .art-det-main .sidebar-section .section-list .section-link i {
                color: var(--blue-main);
                font-size: 6px;
                margin-left: 3px;
            }

    .art-det-main .sidebar-section .section-text {
        font-size: 13px;
        line-height: 1.6rem;
        color: var(--gray-mid);
        text-align: justify;
    }

/* قسمت تیم ما در صفحه اصلی */
.our-team {
    background-color: var(--white);
    padding: 35px 0;
}

    .our-team .title-row {
        text-align: center;
        margin-bottom: 25px;
    }

        .our-team .title-row .title-bottom {
            display: flex;
            align-items: center;
            width: 160px;
            margin: 10px auto;
        }

        .our-team .title-row .line {
            flex-grow: 1;
            background-color: var(--red);
            height: 1px;
        }

        .our-team .title-row i {
            font-size: 7px;
            color: var(--red);
            margin: 1px;
        }

.team-area {
    background-color: var(--white);
    padding: 35px 0;
}

    .team-area .list-inline {
        display: inline-flex;
    }

.single-team {
    box-shadow: 0px 7px 7px 2px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    margin-bottom: 10px;
    margin-left: 10px;
}

    .single-team:hover .social {
        cursor: pointer;
        opacity: 1;
        transform: rotateY(0deg) scale(1, 1);
    }
/* تنظیمات لایه رویی */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* رنگ تیره پس‌زمینه */
    opacity: 0;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg) !important; /* جلوگیری از وارونه شدن */
}

/* نمایش لایه هنگام هاور */
.single-team:hover .team-overlay {
    opacity: 1;
}

/* استایل محتوای داخل لایه */
.overlay-content {
    color: #fff !important;
    text-align: center;
    padding: 15px;
    transform: rotate(0deg) !important; /* اطمینان مجدد از جهت متن */
}

    .overlay-content p {
        font-size: 16px !important; /* بزرگتر کردن متن */
        margin-bottom: 10px;
        line-height: 1.6;
        color: #fff !important;
        font-weight: bold;
    }

    .overlay-content i {
        margin-left: 8px;
        color: #ffc107; /* رنگ آیکون‌ها (طلایی/زرد) */
        font-size: 18px;
    }



.img-area {
    overflow: hidden;
    position: relative;
}

    .img-area img {
        width: 100%;
    }

    .img-area:hover img {
        transform: scale(1.2)
    }

    .img-area img {
        transition: all 0.4s ease 0s;
    }

@media (max-width: 768px) {
    .img-area img {
        display: inline-block;
    }
}

.img-area .social {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    transform: rotateY(180deg) scale(0.5, 0.5);
}

    .img-area .social ul {
        text-align: center;
        position: relative;
        top: 175px;
    }

        .img-area .social ul li a {
            border: 1px solid var(--white);
            color: var(--white);
            display: block;
            font-size: 20px;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
        }

            .img-area .social ul li a:hover {
                background-color: var(--white);
                color: var(--black);
                border: 1px solid transparent;
            }

.img-text {
    padding: 25px;
    color: var(--black);
    text-align: center;
}

    .img-text h4 {
        margin: 0 0 5px;
        font-size: 30px;
        font-family: 'IranSans';
    }

    .img-text h5 {
        font-size: 17px;
        color: #545154;
    }


/* ===== Gold Roadmap (Timeline) ===== */
.gold-roadmap {
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f5 100%);
}

.gr-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #161616;
}

.gr-subtitle {
    max-width: 860px;
    margin: 0 auto;
    color: #66707a;
    line-height: 2;
    font-size: 1rem;
}

.gr-timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0 0;
}

    /* vertical line */
    .gr-timeline:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 24px; /* RTL: line on the right */
        width: 2px;
        background: linear-gradient(180deg, rgba(201,162,39,.10), rgba(201,162,39,.55), rgba(201,162,39,.10));
        border-radius: 99px;
    }

.gr-item {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 14px 0;
}

/* node */
.gr-node {
    position: relative;
    width: 52px;
    min-width: 52px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.gr-step {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: .5px;
    color: #1b1b1b;
    background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.06));
    border: 1px solid rgba(212,175,55,.45);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* dot over the line (visual connection) */
.gr-node:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -1px;
    width: 12px;
    height: 12px;
    background: #c9a227;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(201,162,39,.16);
}

/* card */
.gr-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
    transition: all .25s ease;
    width: 100%;
}

    .gr-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 55px rgba(0,0,0,.10);
        border-color: rgba(201,162,39,.30);
    }

.gr-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gr-ico {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.04));
    border: 1px solid rgba(201,162,39,.32);
    flex-shrink: 0;
}

    .gr-ico i {
        font-size: 18px;
        line-height: 1;
    }

.gr-card-title {
    font-size: 1.02rem;
    font-weight: 900;
    color: #1c1c1c;
    line-height: 1.8;
}

.gr-card-text {
    color: #56616c;
    line-height: 2;
    text-align: justify;
    font-size: .95rem;
}

/* responsive */
@media (max-width: 575.98px) {
    .gr-timeline:before {
        right: 18px;
    }

    .gr-node {
        width: 46px;
        min-width: 46px;
    }

    .gr-step {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: .92rem;
    }

    .gr-node:before {
        right: -3px;
    }

    .gr-card {
        padding: 16px 14px;
    }
}


/*
.mining-roadmap {
    background: linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
}

.roadmap-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1b1b1b;
    margin-bottom: 12px;
}

.roadmap-subtitle {
    max-width: 820px;
    margin: 0 auto;
    color: #66707a;
    line-height: 2;
    font-size: 1rem;
}

.roadmap-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    height: 100%;
    transition: all .25s ease;
}

    .roadmap-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 55px rgba(0,0,0,.10);
    }

.roadmap-step {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: .9rem;
    font-weight: 800;
    color: rgba(201,162,39,.35);
    letter-spacing: 1px;
}

.roadmap-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
    border: 1px solid rgba(212,175,55,.35);
    color: #c9a227;
}

    .roadmap-icon i {
        font-size: 24px;
        line-height: 1;
    }

.roadmap-card-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 10px;
    line-height: 1.8;
}

.roadmap-card-text {
    font-size: .95rem;
    color: #54606b;
    line-height: 2;
    text-align: justify;
    margin-bottom: 0;
}

@media (max-width:991.98px) {
    .roadmap-title {
        font-size: 1.55rem;
    }

    .roadmap-card {
        padding: 24px 18px 20px;
    }
}*/


/* کارد سرویس های پایین صفحه */
/*.services-block-footer {
    background-image: url('../images/bgServicee.png');
    padding-top: 100px !important;
}

.services-block-three {
    margin-bottom: 30px;
    transition-duration: 0.6s;
}

    .services-block-three i {
        font-size: 32px;
    }

    .services-block-three > a {
        display: block;
        border: 2px solid #d5d5d5;
        border-radius: 4px;
        background: var(--blue-main);
        color: var(--white);
        padding: 20px;
        position: relative;
        margin-bottom: 30px;
    }



.services-block-three > a:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid var(--blue-light);
    border-right: 2px solid var(--blue-light);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.services-block-three > a:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--blue-light);
    border-left: 3px solid var(--blue-light);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}*/

.padding-15px-bottom {
    padding-bottom: 15px;
}
/*
.services-block-three h4 {
    color: var(--white);
    font-size: 20px;
    margin-top: 17px;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-block-three p {
    margin-bottom: 0;
    color: var(--white);
}

.services-block-three > a:hover {
    opacity: 1;
    border-color: #d5d5d5;
    background: var(--blue-dark);
    transition-duration: 0.6s;
}*/

a:hover,
a:active {
    color: var(--gold-dark);
    text-decoration: none;
}

/*.services-block-three > a:hover:before,
.services-block-three > a:hover:after {
    width: 95%;
    height: 90%;
}*/

fieldset legend {
    background: var(--blue-main);
    color: var(--white);
    padding: 5px 10px;
    font-size: 22px;
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 20px;
    width: 35%;
    max-width: 100%;
    position: absolute;
    top: -34px;
    z-index: 9;
    border: 2px solid;
    left: 40px;
}



/* رفتن به بالای صفحه */
.fluid-links {
    position: fixed;
    bottom: 55px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.6s;
    z-index: 3;
}

    .fluid-links ul {
        list-style: none;
        padding-right: 0;
        margin-bottom: 0;
    }

    .fluid-links .item {
        position: relative;
        margin-bottom: 5px;
    }

        .fluid-links .item a {
            text-decoration: none;
            transition-duration: 0.4s;
            background-color: var(--white);
            width: 38px;
            height: 38px;
            display: inline-block;
            color: var(--gray-mid);
            text-align: center;
            border-radius: 14px;
            font-size: 20px;
            line-height: 2.7rem;
        }

        .fluid-links .item:hover a {
            background-color: var(--blue-main);
            color: var(--white);
        }

        .fluid-links .item .badge {
            color: var(--white);
            font-size: 11px;
            background-color: var(--blue-main);
            text-align: center;
            position: absolute;
            top: 5px;
            left: 2px;
            line-height: 1rem;
            padding: 0;
            border-radius: 10px;
            width: 18px;
            height: 18px;
            border: 1px solid var(--white);
            cursor: pointer;
        }

        .fluid-links .item .info {
            position: absolute;
            top: 10px;
            right: 140%;
            color: var(--white);
            font-size: 11px;
            height: 22px;
            line-height: 1.4rem;
            padding: 0 10px;
            border-radius: 12px;
            border-top-right-radius: 0;
            background-color: var(--blue-main);
            white-space: nowrap;
            margin-bottom: 0;
            visibility: hidden;
            opacity: 0;
            transition-duration: 0.4s;
        }

        .fluid-links .item:hover .info {
            right: 115%;
            visibility: visible;
            opacity: 1;
        }



/* تماس با ما */

.wrapper .dbox .icon {
    padding: 10px;
    font-size: 50px;
    color: var(--white);
    background-color: var(--blue-main);
    border-radius: 60%;
    /* height: 260px; */
    width: 100px;
}


.send-message {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 1px 7px -3px rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    padding: 10px;
}

    .send-message .title {
        border-bottom: 2px solid var(--border);
        margin-bottom: 15px;
        height: 35px;
    }

    .send-message h1 {
        font-size: 14px;
        color: var(--gray-dark);
        border-bottom: 2px solid var(--gray-light);
        margin-bottom: 0;
        padding-bottom: 10px;
        display: inline-block;
        width: 120px;
    }

    .send-message .form-control::placeholder {
        color: var(--gray-light);
    }

    .send-message .form-input {
        border-color: var(--border-light);
        font-size: 12px;
        margin-bottom: 10px;
        height: 35px;
        border-radius: 5px;
        color: var(--gray-mid);
        box-shadow: 0 0 0 0 transparent;
    }

    .send-message .form-textarea {
        border-color: var(--border-light);
        font-size: 12px;
        margin-bottom: 15px;
        border-radius: 5px;
        color: var(--gray-mid);
        box-shadow: 0 0 0 0 transparent;
    }

    .send-message .form-btn {
        color: var(--white);
        background-color: var(--gray-dark);
        font-size: 11px;
        border-radius: 5px;
        border: 0;
        padding: 2px 15px;
        transition-duration: 0.4s;
        margin-right: 15px;
        margin-bottom: 15px;
        cursor: pointer;
        display: block;
    }

        .send-message .form-btn:hover {
            background-color: var(--gold-dark);
        }

.map-section {
    position: relative;
    text-align: center;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 1px 7px -3px rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    padding: 4px;
    z-index: 1;
    overflow: hidden;
}
    .map-section .top-left-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 75px;
        height: 75px;
        background-color: var(--gold-dark);
        z-index: -1;
    }

    .map-section .top-right-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 75px;
        height: 75px;
        background-color: var(--gold-dark);
        z-index: -1;
    }

    .map-section .bottom-left-box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 75px;
        height: 75px;
        background-color: var(--gold-dark);
        z-index: -1;
    }

    .map-section .bottom-right-box {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 75px;
        height: 75px;
        background-color: var(--gold-dark);
        z-index: -1;
    }

    .map-section img {
        border-radius: 6px;
        width: 100%;
    }

.contact-us-text {
    margin: 35px 5px;
    border: 1px solid var(--border-light);
    padding: 2px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 1px 7px -3px rgba(0, 0, 0, .1);
}

    .contact-us-text .inner-layout {
        border: 1px solid var(--border-light);
        padding: 10px 20px;
        border-radius: 10px;
    }

    .contact-us-text p {
        color: var(--gray-dark);
        text-align: justify;
        font-size: 15px;
        margin-bottom: 0;
    }

.us-info {
    margin-bottom: 15px;
}

    .us-info .box {
        border: 2px dotted var(--border);
        border-left-color: var(--gray-mid);
        padding: 14px 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        background-color: var(--white);
        box-shadow: 0 1px 7px -3px rgba(0, 0, 0, .1);
    }

        .us-info .box i {
            font-size: 40px;
            color: var(--gold-dark);
            margin-left: 20px;
        }

        .us-info .box .title {
            font-size: 12px;
            color: var(--gray-dark);
            margin-bottom: 0;
            height: 20px;
            line-height: 1rem;
        }

        .us-info .box .text {
            font-size: 16px;
            color: var(--gray-light);
            margin-bottom: 0;
            height: 20px;
            line-height: 1.5rem;
        }

.main-title {
    padding: 10px 0;
    border-bottom: 2px solid var(--border-soft);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    .main-title .orange-line {
        width: 15px;
        border-radius: 2px;
        background-color: var(--orange);
        margin-left: 5px;
        height: 4px;
    }

    .main-title .gray-line {
        width: 6px;
        border-radius: 2px;
        background-color: var(--gray);
        margin-left: 15px;
        height: 4px;
    }

    .main-title .title {
        font-size: 14px;
        color: var(--gray-mid);
        margin-bottom: 0;
    }
