﻿
/*sizing*/
.w-70 {
    width: 70%;
}

.h-des-21rem {
    height: 20rem;
}
.h-6rem-icon {
    height: 6rem;
}


/*menu*/
.nav-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 5%;
    transition: all 0.3s ease;
    color: #fff;
}
.logo {
    width: 120px;
    filter: brightness(0) invert(1);
}

.language-en,
.language-fn,
.navbar-nav {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-item {
    margin: 0 .3rem;
}


/* menu link */
.nav-link {
    padding: 0.5rem 0;
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: "DIN Light_3";
    font-weight: 500;
    transition: color .3s ease;
    /*cursor: pointer;*/
}
    .nav-link:hover {
        color: #0d6efd;
        font-weight: 700;
        transition: all .4s ease;
    }

/* submenu */
.menu-item {
    position: absolute;
    top: 74%;
    left: 0;
    width: 100vw;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0), 0 8px 10px rgba(0, 0, 0, 0.05);
}
.color-black-100 {
    color: #80808057 !important;
}

/*submenu link */
.menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-item li a {
    display: block;
    position: relative;
    color: #222;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 28px;
}
    .menu-item li a:hover {
        color: #000 !important;
        font-size: 21px;
        cursor: pointer;
        font-weight: bold;
    }

/* sidebar */
.sidebar {
    position: fixed;
    top: 0;
    width: 99%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    transition: right 0.3s ease, left 0.3s ease;
    overflow-y: auto;
}
:root[dir="rtl"] .sidebar {
    right: -100%;
    left: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
:root[dir="rtl"] .sidebar.active {
    right: -1px;
}

:root[dir="ltr"] .sidebar {
    left: -100%;
    right: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
:root[dir="ltr"] .sidebar.active {
    left: -1px;
}
:root[dir="ltr"] .sidebar.active img {
    transform: rotate(180deg);
}
.sidebar .icon-container {
    padding: 1rem;
}
.sidebar .side-search-icon {
    margin-right: 2.6rem !important;
    margin-left: auto;
}
.sidebar.active {
    right: -1px;
}
body.no-scroll {
    overflow: hidden;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar li {
    border-bottom: 1px solid #ddd;
}
    .sidebar li a {
        display: block;
        position: relative;
        padding: 0.5rem 1.5rem;
        color: #222;
        text-decoration: none;
        overflow: hidden;
/*        font-family: 'Alternate DIN' !important;*/
    }
        .sidebar li a:hover {
            color: #000 !important;
            font-weight: bold;
        }
    .sidebar li div {
        transition: all 0.3s ease;
    }
        .sidebar li div:hover {
            cursor: pointer;
            background-color: black;
            padding-bottom: 1rem !important;
        }
            .sidebar li div:hover a {
                color: #fff !important;
            }
            .sidebar li div:hover img {
                filter: invert(1);
            }

:root[dir="rtl"] .sideBar-title {
    text-align: right !important;
}

.side-search-icon {
    width: 2.5rem;
    height: 2rem;
}
.footer-slider {
    padding: 2rem 2rem 3rem 2rem !important;
}
.menu-icon {
    filter: invert(1)
}
    .menu-icon:hover {
        cursor: pointer;
    }
.menu-bg-white {
    background: #fff;
    color: #000;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
    .menu-bg-white.nav-menu-container {
        padding: 2rem 5%;
    }
    .menu-bg-white .logo,
    .menu-bg-white .menu-icon {
        filter: invert(0);
    }
    .menu-bg-white .nav-link {
        color: #000;
    }
.rotate-arrow {
    transition: transform 0.3s ease;
}
    .rotate-arrow.open {
        transform: rotate(-90deg);
    }



/*slider*/

/* Swiper */
.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    position: relative;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slide-text {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 75%;
    z-index: 5;
    color: #fff;
    display: flex;
    align-items: center;
}
.slide-text-en {
    left: 13%;
    justify-content: left;
    direction: ltr;
}
.slide-text-fa {
    right: 12%;
    justify-content: right;
    direction: rtl;
}
@media (min-width: 370px) {
    .slide-text-fa {
        right: 16%;
    }
    .slide-text-en{
        left: 19%;
    }
}

    .slide-text:hover {
        cursor: default !important;
    }

.slide-text-inner {
    opacity: 0;
    transform: translateY(100%);
}

    .slide-text-inner.active {
        animation: slideTextUp .6s ease forwards;
    }

@keyframes slideTextUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Thumbnail */

.thumbnail-container {
    overflow-x: auto;
    scroll-behavior: smooth;
/*    padding-top: 17rem !important;*/
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 120px, black calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 120px, black calc(100% - 120px), transparent 100%);
}

.slide-container-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(0deg, #000000ba, transparent);
    padding: 1rem 0;
}

.slider-thumbnail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: .5rem 1rem;
    align-items: end;
}

.thumb-card {
    width: 238px;
    height: 144px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

    .thumb-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
        border-radius: 11px !important;
    }

    .thumb-card.active-thumb {
        transform: scale(1.05)
    }

.slide-count {
    width: 151px;
    height: 100%;
}

.mobile-slide-count {
    position: absolute;
    bottom: 19%;
    left: 40%;
    width: 100%;
    z-index: 10;
    height: max-content;
    width: max-content;
}

    .mobile-slide-count .slide-count-number {
        margin-top: 3rem;
    }

    .mobile-slide-count span {
        font-size: 39px !important;
        line-height: 25px !important;
    }



.slide-count .slide-count-number img {
    width: 17px !important;
    height: 33px !important;
}

.mobile-slide-count .arrow-down-icon {
    width: 96px !important;
}
/* Navigation buttons */
.arrow-prev-icon, .arrow-next-icon {
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
}

    .arrow-prev-icon:hover, .arrow-next-icon:hover {
        color: #0d6efd;
    }

.discover-slider a {
    font-size: 0.85rem;
}

.header-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-wh {
    height: 1.5rem;
    width: 2.5rem;
}

.down-slider-btn {
    background-color: #8b8b8bc4;
    border: none;
}

.w-20rem {
    width: 20rem;
}

.slide-des-info-icon {
    width: 90%;
    color: #ffffff;
    justify-content: space-between;
}
/*body*/
.content-after-slider {
    margin-top: 100vh;
    z-index: 2;
    position: relative;
    background-color: white;
}

.img-cover-h {
    height: 600px;
}

.img-cover-kanda {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover !important;
    top: 0;
    left: 0;
}

.vh-custom-90 {
    height: 125vh;
}

.industries-img-h img {
    border-radius: 18px !important;
}

.footer-menu-link li {
    line-height: 17px !important;
}
.footer-menu-link{
    padding-right: 0;
}
/*Social media icon*/
.wmax-31px {
    max-width: 31px;
    width: 31px !important;
}

.wmax-25px {
    max-width: 25px;
    width: 25px !important;
}

.wmax-23px {
    max-width: 23px;
    width: 23px !important;
}

.wmax-22px {
    max-width: 22px;
    width: 22px !important;
}

.text-indent {
    font-family: 'DINNextLTPro-Regular';
    line-height: 17px;
    font-size: 15px;
    max-width: 100%;
    white-space: normal;
}

    .text-indent + p {
        width: 100%;
    }

.kand-icon-Progress {
    width: 50%;
}

    .kand-icon-Progress > img {
        width: 50%;
    }

.txt-custom-w {
    width: 100%
}

.customer-icon img {
    width: 100px;
    height: 100px;
}

.footer-menu-link > li > a {
    font-family: 'DIN Light_3';
    font-weight: 400;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

    .footer-menu-link > li > a:hover {
        color: #1a202c;
        text-shadow: 0 0 1px currentColor;
        text-decoration: underline !important;
    }

.p-05 {
    padding: 0.7rem .7rem .55rem .7rem !important
}


#company,
#industries,
#services,
#solutions,
#Careers,
#innovation {
    scroll-margin-top: 150px;
}



/* Slider Fonts */
.slider-discover-button{
    position: absolute;
}
/* FA Fonts */
:root[dir="rtl"] .font-slider-title {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 900;
}
:root[dir="rtl"] .font-slider-desc {
    width: 75%;
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
:root[dir="rtl"] .font-slider-desc-more {
    font-size: 0.8rem;
    line-height: 1.3rem;
    margin-top: 0;
}
@media (max-width: 1200px) {
    :root[dir="rtl"] .font-slider-desc {
        width: 100%;
    }
}
@media (max-width: 1000px) {
    :root[dir="rtl"] .font-slider-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    :root[dir="rtl"] .font-slider-desc {
        font-size: 1.1rem;
        line-height: 1.6rem;
        margin-top: 0.5rem;
    }
}
@media (max-width: 768px) {
    .slider-text-container{
        text-align: center;
    }
    .slider-discover-button{
        position: relative
    }
}

/* EN Fonts */
.font-slider-title {
    font-size: 3rem;
    line-height: 3.1rem;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.font-slider-desc {
    width: 75%;
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin-top: 1.5rem;
    font-family: 'DINNextLTPro-Regular', sans-serif;
}
.font-slider-desc-more {
    font-size: 1rem;
    line-height: 1.1rem;
    margin-top: 1rem;
}
:root[dir="ltr"] .font-slider-desc-more span {
    font-family: 'DINNextLTPro-Light', sans-serif !important;
}
@media (max-width: 768px) {
    .font-slider-desc{
        margin: 1rem auto;
    }
    .font-slider-title {
        font-size: 2rem;
        line-height: 2.1rem;
    }
    .font-slider-desc {
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.5rem;
    }
}



/* 1st Section */
#HomepageSmartDevelopment {
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
}
#HomepageSmartDevelopmentUpperText{
    gap: 4rem;
}

.smart-develop-section-desc {
    flex: 1;
}


/* FA Fonts */
:root[dir="rtl"] .smart-develop-section-title {
    font-weight: 900;
    flex: 1;
    font-size: 2.5rem;
    line-height: 3rem;
}
:root[dir="rtl"] .smart-develop-section-desc-title {
    font-size: 1.5rem;
    line-height: 2rem;
}
:root[dir="rtl"] .smart-develop-section-desc-desc {
    font-size: 1rem;
    line-height: 1.5rem;
}


/* EN Fonts */
.smart-develop-section-title {
    flex: 1;
    font-size: 2.5rem;
    line-height: 2.6rem;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.smart-develop-section-desc-title {
    font-size: 1.8rem;
    line-height: 1.9rem;
    font-family: 'DINNextLTPro-Regular', sans-serif;
}
.smart-develop-section-desc-desc {
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-family: 'DINNextLTPro-Light', sans-serif;
}


@media (max-width: 1300px) {
    :root[dir="rtl"] .smart-develop-section-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-title {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-desc {
        font-size: 0.9rem;
        line-height: 1.3rem;
    }
    .smart-develop-section-title {
        font-size: 2rem;
        line-height: 2.1rem;
    }
    .smart-develop-section-desc-title {
        font-size: 1.5rem;
        line-height: 1.6rem;
    }
    .smart-develop-section-desc-desc {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }
}

@media (max-width: 1000px) {
    #HomepageSmartDevelopmentUpperText {
/*        color: black !important;*/
    }

    :root[dir="rtl"] .smart-develop-section-title {
        font-size: 1.7rem;
        line-height: 2.2rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-title {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-desc {
        font-size: 0.9rem;
        line-height: 1.2rem;
    }    
}

@media (max-width: 600px) {
    #HomepageSmartDevelopmentUpperText, #HomepageSmartDevelopmentBelowText {
        flex-direction: column;
    }

        #HomepageSmartDevelopmentBelowText div p {
            width: 100% !important
        }

    :root[dir="rtl"] .smart-develop-section-title {
        font-size: 1.7rem;
        line-height: 2.2rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-title {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    :root[dir="rtl"] .smart-develop-section-desc-desc {
        font-size: 0.9rem;
        line-height: 1.2rem;
    }
}





/* 2nd Section */
#HomepageEngineeringIdeas {
    background-image: url(../images/homepageSection2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    gap: 4rem;
    padding: 4rem 5%;
    display: flex;
    position: relative; 
    background-position:center;
}

    #HomepageEngineeringIdeas::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); 
        z-index: 0;
    }

    #HomepageEngineeringIdeas > div {
        position: relative;
        z-index: 1; 
    }

#HomepageEngineeringIdeas > div:first-child {
    width: 50%;
}
#HomepageEngineeringIdeas > div:first-child > * {
    max-width: 75%;
}
#HomepageEngineeringIdeas > div:last-child {
    width: 45%;
}

