﻿@font-face {
    font-family: "IranNastaliq";
    src: url("/companies/arjgroup/assets/fonts/IranNastaliq-Web.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.hero-inner {
    position: relative;
}

/* لایه آپارات */
.arj-film-effect {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
}

/* محتوا بالاتر از افکت */
.hero-inner .container {
    position: relative;
    z-index: 30;
}

/* Grain */
.arj-film-grain {
    position: absolute;
    inset: -30%;
    background-image: repeating-radial-gradient( circle, rgba(255,255,255,.45) 0, rgba(255,255,255,.45) 1px, transparent 1px, transparent 3px );
    background-size: 4px 4px;
    opacity: .22;
    animation: arjGrain .15s steps(2) infinite;
}

/* Scratch */
.arj-film-scratches {
    position: absolute;
    inset: 0;
    opacity: .30;
    background-image: linear-gradient( 90deg, transparent 12%, rgba(255,255,255,.75) 12.05%, transparent 12.15%, transparent 35%, rgba(0,0,0,.50) 35.05%, transparent 35.15%, transparent 65%, rgba(255,255,255,.55) 65.05%, transparent 65.15%, transparent 87%, rgba(255,255,255,.65) 87.05%, transparent 87.15% );
    animation: arjScratch 1s steps(2) infinite;
}

/* Flicker */
.arj-film-flicker {
    position: absolute;
    inset: 0;
    background: rgba(255,245,210,.18);
    animation: arjFlicker .12s steps(2) infinite;
}

/* Vignette */
.arj-film-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse at center, transparent 45%, rgba(0,0,0,.08) 65%, rgba(0,0,0,.35) 100% );
}


/* Grain movement */
@keyframes arjGrain {

    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(-3%,2%);
    }

    50% {
        transform: translate(2%,-3%);
    }

    75% {
        transform: translate(-2%,-2%);
    }

    100% {
        transform: translate(3%,2%);
    }
}


/* Scratches */
@keyframes arjScratch {

    0% {
        transform: translateX(-10px);
        opacity: .15;
    }

    25% {
        transform: translateX(5px);
        opacity: .35;
    }

    50% {
        transform: translateX(-3px);
        opacity: .18;
    }

    75% {
        transform: translateX(8px);
        opacity: .40;
    }

    100% {
        transform: translateX(0);
        opacity: .20;
    }
}


/* Flicker */
@keyframes arjFlicker {

    0% {
        opacity: .03;
    }

    25% {
        opacity: .18;
    }

    50% {
        opacity: .05;
    }

    75% {
        opacity: .14;
    }

    100% {
        opacity: .04;
    }
}









/* =========================================================
   PRODUCTS LAYOUT
========================================================= */

.arj-products-section {
    position: relative;
    background: #f3eee5;
}

    .arj-products-section > .container {
        position: relative;
    }

        .arj-products-section > .container > .row {
            display: grid;
            /* معرفی چپ - اسلایدر راست */
            grid-template-columns: 280px minmax(0, 1fr);
            gap: 35px;
            align-items: stretch;
            direction: ltr;
        }


/* =========================================
   ARJ PRODUCTS - LEFT INTRO
========================================= */

.arj-products-intro {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 0;
    direction: rtl;
}

    /* محصولات ارج */
    .arj-products-intro .sub-title {
        display: flex;
        align-items: center;
        gap: 10px;
        width: fit-content;
        margin-bottom: 14px;
        font-size: 14px;
        font-weight: 700;
        color: #17130f !important;
    }

        /* خط سمت راست */
        .arj-products-intro .sub-title::before {
            content: "";
            width: 28px;
            height: 2px;
            background: #17130f;
            border-radius: 10px;
        }

        /* مربع قبلی قالب را مخفی کن */
        .arj-products-intro .sub-title .squre-shape {
            display: none !important;
        }

    /* تیتر اصلی */
    .arj-products-intro .sec-title {
        margin: 0 0 16px;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.45;
        color: #17130f !important;
    }

        .arj-products-intro .sec-title .scroll-text-ani {
            color: #17130f !important;
        }

    /* توضیحات */
    .arj-products-intro p {
        max-width: 290px;
        margin: 0 0 22px;
        font-size: 15px;
        font-weight: 500;
        line-height: 2;
        color: #5f574d !important;
    }

    /* مشاهده همه محصولات */
    .arj-products-intro .th-btn.style2 {
        width: auto !important;
        min-width: 0 !important;
        height: auto !important;
        padding: 9px 15px !important;
        background: #17130f !important;
        border: 1px solid #17130f !important;
        border-radius: 5px !important;
        color: #fff !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        line-height: 1.5 !important;
    }

        .arj-products-intro .th-btn.style2 i {
            margin-right: 7px;
            font-size: 11px !important;
            color: #f4cc16 !important;
        }

        .arj-products-intro .th-btn.style2:hover {
            background: #f4cc16 !important;
            border-color: #f4cc16 !important;
            color: #17130f !important;
        }

            .arj-products-intro .th-btn.style2:hover i {
                color: #17130f !important;
            }

/* ویژگی‌های پایین */
.arj-products-features {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
}

.arj-product-feature {
    flex: 1 1 0;
    width: 33.333%;
    text-align: center;
    color: #17130f;
}

    .arj-product-feature i {
        display: block;
        margin-bottom: 8px;
        font-size: 28px;
        line-height: 1;
        color: #17130f;
    }

    .arj-product-feature span {
        display: block;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.6;
        color: #4f483f;
    }

    .arj-product-feature:not(:last-child) {
        border-left: 1px solid rgba(23, 19, 15, .13);
    }


/* =========================================================
   SLIDER - RIGHT
========================================================= */

.arj-products-section .project-slider3 {
    position: relative;
    min-width: 0;
    /*
       مقدار اصلی قالب margin-left:-300px است.
       اینجا خنثی‌اش می‌کنیم تا وارد ستون معرفی نشود.
    */
    margin-left: 0;
    /*
       عرض از سمت راست جبران می‌شود
       تا فضای Slider کم نشود.
    */
    width: calc(100% + 300px);
    margin-right: -300px;
    direction: rtl;
}

.arj-products-section #projectSlider3 {
    width: 100%;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .arj-products-section > .container > .row {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 25px;
    }

    .arj-products-section .project-slider3 {
        width: calc(100% + 200px);
        margin-right: -200px;
    }
}


@media (max-width: 1199px) {

    .arj-products-section > .container > .row {
        display: block;
    }

    .arj-products-intro {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        padding: 0;
    }

    .arj-products-section .project-slider3 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* =========================================================
   PRODUCTS - GLOBAL SIZE
========================================================= */

.arj-products-section > .container {
    max-width: 1900px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}


    /* ستون معرفی */
    .arj-products-section > .container > .row {
        grid-template-columns: 420px minmax(0, 1fr);
        gap: 45px;
    }


/* معرفی */
.arj-products-intro {
    height: 560px;
}


    /* عنوان اصلی */
    .arj-products-intro .sec-title {
        font-size: 42px;
    }


    /* توضیحات */
    .arj-products-intro p {
        font-size: 16px;
    }


/* آیکن‌های پایین */
.arj-product-feature i {
    font-size: 30px;
}

.arj-product-feature span {
    font-size: 13px;
}


/* ادامه اسلایدر تا سمت راست */
.arj-products-section .project-slider3 {
    width: calc(100% + 260px);
    margin-right: -260px;
}

/* =========================================
   FEATURES
========================================= */

.arj-products-features {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
}

.arj-product-feature {
    flex: 1 1 0;
    width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: #111;
}

    .arj-product-feature i {
        display: block;
        margin: 0 0 8px;
        font-size: 30px;
        line-height: 1;
        color: #111;
    }

    .arj-product-feature span {
        display: block;
        font-size: 13px;
        line-height: 1.6;
        white-space: nowrap;
        color: #333;
    }

    /* خط جداکننده بین سه مورد */
    .arj-product-feature:not(:last-child) {
        border-left: 1px solid rgba(0,0,0,.10);
    }

/* عدد معمولی */
.arj-product-number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    color: rgba(30, 25, 20, .35);
    transition: all .5s ease;
}


/* عدد کارت Active */
.arj-products-section
.project-slider3
.swiper-slide.swiper-slide-active
.arj-product-number {
    top: 45px;
    left: 45px;
    font-size: 130px;
    font-weight: 700;
    color: rgba(255,255,255,.13);
    z-index: 2;
}

/* فلش داخل کارت محصول */
.arj-products-section .project-card3 .icon-btn {
    --btn-size: 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-top: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(20, 17, 14, .72);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: none;
    transition: all .3s ease;
}

    .arj-products-section .project-card3 .icon-btn i {
        transform: none;
        font-size: 14px;
    }

    /* Hover */
    .arj-products-section .project-card3 .icon-btn:hover {
        background: #f4cc16;
        border-color: #f4cc16;
        color: #17130f;
        transform: translateX(-2px);
    }

