@import url(reset.css);
@import url(fontiran.css);

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    direction: rtl;
    font-family: Yekan Bakh FaNum;
    background-color: #f5f4f3 !important;
}

a {
    text-decoration: none !important;
}

.bz-wrapper p,
li {
    color: var(--text-color);
    margin-bottom: 0 !important;

}

.btnz {
    font-family: Yekan Bakh FaNum;
    background-color: var(--btn-color);
    color: var(--primary-black);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btnz-b {
    font-family: Yekan Bakh FaNum;
    background-color: #ffffff04;
    border: 2px solid #282222;
    color: var(--primary-black);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btnz:hover {
    background-color: #e3af02;
    color: #2d2926;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

:root {
    --primary-black: #2d2926;
    --text-color: #322b26;
    --yellow-color: #FFD042;
    --btn-color: #FDA100;
}

/* introduction */
#intro {
    background-color: #f5f4f3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
}

#intro .int-caption {
    margin-left: 20px;
    width: 60%;
}

#intro h1 {
    font-weight: bold;
    color: var(--primary-black);
    font-size: 30px;
    margin-bottom: 20px;
}

#intro h3 {
    font-weight: bold;
    color: var(--primary-black);
    font-size: 20px;
    margin-bottom: 20px;
}


#intro p {
    font-size: 20px;
    color: var(--text-color);
    line-height: 30px;
    text-align: justify;
}

#intro .int-caption .btnz-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#intro .int-caption .btnz-container a {
    padding: 10px 50px;
    width: 49%;
    text-align: center;
    font-weight: bold;
    font-size: 19px;

}

#intro .int-image img {
    width: 500px;
}

/* Tips */
#tips {
    background-color: #fff;
    padding: 60px 0;
    border-radius: 100px 0 100px 0;
}

#tips h2 {
    margin: 0 auto 60px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;
}

#tips .tips-box_container {
    width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

#tips .tips-box {}

#tips .tips-box img {
    width: 100%;
    border-radius: 8px;
}

#tips .tips-box div {
    background-color: #ffd041;
    padding: 17px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: -17px;
    position: relative;
    z-index: 999;
    font-weight: bold;
}

/* Customers */
#customers  {
    padding: 70px 0;
    background-color: #fff;
}

#customers h2 {
    margin: 0 auto 60px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;    
}

#customers .container_customers {
    padding: 0 80px;
}

/* BENEFITS */
#benefits {
    background-color: #F5F4F2;
    padding: 70px 0;
}

#benefits h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

#benefits .box-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

.img-benefits_container {
    background-color: #FFFFFF;
    width: 200px;
    border-radius: 10px;
    padding: 30px 32px;
}

.img-benefits_container img {
    width: 100%;
}

.title-benefits_container {
    background-color: #FFD042;
    padding: 11px 0px;
    text-align: center;
    border-radius: 10px;
    margin-top: -13px;
    font-weight: 600;
}

/* ============== */
#acc {
    background-color: #fff;
    padding: 70px 0;
    border-radius: 100px 0 100px 0;
}

#acc h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

#acc p {
    text-align: justify;
    width: 80%;
    margin: 0 auto;
    line-height: 23px;
    margin-bottom: 20px;
}

#acc li {
    margin-bottom: 10px;
}

#acc .acc-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-end;
}

#acc .img-container_acc {
    text-align: center;
    padding: 90px 0;
}

#acc .btnz {
    padding: 10px 20px;
    font-weight: 600;
}

/* feasibility */
#feasibility {
    padding: 70px 0;
    background-color: #F5F4F2;
}

#feasibility h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

#feasibility .int-caption {
    text-align: justify;
    width: 80%;
    margin: 0 auto;
    line-height: 23px;
    margin-bottom: 20px;
}

#feasibility .step-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#feasibility .step {
    background-color: var(--yellow-color);
    width: 250px;
    height: 130px;
    transform: skew(-20deg);
    -webkit-box-shadow: 13px 13px 0px -3px #2C2222;
    box-shadow: 13px 13px 0px -3px #2C2222;
    display: flex;
    align-items: center;
}

#feasibility .step p {
    transform: skew(+20deg);
    text-align: center;
    margin: 0 auto;
    width: 75%;
    line-height: 22px;
    /* font-weight: bold; */
}

#feasibility .arrow-mobile {
    display: none;
}

#feasibility .btnz-container {
    margin: 70px auto 0;
    text-align: center;
    width: 40%;
    display: flex;
    justify-content: space-between;

}

#feasibility .btnz-container a {
    padding: 9px 30px;
    border-radius: 10px;
    font-weight: 600;
}

/* statitics */
#statistics {
    background-color: #fff;
    border-radius: 100px;
    padding: 60px 0;
    border-radius: 100px 0 100px 0;
}

