@charset "utf-8";

/**common css**/

* {
  outline: 0 !important;
  box-sizing: border-box;
}
@font-face {
  font-family: "PPPlayground";
  src: url("../fonts/PPPlayground-Medium.otf") format("opentype");
  font-weight: 500; /* Medium weight */
  font-style: normal;
}

/* Light */
@font-face {
  font-family: "SST Arabic";
  src: url("../fonts/SST-Arabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Regular (Roman) */
@font-face {
  font-family: "SST Arabic";
  src: url("../fonts/SST-Arabic-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "SST Arabic";
  src: url("../fonts/SST-Arabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-shadow: none;
  line-height: 1.2;
}

p {
  padding: 0;
  margin: 0px;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  outline: 0;
  transition: ease-in-out 0.5s;
}

a:hover {
  text-decoration: none;
  transition: ease-in-out 0.5s;
}

::-webkit-input-placeholder {
  opacity: 1;
}

:-moz-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:placeholder-shown {
  opacity: 1;
}

a,
a:focus,
button,
button:focus {
  outline: 0;
  outline-width: 0;
  cursor: pointer;
}

.clear {
  clear: both;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.mobview {
  display: none;
}

.deskview {
  display: block;
}

.whitetext {
  color: var(--white);
}

/**common css**/

/* .......intro gif section........ */
/* Hide intro after finish */
#introgif {
  /* opacity: 0;
      visibility: hidden; */
  background-color: #640002;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#introgif.hide {
  /* opacity: 0;
      visibility: hidden; */
  display: none;
  background-color: #640002;
}

/* Website Content */
#introweb {
  display: none;
  opacity: 0;
  transform: translateY(100%);
  /* Start completely below */
  will-change: transform, opacity;
  transition: all 0.8s ease;
  background-color: #640002;
}

#introweb.show {
  display: block;
  animation: slideUp 1s ease forwards;

}

#introgif video {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
/* #introVideo{transform: translateZ(0);
  will-change: transform;} */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .......intro gif section........ */

/* ...........home page starts............. */
.mainwrp{ background-color: #640002; width: 100%; height: 100%; position: relative;}
.homewrp {
  width: 100%;
  height: 100vh;
   background-color: #640002;
}

.logobox {
  width: 100%;
  height: 170px;
  background-color: #640002;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.logocont{ width:230px; margin: 0 auto;}
.logocont img{ margin: 0 auto; width:225px; height:100px; margin: 0 0 -10px 0;}
.welcometxt {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 -10px 0;
}

.homebanner {
  width: 100%;
  height: calc(100vh - 170px);
  position: relative;
  border: 0px solid red;
}

.bannerbox {
  width: 100%;
  height: 100%;
  border: 0px solid blue;
  background-color: blue;
}

.bannerbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banerall {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bannerslide,
#bannerslide .slick-list,
#bannerslide .slick-track, #bannerslide .slick-slide, #bannerslide .slick-slide div, #bannerslidemob,
#bannerslidemob .slick-list,
#bannerslidemob .slick-track,  #bannerslidemob .slick-slide, #bannerslidemob .slick-slide div {
  width: 100%;
  height: 100%;
}

.buttonwrp {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 40px;
  width: 300px;
  margin: 0 auto;
  z-index: 4;
  display: none;
}

.menu_reservbtn {
  position: relative;
  width: 275px;
  height: 36px;
  background-color: #951B28;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #640002;
  font-family: "Montserrat", sans-serif;
}

.menu_reservbtn:hover {
  background-color: #640002;
  border: 1px solid #951B28
}

.menu_reservbtn .arrow {
  display: inline-flex;
  opacity: 0;
  /*transform: translateX(-5px);  hide arrow slightly left */
  transition: all 0.5s ease;
  transform: translateX(0) scale(0.5);
}

.menu_reservbtn .txtcontm {
  color: #fff;
  transition: all 0.5s ease;
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 36px;
  font-family: "Montserrat", sans-serif;
}

.menu_reservbtn:hover .txtcontm {
  transform: translateX(-8px);
  /* text + number move right */
}

.menu_reservbtn:hover .arrow {
  opacity: 1;
  transition: all 0.5s ease;
  transform: translateX(-5px) scale(1);
  /* slide arrow in smoothly */
}

.menu_reservbtn .arrow img {
  width: 9px;
  height: 11px;
}

.menu_expbtn {
  position: relative;
  width: 275px;
  height: 36px;
  background-color: #640002;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #951B28;
  margin: 25px 0 64px 0;
  font-family: "Montserrat", sans-serif;
}

.menu_expbtn:before {
  background: url("../images/menu_btn_icon.svg") no-repeat;
  width: 35px;
  height: 36px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100% 100%;
  transition: all 0.3s ease;
}

.menu_expbtn:after {
  background: url("../images/menu_btn_icon.svg") no-repeat;
  width: 35px;
  height: 36px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-size: 100% 100%;
  transition: all 0.3s ease;
}

.menu_expbtn:focus:before {
  background: url("../images/menu_btn_iconhover.svg") no-repeat;
}

.menu_expbtn:focus:after {
  background: url("../images/menu_btn_iconhover.svg") no-repeat;
}

.menu_expbtn:focus {
  background-color: #951B28;
  border: 1px solid #640002;
}

.menu_expbtn .arrow {
  display: inline-flex;
  opacity: 0;
  /*transform: translateX(-5px);  hide arrow slightly left */
  transition: all 0.5s ease;
  transform: translateX(0) scale(0.5);
}

.menu_expbtn .arrow img {
  width: 8px;
  height: 9px;
}

.menu_expbtn .txtcontm {
  color: #fff;
  transition: all 0.5s ease;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 36px;
  font-family: "Montserrat", sans-serif;
}

.menu_expbtn:focus .txtcontm {
  transform: translateX(-8px);
  /* text + number move right */
}

.menu_expbtn:focus .arrow {
  opacity: 1;
  transition: all 0.5s ease;
  transform: translateX(-5px) scale(1);
  /* slide arrow in smoothly */
}

.scrollcont {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scrollcont span {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  padding: 0 0 5px 0;
  color: #fff;
  text-align: center;
}

.scrollcont img {
  width: 24px;
  height: 23px;
  margin: 0 auto;
}
#bannerslidemob.mobview {
  display: none !important;
}

#bannerslide.deskview {
  display: block !important;
}
#toggleBtnAudio{ position: absolute; right: 10px; top:180px; border: 0; background-color:#640002; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 10px; color: #fff; z-index: 9;}
#toggleBtnAudio .playiconaudio{ width: 15px; height: 15px; margin: 0 0; filter: invert(100);}
#toggleBtnAudio .pauseiconaudio{ width: 22px; height: 22px; margin: 0 0;filter: invert(100);}
.audiowrp{ position: relative;}
/* ...........home page starts............. */


/*******home menu sec start******/

.home-menu-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;       /* full viewport height */
  overflow-y: auto;    /* scroll inside if content exceeds */
  background: url(../images/menu-bg.png) left top no-repeat rgba(149, 27, 40, 1);
  background-size: cover;

  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100vh);
  /* transform: translateY(100%); */
  transition: opacity 1s ease, transform 1s ease;
  display: none;
  z-index: 999;
}

.home-menu-sec.showmenu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  display: block;
}
/*******home menu sec start******/