/* دکمه مشاهده همه محصولات */
.arj-products-section .arj-products-intro .th-btn.style2 {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 11px 17px !important;
    background: #111 !important;
    border: 1px solid #111 !important;
    border-radius: 5px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

    .arj-products-section .arj-products-intro .th-btn.style2 i {
        margin-right: 7px;
        font-size: 11px;
        color: #f4cc16 !important;
    }

    /* Hover */
    .arj-products-section .arj-products-intro .th-btn.style2:hover {
        background: #f4cc16 !important;
        border-color: #f4cc16 !important;
        color: #111 !important;
    }

        .arj-products-section .arj-products-intro .th-btn.style2:hover i {
            color: #111 !important;
        }

/* ===================================
   HERO BUTTONS
=================================== */

/* تنظیم مشترک هر دو دکمه */
.hero-inner .btn-group .th-btn {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 12px 18px !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    transition: all .3s ease !important;
}

    /* دکمه اول - بیشتر کشف کنید */
    .hero-inner .btn-group .th-btn.style7 {
        background: #f4cc16 !important;
        border: 1px solid #f4cc16 !important;
        color: #111 !important;
    }

    /* دکمه دوم - خدمات ما */
    .hero-inner .btn-group .th-btn.style2 {
        background: #111 !important;
        border: 1px solid rgba(255,255,255,.25) !important;
        color: #fff !important;
    }

    /* فلش‌ها */
    .hero-inner .btn-group .th-btn i {
        margin-right: 7px;
        font-size: 11px !important;
    }

    /* فلش دکمه زرد */
    .hero-inner .btn-group .th-btn.style7 i {
        color: #111 !important;
    }

    /* فلش دکمه مشکی */
    .hero-inner .btn-group .th-btn.style2 i {
        color: #f4cc16 !important;
    }

    /* Hover دکمه زرد */
    .hero-inner .btn-group .th-btn.style7:hover {
        background: #111 !important;
        border-color: #111 !important;
        color: #111 !important;
    }

        .hero-inner .btn-group .th-btn.style7:hover i {
            color: #f4cc16 !important;
        }

    /* Hover دکمه مشکی */
    .hero-inner .btn-group .th-btn.style2:hover {
        background: #f4cc16 !important;
        border-color: #f4cc16 !important;
        color: #111 !important;
    }

        .hero-inner .btn-group .th-btn.style2:hover i {
            color: #111 !important;
        }

/* ===================================
   ARJ PRODUCTS - SLIDER CONTROLS
=================================== */

.arj-products-section .arj-products-controls {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    margin-top: 18px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

    /* هر دو فلش */
    .arj-products-section .arj-products-controls .slider-arrow {
        position: static !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #111 !important;
        border: 1px solid #111 !important;
        border-radius: 5px !important;
        color: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

        /* آیکن */
        .arj-products-section .arj-products-controls .slider-arrow i {
            margin: 0 !important;
            font-size: 11px !important;
            color: #fff !important;
        }

        /* Hover */
        .arj-products-section .arj-products-controls .slider-arrow:hover {
            background: #f4cc16 !important;
            border-color: #f4cc16 !important;
            color: #111 !important;
        }

            .arj-products-section .arj-products-controls .slider-arrow:hover i {
                color: #111 !important;
            }

.paddingProduct {
    padding-top: 40px;
    padding-bottom: 0px;
}

.arj-products-intro > div:first-child {
    position: relative;
    padding: 22px 22px 20px;
    border-radius: 10px;
    background: linear-gradient( 135deg, rgba(250, 243, 229, .12), rgba(239, 224, 196, .06) );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(120,90,40,.12);
    box-shadow: 0 10px 30px rgba(70,50,25,.06);
}

.arj-products-intro .sec-title {
    color: #17130f !important;
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.arj-products-intro p {
    color: #51483d !important;
    font-weight: 600;
}

.arj-products-intro .scroll-text-ani {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #f4cc16 !important;
}



/* =========================================
   ARJ HISTORY - MAIN LAYOUT
========================================= */

.arj-history-section {
    position: relative;
    overflow: hidden;
    background: #eee4d3;
    background-image: url("../img/backHistory.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.arj-history-row {
    min-height: 420px;
}

/* LEFT */
.arj-history-intro {
    position: relative;
    z-index: 2;
    padding: 30px 20px 30px 0;
    direction: rtl;
}

    .arj-history-intro .sub-title {
        display: block;
        margin-bottom: 14px;
    }

    .arj-history-intro .sec-title {
        margin-bottom: 18px;
    }

    .arj-history-intro p {
        max-width: 300px;
        line-height: 2;
        margin-bottom: 24px;
    }

/* RIGHT */
.arj-history-slider-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.arj-history-slider {
    width: 100%;
}

.arj-history-card {
    min-height: 310px;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(0,0,0,.08);
}


/* Responsive */
@media (max-width: 991px) {

    .arj-history-row {
        min-height: auto;
    }

    .arj-history-intro {
        padding: 0 0 35px;
    }
}

/* =========================================
   ARJ HISTORY - OLD PHOTO COLLAGE
========================================= */

.arj-history-slider {
    padding: 35px 15px 40px !important;
    overflow: visible !important;
}

    .arj-history-slider .swiper-wrapper {
        align-items: flex-start;
    }

    /* خود Slide نباید ظاهر کارت داشته باشد */
    .arj-history-slider .swiper-slide {
        overflow: visible;
    }

/* کل آیتم */
.arj-history-card {
    position: relative;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform-origin: center center;
}

/* فقط قاب عکس */
.arj-history-photo {
    position: relative;
    width: calc(100% + 8px);
    height: 215px;
    margin-right: -4px;
    padding: 7px 7px 13px;
    overflow: visible;
    background: linear-gradient( 145deg, #e8ddc8, #d8c9ae );
    border: 1px solid rgba(74, 54, 32, .28);
    box-shadow: 2px 5px 9px rgba(47, 35, 22, .28), 0 1px 2px rgba(47, 35, 22, .20);
    transform-origin: center center;
}

    /* عکس واقعی */
    .arj-history-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) sepia(24%) contrast(1.08) brightness(.91);
    }

    /* کهنگی عکس */
    .arj-history-photo::after {
        content: "";
        position: absolute;
        inset: 7px 7px 13px;
        pointer-events: none;
        background: radial-gradient( circle at 20% 20%, rgba(255,255,255,.10), transparent 35% ), linear-gradient( rgba(73,52,28,.04), rgba(45,31,17,.13) );
        box-shadow: inset 0 0 24px rgba(36,25,13,.22);
    }

/* نوشته دیگر جزو قاب نیست */
.arj-history-content {
    position: relative;
    padding-top: 17px;
    text-align: center;
    transform: none !important;
}

.arj-history-year {
    display: block;
    margin-bottom: 3px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    color: #211b16;
}

.arj-history-title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4f4437;
}


/* =========================================
   CONTROLLED RANDOMNESS
========================================= */

/* 1, 6, 11 ... */
.arj-history-slider .swiper-slide:nth-child(5n + 1) .arj-history-photo {
    transform: translateY(9px) rotate(-2.4deg);
}

/* 2, 7, 12 ... */
.arj-history-slider .swiper-slide:nth-child(5n + 2) .arj-history-photo {
    transform: translateY(-4px) rotate(1.6deg);
}

/* 3, 8, 13 ... */
.arj-history-slider .swiper-slide:nth-child(5n + 3) .arj-history-photo {
    transform: translateY(5px) rotate(-1deg);
}

/* 4, 9, 14 ... */
.arj-history-slider .swiper-slide:nth-child(5n + 4) .arj-history-photo {
    transform: translateY(-7px) rotate(2.1deg);
}

/* 5, 10, 15 ... */
.arj-history-slider .swiper-slide:nth-child(5n) .arj-history-photo {
    transform: translateY(7px) rotate(-1.7deg);
}

/* کاغذ قدیمی‌تر و چرک‌تر */
.arj-history-photo {
    background: radial-gradient(circle at 12% 18%, rgba(95, 65, 30, .16) 0 2px, transparent 3px), radial-gradient(circle at 82% 72%, rgba(80, 52, 25, .12) 0 3px, transparent 5px), radial-gradient(circle at 35% 90%, rgba(110, 75, 35, .10) 0 2px, transparent 4px), linear-gradient( 145deg, #e2d4ba 0%, #f0e5d0 42%, #d5c3a4 100% ) !important;
    border: 1px solid rgba(74, 51, 28, .38) !important;
    box-shadow: 3px 7px 12px rgba(45, 31, 18, .30), -1px -1px 2px rgba(255,255,255,.35), inset 0 0 12px rgba(83, 57, 29, .13) !important;
}


    /* چرک و فرسودگی روی کل قاب */
    .arj-history-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background: radial-gradient( ellipse at 0% 0%, rgba(73, 45, 20, .18), transparent 18% ), radial-gradient( ellipse at 100% 100%, rgba(70, 42, 18, .20), transparent 20% ), radial-gradient( circle at 72% 12%, rgba(104, 70, 30, .11), transparent 12% );
        opacity: .85;
    }


    /* خود عکس هم کمی چاپ قدیمی‌تر */
    .arj-history-photo img {
        filter: grayscale(100%) sepia(32%) contrast(1.12) brightness(.88) !important;
    }


    /* کهنگی روی سطح عکس */
    .arj-history-photo::after {
        content: "";
        position: absolute;
        inset: 7px 7px 13px;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient( 90deg, rgba(30,20,10,.08), transparent 8%, transparent 91%, rgba(30,20,10,.10) ), linear-gradient( rgba(255,245,220,.05), rgba(40,25,12,.13) );
        box-shadow: inset 0 0 28px rgba(35,22,10,.28);
    }

/* =========================================
   ARJ HISTORY - ORGANIC PHOTO LAYOUT
========================================= */

/* اجازه بده قاب‌ها روی هم بیفتند */
.arj-history-slider {
    padding: 45px 20px 55px !important;
    overflow: visible !important;
}

    .arj-history-slider .swiper-wrapper {
        align-items: flex-start !important;
    }

    .arj-history-slider .swiper-slide {
        overflow: visible !important;
    }


        /* 01 */
        .arj-history-slider .swiper-slide:nth-child(5n + 1) {
            z-index: 2;
        }

            .arj-history-slider .swiper-slide:nth-child(5n + 1) .arj-history-photo {
                width: 105%;
                transform: translateY(10px) translateX(5px) rotate(-2.7deg);
            }


        /* 02 */
        .arj-history-slider .swiper-slide:nth-child(5n + 2) {
            z-index: 4;
        }

            .arj-history-slider .swiper-slide:nth-child(5n + 2) .arj-history-photo {
                width: 108%;
                transform: translateY(-7px) translateX(0) rotate(1.8deg);
            }


        /* 03 */
        .arj-history-slider .swiper-slide:nth-child(5n + 3) {
            z-index: 3;
        }

            .arj-history-slider .swiper-slide:nth-child(5n + 3) .arj-history-photo {
                width: 104%;
                transform: translateY(6px) translateX(-3px) rotate(-1.2deg);
            }


        /* 04 */
        .arj-history-slider .swiper-slide:nth-child(5n + 4) {
            z-index: 5;
        }

            .arj-history-slider .swiper-slide:nth-child(5n + 4) .arj-history-photo {
                width: 109%;
                transform: translateY(-10px) translateX(-7px) rotate(2.4deg);
            }


        /* 05 */
        .arj-history-slider .swiper-slide:nth-child(5n) {
            z-index: 2;
        }

            .arj-history-slider .swiper-slide:nth-child(5n) .arj-history-photo {
                width: 106%;
                transform: translateY(8px) translateX(-10px) rotate(-1.9deg);
            }

.arj-history-intro .sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #17130f !important;
}

    .arj-history-intro .sub-title::before {
        content: "";
        width: 28px;
        height: 2px;
        flex-shrink: 0;
        background: #17130f;
        border-radius: 10px;
    }


.arj-history-intro .th-btn.style2 {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 11px 17px !important;
    background: #111 !important;
    border: 1px solid #111 !important;
    border-radius: 5px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

    .arj-history-intro .th-btn.style2 i {
        margin-right: 7px;
        font-size: 11px !important;
        color: #f4cc16 !important;
    }

    .arj-history-intro .th-btn.style2:hover {
        color: #000000 !important;
    }

        .arj-history-intro .th-btn.style2:hover i {
            color: #f4cc16 !important;
        }


/* =========================================
   ARJ ABOUT SECTION
========================================= */

.arj-about-section {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background-image: url("/companies/arjgroup/assets/img/back-arj-Down.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* =========================================
   OVERLAY
========================================= */

.arj-about-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(15,14,12,.96) 0%, rgba(15,14,12,.82) 18%, rgba(15,14,12,.38) 38%, rgba(238,229,214,.08) 58%, rgba(238,229,214,.72) 76%, rgba(238,229,214,.96) 100% );
}

/* =========================================
   CONTAINER / ROW
========================================= */

.arj-about-section .container {
    position: relative;
    z-index: 2;
}

.arj-about-row {
    min-height: 430px;
    direction: ltr;
    align-items: stretch;
}

/* =========================================
   LEFT - NOSTALGIC QUOTE
========================================= */

.arj-about-quote {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    direction: rtl;
}

.arj-about-quote-text {
    width: fit-content;
    margin-right: auto;
    margin-left: 45px;
    font-family: "IranNastaliq", serif !important;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.8;
    color: #f3ecdf;
    text-align: left !important;
    transform: rotate(-3deg) !important;
    transform-origin: center center;
}

.arj-about-sign {
    width: fit-content;
    margin-top: 14px;
    margin-right: auto;
    margin-left: 45px;
    font-family: "IranNastaliq", serif !important;
    font-size: 28px;
    font-weight: 400;
    color: #f4cc16;
    text-align: left !important;
    transform: rotate(-5deg) !important;
    transform-origin: center center;
}

/* =========================================
   RIGHT - MODERN CONTENT
========================================= */

.arj-about-content {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    direction: rtl;
}

    .arj-about-content h2 {
        margin-bottom: 18px;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.35;
        color: #17130f;
    }

    .arj-about-content p {
        max-width: 390px;
        margin-bottom: 24px;
        font-size: 15px;
        font-weight: 500;
        line-height: 2;
        color: #51483d;
    }

    /* =========================================
   BUTTON
========================================= */

    .arj-about-content .th-btn.style2 {
        width: auto !important;
        min-width: 0 !important;
        height: auto !important;
        padding: 11px 17px !important;
        background: #f4cc16 !important;
        border: 1px solid #f4cc16 !important;
        border-radius: 5px !important;
        color: #111 !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
    }

        .arj-about-content .th-btn.style2 i {
            margin-right: 7px;
            font-size: 11px !important;
            color: #111 !important;
        }

        .arj-about-content .th-btn.style2:hover {
            background: #111 !important;
            border-color: #111 !important;
            color: #111 !important;
        }

            .arj-about-content .th-btn.style2:hover i {
                color: #f4cc16 !important;
            }

/* =========================================
   TABLET / SMALL DESKTOP
   600px به بالا همچنان دو ستون کنار هم
========================================= */

@media (min-width: 600px) and (max-width: 1199px) {

    .arj-about-section {
        min-height: 360px;
    }

    .arj-about-row {
        min-height: 360px;
        flex-direction: row !important;
    }

        .arj-about-row > [class*="col-"] {
            width: 50% !important;
            max-width: 50% !important;
            flex: 0 0 50% !important;
        }

    .arj-about-quote,
    .arj-about-content {
        min-height: 360px;
    }

    .arj-about-quote {
        padding: 40px 0;
    }

    .arj-about-quote-text {
        margin-left: 25px;
        font-size: 28px;
        line-height: 1.8;
    }

    .arj-about-sign {
        margin-left: 25px;
        font-size: 24px;
    }

    .arj-about-content {
        padding: 40px 25px;
    }

        .arj-about-content h2 {
            font-size: 32px;
        }

        .arj-about-content p {
            max-width: 320px;
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.9;
        }
}

/* =========================================
   MOBILE
   فقط زیر 600px دو بخش زیر هم قرار می‌گیرند
========================================= */

@media (max-width: 599px) {

    .arj-about-section {
        min-height: auto;
        background-size: auto 100%;
        background-position: center top;
    }

    .arj-about-overlay {
        background: linear-gradient( 180deg, rgba(15,14,12,.94) 0%, rgba(15,14,12,.68) 42%, rgba(238,229,214,.72) 62%, rgba(238,229,214,.96) 100% );
    }

    .arj-about-row {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
    }

        .arj-about-row > [class*="col-"] {
            width: 100% !important;
            max-width: 100% !important;
            flex: 0 0 100% !important;
        }

    .arj-about-quote,
    .arj-about-content {
        width: 100%;
        min-height: 290px !important;
        height: auto !important;
    }

    .arj-about-quote {
        padding: 40px 24px !important;
    }

    .arj-about-quote-text {
        margin-right: auto !important;
        margin-left: 10px !important;
        font-size: 30px;
        line-height: 1.85;
        transform: rotate(-2deg) !important;
    }

    .arj-about-sign {
        margin-top: 10px !important;
        margin-right: auto !important;
        margin-left: 10px !important;
        font-size: 25px;
        transform: rotate(-4deg) !important;
    }

    .arj-about-content {
        padding: 40px 24px !important;
        align-items: flex-start;
    }

        .arj-about-content h2 {
            margin-bottom: 15px;
            font-size: 30px;
            line-height: 1.4;
        }

        .arj-about-content p {
            max-width: 100%;
            margin-bottom: 20px;
            font-size: 13px;
            line-height: 1.9;
        }
}

/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .arj-about-quote {
        min-height: 260px !important;
        padding: 35px 18px !important;
    }

    .arj-about-quote-text {
        margin-left: 5px !important;
        font-size: 27px;
    }

    .arj-about-sign {
        margin-left: 5px !important;
        font-size: 23px;
    }

    .arj-about-content {
        min-height: 260px !important;
        padding: 35px 18px !important;
    }

        .arj-about-content h2 {
            font-size: 27px;
        }
}


/* =========================================
   ARJ FOOTER
========================================= */

.arj-footer {
    position: relative;
    overflow: hidden;
    padding: 55px 0 20px;
    background: radial-gradient( circle at 50% 120%, rgba(244,204,22,.05), transparent 42% ), linear-gradient( 180deg, #101413 0%, #0c100f 100% );
    color: #fff;
}


/* LOGO */

.arj-footer-brand {
    direction: rtl;
}

.arj-footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

    .arj-footer-logo img {
        width: 185px;
        height: auto;
    }

.arj-footer-brand p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255,255,255,.66);
}


/* =========================================
   WIDGETS
========================================= */

.arj-footer-widget {
    direction: rtl;
    position:relative;
    z-index:2;
}

    .arj-footer-widget h4,
    .arj-footer-newsletter h4 {
        margin-bottom: 16px;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
    }

    .arj-footer-widget ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .arj-footer-widget li {
        margin-bottom: 9px;
    }

    .arj-footer-widget a {
        position: relative;
        padding-right: 10px;
        font-size: 13px;
        color: rgba(255,255,255,.62);
        transition: all .3s ease;
    }

        .arj-footer-widget a::before {
            content: "›";
            position: absolute;
            right: 0;
            color: rgba(244,204,22,.65);
        }

        .arj-footer-widget a:hover {
            color: #f4cc16;
            padding-right: 14px;
        }


/* =========================================
   NEWSLETTER
========================================= */

.arj-footer-newsletter {
    direction: rtl;
}

    .arj-footer-newsletter p {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.9;
        color: rgba(255,255,255,.62);
    }

    .arj-footer-newsletter form {
        position: relative;
        display: flex;
        width: 100%;
        max-width: 310px;
    }

    .arj-footer-newsletter input {
        width: 100%;
        height: 42px;
        padding: 0 14px 0 50px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 5px;
        color: #fff;
        font-size: 12px;
        outline: none;
    }

        .arj-footer-newsletter input::placeholder {
            color: rgba(255,255,255,.42);
        }

    .arj-footer-newsletter button {
        position: absolute;
        left: 4px;
        top: 4px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 5px;
        background: #f4cc16;
        color: #111;
        transition: all .3s ease;
    }

        .arj-footer-newsletter button:hover {
            background: #fff;
        }


/* =========================================
   TEHRAN SKYLINE
========================================= */

.arj-footer-skyline {
    position: relative;
    min-height: 115px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .arj-footer-skyline img {
        position: absolute;
        bottom: 0;
        left: 90%;
        width: 730px;
        max-width: 70%;
        transform: translateX(-50%);
        opacity: .42;
        filter: grayscale(100%);
        z-index:1;
    }

/* =========================================
   TEHRAN TEXT
========================================= */

.arj-footer-tehran-text {
    position: absolute;
    right: 8%;
    bottom: 42px;
    z-index: 3;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    direction: rtl;
    font-family: "IranNastaliq", serif !important;
    color: rgba(255,255,255,.82);
    transform: rotate(-4deg);
    transform-origin: center center;
}

    .arj-footer-tehran-text span {
        display: block;
        margin-bottom: -3px;
        font-family: "IranNastaliq", serif !important;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.4;
        color: #ffffff;
    }

    .arj-footer-tehran-text strong {
        display: block;
        font-family: "IranNastaliq", serif !important;
        font-size: 23px;
        font-weight: 400;
        line-height: 1.5;
        white-space: nowrap;
        color: rgba(255,255,255,.78);
    }


/* تبلت */

@media (max-width: 1199px) {

    .arj-footer-tehran-text {
        right: 5%;
        bottom: 38px;
    }

        .arj-footer-tehran-text span {
            font-size: 21px;
        }

        .arj-footer-tehran-text strong {
            font-size: 20px;
        }
}


/* موبایل */

@media (max-width: 767px) {

    .arj-footer-tehran-text {
        right: 3%;
        bottom: 30px;
        transform: rotate(-2deg);
    }

        .arj-footer-tehran-text span {
            font-size: 19px;
        }

        .arj-footer-tehran-text strong {
            font-size: 18px;
        }
}


/* =========================================
   BOTTOM
========================================= */

.arj-footer-bottom {
    position: relative;
    min-height: 55px;   
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arj-footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,.45);
}

.arj-footer-social {
    display: flex;
    gap: 12px;
}

    .arj-footer-social a {
        font-size: 15px;
        color: rgba(255,255,255,.70);
        transition: all .3s ease;
    }

        .arj-footer-social a:hover {
            color: #f4cc16;
        }

.arj-footer-top {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f4cc16;
    border-radius: 50%;
    color: #f4cc16;
    transition: all .3s ease;
}

    .arj-footer-top:hover {
        background: #f4cc16;
        color: #111;
    }


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .arj-footer {
        padding-top: 45px;
    }

    .arj-footer-skyline {
        margin-top: 30px;
    }

        .arj-footer-skyline img {
            width: 360px;
        }

    .arj-footer-tehran-text {
        right: 15%;
    }
}