#statistics .stat-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
}

#statistics .stat-box {
    width: 23%;
}

#statistics .num-container {
    border-radius: 10px;
    text-align: center;
    background: #fff;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

#statistics .num-container p {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

#statistics .title-container {
    margin-top: -20px;
    background-color: #ffd042;
    text-align: center;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
}

/* soldier */
#soldier {
    padding-top: 70px;
    display: flex;
    justify-content: center;
    gap:30px;
    background-color: #f5f4f3;
    align-items: flex-end;
    padding-bottom: 20px;
}

#soldier h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
}

#soldier .caption {
    width: 40%;
}

#soldier .caption p {
    text-align: justify;
    line-height: 30px;
}

#soldier .img-container {
    width: 40%;
    text-align: left;
    display: flex;
    align-items: flex-end;
}

#soldier .btnz-soldier {
    border-radius: 10px;
    text-align: center;
    width: 48%;
}

/* DATA */
#data {
    background-color: #fff;
    padding: 70px 0 0;
    border-radius: 100px 0 100px 0;
}

#data .intro_data {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

#data .caption_data {
    width: 49%;
}

#data .caption_data h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    line-height: 36px;
}

#data .caption_data p {
    color: var(--text-color);
    text-align: justify;
    line-height: 26px;
    font-size: 16px;
}

#data .company_data {
    width: 49%;
}

#data .company_data .about-company_data {
    display: flex;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#data .company_data .about-company_data:not(:nth-child(3)) {
    border-bottom: 1px solid rgb(230, 230, 230);
}


#data .counter_data {
    display: inline-block;
    flex-basis: 180px;
}

#data .counter_data .number_data {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #2ccdea;
}

#data .counter_data .title_data {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #feaf89;
}

#data .icon_data {
    width: 173px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#data .icon_data img {
    display: inline-block;
    width: 50px;
}

#data .company_data .detail_data {
    width: 410px;
}

#data .company_data .detail_data p {
    line-height: 25px;
    color: gray !important;
}

/* -------- */
#data .infography_data {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 20px auto;
}

#data .infography-container_data {
    width: 100%;
    text-align: center;
}

#data .infography-container_data:nth-child(2) div{
    margin-top: 60px;
        
}

#data .infography_data h3 {
    background-color: #007bbe;
    font-weight: bold;
    color: #f1f1f1;
    display: inline-block;
    padding: 8px;
    font-size: 20px;
    line-height: 26px;
}

#data .infography_data img {
    width: 400px;
}

/* ------------- */
#data .read-more-content {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    transition: max-height 2s ease;
}

#data .read-more-content.open {
    max-height: 2000px;
}

.fade-overlay.hide {
    opacity: 0;
}

#data .fade-overlay {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            #ffffff);
    width: 100%;
    height: 60px;
    /* background-color: red; */
    position: absolute;
    bottom: 0;
    transition: opacity 0.3s ease;
}

.read-more-btnz {
    font-family: Yekan Bakh FaNum;
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    color: #1a73e8;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #fff;
    font-size: 15px;
    font-weight: bold;
}

/* NEWS */
#news {
    background-color: #F5F4F2;
    padding: 50px 0;
    border-radius: 50px 0 50px 0;

}

#news .news-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}


#news .news-title {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}

#news .news-title h3 {
    font-size: 20px;
    color: #063c8f;

}

#news .news-box {
    max-width: 23%;
    text-decoration: none !important;
}

/* #news .news-box .img-container_new {
    margin-bottom: 20px;
}

#news .news-box .img-container_new img {
    border-radius: 5px;
    width: 100%;
} */

#news .news-box .img-container_new {
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
}

#news .news-box .img-container_new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#news .news-box .title {
    font-size: 20px;
    color: #063c8f;
    margin-bottom: 10px
}

#news .news-box .digest {
    color: #808080;
    font-size: 16px;
    margin-bottom: 13px;
    line-height: 21px;
}

#news .news-box .date {
    color: #808080;
    font-size: 16px;
}

/* blog */
#blog {
    background-color: #fff;
    border-radius: 100px 0 100px 0;
    padding: 70px 0;
}

#blog h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
}

#blog .blog-container {
    width: 80%;
    /* max-width: 1000px; */
    margin: 0 auto;
}

#blog .blog-box {
    padding: 16px;
    background: #ffffff;
    border: 1px solid #cacfd8;
    border-radius: 12px;
    width: 33.333333%;
    margin: 0 11px;
}

#blog .blog-container img {
    width: 100%;
    margin-bottom: 16px;
}

#blog .blog-box .title {
    font-size: 16px;
    line-height: 28px;
}

#blog .blog-box .meta-data {
    display: flex;
    margin-top: 20px;
    align-items: center;
    margin-bottom: 16px;

}

