/*======= font =========*/
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/*========== vars =======*/

:root {
  --primary: #384B43;
  --secondary: #32F8BD;
  --body:#031227;
  --white: #FFFFFF;
  --card: #FAFAFA;
  --black: #000;
  --green: #2AA81A;
  --c-one: #384B43;
  --c-two: #85673D;
  --c-three: #4B4037;
  --c-four: #AF8A53;
  --section:#F5F2F2;
}



/*======= global ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
  outline: none;
  border: none;
  scroll-behavior: smooth;
 
}



::selection {
  background-color: var(--secondary);
  color: var(--body);
}


::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.4rem;
  background-color: var(--body);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

body {
  font-family: 'Almarai', sans-serif;
  text-transform: capitalize;
  direction: rtl;
  background-color: var(--body);
  color: var(--white);
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  
}

a {
  color: var(--white);
}

a:hover {
  color: var(--white);
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

html,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header , footer , main{
  overflow-x: hidden;
}
section {
  padding-block: 3rem;
  margin-block: 3rem;

}


.white-space {
  white-space: pre-line !important;
}













.btn {
  padding: .8rem 2.5rem;
  border-radius: 11px;
  font-weight: 500;
  transition: .3s;
  font-size: 1rem;
  border: none;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}

@media(max-width: 991px) {
  .btn {
    font-size: .8rem;
    padding: .6rem 1rem;
  }
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.main-btn {
  background: var(--secondary);

  color: var(--body);
}

.main-btn:hover {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 1px 1px 30px #07C595B8;
}



















.for-mobile {
  display: none;
}

.for-pc {
  display: flex;
}

@media(max-width: 991px) {
  .for-pc {
    display: none !important;
  }

  .for-mobile {
    display: flex !important;
  }
}





/*===============================
==============================*/


/**===============================
  ==============* RTL *===========
===============================**/
html[dir=ltr] {
  body {
    direction: ltr;
  }
}

html[dir='rtl'] [type=email],
html[dir='rtl'] [type=number],
html[dir='rtl'] [type=tel],
html[dir='rtl'] [type=url] {
  direction: rtl;
}

/**===============================
  ================================
=============================== **/