@media (max-width: 767px) {

    .arj-footer-widget,
    .arj-footer-newsletter,
    .arj-footer-brand {
        text-align: right;
    }

        .arj-footer-newsletter form {
            max-width: 100%;
        }

    .arj-footer-skyline {
        min-height: 100px;
    }

        .arj-footer-skyline img {
            width: 300px;
            max-width: 90%;
        }

    .arj-footer-tehran-text {
        right: 8%;
        bottom: 35px;
    }

    .arj-footer-bottom {
        flex-direction: column;
        gap: 14px;
        padding-top: 20px;
    }
}

/* =========================================
   HERO NASTALIQ MEMORY TEXT
========================================= */

.arj-hero-memory {
    position: absolute;
    top: 13%;
    left: 37%;
    z-index: 25;
    width: max-content;
    font-family: "IranNastaliq", serif !important;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    direction: rtl;
    color: #211b16;
    transform: translateX(-50%) rotate(-4deg);
    pointer-events: none;
}


/* لپ‌تاپ و تبلت */

@media (max-width: 1199px) {

    .arj-hero-memory {
        left: 38%;
        top: 22%;
        font-size: 29px;
    }
}


/* موبایل */

@media (max-width: 767px) {
    .arj-hero-memory {
        display: none !important;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {

    .arj-products-intro {
        height: auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
    }

    .arj-products-features {
        margin-top: 35px !important;
    }
}

/* =========================================
   HISTORY - MEDIUM DESKTOP / LAPTOP
========================================= */

@media (min-width: 992px) and (max-width: 1399px) {

    .arj-history-slider-wrap {
        width: 100%;
        min-width: 0;
        overflow: hidden !important;
        padding-right: 22px;
    }

    .arj-history-slider {
        width: 100%;
        overflow: hidden !important;
        padding-top: 45px !important;
        padding-right: 18px !important;
        padding-bottom: 55px !important;
        padding-left: 18px !important;
    }

        /* در این سایز قاب‌ها نباید بیش از حد وارد ستون متن شوند */
        .arj-history-slider .swiper-slide:nth-child(5n + 1) .arj-history-photo {
            width: 100% !important;
            transform: translateY(8px) rotate(-2deg) !important;
        }

        .arj-history-slider .swiper-slide:nth-child(5n + 2) .arj-history-photo {
            width: 100% !important;
            transform: translateY(-5px) rotate(1.4deg) !important;
        }

        .arj-history-slider .swiper-slide:nth-child(5n + 3) .arj-history-photo {
            width: 100% !important;
            transform: translateY(5px) rotate(-1deg) !important;
        }

        .arj-history-slider .swiper-slide:nth-child(5n + 4) .arj-history-photo {
            width: 100% !important;
            transform: translateY(-7px) rotate(1.7deg) !important;
        }

        .arj-history-slider .swiper-slide:nth-child(5n) .arj-history-photo {
            width: 100% !important;
            transform: translateY(7px) rotate(-1.4deg) !important;
        }
}

@media (min-width: 768px) and (max-width: 1199px) {

    .arj-history-intro {
        padding-top: 55px !important;
    }
}

/* =========================================
   ARJ HEADER ACTIONS
========================================= */

.arj-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    direction: ltr;
}


/* SEARCH */

.arj-header-search {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s ease;
}

    .arj-header-search:hover {
        color: #000;
        transform: scale(1.08);
    }


/* LOGIN BUTTON */

.arj-login-btn {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 6px;
    background: #111;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    direction: rtl;
    transition: all .3s ease;
}

    .arj-login-btn i {
        font-size: 17px;
        color: #f4cc16;
    }

    .arj-login-btn:hover {
        background: #222;
        color: #fff !important;
    }

        .arj-login-btn:hover i {
            color: #f4cc16;
        }


/* =========================================
   MEDIUM DESKTOP
========================================= */

@media (max-width: 1399px) {

    .arj-header-actions {
        gap: 12px;
    }

    .arj-login-btn {
        height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .arj-header-search {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}








/* =========================================
   ARJ SUB MENU
========================================= */

.header-layout14 .main-menu ul.sub-menu {
    min-width: 245px !important;
    padding: 8px !important;
    background: linear-gradient( rgba(247, 239, 222, .97), rgba(247, 239, 222, .97) ) !important;
    border: 1px solid rgba(72, 53, 30, .14) !important;
    border-top: 3px solid #f4cc16 !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 14px 35px rgba(32, 25, 16, .18), 0 3px 8px rgba(32, 25, 16, .08) !important;
    overflow: hidden;
    direction: rtl;
}


    /* =========================================
   SUB MENU ITEM
========================================= */

    .header-layout14 .main-menu ul.sub-menu li {
        position: relative;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }


        /* لینک */

        .header-layout14 .main-menu ul.sub-menu li > a {
            position: relative;
            width: 100%;
            min-height: 40px;
            display: flex;
            align-items: center;
            padding: 8px 15px !important;
            border-radius: 6px;
            background: transparent !important;
            color: #2b251d !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            line-height: 1.6;
            transition: background .25s ease, color .25s ease, padding .25s ease !important;
        }


            /* =========================================
   حذف افکت‌های قالب اصلی
========================================= */

            .header-layout14 .main-menu ul.sub-menu li > a::before {
                display: none !important;
            }

            .header-layout14 .main-menu ul.sub-menu li > a::after {
                color: #2b251d !important;
            }


        /* =========================================
   HOVER
========================================= */

        .header-layout14 .main-menu ul.sub-menu li:hover > a {
            padding-right: 20px !important;
            background: rgba(244, 204, 22, .18) !important;
            color: #17130f !important;
        }


        /* خط زرد کنار آیتم Hover */

        .header-layout14 .main-menu ul.sub-menu li::before {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            width: 3px;
            height: 0;
            z-index: 2;
            border-radius: 5px;
            background: #f4cc16;
            transform: translateY(-50%);
            transition: height .25s ease;
        }

        .header-layout14 .main-menu ul.sub-menu li:hover::before {
            height: 24px;
        }


        /* =========================================
   آیتم دارای SUB MENU دوم
========================================= */

        .header-layout14
        .main-menu
        ul.sub-menu
        li.menu-item-has-children > a::after {
            display: inline-block !important;
            margin-right: auto;
            margin-left: 0;
            color: #655a4b !important;
            font-size: 11px;
        }


    /* =========================================
   SUB MENU LEVEL 2
========================================= */

    .header-layout14
    .main-menu
    ul.sub-menu
    ul.sub-menu {
        top: -11px !important;
        background: rgba(247, 239, 222, .98) !important;
        border-top: 3px solid #f4cc16 !important;
        border-radius: 8px !important;
    }


/* =========================================
   STICKY HEADER + SUB MENU
========================================= */

.header-layout14 .sticky-wrapper.sticky .main-menu ul.sub-menu {
    background: rgba(247, 239, 222, .98) !important;
    border-color: rgba(72, 53, 30, .14) !important;
    border-top-color: #f4cc16 !important;
}


/* =========================================
   ACTIVE ITEM
========================================= */

.header-layout14
.main-menu
ul.sub-menu
li.current-menu-item > a,
.header-layout14
.main-menu
ul.sub-menu
li.current-menu-parent > a {
    background: rgba(244, 204, 22, .22) !important;
    color: #17130f !important;
    font-weight: 700 !important;
}


/* =========================================
   OPTIONAL PAPER TEXTURE
========================================= */

.header-layout14 .main-menu ul.sub-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .16;
    background-image: radial-gradient( circle at 20% 30%, rgba(100, 75, 40, .10) 0 1px, transparent 1.5px ), radial-gradient( circle at 75% 65%, rgba(100, 75, 40, .08) 0 1px, transparent 1.5px );
    background-size: 28px 28px, 34px 34px;
}

/* =========================================
   PRODUCT SUBMENU WITH ICONS
========================================= */

.header-layout14
.main-menu
ul.sub-menu.arj-product-submenu {
    min-width: 270px !important;
}


    /* ITEM */

    .header-layout14
    .main-menu
    ul.sub-menu.arj-product-submenu
    li > a {
        display: flex !important;
        align-items: center !important;
        gap: 11px;
        min-height: 44px;
        padding: 8px 14px !important;
        direction: rtl;
    }


/* ICON BOX */

.arj-product-submenu .arj-submenu-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(244, 204, 22, .10);
    color: #2b251d;
    font-size: 16px;
    transition: all .25s ease;
}


/* HOVER */

.header-layout14
.main-menu
ul.sub-menu.arj-product-submenu
li:hover
.arj-submenu-icon {
    background: #f4cc16;
    color: #111;
    transform: scale(1.05);
}


/* متن */

.arj-product-submenu li > a > span:last-child {
    flex: 1;
    color: inherit;
    white-space: nowrap;
}

/* =====================================================
   ARJ PRODUCTS MEGA MENU
===================================================== */

.header-layout14 .main-menu > ul > li.arj-products-menu {
    position: relative;
}


/* -----------------------------------------------------
   MEGA MENU BOX
----------------------------------------------------- */

.header-layout14 .arj-products-mega {
    position: absolute;
    top: 100%;
    right: 50%;
    width: 610px;
    min-height: 390px;
    display: flex;
    flex-direction: row;
    padding: 14px;
    background: #f5ecdc;
    border: 1px solid rgba(76, 55, 30, .15);
    border-top: 3px solid #f4cc16;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 45px rgba(31, 24, 15, .22), 0 4px 10px rgba(31, 24, 15, .08);
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 9999;
}


/* نمایش */

.header-layout14
.main-menu > ul > li.arj-products-menu:hover
.arj-products-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}