#blog .blog-box .category {
    padding: 7px 12px;
    /* width: 60px; */
    background: #eceff3;
    margin-left: 32px;
    font-size: 12px;
}

#blog .blog-box .date {
    font-size: 12px;
}

#blog .blog-box .digest {
    color: #1a1a23;
    line-height: 26px;
    font-size: 14px;
}


#blog .blog-container {
    display: flex;
}

/* COMMENTS */
#comments {
    background-color: #F5F4F2;
    padding: 70px 0;
}

#comments h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 30px;
    font-weight: bold;
}

#comments .container_comments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

#comments .box_comments {
    text-align: center;
}


#comments .container_comments .text_comments {
    background-color: #fff;
    border-radius: 5px;
    padding: 37px 20px;
    line-height: 26px;
    min-height: 200px;
}

#comments .container_comments .text_comments p:nth-child(2) {
    margin-top: 20px;
}

#comments .box_comments img {
    width: 77px;
    margin-bottom: -35px;
}

/* FAQ */
#faq {
    background-color: #fff;
    padding: 70px 0 105px;
    border-radius: 100px 0 100px 0;
}

#faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
}

#faq .faq-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

#faq .faq-item {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
}

#faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-black);
    list-style: none;
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq summary::after {
    content: "+";
    float: left;
    font-weight: bold;
}

#faq details[open] summary::after {
    content: "−";
}

#faq .faq-item p {
    margin-top: 10px;
    line-height: 26px;
    color: var(--text-color);
}

/* STICKY */
.sticky {
    background-color: #007bbe;
    width: 70%;
    /* position: fixed;
    position: relative; */

}

.sticky p {
    display: inline-block;
}

.sticky a {
    /* display: inline-block; */


}

/* .toggle-sticky-section{
    display: none;
    left: 0 !important;
    width: 100%;
    z-index: 999;
    position: fixed;
    margin-bottom: 15px !important;
    transition: opacity 0.5s ease-in-out; 
    box-shadow: 0 0 50px rgba(66, 141, 237, .1), 0 0 14px rgba(66, 141, 237, .1);
}
.sticky-active {
    display: block;
    opacity: 1;
} */


.toggle-sticky-section {
    color: var(--primary-black);
    position: fixed;
    bottom: -100px;
    /* hidden */
    left: 0;
    width: 100%;
    background-color: #e4e4e4;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: bottom 0.35s ease;
    -webkit-box-shadow: 0px -3px 16px 4px rgba(0, 0, 0, 0.29);
    box-shadow: 0px -3px 16px 4px rgba(0, 0, 0, 0.29);
    font-weight: bold;
    font-size: 20px;
}

.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

.toggle-container a {
    font-family: Yekan Bakh FaNum;
    background-color: var(--btn-color);
    color: var(--primary-black);
    border-radius: 30px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
}

.toggle-sticky-section.show {
    bottom: 0;
}

/* responsive */
@media only screen and (max-width: 1024px) {

    /* #intro,
    #tips .tips-box_container,
    #benefits .box-container,
    #acc .acc-container,
    #feasibility .step-container,
    #statistics .stat-container,
    #soldier,
    #data .intro_data,
    #news .news-container,
    #blog .blog-container,
    #comments .container_comments,
    #data .infography_data {
        width: 92%;
    } */

    #intro {
        padding: 30px 40px;
        gap: 20px;
    }

    #intro .int-image img {
        width: 380px;
    }

    #tips .tips-box_container {
        grid-template-columns: 1fr 1fr;
    }

    #benefits .box-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    #acc .acc-container {
        gap: 20px;
    }

    #feasibility .step-container {
        flex-wrap: wrap;
        gap: 18px;
    }

    #statistics .stat-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    #statistics .stat-box {
        width: 48%;
    }

    #soldier .caption,
    #soldier .img-container {
        width: 48%;
    }

    #data .intro_data {
        flex-wrap: wrap;
        gap: 24px;
    }

    #data .caption_data,
    #data .company_data {
        width: 100%;
    }

    #news .news-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    #news .news-box {
        max-width: 48%;
    }

    #blog .blog-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    #blog .blog-box {
        width: 48%;
        margin: 0;
    }
}

