* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

@font-face {
    font-family: 'castle';
    src: url("../fonts/Far.Fanni.ttf") format('opentype');
}

@font-face {
    font-family: 'uniSan';
    src: url("../fonts/Uni\ Sans\ Heavy.otf") format('opentype');
}

@font-face {
    font-family: 'shabnam';
    src: url("../fonts/Shabnam-FD.woff2") format('opentype');
}

@font-face {
    font-family: 'fani';
    src: url("../fonts/Far.Fanni.ttf") format('truetype');
}

@font-face {
    font-family: 'beyroot';
    src: url("../fonts/Mj\ Beirut\ Light\ .ttf") format('opentype');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "shabnam", sans-serif;
    background-color: #ffffff;
    position: relative;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
}

.topSlider{
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: -100px;
}

.topSlider.halfSlider{
    height: 70vh;
    overflow: hidden;
}

.gradiant.halfSlider{
    height: 70vh;
}

.sliderWrapper.halfSlider{
    height: 70vh;
}

.topImage.halfSlider{
    height: 70vh;
}

.sliderWrapper{
    width: 400%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-in-out;
}

.topImage{
    width: 100%;
    height: 100vh;
}

.topCir{
    position: absolute;
    bottom: 40px;
    left: calc(50% - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 2;
}

.singleCir{
    width: 17px;
    height: 17px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 250ms ease-in-out;
    cursor: pointer;
}

.singleCir.active{
    background-color: #ffffff;
}

.topImageMobDots{
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    z-index: 100;
}

.singleCirMob{
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 1s ease-in-out;
    cursor: pointer;
}

.singleCirMob.active{
    background-color: #ffffff;
}


.navBar{
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    gap: 65px;
    position: relative;
    top: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(124,159,55,0) 0%, rgba(0,0,0,1) 100%);
    z-index: 1000;
}

.navpLink{
    cursor: pointer;
}

.homeLink{
    color: #ffffff;
}

.navTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    height: 60px;
    cursor: pointer;
}