/* فلش کوچک بالای باکس */

.header-layout14 .arj-products-mega::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 50%;
    width: 16px;
    height: 16px;
    background: #f5ecdc;
    border-left: 1px solid rgba(76,55,30,.12);
    border-top: 1px solid rgba(76,55,30,.12);
    transform: translateX(50%) rotate(45deg);
    z-index: -1;
}


/* =====================================================
   PRODUCT LIST
===================================================== */

.arj-mega-products {
    width: 55%;
    padding: 4px 5px 4px 14px;
}


/* آیتم */

.header-layout14
.main-menu
.arj-products-mega
.arj-mega-item {
    position: relative;
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 10px !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(76,55,30,.10);
    border-radius: 6px;
    color: #282118 !important;
    background: transparent;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all .25s ease;
}


    /* حذف افکت‌های لینک قالب */

    .header-layout14
    .main-menu
    .arj-products-mega
    .arj-mega-item::before,
    .header-layout14
    .main-menu
    .arj-products-mega
    .arj-mega-item::after {
        display: none !important;
    }


/* ICON */

.arj-mega-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(244,204,22,.12);
    color: #211b16;
    font-size: 17px;
    transition: all .25s ease;
}


/* TITLE */

.arj-mega-title {
    flex: 1;
    text-align: right;
    white-space: nowrap;
}