/* FA Fonts */
:root[dir="rtl"] .engineering-ideas-section-title {
    flex: 1;
    font-size: 2.5rem;
    line-height: 3rem;
    margin: 0;
    font-weight: 600;
}
:root[dir="rtl"] .engineering-ideas-section-desc {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

/* EN Fonts */
.engineering-ideas-section-title {
    flex: 1;
    font-size: 2.5rem;
    line-height: 2.6rem;
    margin: 0;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.engineering-ideas-section-desc {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-family: 'DINNextLTPro-Light', sans-serif;
}

@media (max-width: 1300px) {
    :root[dir="rtl"] .engineering-ideas-section-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .engineering-ideas-section-title {
        font-size: 2rem;
        line-height: 2.1rem;
    }
    .engineering-ideas-section-desc {
        font-size: 1rem;
        line-height: 1.1rem;
    }
}

@media (max-width: 1000px) {
    :root[dir="rtl"] .engineering-ideas-section-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    :root[dir="rtl"] .engineering-ideas-section-desc {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }
    .engineering-ideas-section-title {
        font-size: 1.7rem;
        line-height: 1.8rem;
    }

    .engineering-ideas-section-desc {
        font-size: 1rem;
        line-height: 1.1rem;
    }
}

@media (max-width: 768px) {
    #HomepageEngineeringIdeas {
        flex-direction: column;
        gap: 2rem;
        padding-top: 15rem !important;
    }
    #HomepageEngineeringIdeas > div:first-child {
    width: 100%;
    }
    #HomepageEngineeringIdeas > div:first-child > * {
        max-width: 100%;
    }

    #HomepageEngineeringIdeas > div:last-child {
        width: 100%;
    }
    #HomepageSmartDevelopmentUpperText {
        flex-direction: column !important;
    }
}