@media only screen and (max-width: 768px) {
    #intro {
        flex-direction: column;
        text-align: center;
    }

    #intro .int-caption {
        margin-left: 0;
    }

    #intro p {
        text-align: justify;
    }

    #intro .int-image img {
        width: 260px;
    }

    #intro .int-caption .btnz-container {
        flex-direction: column;
        gap: 10px;
    }

    #intro .int-caption .btnz-container a {
        width: 100%;
    }

    #tips .tips-box_container {
        width: 90%;
    }

    #tips .tips-box_container {
        grid-template-columns: 1fr 1fr;
    }

    #benefits .box-container {
        justify-content: center;
    }

    #benefits .img-benefits_container {
        width: 100%;
    }

    #benefits .box-benefits {
        width: calc(50% - 10px)
    }

    #acc .acc-container {
        flex-direction: column;
        align-items: stretch;
    }

    #acc .btnz {
        text-align: center;
    }

    #feasibility .btnz-container {
        width: 90%;
        flex-direction: column;
        gap: 10px;
    }

    #statistics .stat-box {
        width: 100%;
    }

    #soldier {
        flex-direction: column;
        gap: 20px;
    }

    #soldier .caption,
    #soldier .img-container {
        width: 100%;
    }

    #data .company_data .detail_data {
        width: auto;
    }

    #data .infography-container_data:nth-child(2) div{
        margin-top: 0;
        
    }

    #data .infography_data {
        flex-direction: column;
        gap: 20px;
    }

    #news .news-box {
        max-width: 100%;
    }

    #blog .blog-box {
        width: 100%;
    }

    #comments .container_comments {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 600px) {
    #intro {
        padding: 20px 24px;
        margin: 0 auto;
    }

    #intro .int-caption {
        width: auto;
    }

    #intro h1 {
        font-size: 24px;
    }

    #intro h3 {
        font-size: 18px;
    }

    #intro p {
        font-size: 16px;
        line-height: 26px;
    }

    #intro .int-caption .btnz-container a {
        font-size: 15px;
    }

    #tips {
        padding: 40px 0;
    }

    #tips h2 {
        margin: 25px auto 60px;
    }

    #benefits {
        padding: 50px 0;
    }

    #acc {
        padding: 50px 0;
    }

    #acc .img-container_acc {
        padding: 30px 0;
    }

    #feasibility {
        padding: 50px 0;
    }

    #feasibility .step-container {
        flex-direction: column;
        gap: 10px;
    }

    #feasibility .arrow-destop {
        display: none;
    }

    #feasibility .arrow-mobile {
        display: block;
    }

    #statistics {
        padding: 40px 0;
    }

    #soldier {
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    #soldier .caption h2 {
        text-align: center;
        line-height: 40px;
        margin-bottom: 25px;
    }

    #data {
        padding: 50px 0 0;
    }

    #data .infography_data {
        align-items: center;
        text-align: center;
    }

    #data .infography_data>div {
        width: 100%;
        text-align: center;
    }

    #data .company_data .about-company_data {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "counter icon"
            "detail detail";
        gap: 12px 16px;
        align-items: center;
    }

    #data .counter_data {
        grid-area: counter;
        flex-basis: auto;
        text-align: right;
    }

    #data .icon_data {
        grid-area: icon;
        width: 64px;
        justify-content: center;
    }

    #data .icon_data img {
        width: 44px;
    }

    #data .company_data .detail_data {
        grid-area: detail;
        width: auto;
    }

    #data .read-more-content.open {
        max-height: 3300px;
    }

    #news {
        padding: 40px 0;
    }

    #news .news-title {
        width: 92%;
        margin: 10px auto 20px;
        align-items: center;
    }

    #news .news-title h3 {
        font-size: 18px;
    }

    #news .news-container {
        gap: 16px;
    }

    #news .news-box {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        /* background: #fff; */
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }

    #news .news-box .img-container_new {
        width: 110px;
        flex: 0 0 110px;
        margin-bottom: 0;
    }

    #news .news-box .img-container_new img {
        border-radius: 8px;
        height: 75px;
        object-fit: cover;
    }

    #news .news-box .caption-container {
        flex: 1;
        text-align: right;
    }

    #news .news-box .title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    #news .news-box .digest {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 6px;
        overflow: hidden;
        height: 40px;
    }

    #news .news-box .date {
        font-size: 12px;
    }

    #blog {
        padding: 50px 0;
    }

    #comments {
        padding: 50px 0;
    }

    #comments .container_comments {
        grid-template-columns: none;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 10px 20px;
        scroll-padding: 10px;
    }

    #comments .box_comments {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    #comments .container_comments::-webkit-scrollbar {
        height: 6px;
    }

    #comments .container_comments::-webkit-scrollbar-thumb {
        background: #d1d1d1;
        border-radius: 10px;
    }

    #faq {
        margin-bottom: 120px;
    }

    .toggle-sticky-section {
        padding: 20px 30px;
    }

    .toggle-sticky-section .toggle-container {
        width: 100%;
        flex-direction: column;
    }

    .toggle-sticky-section .toggle-container p {
        margin-bottom: 20px;
    }

    .toggle-container a{
        margin-top: 20px;
    }
}