/* ARROW */

.arj-mega-arrow {
    margin-right: auto;
    color: #766956;
    font-size: 11px;
    transition: transform .25s ease;
}


/* HOVER */

.header-layout14
.main-menu
.arj-products-mega
.arj-mega-item:hover {
    padding-right: 14px !important;
    background: rgba(244,204,22,.18);
    color: #111 !important;
}


    .header-layout14
    .main-menu
    .arj-products-mega
    .arj-mega-item:hover
    .arj-mega-icon {
        background: #f4cc16;
        color: #111;
        transform: scale(1.05);
    }


    .header-layout14
    .main-menu
    .arj-products-mega
    .arj-mega-item:hover
    .arj-mega-arrow {
        color: #111;
        transform: translateX(-3px);
    }


/* =====================================================
   SLOGAN
===================================================== */

.arj-mega-slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 5px 10px;
    color: #756958;
    font-size: 11px;
    font-weight: 500;
}


    .arj-mega-slogan span {
        width: 3px;
        height: 22px;
        display: block;
        background: #f4cc16;
        border-radius: 5px;
    }


/* =====================================================
   OLD ARJ PHOTO
===================================================== */

.arj-mega-history {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px 8px 14px;
}


.arj-mega-photo {
    position: relative;
    width: 100%;
    padding: 8px 8px 52px;
    background: #e9dcc4;
    border: 1px solid rgba(78,55,29,.25);
    box-shadow: 3px 7px 15px rgba(42,30,17,.20), inset 0 0 12px rgba(90,63,31,.08);
    transform: rotate(-2deg);
    transition: transform .35s ease;
}


    .arj-mega-photo:hover {
        transform: rotate(0deg) scale(1.015);
    }


    /* عکس */

    .arj-mega-photo img {
        display: block;
        width: 100%;
        height: 260px;
        object-fit: cover;
        filter: grayscale(100%) sepia(32%) contrast(1.08) brightness(.90);
    }


    /* قدیمی‌تر کردن عکس */

    .arj-mega-photo::after {
        content: "";
        position: absolute;
        top: 8px;
        right: 8px;
        left: 8px;
        height: 260px;
        pointer-events: none;
        background: linear-gradient( rgba(73,52,28,.03), rgba(45,31,17,.12) );
        box-shadow: inset 0 0 22px rgba(36,25,13,.22);
    }