/* 3rd Section */

/* FA Fonts */
:root[dir="rtl"] .progress-path-title {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 600;
}
:root[dir="rtl"] .progress-path-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
}
:root[dir="rtl"] .progress-path-description {
    font-size: 0.9rem;
    line-height: 1.4rem;
    font-weight: 200;
}

/* EN Fonts */
.progress-path-title {
    font-size: 4rem;
    line-height: 4.1rem;
    font-weight: 600;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.progress-path-subtitle {
    font-size: 1.5rem;
    line-height: 1.6rem;
    font-weight: 400;
    font-family: 'DINNextLTPro-Regular', sans-serif;
}
.progress-path-description {
    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 200;
    font-family: 'DINNextLTPro-Light', sans-serif;
}
@media (max-width: 1500px) {
    .progress-path-title {
        font-size: 3.5rem;
        line-height: 3.6rem;
    }
    .progress-path-subtitle {
        font-size: 1.3rem;
        line-height: 1.4rem;
    }

    .progress-path-description {
        font-size: 1rem;
        line-height: 1.1rem;
    }
}
@media (max-width: 1300px) {
    :root[dir="rtl"] .progress-path-title {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    :root[dir="rtl"] .progress-path-subtitle {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    :root[dir="rtl"] .progress-path-description {
        font-size: 0.8rem;
        line-height: 1.3rem;
    }
    .progress-path-title {
        font-size: 2.5rem;
        line-height: 2.6rem;
    }

    .progress-path-subtitle {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }

    .progress-path-description {
        font-size: 0.9rem;
        line-height: 1rem;
    }
}

@media (max-width: 1000px) {
    :root[dir="rtl"] .progress-path-title {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    :root[dir="rtl"] .progress-path-subtitle {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
    :root[dir="rtl"] .progress-path-description {
        font-size: 0.7rem;
        line-height: 1.2rem;
    }
    .progress-path-title {
        font-size: 2rem;
        line-height: 2.1rem;
    }
}







/* 4th Section */

/* FA Fonts */
:root[dir="rtl"] .industries-section-title {
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 600;
}
:root[dir="rtl"] .industries-section-subtitle {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 400;
}
:root[dir="rtl"] .industries-section-card-title {
    font-size: 1.8rem;
    line-height: 2.3rem;
    font-weight: 200;
}
:root[dir="rtl"] .industries-section-card-subtitle {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 200;
}
:root[dir="rtl"] .industries-section-card-desc {
    font-size: 0.8rem;
    line-height: 1.3rem;
    font-weight: 200;
}

/* EN Fonts */
.industries-section-title {
    font-size: 5rem;
    line-height: 5.1rem;
    font-weight: 600;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.industries-section-subtitle {
    font-size: 2rem;
    line-height: 2.1rem;
    font-weight: 400;
    font-family: 'DINNextLTPro-Regular', sans-serif;
}
.industries-section-card-title {
    font-size: 2rem;
    line-height: 2.1rem;
    font-weight: 200;
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
}
.industries-section-card-subtitle {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 200;
    font-family: 'DINNextLTPro-Regular', sans-serif;
}
.industries-section-card-desc {
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: 200;
    font-family: 'DINNextLTPro-Light', sans-serif;
}
@media (max-width: 1300px) {
    .industries-section-title {
        font-size: 4rem;
        line-height: 4.1rem;
    }
}



/* 5th Section */
#HomepageSustainability {
    height: 550px;
    background-image: url('../images/homepageSustainability.jpg');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}
#HomepageSustainability::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}
#HomepageSustainability > div {
    position: relative;
    z-index: 2; 
}
.sustainability-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -50%;
    height: 2px;
    background: white;
    width: calc(150%);
}
:root[dir="rtl"] .sustainability-title::after {
    right: -50%;
    left: auto;
    width: calc(150%);
}
.sustainability-section-info{
    width: 50%;
}
.sustainability-title-wrapper{
    width: 50%;
}
/* FA Fonts */
:root[dir="rtl"] .sustainability-title {
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-align: center;
}
:root[dir="rtl"] .sustainability-subtitle {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
:root[dir="rtl"] .sustainability-description {
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}
:root[dir="rtl"] .sustainability-description-more {
    font-size: 0.8rem;
    line-height: 1.3rem;
    font-weight: 200;
}

/* EN Fonts */
.sustainability-title {
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
    font-size: 4rem;
    line-height: 4.1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-align: center;
}
.sustainability-subtitle {
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
    font-size: 2rem;
    line-height: 2.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.sustainability-description {
    font-family: 'DINNextLTPro-Regular', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}
.sustainability-description-more {
    font-family: 'DINNextLTPro-Light', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 200;
}

@media (max-width: 1300px) {
    #HomepageSustainability {
        gap: 1rem;
    }
}
@media (max-width: 1200px) {
    .sustainability-section-info{
        width: 50%;
    }
}
@media (max-width: 1200px) {
    :root[dir="ltr"] .sustainability-title {
        font-size: 2.5rem;
        line-height: 2.6rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    #HomepageSustainability{
        flex-direction: column;
        align-items: flex-start;
    }
    .sustainability-title::after {
        display: none;
    }
    .sustainability-title-wrapper {
        width: 100%;
        margin-bottom: 4rem;
    }
    .sustainability-section-info {
        width: 80%;
    }
    .sustainability-title {
        font-size: 3rem;
        line-height: 3.1rem;
        text-align: left;
    }
    :root[dir="rtl"] .sustainability-subtitle {
        margin-bottom: 0.5rem;
    }
    .sustainability-subtitle {
        margin-bottom: 0.5rem;
    }
    :root[dir="ltr"] .sustainability-section-info {
        width: 100%;
    }
    }
@media (max-width: 400px) {
    .sustainability-section-info {
        width: 100%;
    }
    .sustainability-title-wrapper {
        margin-bottom: 3rem;
    }
    :root[dir="rtl"] .sustainability-title {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    .sustainability-title {
        font-size: 2.5rem;
        line-height: 2.6rem;
    }

    .sustainability-subtitle {
        font-size: 1.8rem;
        line-height: 1.9rem;
        margin-bottom: 1rem;
    }

    .sustainability-description {
        font-size: 1.4rem;
        line-height: 1.5rem;
    }

    .sustainability-description-more {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }
}



/* 6th Section */

.solution-products-card{
    gap: 1rem;
}
.solutions-and-products-icon{
    width: 25%;
}
.solutions-and-products-content{
    width: 75%;
}
/* FA Fonts */
:root[dir="rtl"] .solution-products-title {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 600;
}
:root[dir="rtl"] .solution-products-desc {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
}
:root[dir="rtl"] .solution-products-card-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: 600;
}
:root[dir="rtl"] .solution-products-card-desc {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}
/* EN Fonts */
.solution-products-title {
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
    font-size: 4rem;
    line-height: 4.1rem;
    font-weight: 600;
}
.solution-products-desc {
    font-family: 'DINNextLTPro-Regular', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6rem;
    font-weight: 400;
}
.solution-products-card-title {
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    font-weight: 600;
}
.solution-products-card-desc {
    font-family: 'DINNextLTPro-Light', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 400;
}
@media (max-width: 1300px) {
    :root[dir="rtl"] .solution-products-title {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    :root[dir="rtl"] .solution-products-desc {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
    .solution-products-title {
        font-size: 3rem;
        line-height: 3.1rem;
    }
}
@media (max-width: 1200px) {
    .solutions-and-products-icon {
        width: 15%;
    }
    .solutions-and-products-content {
        width: 85%;
    }
}
@media (max-width: 900px) {
    .solutions-and-products-icon {
        width: 25%;
    }

    .solutions-and-products-content {
        width: 75%;
    }
    .solution-products-title {
        font-size: 2rem;
        line-height: 2.1rem;
    }
    .solution-products-desc {
        font-size: 1.2rem;
        line-height: 1.3rem;
    }
}
@media (max-width: 768px) {
    .solutions-and-products-icon {
        width: 15%;
    }
    .solutions-and-products-content {
        width: 85%;
    }
    .solution-products-title {
        font-size: 3rem;
        line-height: 3.1rem;
    }
    .language-box-holder,
    .language-box-holder * {
        display: flex !important;
    }
}
@media (max-width: 600px) {
    .solutions-and-products-icon {
        width: 20%;
    }
    .solutions-and-products-content {
        width: 80%;
    }

    :root[dir="rtl"] .solution-products-desc {
        font-size: 1.3rem;
        line-height: 1.8rem;
        font-weight: 400;
    }

    :root[dir="rtl"] .solution-products-card-title {
        font-size: 1.2rem;
        line-height: 1.7rem;
        font-weight: 600;
    }

    :root[dir="rtl"] .solution-products-card-desc {
        font-size: 0.9rem;
        line-height: 1.4rem;
        font-weight: 400;
    }
}
@media (max-width: 400px) {
    .solution-products-card{
        flex-direction: column;
    }
    .solutions-and-products-icon {
        width: 30%;
    }
    .solutions-and-products-content {
        width: 100%;
    }
}


/* 7th Section */

.careers-section {
    background-color: #000000;
    padding:4rem 5%;
}
.careers-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
}

.careers-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6rem;
    color: #ffffff;
}

.careers-description {
    font-size: 1rem;
    line-height: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'DINNextLTPro-Light', 'Adihaus DIN', sans-serif;
}
:root[dir="rtl"] .careers-description {
    line-height: 1.4rem;
}






.fs-des-footer{
    gap: 2rem;
}

.fs-des-footer img {
    width: 165px;
}


@media (max-width: 600px) {
    .fs-des-footer {
        flex-direction: column;
    }
}



/* 1. SHARED POLICY & TERMS MODAL CONTAINERS */

#termsModal .modal-content,
.policy-modal .modal-content {
    border-radius: 1.5rem !important;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    z-index: 9999;
}

#termsModal .modal-header,
.policy-modal .modal-header {
    border-bottom: 1px solid #f1f3f5 !important;
    padding: 1.5rem 2rem !important;
    background-color: #fafbfe;
}

#termsModal .modal-title,
.policy-modal .modal-title {
    font-family: 'DINNextLTPro-Bold_1', sans-serif;
    font-size: 1.4rem !important;
    line-height: 2.2rem;
    color: #1a202c;
    font-weight: 800 !important;
}

#termsModal .btn-close,
.policy-modal .btn-close {
    background-color: #edf2f7;
    opacity: 0.6;
    padding: 0.6rem;
    border-radius: 50%;
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

#termsModal .btn-close:hover,
.policy-modal .btn-close:hover {
    background-color: #e2e8f0;
    transform: rotate(90deg);
    opacity: 1;
}

#termsModal .modal-body,
.policy-modal .modal-body {
    font-family: 'DINNextLTPro-Light', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    padding: 2rem !important;
}

#termsModal .modal-body::-webkit-scrollbar,
.policy-modal .modal-body::-webkit-scrollbar {
    display: block !important;
    width: 6px;
}
#termsModal .modal-body::-webkit-scrollbar-track,
.policy-modal .modal-body::-webkit-scrollbar-track {
    background: #f7fafc;
}
#termsModal .modal-body::-webkit-scrollbar-thumb,
.policy-modal .modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}
#termsModal .modal-body::-webkit-scrollbar-thumb:hover,
.policy-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.terms-content,
.policy-body-content {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.35;
}

.terms-content p,
.policy-body-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-content p,
.terms-content ul li,
.policy-body-content p,
.policy-body-content ul li {
    font-family: 'DINNextLTPro-Light', sans-serif !important;
    font-weight: 300;
}

.terms-content h4,
.policy-body-content h4 {
    font-family: 'DINNextLTPro-Medium', sans-serif;
    font-size: 1.2rem;
    color: #111827;
}

.terms-content h5,
.policy-body-content h5 {
    position: relative;
    font-family: 'DINNextLTPro-Medium', sans-serif;
    font-size: 1.1rem;
    color: #111827;
    font-weight: 700 !important;
    margin-top: 2.2rem !important;
    margin-bottom: 1rem !important;
    padding-left: 12px;
    padding-right: 0;
    border-left: 3px solid #0d6efd;
    border-right: none;
}

.terms-content ul,
.policy-body-content ul {
    padding: 0;
    margin-bottom: 1.5rem;
}

.terms-content ul li,
.policy-body-content ul li {
    position: relative;
    padding-left: 1.5rem !important;
    padding-right: 0 !important;
    margin-bottom: 0.8rem !important;
    color: #4a5568;
    line-height: 1.4;
}

.terms-content ul li::before,
.policy-body-content ul li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    left: 0 !important;
    right: auto !important;
    top: -1px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif !important;
}

#termsModal .modal-footer .btn-outline-dark,
.policy-modal .modal-footer .btn-outline-dark {
    border-width: 1.5px;
    font-family: 'DINNextLTPro-Regular', sans-serif;
    transition: all 0.3s ease;
}

#termsModal .modal-footer .btn-outline-dark:hover,
.policy-modal .modal-footer .btn-outline-dark:hover {
    background-color: #111;
    color: #fff;
}

.terms-trigger, 
.privacy-trigger, 
.ft-Privacy-Terms {
    transition: color 0.2s;
}

.terms-trigger:hover, 
.privacy-trigger:hover, 
.ft-Privacy-Terms:hover {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

:root[dir="rtl"] #termsModal .modal-body,
html[dir="rtl"] #termsModal .modal-body,
:root[dir="rtl"] .policy-modal .modal-body,
html[dir="rtl"] .policy-modal .modal-body {
    text-align: right !important;
}

:root[dir="rtl"] .terms-content,
html[dir="rtl"] .terms-content,
:root[dir="rtl"] .policy-body-content,
html[dir="rtl"] .policy-body-content {
    text-align: right !important;
    direction: rtl;
}

:root[dir="rtl"] #termsModal .modal-header .btn-close,
html[dir="rtl"] #termsModal .modal-header .btn-close,
:root[dir="rtl"] .policy-modal .modal-header .btn-close,
html[dir="rtl"] .policy-modal .modal-header .btn-close {
    margin-right: auto;
    margin-left: 0;
}

:root[dir="rtl"] #termsModal .modal-footer,
html[dir="rtl"] #termsModal .modal-footer,
:root[dir="rtl"] .policy-modal .modal-footer,
html[dir="rtl"] .policy-modal .modal-footer {
    justify-content: flex-start;
}

:root[dir="rtl"] .terms-content ul li,
html[dir="rtl"] .terms-content ul li,
:root[dir="rtl"] .policy-body-content ul li,
html[dir="rtl"] .policy-body-content ul li {
    padding-right: 1.5rem !important;
    padding-left: 0 !important;
}

:root[dir="rtl"] .terms-content ul li::before,
html[dir="rtl"] .terms-content ul li::before,
:root[dir="rtl"] .policy-body-content ul li::before,
html[dir="rtl"] .policy-body-content ul li::before {
    right: 0 !important;
    left: auto !important;
}

:root[dir="rtl"] .terms-content h5,
html[dir="rtl"] .terms-content h5,
:root[dir="rtl"] .policy-body-content h5,
html[dir="rtl"] .policy-body-content h5 {
    padding-right: 12px;
    padding-left: 0;
    border-right: 3px solid #0d6efd;
    border-left: none;
}

:root[dir="rtl"] #termsModal .modal-body,
html[dir="rtl"] #termsModal .modal-body,
:root[dir="rtl"] .policy-modal .modal-body,
html[dir="rtl"] .policy-modal .modal-body,
:root[dir="rtl"] .terms-content,
html[dir="rtl"] .terms-content,
:root[dir="rtl"] .policy-body-content,
html[dir="rtl"] .policy-body-content,
:root[dir="rtl"] .terms-content p,
html[dir="rtl"] .terms-content p,
:root[dir="rtl"] .policy-body-content p,
html[dir="rtl"] .policy-body-content p,
:root[dir="rtl"] .terms-content ul li,
html[dir="rtl"] .terms-content ul li,
:root[dir="rtl"] .policy-body-content ul li,
html[dir="rtl"] .policy-body-content ul li {
    font-family: 'IRANYekanRegular', sans-serif !important;
}

:root[dir="rtl"] #termsModal .modal-title,
html[dir="rtl"] #termsModal .modal-title,
:root[dir="rtl"] .policy-modal .modal-title,
html[dir="rtl"] .policy-modal .modal-title,
:root[dir="rtl"] .terms-content h4,
html[dir="rtl"] .terms-content h4,
:root[dir="rtl"] .policy-body-content h4,
html[dir="rtl"] .policy-body-content h4,
:root[dir="rtl"] .terms-content h5,
html[dir="rtl"] .terms-content h5,
:root[dir="rtl"] .policy-body-content h5,
html[dir="rtl"] .policy-body-content h5 {
    font-family: 'IRANYekanRegular', sans-serif !important;
    font-weight: bold !important;
}



.engineering-dark-section {
    width: 100%;
    padding: 4rem 5%;
    background-color: #000000;
    color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow-bg-radial {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(99, 102, 241, 0.03) 60%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.engineering-container {
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.engineering-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.engineering-text-col {
    flex: 1.1;
}

.engineering-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

:root[dir="rtl"] .engineering-title {
    font-size: clamp(2rem, 5vw, 2.2rem);
}

.engineering-tagline {
    font-family: 'DINNextLTPro-Light', 'Adihaus DIN', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 500;
    line-height: 1.4rem;
    color: var(--dark-text-secondary);
    margin: 0 0 28px 0;
}

:root[dir="rtl"] .engineering-tagline {
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    margin: 0 0 28px 0;
}

.engineering-description {
    font-family: 'DINNextLTPro-Light', 'Adihaus DIN', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.2rem;
    color: var(--dark-text-secondary);
    margin: 0;
}

:root[dir="rtl"] .engineering-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6rem;
}

.engineering-stat-col {
    flex: 0.9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.engineering-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.25s ease;
}

    .engineering-stat-card:hover {
        border-color: rgba(6, 182, 212, 0.35);
        background: rgba(56, 189, 248, 0.05);
        transform: translateY(-2px);
    }

.engineering-stat-card-wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .engineering-stat-card-wide .engineering-stat-icon {
        margin-bottom: 0;
    }

.engineering-stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem;
    filter: brightness(0) saturate(100%) invert(72%) sepia(45%) saturate(1000%) hue-rotate(150deg);
}

.engineering-stat-title {
    font-family: 'DINNextLTPro-Light', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

:root[dir="rtl"] .engineering-split {
    text-align: right;
}

@media (max-width: 900px) {
    .engineering-container {
        padding: 40px 24px;
    }

    .engineering-split {
        flex-direction: column;
        text-align: center;
    }

    :root[dir="rtl"] .engineering-split {
        text-align: center;
    }

    .engineering-stat-col {
        width: 100%;
    }
}