.hamburger{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mainBtns{
    font-family: "castle";
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.gradiant{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(180deg, rgba(124,159,55,0) 75%, rgba(0,0,0,1) 100%); */
    z-index: 1;
}

.othBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.langBtn{
    border-left: 1px solid #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    gap: 10px;
}

.enterBtn , .esBtn{
    justify-content: center;
    gap: 15px;
    font-family: "castle";
    width: 100px;
    height: 50px;
    background-color: transparent;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.enterBtn {
    border-left: 1px solid #ffffff !important;
}

.othBtn button p{
    font-size: 14px;
    margin-right: -15px;
}

.langDrop{
    position: absolute;
    width: 120px;
    height: 120px;
    top: 45px;
    background: #ffffff;
    border-radius: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    opacity: 0;
    pointer-events: none;
    transition: all 250ms ease-in-out;
    transform: translateY(-20px);
}

.langSingleRow{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 82%;
    cursor: pointer;
    transition: all 250ms ease-in-out;;
}

.farLang{
    border-radius: 15px 15px 0 0;
}

.chiLang{
    border-radius: 0 0 15px 15px;
}

.langSingleRow:hover{
    transform: scale(1.2);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.langImg{
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    filter: grayscale(1);
}

.langImg img{
    width: 100%;
    height: 100%;
}

.langImg.active{
    filter: none;
}

.langBtn:hover + .langDrop{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.langDrop:hover{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.servicesDrop , .proDrop, .conDrop{
    position: absolute;
    width: 800px;
    height: 300px;
    background-color: #ffffff;
    top: 58px;
    right: 20%;
    border-radius: 30px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 250ms ease-in-out;
    transform: translateY(-20px);
}

.conDrop{
    right: 50%;
}

.serLink , .proLink, .conLink{
    height: 60px;
    border: none;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    font-family: 'fani';
}

.serLink:hover + .servicesDrop{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.proLink:hover + .proDrop{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.conLink:hover + .conDrop{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.servicesDrop:hover{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.proDrop:hover{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.conDrop:hover{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.serImg{
    height: 90%;
    border-radius: 23px;
}

.serInnerDrop{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-right: 30px;
}

.proInnerDrop{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.serInnerRow{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.serInnerSingle{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    color: black;
    transition: all 250ms ease-in-out;
    cursor: pointer;
}

.serInnerSingle:hover{
    transform: scale(1.2);
}

.serInnerSingle img{
    width: 70px;
    border-radius: 20px;
}

.proDrop{
    opacity: 0;
    right: 0;
    transform: translateY(-20px);
    top: 58px;
}

.proInnerCol{
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-top: 50px;
    gap: 50px;
}

.proInnerCol2{
    height: 100%;
    width: 60%;
}

.proSingle{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: black;
    gap: 7px;
}

.proSingle img{
    width: 70px;
    border-radius: 20px;
}

.loaderDrop{
    font-family: "uniSan";
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 25px;
    color: black;
    padding: 40px;
}

.products{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: #f5f5f5;
}

.productSlides{
    width: 100%;
    height: 80%;
    position: relative;
    display: flex;
}

.productUnders{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    padding: 0px 100px;
    justify-content: center;
}

.singleUnder{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'uniSan';
}

.singleUnderBar{
    width: 100%;
    height: 18px;
    background-color: #414b57;
    transition: all 800ms ease-in-out;
}

.singleUnderBar.active{
    background-color: #feb902;
}

.productImages1{
    width: 450px;
    position: absolute;
    top: 0;
    left: 80px;
    opacity: 0.5;
    z-index: 1;
}

.productImages2{
    width: 700px;
    position: absolute;
    top: 40px;
    left: 180px;
    z-index: 1;
}

.slide1fri{
    position: absolute;
    z-index: 3;
    width: 900px;
    top: 60px;
}

.slide1{
    width: 100%;
    height: 100%;
    position: absolute;
}

.slide1Image{
    position: relative;
    height: 100%;
    left: -950px;
    transition: all 1200ms ease-in-out;
}

.slide1sec{
    position: absolute;
    bottom: -7px;
    left: 148px;
    width: 192px;
    z-index: 4;
    transform: rotate(-360deg);
    transition: transform 1200ms ease-in-out;
}

.slide1sec.frlo{
    bottom: -8%;
    left: 136px;
}

.slide1sec.flro2{
    width: 192px;
    bottom: 3%;
    left: 111px;
}

.slide1thr{
    position: absolute;
    width: 192px;
    bottom: -12px;
    left: 510px;
    z-index: 4;
    transform: rotate(-360deg);
    transition: transform 1200ms ease-in-out;
}

.slide1thr.flro2{
    width: 192px;
    bottom: 3%;
    left: 451px;
}

.slide1thr.frlo{
    bottom: -9%;
    left: 496px;
}

.slide1Text{
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    font-family: 'shabnam';
    gap: 15px;
    z-index: 5;
    opacity: 0;
    transition: all 800ms ease-in-out;
}

.slideTop{
    color: #617081;
    font-size: 24px;
}

.slideTitle{
    font-family: 'fani';
    font-size: 30px;
    color: #feb902;
}

.slidedes{
    direction: rtl;
    text-align: justify;
    text-justify:inter-word;
    width: 400px;
}

.slideBtn {
    padding: 1.1em 2em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #131313;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #feb902;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
    margin-top: 20px;
    font-family: 'shabnam';
}

.slideBtn:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #23292f;
    top: 50%;
    transform: skewX(30deg) translate(-220%, -50%);
    transition: all 0.5s;
}

.slideBtn:hover {
    background-color: #414b57;
    color: #fff;
    box-shadow: 0 2px 0 2px #1e1e1f;
}

.slideBtn:hover::before {
    transform: skewX(30deg) translate(300%, -50%);
    transition-delay: 0.1s;
}

.slideBtn:active {
    transform: scale(0.9);
}

.aboutUs{
    width: 100%;
    height: 100vh;
    margin-top: 10px;
    position: relative;
}

.abourImgFir{
    width: 480px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 250px);
    z-index: 3;
    transform: scale(0.1);
    transition: all 800ms ease-in-out;
}

.aboutBack{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1;
}

.aboutTexts{
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 15px;
    z-index: 2;
}

.aboutSell{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'shabnam';
    font-weight: bold;
    font-size: 28px;
}

.aboutMain{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.abourImgSec{
    width: 800px;
    right: -250px;
    bottom: 0px;
    position: absolute;
    z-index: 2;
}

.abourImgthr{
    width: 800px;
    left: -250px;
    bottom: 0px;
    position: absolute;
    z-index: 2;
}

.footer{
    width: 100%;
    height: 100vh;
    background-color: #252a31;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-family: "beyroot";
}

.footerBack{
    position: absolute;
    width: 100%;
    height: 100vh;
}

.footerTop{
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 4;
}

.footerBot{
    width: 100%;
    height: 20%;
    z-index: 4;
}

.footerSocial{
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footerSocTitle{
    font-size: 24px;
}

.footerSection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
    padding-top: 40px;
    width: 200px;
    height: 100%;
}

.footerSecTitle{
    width: 100%;
    font-size: 20px;
    color: #f5f5f5;
    text-align: right;
}

.footerSep{
    width: 100%;
    height: 1px;
    background-color: #f5f5f5;
}

.footerLinks{
    display: flex;
    width: 100%;
    flex-direction: column;
    direction: rtl;
    gap: 15px;
    font-size: 18px;
    color: #f5f5f5;
    z-index: 5;
}

.footerSocSingle{
    width: 30px;
}

.footerSocLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.news{
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: relative;
}

.newsContainer{
    height: 100%;
    width: 130%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap: 25px;
    z-index: 1;
}

.singleNewsCard{
    width: 455px;
    height: 575px;
    background-color: #f5f5f5;
    border-radius: 25px;
    position: relative;
    transition: all 250ms ease-in-out;
    cursor: pointer;
}

.singleNewsCard:hover{
    transform: translateY(-25px);
}

.singleNewsCard:hover .newsCardGradiant{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20% , rgb(254, 185, 2) 100%);
    border-radius: 25px;
}

.newsCardGradiant{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20% , rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.newsImage{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    z-index: 1;
}

.newsText{
    position: absolute;
    bottom: 0;
    z-index: 3;
    color: #fff;
    height: 180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-right: 20px;
    padding-top: 20px;
}

.newsTitle{
    font-family: "shabnam";
    font-size: 30px;
}

.newsLink{
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
}

.topSilderTexts{
    position: absolute;
    color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.topSilderTexts h2{
    font-size: 46px;
    font-family: 'fani';
}

.topSilderTexts p{
    font-size: 24px;
    font-family: 'shabnam';
}

.allNewsButton{
    width: 200px;
    height: 40px;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 20px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'shabnam';
    transition: all 250ms ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.allNewsButton i{
    font-size: 24px;
}

.allNewsButton:hover{
    background-color: #ffffff;
    color: black;
}

.proDropMob{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 7px;
    color: #acacac;
    display: none;
    margin-top: -20px;
    padding-right: 20px;
    font-size: 16px;
}

.proDropMob a{
    color: #000;
}

.topBannerMob{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.topImageMob{
    width: 90%;
    height: 90%;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: all 1s ease-in-out;
    opacity: 0;
}

.topImageMob.active{
    opacity: 1;
}

.productsMob{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 25px;
    margin-top: 25px;
}

.pruductMobBtn{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
}

.productMobTitle , .aboutUsMobtitle{
    font-size: 18px;
    font-family: 'fani';
}

.pruductMobBtn img{
    width: 100%;
    height: 100%;
}

.serviceMob{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 25px;
}

.serviceMobBtns{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.serviceMobBtnSingle{
    width: 48%;
    height: 120px;
    background-color: #feb902;
    border: none;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.serviceMobBtnSingle span{
    font-size: 16px;
}

.serviceMobBtnSingle img{
    width: 70px;
}

.aboutUsMianText{
    text-align: center;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.aboutUsMob{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aboutUsMainMobBtn{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutUsMainMobSingleBtn{
    width: 49%;
    height: 55px;
    border: none;
    text-decoration: none;
    background-color: #feb902;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutUsMainMobSingleBtn.outline{
    background-color: transparent;
    border: 1px solid #feb902;
}

.aboutUsMainTxt{
    text-align: center;
    color: #6a6a6a;
    width: 90%;
}

.mobFooter{
    width: 100%;
    height: 100vh;
    background-color: #001935;
    padding: 15px;
}

.mobFooterRow{
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 14px;
}

.NPMobContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    grid-area: 25px;
}

.NPMobLatest{
    width: 100%;
    height: 250px;
    position: relative;
}

.NPMobLatestSingle{
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border-radius: 25px;
}

.NPMobLatestSingleImg{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.NPMobLatestSingleTxt{
    position: absolute;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    color: #ffffff;
    z-index: 3;
    width: 90%;
    text-align: right;
    overflow: hidden;
    direction: rtl;
}

.NPMobLatestSingleTxtShade{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgb(0 0 0 / 75%) 0%, rgba(102, 252, 241, 0) 100%);
    border-radius: 25px;
}

.NPMobLatestSingleTxtTitle{
    font-size: 24px;
}

.NPMobLatestSingleTxtDesc{
    width: 90%;
    text-align: right;
}

.NPMobCatagorized{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    direction: rtl;
    padding: 20px;
}

.NPMobCatagories{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    overflow-x: auto;
}

.NPMobCatagorieSingle{
    min-width: 120px;
    background-color: #ececec;
    color: black;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #acacac;
}

.NPMobCatagorieSingle.active{
    background-color: #feb902;
    color: #014391;
    border: none;
}

.NPMObMainCatNews{
    width: 100%;
    overflow-x: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.NPMObMainCatNewsSingle{
    width: 200px;
    height: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    justify-content: start;
    margin-top: 15px;
}

.NPMObMainCatNewsSingle img{
    width: 100%;
    border-radius: 15px;
}

.NPMObMainCatNewsSingleTxt{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 7px;
}

.NPMObMainCatNewsSingleTitle{
    width: 100%;
    text-align: right;
    font-size: 14px;
}

.NPMObMainCatNewsSingleDesc{
    font-size: 14px;
    width: 100%;
    overflow: hidden;
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.NPMObMainBotNews{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.NPMObMainBotNewsSingle{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.NPMObMainBotNewsTitle{
    width: 100%;
    font-size: 16px;
    font-family: 'fani';
}

.NPMObMainBotNewsSingle img{
    height: 95%;
    border-radius: 15px;
}

.NPMObMainBotNewsSingleTxt{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 100%;
    font-size: 14px;
    padding-top: 10px;
}

.NPMObMainBotNewsSingleTxtTitle{
    font-size: 16px;
    font-weight: bold;
}

.NPMObMainBotNewsSingleTxtDesc{
    font-size: 14px;
    margin-top: 7px;
}

.mobServiceCont{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
    padding-bottom: 20px;
}

.mobServiceSingle{
    width: 90%;
    height: 250px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none;
}

.mobServiceSingle img{
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.footerSinLin{
    cursor: pointer;
}

.commingSoon{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffc934;
}

.commingSoon img{
    width: 450px;
}

.commingSoonBtn{
    width: 450px;
    height: 40px;
    border-radius: 7px;
    border: none;
    font-family: 'shabnam';
    color: #ffffff;
    background-color: #014391;
}

@media (min-width: 993px) {
    .topBannerMob , .aboutUsMob, .productsMob, .serviceMob,
    .mobFooter, .NPMobContainer, .mobServiceCont, .singleHeatMobCont{
        display: none;
    }
}

@media (max-width: 768px) {
    .topSlider , .news, .aboutUs, .products, 
    .footer, .gradiant , .NPnewsCont, .serviceContainer,
    .singleHeatCont{
        display: none;
    }
}

@media (max-width: 992px) {

    .navBar{
        background: white;
    }

    .proDropMob{
        display: flex;
    }

    .navTop{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }

    .hamburger {
        display: block;
    }
    
    .navContent {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: rgb(255, 255, 255);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        padding-bottom: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        border-radius: 20px 0 0 20px;
    }
    
    .navContent.active {
        right: 0;
    }
    
    .mainBtns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
        color: #000;
    }
    
    .proDrop, .servicesDrop, .conDrop {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 0;
    }

    .proLink, .serLink, .conLink{
        color: #000;
    }

    .serLink{
        height: 40px;
    }
    
    .secondary-logo {
        display: none;
    }
    
    .othBtn {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .enterBtn, .esBtn{
        color: #000;
    }

    .commingSoon img{
        width: 350px;
    }

    .commingSoonBtn{
        width: 90%;
    }
}

/* RTL/LTR support */
.rtl {
  direction: rtl;
  text-align: right;
}

.ltr {
  direction: ltr;
  text-align: left;
}

/* Adjust specific elements for RTL/LTR */
.rtl .navContent {
  padding-right: 0;
  padding-left: 20px;
}

.ltr .navContent {
  padding-left: 0;
  padding-right: 20px;
}