/* =====================================================
   PHOTO CAPTION
===================================================== */

.arj-mega-photo-paper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    direction: rtl;
    color: #30271d;
    text-align: center;
}


    .arj-mega-photo-paper strong {
        display: block;
        font-family: "IranNastaliq", serif !important;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.4;
    }


    .arj-mega-photo-paper span {
        display: block;
        margin-top: 2px;
        font-size: 10px;
        font-weight: 700;
        color: #7b6a54;
    }


/* =====================================================
   PAPER FEEL
===================================================== */

.arj-products-mega {
    background-image: radial-gradient( circle at 15% 20%, rgba(92,64,31,.05) 0 1px, transparent 1.5px ), radial-gradient( circle at 78% 70%, rgba(92,64,31,.04) 0 1px, transparent 1.5px );
    background-size: 27px 27px, 35px 35px;
}


/* =====================================================
   STICKY HEADER
===================================================== */

.header-layout14
.sticky-wrapper.sticky
.arj-products-mega {
    border-top-color: #f4cc16;
}


/* =====================================================
   ONLY DESKTOP
===================================================== */

@media (max-width: 1199px) {

    .header-layout14 .arj-products-mega {
        display: none !important;
    }
}

/* ARJ Glass Drag Cursor */

.slider-drag-cursor {
    background: rgba(20, 18, 14, .42) !important;
    color: #f4cc16 !important;
    border: 1px solid rgba(255, 255, 255, .30) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
    backdrop-filter: blur(9px) saturate(120%);
    -webkit-backdrop-filter: blur(9px) saturate(120%);
}

    .slider-drag-cursor img {
        filter: brightness(0) saturate(100%) invert(84%) sepia(84%) saturate(1115%) hue-rotate(350deg) brightness(101%) !important;
    }



/* =====================================================
   ARJ MOBILE MENU - FINAL LOOK
===================================================== */

.th-menu-wrapper {
    background: rgba(14, 12, 10, .70) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}


    /* PANEL */

    .th-menu-wrapper .th-menu-area {
        width: 330px !important;
        max-width: 88vw !important;
        background: linear-gradient( 180deg, #f8f0df 0%, #efe0c3 100% ) !important;
        border-left: 0 !important;
        box-shadow: -12px 0 35px rgba(20, 15, 10, .25) !important;
    }


    /* =====================================================
   LOGO
===================================================== */

    .th-menu-wrapper .mobile-logo {
        padding: 18px 20px !important;
        background: #f4cc16 !important;
        border-bottom: 1px solid rgba(40, 30, 15, .12) !important;
    }

        .th-menu-wrapper .mobile-logo img {
            width: 145px !important;
            height: auto !important;
        }


    /* =====================================================
   CLOSE BUTTON
===================================================== */

    .th-menu-wrapper .th-menu-toggle {
        top: 22px !important;
        left: -17px !important;
        width: 34px !important;
        height: 34px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        background: #17130f !important;
        color: #f4cc16 !important;
        border: 1px solid rgba(255,255,255,.18) !important;
        box-shadow: 0 6px 18px rgba(0,0,0,.20) !important;
    }

        .th-menu-wrapper .th-menu-toggle i {
            margin: 0 !important;
            color: #f4cc16 !important;
        }


    /* =====================================================
   MENU BODY
===================================================== */

    .th-menu-wrapper .th-mobile-menu {
        margin-top: 0 !important;
        padding: 18px 16px 30px !important;
        text-align: right !important;
    }

        .th-menu-wrapper .th-mobile-menu > ul {
            padding: 0 !important;
        }


            /* MAIN ITEMS */

            .th-menu-wrapper
            .th-mobile-menu > ul > li {
                margin-bottom: 3px !important;
                border-bottom: 1px solid rgba(75, 55, 30, .10) !important;
            }


                .th-menu-wrapper
                .th-mobile-menu > ul > li > a {
                    position: relative;
                    min-height: 46px;
                    display: flex !important;
                    align-items: center !important;
                    padding: 9px 12px 9px 44px !important;
                    color: #2b241b !important;
                    background: transparent !important;
                    font-size: 13px !important;
                    font-weight: 600 !important;
                    border-radius: 6px;
                    transition: all .22s ease !important;
                }


                    /* HOVER / ACTIVE */

                    .th-menu-wrapper
                    .th-mobile-menu > ul > li > a:hover,
                    .th-menu-wrapper
                    .th-mobile-menu > ul > li.th-active > a,
                    .th-menu-wrapper
                    .th-mobile-menu > ul > li > a.active {
                        background: rgba(244, 204, 22, .17) !important;
                        color: #111 !important;
                    }


        /* =====================================================
   PLUS / MINUS
===================================================== */

        /* + اصلی قالب */
        .th-menu-wrapper
        .th-mobile-menu
        ul
        .menu-item-has-children > a::after {
            width: 26px !important;
            height: 26px !important;
            line-height: 26px !important;
            margin-top: 0 !important;
            background: rgba(244, 204, 22, .12) !important;
            color: #846314 !important;
            border: 1px solid rgba(154, 116, 24, .30) !important;
            border-radius: 6px !important;
            box-shadow: none !important;
            font-size: 10px !important;
        }


        /* حالت باز */

        .th-menu-wrapper
        .th-mobile-menu
        ul
        .menu-item-has-children.th-active > a::after {
            background: #f4cc16 !important;
            color: #17130f !important;
            border-color: #d1ab00 !important;
        }


        /* کنترل اضافه‌ای که قالب داخل لینک می‌سازد را پنهان کن */

        .th-menu-wrapper
        .th-mobile-menu
        .th-mean-expand {
            display: none !important;
        }


        /* =====================================================
   SUB MENU
===================================================== */

        .th-menu-wrapper
        .th-mobile-menu
        ul.sub-menu,
        .th-menu-wrapper
        .th-mobile-menu
        ul.th-submenu {
            margin: 3px 8px 10px !important;
            padding: 5px 7px !important;
            background: rgba(210, 188, 149, .26) !important;
            border-radius: 7px !important;
        }


            /* SUB ITEMS */

            .th-menu-wrapper
            .th-mobile-menu
            ul.sub-menu li,
            .th-menu-wrapper
            .th-mobile-menu
            ul.th-submenu li {
                border: 0 !important;
            }


                .th-menu-wrapper
                .th-mobile-menu
                ul.sub-menu li a,
                .th-menu-wrapper
                .th-mobile-menu
                ul.th-submenu li a {
                    min-height: 36px;
                    display: flex !important;
                    align-items: center !important;
                    padding: 7px 10px !important;
                    color: #655947 !important;
                    font-size: 12px !important;
                    font-weight: 500 !important;
                    border-radius: 5px !important;
                    background: transparent !important;
                    transition: all .20s ease !important;
                }


                    /* SUB HOVER */

                    .th-menu-wrapper
                    .th-mobile-menu
                    ul.sub-menu li a:hover,
                    .th-menu-wrapper
                    .th-mobile-menu
                    ul.th-submenu li a:hover {
                        padding-right: 14px !important;
                        background: rgba(244, 204, 22, .15) !important;
                        color: #211b16 !important;
                    }


        /* حذف فلش‌های اضافی قالب */

        .th-menu-wrapper
        .th-mobile-menu
        ul li a::before {
            display: none !important;
        }


        /* =====================================================
   SCROLLBAR
===================================================== */

        .th-menu-wrapper
        .th-mobile-menu::-webkit-scrollbar {
            width: 4px;
        }

        .th-menu-wrapper
        .th-mobile-menu::-webkit-scrollbar-thumb {
            background: rgba(154, 116, 24, .35);
            border-radius: 10px;
        }

        /* =========================================
   ARJ MOBILE MENU - PLUS/MINUS LEFT
========================================= */

        .th-menu-wrapper
        .th-mobile-menu
        .menu-item-has-children > a {
            position: relative !important;
            padding-left: 48px !important;
        }


            /* + و - سمت چپ */
            .th-menu-wrapper
            .th-mobile-menu
            .menu-item-has-children > a::after {
                position: absolute !important;
                left: 10px !important;
                right: auto !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                margin: 0 !important;
                width: 24px !important;
                height: 24px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                border-radius: 5px !important;
                background: rgba(244, 204, 22, .12) !important;
                border: 1px solid rgba(154, 116, 24, .30) !important;
                color: #846314 !important;
            }


        /* حالت باز */
        .th-menu-wrapper
        .th-mobile-menu
        .menu-item-has-children.th-active > a::after {
            background: #f4cc16 !important;
            border-color: #d1ab00 !important;
            color: #211b16 !important;
        }

/* =========================================
   ARJ MOBILE MENU BUTTON
========================================= */

.header-layout14 .th-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(20, 18, 14, .82) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;
    border-radius: 7px !important;
    color: #f4cc16 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .10) !important;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease !important;
}