/* .home-menu-sec{height: 100vh; background: url(../images/menu-bg.png) left top no-repeat rgba(149, 27, 40, 1); background-size: cover; position: relative;} */
.showmenu.mobiledismenu{ display: none !important;}
.showmenu.desktopmenu{ display: block !important;}
.home-menu-header{text-align: center;}
.home-menu-sec::-webkit-scrollbar { width: 0;}
.back-btn-sec{margin-top: -60px; margin-bottom: 20px;}

.back-btn-sec a{background: rgba(255, 255, 255, 0.25); border:solid 1px rgba(100, 0, 2, 1); border-radius: 50px; color: #fff; box-shadow: 0 2px 10px 0 rgba(83, 17, 32, 0.15); padding: 6px 15px; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center;}

.back-btn-sec a span span{font-family: 'sst_arabicmedium'; position: relative; padding-left: 10px; margin-left: 10px;}

.back-btn-sec a span span:before{position: absolute; content: ''; background: #fff; width: 1px; height: 15px; left: 0; top:50%; transform: translateY(-50%);}

.back-btn-sec a img{padding-right:10px;}

.home-menu-list-sec{padding: 0 100px; color: #fff; display: flex; gap:50px;}

.home-menu-list-l{background: #640002; padding: 100px 100px 35px 100px; border-radius: 400px 400px 0 0; width: calc(50% - 25px);}

.home-menu-list-header{text-align: center; padding-bottom: 75px;}

.home-menu-list-header h5{font-size: 14px; font-weight: 700; padding-bottom: 12px; line-height:18px;} 

.home-menu-list-header h5 span{font-size: 12px; font-weight: 300; text-transform: uppercase; display: block;}

.home-menu-list-header h2{color: #FFFFFF; font-size: 27px; font-weight: 400; letter-spacing: 1px; line-height: 30px; padding-bottom: 15px;}

.home-menu-list-header h6{color: #FFFFFF; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}

.home-menu-item-list-box{padding-bottom: 50px;}

.home-menu-item-list-box h3{font-size: 18px; font-weight: 700; line-height: 20px; padding-bottom: 25px;}

.home-menu-item-list-box ul{padding: 0; margin: 0;}

.home-menu-item-list-box ul li{list-style: none; font-size: 15px; font-weight: 400; padding-bottom:5px;}

.home-menu-item-list-box ul li:last-child{padding-bottom: 0;}

.home-menu-item-list-box:last-child{padding-bottom: 0;}

 .home-menu-item-list{display: flex; gap:50px; overflow-y: auto; /*max-height: 51vh;*/} 

.home-menu-list-r{background: #640002; padding: 100px 70px 35px 70px; border-radius: 400px 400px 0 0; width: calc(50% - 25px);}

.home-menu-item-list-l, .home-menu-item-list-r{width: calc(50% - 25px);}

.home-menu-list-r{font-family: "SST Arabic", sans-serif;}
.home-menu-list-r h2,.home-menu-list-r h3,.home-menu-list-r h5, .home-menu-list-r p{font-family: "SST Arabic", sans-serif;}
.home-menu-list-r .home-menu-list-header{direction: rtl;}

.home-menu-list-r .home-menu-item-list-box{text-align: right;}


/* Custom scrollbar styling */
.home-menu-item-list::-webkit-scrollbar {
    width: 2px; /* Width of the scrollbar */
}

.home-menu-item-list::-webkit-scrollbar-track {
    background-color: #640002; /* Background color of the track */
}

.home-menu-item-list::-webkit-scrollbar-thumb {
    background-color: #640002; /* Color of the scrollbar thumb */
    border-radius: 0px; /* Optional: rounded corners for the thumb */
}

.home-menu-item-list::-webkit-scrollbar-thumb:hover {
    background-color: #640002; /* Darker shade when hovering */
}



/* language tab group (positioned at top center) */
  .lang-switch{
    position:absolute;
    top: 32px;
    left: 50%;
    transform:translateX(-50%);
    display:inline-flex;
    background:transparent;
    /* padding:6px; */
    border-radius:50px;
    border:3px solid rgb(149 27 40); /* subtle border like screenshot */
  }

  .lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:56px;
    padding:8px 10px;
    margin:0;
    border-radius:6px;
    cursor:pointer;
    color:rgba(255,255,255,0.9);
    font-weight:600;
    letter-spacing:0.06em;
    background:transparent;
    border:none;
    outline:none;
    user-select:none;
    font-size:14px;
  }

  .lang-btn:not(.active){
    opacity:0.6;
  }

  /* active tab visual */
  .lang-btn.active{
    background:rgb(149 27 40);
    color:#FFFFFF;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.25); */
  }

  .enbtn{
    border-radius: 50px 0 0 50px;
  }
  .arbtn{
    border-radius: 0 50px 50px 0;
    font-family: "SST Arabic", sans-serif;
    font-weight: 700;
  }

/*******home menu sec ends******/

/*................/about section css start/..................*/
.aboutpart{
    /* height: 100vh; */
    background: rgb(100 0 2);
    background-size: cover;
    position: relative;
    padding: 75px 0 90px;
    overflow: hidden;
}
.aboutpart::before{
  content: '';
  position: absolute;
  width: 175px;
  height: 100%;
 background: url('../images/aboutritb.svg') no-repeat 0 0;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: 100% 100% !important;  
}
.aboutpart::after{
  content: '';
  position: absolute;
  width: 175px;
  height: 100%;
   background: url('../images/aboutleftb.svg') no-repeat 0 0;
  
  left: auto;
  right: 0;
  top: 0;
  z-index: 1;
  background-size: 100% 100% !important;  
}
.aboutcontent{
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 0;
  max-width: 450px;
  width: 100%;
  margin: 0px auto;
}

.aboutpart-title{
  font-size: 60px;
  line-height: 1;
  font-family: "PPPlayground";
  font-weight: 500;
}
.aboutpart-ico{ margin: 20px 0 50px 0;}

.aboutpart-text{
  /* font-size: 16px;
  line-height: 1.3; */
}
.aboutpart-text p{
  margin-bottom: 50px;
  font-size: 14px; font-weight: 400; line-height: 1.5; 
}
.resaboutbtncont{ display: flex; justify-content: center ; margin: 60px 0 0 0; flex-wrap: wrap; font-family: "Montserrat", sans-serif;}
.btnresevabout{ background-color: rgba(255, 255, 255, 0.2); border-radius: 50px; width: 275px; height: 31px; line-height: 31px; font-size: 13px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 45px; border:1px solid #640002; font-family: "Montserrat", sans-serif;  transition: all 0.2s ease;}
.resaboutbtncont p{ margin: 0 0 10px 0; width: 100%;}
.aboutpart-icon{ margin-bottom: 50px;}
.aboutpart-icon img{ width: 48px; height: 48px;}
.btnresevabout:hover{ background-color: rgba(255, 255, 255, 0.5);}
.btnresevabout img{ margin-left: 7px;}
/*................/about section css end/..................*/
#bannerslide .slick-arrow, #bannerslidemob .slick-arrow{ position: absolute; top:45%; width:30px; height:30px; background-color:#640002 ; border-radius: 6px; z-index: 9; display: none; }
#bannerslide .slick-prev, #bannerslidemob .slick-prev{ left:2px;}
#bannerslide .slick-next, #bannerslidemob .slick-next{ right:2px;}
#bannerslide .slick-prev:before, #bannerslidemob .slick-prev:before{ content:""; background: url(../images/arrownext.svg) no-repeat; width: 18px;  height: 19px; position: absolute; left:0; right:0; top:0; bottom:0; margin:auto; background-size: 100% 100% !important; transform: rotate(180deg); filter:invert(100); }
#bannerslide .slick-next:before, #bannerslidemob .slick-next:before{  content:""; background: url(../images/arrownext.svg) no-repeat; width: 18px;  height: 19px; position: absolute; left:0; right:0; top:0; bottom:0; margin:auto; background-size: 100% 100% !important;filter:invert(100); }

#logoanimno {
  display: none;
  opacity: 0;
  transition: opacity 1s ease; /* smooth fade-in */
}

#logoanim.fade-out {
  opacity: 0;
  transition: opacity 1s ease; /* smooth fade-out */
}