.whatsapp{
  position: fixed;
  bottom: 1rem;
  inset-inline-start: 1rem;
  z-index: 333;
  color: var(--secondary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  transition: .3s  ;
  animation: whatsAnime infinite 1s;
  -webkit-animation: whatsAnime infinite 1s;
  -webkit-transition: .3s  ;
  -moz-transition: .3s  ;
  -ms-transition: .3s  ;
  -o-transition: .3s  ;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

@keyframes whatsAnime {
  0%{
    text-shadow:  1px 1px 3px var(--secondary);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
  25%{
    text-shadow:  1px 1px 6px var(--secondary);
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
  50%{
    text-shadow:  1px 1px 8px var(--secondary);
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
  75%{
    text-shadow:  1px 1px 6px var(--secondary);
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
  100%{
    text-shadow:  1px 1px 3px var(--secondary);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
}

/* .whatsapp:hover{
  color: var(--green);
  text-shadow:  1px 1px 10px var(--secondary);
} */



.sec-title{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 2rem;
}

.sec-title .title{

  font-weight: bold;
  padding-bottom: .2rem;
  position: relative;
  color: var(--secondary);
}


.sec-title .main-desc{
  font-weight: bold;
}

.sec-title .sub-desc{
  width: clamp(200px,100%,450px);
  margin: auto;
  font-weight: 300;
}



/**===============================================================
  ==========================* header *============================
===============================================================**/



header {
  /* height: 100dvh; */
  position: relative;
  /* overflow-x: inherit; */
  background: url('../images/header-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




header .content {
  padding: 1rem 0 3rem 0 ;
  /* height: 100%; */
  position: relative;
  z-index: 1;
  color: white;
  
}

header .content img{
  aspect-ratio: 3/3;
  /* max-height: 600px; */
  object-fit: contain;

}

header .sec-title{
  justify-content: unset;
  text-align: unset;
  align-items: unset;
}

header .sec-title .sub-desc{
  text-align: unset;
  margin: unset;
  font-weight: 300;
}

header .content .title{
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: .5rem;
  position: relative;
}


header .content .main-desc {
  font-size: 2rem;
  max-width: 600px;
  line-height: 1.5;
  /* font-weight: 300; */
}
@media(max-width:991px){
  header .content .main-desc {
    font-size: 1.5rem;
    line-height: unset;
  }
}

header nav {
  /* position: absolute; */
  top: 0rem;
  z-index: 9999;
  width: 100%;
}

header nav .nav-container {
  padding: .8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media(max-width:625px){
  header nav .nav-container {
    padding: .2rem 1rem;
  }
  header nav .logo{
    max-width: 110px;
  }
}

header nav .logo {
  height: 55px;
  display: block;

  img {
    object-fit: contain;
  }
}

header nav .actions{
  display: flex;
  align-items: center;
  gap: 1rem;
  
}

header nav .lang {
  color: var(--white);
}

@media(max-width:625px){
  header nav .actions{
    gap: .5rem;
    
  }
  header nav .lang {
    font-size: .8rem;
  }
}


.rights{
  padding-block: 1rem;
}
.rights .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap-reverse;
  color: var(--black);

  p{
    font-weight: bold;
  }

  img{
    width: 120px;
    height: 50px;
    object-fit: contain;
  }
}


@media(max-width:625px){
  .rights .container {

    gap: .5rem;
  
    p{
      font-size: .8rem;
    }
  
    img{
      width: 130px;
      height: 40px;
    }
  }
}









/**===============================================================
  ================================================================
===============================================================**/



/**========================================================================
==========================* main *=======================================
========================================================================**/



/* =========================================
       =========== about =============
========================================== */
.card {
  background: transparent;
  border: none;
}
.card .card-header,
.card .card-body {
  background: transparent;
  border: none;
}

.custom-shade{
  border: 1px solid var(--secondary);
  
  background: transparent linear-gradient(180deg, #092B45 0%, #041828 100%) 0% 0% no-repeat padding-box;
  box-shadow: inset 0px 0px 25px #07C595B8;
  transition: .3s;
}
.custom-shade:hover{
  box-shadow: inset 0px 0px 80px #07C595B8;
}

.about .card{
  text-align: center;
  border-radius: 31px;
  padding: 2.5rem 1rem;

}


.about .card-header{
  margin:1rem auto;
  width: 140px;
  position: relative;
}
.about .card-header::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 70%;
  height: 70%;
  background: #32F8BD 0% 0% no-repeat padding-box;
  filter: blur(39px);
  z-index: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
.about .card-header img{
  position: relative;
  object-fit: contain;
  z-index: 2;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/4;
}
.about .card .card-body{
  padding: .5rem 0rem;
}
.about .card .card-body .desc{
  font-weight: 300;
  margin-block: 1rem 0;
  
}


/* ===================================================
==========================* success *===================
=================================================== */

.success .img{
  object-fit: contain;
  aspect-ratio: 3/3;
}
.success .sec-title{
  justify-content: unset;
  align-items: unset;
  text-align: unset;
}
.success .sec-title .sub-desc{
  margin: unset;
  width: clamp(200px, 100%, 490px);
}


.success .content .card{
  display: flex;
  flex-direction: row;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  padding: .5rem .5rem;
}

.success .content .card .card-header {
  /* width: 120px;
  height: 100px; */
  /* max-height: 100px; */
  aspect-ratio: 1;
  margin-inline-start: -3rem;
  img{
    object-fit: contain;
  }
}
@media(max-width:625px){
  .success .content .card{
    margin-top: 0rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
  }
  .success .content .card .card-header {
    width: 100px;
    /* max-height: 100px; */
    margin-inline-start: unset;
    margin-block-start: 0rem;
    img{
      object-fit: contain;
    }
  }
}
.success .content .card .card-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
   .title{
    font-weight: bold;
   }
  .desc{
    font-weight: 300;
  }
}

/* ===================================================
==========================* journey *===================
=================================================== */


.journey{
  background: #041630;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  counter-reset: item;
}

.journey .card{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.journey .card .card-header{
  background: url('../images/journey-counter.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: relative;
  display: grid;
  place-items: center;
}

.journey .card-cont{
  counter-increment: item;
}

.journey  .card-cont .card .card-header::before{
  content: counter(item);
  color: var(--body);
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
}

.journey .card-cont .card .card-body{
  padding: 0;
  margin-top: .5rem;
}

.journey .card-cont .card .card-body .desc{
  font-weight: 300;
  margin-top: .5rem;
}


/* ===================================================
======================* work *===================
=================================================== */


.work .card {
  overflow: hidden;
  background: #041630;
  padding:2rem 1rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
}

.work .card::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(50% ,-50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: #0f3161c0 0% 0% no-repeat padding-box;
  filter: blur(39px);
  z-index: 0;
  opacity: .8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translate(50% ,-50%);
  -moz-transform: translate(50% ,-50%);
  -ms-transform: translate(50% ,-50%);
  -o-transform: translate(50% ,-50%);
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.work .card:hover::before{
  background: #32F8BD 0% 0% no-repeat padding-box;
}
.work .card img{
  aspect-ratio: 1/1;
  max-height: 350px;
object-fit: contain;
position: relative;
z-index: 2;
}






/* ===================================================
======================* contact *===================
=================================================== */

.contact .sec-title {
  justify-content: unset;
  text-align: unset;
  align-items: unset;
  justify-content: unset;
  gap: .6rem;
}
.contact .sec-title .title{
  font-size: 1.5rem;
}
.contact .sec-title .main-desc{
  font-size: 1.5rem;
  width: clamp(200px,100%,400px);
}

.contact .sec-title .sub-desc{
  margin: unset;
}

.contact .sec-title .btn{
  width: fit-content;
  margin-top: 1rem;
}


/* ===================================================
======================* projects *===================
=================================================== */

.projects{
  background: var(--section);
}

.projects .card{
  border: none;
  overflow: hidden;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  position: relative;
}

.projects .card .title-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #384B4300 0%, #384B43 100%) 0% 0% no-repeat padding-box;
  color: var(--white);
  z-index: 1;
  display: flex;
  justify-content:  flex-end;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  opacity: 0;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  .title{
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
}
.projects .card:hover .title-overlay{

  opacity: 1;

}

.projects .card img{
  width: 100%;
  height: 100%;
  max-height: 450px ;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition:.3s;
  -webkit-transition: .3s;
  -moz-transition:.3s;
  -ms-transition:.3s;
  -o-transition:.3s;
  -webkit-transition:.3s;
}














/* ======================================
      =========== footer =============
====================================== */ 


footer {
  padding-block: 3rem;
}

footer .footer-logo{
  display: block;
  width: clamp(250px,100%,300px);
  position: relative;
  margin: auto;
}

footer .footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-inline:2rem;
}