@media (max-width: 1199px) {
    .header-layout14 .th-menu-toggle.d-xl-none {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}


    /* آیکون همبرگری */

    .header-layout14 .th-menu-toggle i {
        margin: 0 !important;
        color: #f4cc16 !important;
        font-size: 17px !important;
        line-height: 1 !important;
    }


    /* Hover */

    .header-layout14 .th-menu-toggle:hover {
        background: #17130f !important;
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    }


/* موبایل کوچک */

@media (max-width: 575px) {

    .header-layout14 .th-menu-toggle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 6px !important;
    }

        .header-layout14 .th-menu-toggle i {
            font-size: 16px !important;
        }
}


/* =========================================
   ARJ CINEMATIC PRELOADER
========================================= */

.arj-preloader {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    background: #17120d;
    touch-action: none !important;
    overscroll-behavior: none !important;
    -webkit-overflow-scrolling: auto;
}


/* =========================================
   BACKGROUND
========================================= */

.arj-loader-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("/companies/arjgroup/assets/img/loadding-arj.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


    /* تاریکی اطراف تصویر */

    .arj-loader-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at center, rgba(0,0,0,.02) 20%, rgba(0,0,0,.20) 65%, rgba(0,0,0,.48) 100% );
    }


/* =========================================
   CONTENT
========================================= */

.arj-loader-content {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 54%;
    width: min(600px, 80vw);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* =========================================
   LOGO
========================================= */

.arj-loader-logo {
    width: 300px;
    max-width: 60vw;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,.45)) drop-shadow(0 0 18px rgba(244,204,22,.18));
    transition: transform .6s ease, filter .6s ease;
}


/* =========================================
   NASTALIQ TEXT
========================================= */

.arj-loader-memory {
    margin-top: 5px;
    font-family: "IranNastaliq", serif !important;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.8;
    direction: rtl;
    color: rgba(255,255,255,.88);
    transform: rotate(-3deg);
    text-shadow: 0 3px 15px rgba(0,0,0,.55);
}

    .arj-loader-memory span {
        color: #f4cc16;
    }


/* =========================================
   VINTAGE PROGRESS
========================================= */

.arj-loader-progress {
    position: relative;
    width: 100%;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    direction: ltr;
}


/* =========================================
   PROGRESS OLD FRAME
========================================= */

.arj-loader-progress-track {
    position: relative;
    flex: 1;
    height: 30px;
    padding: 5px;
    overflow: hidden;
    border: 2px solid rgba(184,137,61,.75);
    border-radius: 9px;
    background: linear-gradient( 180deg, rgba(30,23,16,.92), rgba(8,7,5,.96) );
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.65), inset 0 2px 5px rgba(255,220,150,.12), 0 0 0 1px rgba(40,25,10,.80), 0 4px 14px rgba(0,0,0,.45);
    transform: rotate(-.25deg);
}


    /* =========================================
   SCRATCHES ON FRAME
========================================= */

    .arj-loader-progress-track::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 5;
        pointer-events: none;
        opacity: .55;
        background: linear-gradient( 105deg, transparent 8%, rgba(0,0,0,.65) 8.5%, transparent 9.5%, transparent 28%, rgba(255,230,170,.18) 28.5%, transparent 29%, transparent 63%, rgba(0,0,0,.65) 63.5%, transparent 64.5%, transparent 82%, rgba(255,230,170,.16) 82.5%, transparent 83% );
    }


    /* خط داخلی کهنه */

    .arj-loader-progress-track::after {
        content: "";
        position: absolute;
        inset: 4px;
        z-index: 6;
        border: 1px dashed rgba(245,205,115,.18);
        border-radius: 4px;
        pointer-events: none;
    }


/* =========================================
   YELLOW PROGRESS BAR
========================================= */

.arj-loader-progress-bar {
    position: relative;
    width: 0%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient( 90deg, #9e7415 0%, #c9981a 18%, #e5b725 45%, #f4cc16 72%, #c99718 100% );
    box-shadow: inset 0 2px 2px rgba(255,255,255,.20), inset 0 -3px 5px rgba(75,45,0,.40), 0 0 10px rgba(244,204,22,.28);
    transition: width .08s linear;
}


    /* =========================================
   DIRT ON PROGRESS
========================================= */

    .arj-loader-progress-bar::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .55;
        background: radial-gradient( circle at 12% 35%, rgba(60,35,5,.75) 0 1px, transparent 2px ), radial-gradient( circle at 37% 65%, rgba(60,35,5,.65) 0 2px, transparent 3px ), radial-gradient( circle at 67% 25%, rgba(60,35,5,.55) 0 1px, transparent 2px ), radial-gradient( circle at 88% 70%, rgba(60,35,5,.70) 0 2px, transparent 3px );
    }


    /* خراش‌های متحرک روی زرد */

    .arj-loader-progress-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .48;
        background: repeating-linear-gradient( 105deg, transparent 0, transparent 13px, rgba(50,30,5,.38) 14px, transparent 17px );
        animation: arjProgressDust .7s steps(2) infinite;
    }


/* =========================================
   PERCENT
========================================= */

.arj-loader-percent {
    min-width: 80px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px !important;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: #d6ad62;
    text-align: center;
    text-shadow: 0 2px 3px rgba(0,0,0,.95), 0 0 12px rgba(214,173,98,.30);
    transform: rotate(1deg);
}


/* =========================================
   LOADING TEXT
========================================= */

.arj-loader-label {
    margin-top: 18px;
    font-family: "IranNastaliq", serif !important;
    font-size: 30px !important;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0 !important;
    direction: rtl;
    text-align: center;
    color: rgba(225, 190, 120, .92);
    text-shadow: 0 2px 3px rgba(0,0,0,.90), 0 0 12px rgba(244,204,22,.18);
    transform: rotate(-2deg);
}


/* =========================================
   OLD FILM EFFECT
========================================= */

.arj-loader-film {
    position: absolute;
    inset: 0;
    z-index: 20;
    overflow: hidden;
    pointer-events: none;
}


/* =========================================
   GRAIN
========================================= */

.arj-loader-grain {
    position: absolute;
    inset: -30%;
    opacity: .13;
    background-image: repeating-radial-gradient( circle, rgba(255,255,255,.45) 0, rgba(255,255,255,.45) 1px, transparent 1px, transparent 3px );
    background-size: 4px 4px;
    animation: arjLoaderGrain .15s steps(2) infinite;
}


/* =========================================
   SCRATCHES
========================================= */

.arj-loader-scratches {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image: linear-gradient( 90deg, transparent 18%, rgba(255,255,255,.55) 18.05%, transparent 18.12%, transparent 47%, rgba(0,0,0,.55) 47.05%, transparent 47.12%, transparent 73%, rgba(255,255,255,.40) 73.05%, transparent 73.12% );
    animation: arjLoaderScratch 1.2s steps(2) infinite;
}


/* =========================================
   FLICKER
========================================= */

.arj-loader-flicker {
    position: absolute;
    inset: 0;
    background: rgba(255,235,180,.10);
    animation: arjLoaderFlicker .14s steps(2) infinite;
}


/* =========================================
   VIGNETTE
========================================= */

.arj-loader-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse at center, transparent 42%, rgba(0,0,0,.12) 65%, rgba(0,0,0,.55) 100% );
}


/* =========================================
   GRAIN ANIMATION
========================================= */

@keyframes arjLoaderGrain {

    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(-3%,2%);
    }

    50% {
        transform: translate(2%,-3%);
    }

    75% {
        transform: translate(-2%,-2%);
    }

    100% {
        transform: translate(3%,2%);
    }
}


/* =========================================
   SCRATCH ANIMATION
========================================= */

@keyframes arjLoaderScratch {

    0% {
        transform: translateX(-8px);
        opacity: .12;
    }

    35% {
        transform: translateX(4px);
        opacity: .30;
    }

    70% {
        transform: translateX(-3px);
        opacity: .18;
    }

    100% {
        transform: translateX(7px);
        opacity: .25;
    }
}


/* =========================================
   FLICKER ANIMATION
========================================= */

@keyframes arjLoaderFlicker {

    0% {
        opacity: .03;
    }

    25% {
        opacity: .14;
    }

    50% {
        opacity: .04;
    }

    75% {
        opacity: .11;
    }

    100% {
        opacity: .03;
    }
}


/* =========================================
   PROGRESS DIRT ANIMATION
========================================= */

@keyframes arjProgressDust {

    0% {
        transform: translateX(0);
        opacity: .35;
    }

    50% {
        transform: translateX(3px);
        opacity: .55;
    }

    100% {
        transform: translateX(-2px);
        opacity: .40;
    }
}


/* =========================================
   LOADER EXIT
========================================= */

.arj-preloader.arj-loader-finished {
    opacity: 0;
    transform: scale(1.06);
    filter: brightness(1.45) blur(3px);
    pointer-events: none;
}


    .arj-preloader.arj-loader-finished
    .arj-loader-logo {
        transform: scale(1.08);
        filter: brightness(1.45) drop-shadow( 0 0 25px rgba(244,204,22,.7) );
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arj-loader-bg {
        background-position: 42% center;
    }

    .arj-loader-content {
        left: 55%;
        width: 55%;
    }

    .arj-loader-logo {
        width: 220px;
    }

    .arj-loader-memory {
        font-size: 27px;
    }

    .arj-loader-progress-track {
        height: 27px;
    }

    .arj-loader-percent {
        font-size: 19px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .arj-loader-bg {
        background-position: 60% center;
    }

    .arj-loader-content {
        left: 50%;
        top: 56%;
        width: 82%;
    }

    .arj-loader-logo {
        width: 190px;
    }

    .arj-loader-memory {
        font-size: 24px;
    }

    .arj-loader-progress {
        margin-top: 24px;
        gap: 10px;
    }

    .arj-loader-progress-track {
        height: 24px;
        padding: 4px;
    }

    .arj-loader-percent {
        min-width: 53px;
        font-size: 17px;
    }

  
}

/* =========================================
   ARJ SEARCH POPUP
========================================= */

.popup-search-box {
    background: radial-gradient( circle at center, rgba(45, 35, 22, .88) 0%, rgba(15, 13, 10, .96) 70%, rgba(5, 5, 4, .98) 100% ) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


    /* فرم سرچ */
    .popup-search-box form {
        width: min(620px, 82vw) !important;
        position: relative !important;
        border: 1px solid rgba(244, 204, 22, .45) !important;
        border-radius: 8px !important;
        background: rgba(25, 21, 15, .72) !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 25px rgba(244, 204, 22, .06) !important;
        overflow: hidden;
    }


        /* input */
        .popup-search-box form input {
            width: 100% !important;
            height: 58px !important;
            padding: 0 62px 0 22px !important;
            border: 0 !important;
            outline: 0 !important;
            background: transparent !important;
            direction: rtl;
            text-align: right;
            font-size: 14px !important;
            font-weight: 400;
            color: #f5ead3 !important;
            box-shadow: none !important;
        }


            /* placeholder */
            .popup-search-box form input::placeholder {
                color: rgba(245, 234, 211, .55) !important;
            }


        /* دکمه سرچ */
        .popup-search-box form button[type="submit"] {
            position: absolute !important;
            right: auto !important;
            left: 7px !important;
            top: 7px !important;
            width: 44px !important;
            height: 44px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            padding: 0 !important;
            border: 0 !important;
            border-radius: 6px !important;
            background: #f4cc16 !important;
            color: #211b16 !important;
            font-size: 16px !important;
            transition: all .3s ease;
        }

            .popup-search-box form button[type="submit"]:hover {
                background: #ffe04a !important;
                transform: scale(.96);
            }


    /* دکمه بستن */
    .popup-search-box .searchClose {
        position: absolute !important;
        top: 28px !important;
        right: 28px !important;
        width: 42px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border-radius: 7px !important;
        border: 1px solid rgba(244, 204, 22, .38) !important;
        background: rgba(20, 17, 13, .70) !important;
        color: #f4cc16 !important;
        font-size: 18px !important;
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        box-shadow: 0 8px 25px rgba(0,0,0,.25);
        transition: all .3s ease;
    }

        .popup-search-box .searchClose:hover {
            background: #f4cc16 !important;
            color: #211b16 !important;
            transform: rotate(90deg);
        }

/* =========================================
   ARJ HERO SLIDER CONTROLS
========================================= */

.hero-1 .th-swiper-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}


    /* دکمه‌های بالا و پایین */
    .hero-1 .th-swiper-custom .slider-arrow {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 7px !important;
        background: rgba(20, 17, 13, .68) !important;
        border: 1px solid rgba(244, 204, 22, .42) !important;
        box-shadow: 0 7px 20px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .10) !important;
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease !important;
    }


        /* خود فلش */
        .hero-1 .th-swiper-custom .slider-arrow img {
            width: 15px !important;
            height: 15px !important;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(84%) sepia(89%) saturate(1070%) hue-rotate(347deg) brightness(101%);
            opacity: .95;
            transition: transform .3s ease;
        }


        /* Hover */
        .hero-1 .th-swiper-custom .slider-arrow:hover {
            background: #f4cc16 !important;
            border-color: #f4cc16 !important;
            transform: scale(1.06);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .30), 0 0 15px rgba(244, 204, 22, .20) !important;
        }


            /* فلش در Hover تیره شود */
            .hero-1 .th-swiper-custom .slider-arrow:hover img {
                filter: brightness(0) saturate(100%);
            }


    /* فلش قبلی */
    .hero-1 .th-swiper-custom .slider-prev:hover img {
        transform: translateX(2px);
    }


    /* فلش بعدی */
    .hero-1 .th-swiper-custom .slider-next:hover img {
        transform: translateX(-2px);
    }

    /* =========================================
   ARJ HERO PAGINATION
   عمودی + دقیقاً وسط دکمه‌ها
========================================= */

.hero-1 .th-swiper-custom .slider-pagination {
    width: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* خط‌های عمودی */
.hero-1 .th-swiper-custom
.slider-pagination
.swiper-pagination-bullet {

    margin-left: 0 !important;
    margin-right: 0 !important;

    left: auto !important;
    right: auto !important;

    transform: none !important;

    background: rgba(244, 204, 22, .40) !important;
    border-color: rgba(244, 204, 22, .40) !important;
}


/* خط فعال */
.hero-1 .th-swiper-custom
.slider-pagination
.swiper-pagination-bullet-active {

    background: #f4cc16 !important;
    border-color: #f4cc16 !important;
}

/* About ARJ Button */
.arj-about-section .arj-about-btn {
    color: #111 !important;
}

    .arj-about-section .arj-about-btn:hover {
        background: #111 !important;
        color: #f4cc16 !important;
        border-color: #111 !important;
    }

        .arj-about-section .arj-about-btn:hover i {
            color: #f4cc16 !important;
        }


@media (max-width: 766px) {
    .arj-history-title {
        display: block;
        margin-top: 50px !important;
    }
}

.glass {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: right;
    padding: 20px;
}



/* =========================================
   ARJ HISTORY - TABLET FIX
========================================= */

@media (max-width: 991px) {

    .arj-history-year {
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

    .arj-history-title {
        margin-top: 12px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 991px) {

    .arj-history-intro {
        padding-top: 40px !important;
    }
}


/* =========================================
   ARJ HERO - VIDEO BACKGROUND
========================================= */

.hero-1 .arj-video-bg {
    z-index: 2;
}

    .hero-1 .arj-video-bg video {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* =========================================
   ARJ HERO - CINEMATIC TRANSITION
========================================= */

.hero-1 .swiper-slide .hero-inner {
    opacity: .45;
    transform: scale(1.02);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(.22,.61,.36,1), filter 1s ease;
    filter: brightness(.82);
}

.hero-1 .swiper-slide-active .hero-inner {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
}

.hero-1 .swiper-slide-prev .hero-inner {
    opacity: .2;
    transform: scale(.99);
    filter: brightness(.68);
}

.hero-1 .swiper-slide-next .hero-inner {
    opacity: .2;
    transform: scale(1.025);
    filter: brightness(.72);
}

/* =========================================
   ARJ HERO - DARK TRANSITION BACKGROUND
========================================= */

.hero-1,
.hero-1 .swiper-wrapper,
.hero-1 .swiper-slide {
    background: #211b16 !important;
}