/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
/* VARIABLES */
:root {
    --c-dark: #030f27;
    --c-brand: #966f33;
    --c-brand-light: #966e33c5;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #727272;
    --font-base: "Almarai", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

* {
  font-family: "Almarai", sans-serif;
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
    overflow-x: hidden;
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
     transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}


/* NAVBAR */

@media (max-width: 991px) {
    .logo-img img {
      width: 12% !important;
    }
    }
  
    .nav-item .icon  {
      width: 50px;
      height: 50px;
      background-color: var(--c-brand);
      text-align: center;
      padding-top: 15px;
  
      border-bottom: none;
    }
  
  
  .list-nav {
      width: 75% !important;
      background-image: url(../images/navbar-bg.jpeg);
  
  }
  
  @media (min-width: 580px) {
    .list-nav {
      width: 30% !important;
  
    }
    }
  
  .nav-item a {
    border-bottom: 2px solid gray;
  }
  
  
    
  
    ul li{
      margin: 3px 40px;
      transition: 0.5s;
    }
    
    ul li a{
      position:relative;
      font-size:18px;
      color:#fff !important;
      transition:0.5s;
    }
    
    ul:hover li a{
      transform:scale(1.1);
      opacity:0.2;
      filter:blur(2px);
    }
    
    ul li a:hover{
      transform:scale(1.1);
      opacity:1;
      filter:blur(0);
      text-decoration:none;
      color:#fff;
    }
    
    ul li a:before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:var(--main-color);
      transition:0.8s;
      transform-origin:right;
      transform:scaleX(0);
      z-index:-1;
    }
    
    ul li a:hover:before{
      transition:transform 0.8s;
      transform-origin:right;
      transform:scaleX(1);
    }
  
  

/* BTN */
.btn {
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 29px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}


/* HERO */
#hero {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url('../images/image2.jpg');
    background-position: center;
    background-size: cover;
}


/* SECTION TITLE */
.section-title {
    margin-bottom: 20px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;    
}

.about-header{
    color: var(--c-brand);

}


/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}


/* 
---------------------------------------------
who
--------------------------------------------- 
*/


.who{
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  /* padding-top: 100px; */
}
.who  h3{
  margin-bottom: 10px;
  font-weight: bold;
}
/* .who p{
  margin-bottom: 50px;

} */
.about-image{
  width: 100%;
  /* height: 300px; */
  /* width:  350px;  */
}
.who .descripe{
  margin-bottom: 95px;
  font-size: 18px;
}


/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
}

/* PORTFOLIO */

.wrapper{
    margin: 30px auto;
    max-width: 1100px;
  }
  .wrapper nav{
    display: flex;
    justify-content: center;
  }
  .wrapper .items{
    display: flex;
    max-width: 500px;
    width: 100%;
    justify-content: space-between;
  }

  .wrapper .items .item {
    border: 2px solid var(--c-brand);
    width: fit-content;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 17px;

  }

  .wrapper .items .item .active{
    background-color: var(--c-brand) !important;
  }
  
  .gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .gallery .image{
    width: calc(100% / 4);
    padding: 7px;
  }
  .gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .gallery .image img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
  }
  .gallery a .headphone_1 ,.headphone_3{
    height: 196px;
  
  }
  .gallery .door_1{
    height: 260px;
  }
  .gallery .image:hover img{
    transform: scale(1.1);
  }
  .gallery .image.hide{
    display: none;
  }
  .gallery .image.show{
    animation: animate 0.4s ease;
  }

  .gallery img {
    width: 300px;
    height: 300px;
  }
  
  @keyframes animate {
    0%{
      transform: scale(0.5);
    }
    100%{
      transform: scale(1);
    }
  }
  
  @media (max-width: 1000px) {
    .gallery .image{
      width: calc(100% / 3);
    }
  }
  @media (max-width: 800px) {
    .gallery .image{
      width: calc(100% / 2);
    }
  }
  @media (max-width: 700px) {
    .wrapper nav .items{
      max-width: 600px;
    }
    nav .items span{
      padding: 7px 15px;
    }
  }
  @media (max-width: 600px) {
    .wrapper{
      margin: 30px auto;
    }
    .wrapper nav .items{
      flex-wrap: wrap;
      justify-content: center;
    }
    nav .items span{
      margin: 5px;
    }
    .gallery .image{
      width: 100%;
    }
  }

/* REVIEW */
.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
}

/* CONTACT */
.contact-text{
  text-align: center;
}
.contact-text h3{
  font-size: 40px;
  color: var(--c-brand);
}
.contact-text .icon_bg{
  background-color: var(--c-brand-light);
  border-radius: 51%;
  padding: 20px;
  font-size: 50px;
  color:white ;
}
.contactUs{
  position: relative;
  width: 100%;
  padding: 40px 100px;
}
.contactUs .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.contactUs .title h2 {
  color: #fff;
  font-weight: 500;
}
.form{
   grid-area: form;
}
.info{
  grid-area: info;
}
.map{
  grid-area: map;
}
.contact{
  padding: 40px;
  background: #fff;
  box-shadow: 0.5px 35px rgba(0, 0, 0, 0.15);
}
.box{
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas:
   "form info"
   "form map";
   grid-gap: 20px;
   margin-top: 20px;
}
.contact h3{
  color: #0e3959;
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 10px;
}
/* form */
.formBox{
  position: relative;
  width: 100%;
}
.formBox .row50{
  display: flex;
  gap: 20px;
}
.inputBox{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formBox .row100 .inputBox {
  width: 100%;
}
.inputBox span{
  color: var(--second-color);
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.inputBox input{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  border-radius: 8px;

}
.inputBox textarea{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  resize: none;
  min-height: 220px;
  margin-bottom: 10px;    
}
.inputBox input[type="submit"] {
  background: var(--c-brand);
  color: white;
  border: none;
  font-weight: 500;
  max-width:120px;
  font-size: 1.1em;
  cursor: pointer;
  padding: 14px 15px;
}
.inputBox ::placeholder{
  color: #999;
}
/* info */
.info{
   background: var(--c-dark);
}
.info h3{
 color: white;
}
.info .infoBox .loc {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.info .infoBox .loc span{
  min-width: 40px;
  height: 40px;
  color: white;
  background-color: var(--c-brand);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  margin-right: 15px;
}
.info .infoBox .loc p{
  color: #fff;
 margin-bottom: -8px;
 font-size: 1.1em;
}
.info .infoBox .loc a{
  color: #fff;
text-decoration: none;
font-size: 1.1em;
}
.sci{
  margin-top: 40px;
  display: flex;
}
.sci li{
  list-style: none;
  margin-right: 15px;
}
.sci li a{
  color: #fff;
  font-size: 2em;
  color: #ccc;
}
.sci li a:hover{
  color: white;
}
.map{
  padding: 0;
}
.map iframe{
  width: 100%;
  height: 100%;
}
/* responsev */
@media(max-width:991px)
{

  .contactUs{
      padding: 20px;
  }
  .box{
      grid-template-columns:1fr;
      grid-template-rows: auto;
      grid-template-areas:
       "form "
       "info "
       "map";
  }
  .map{
      min-height: 300px;
  }
  .formBox .row50{
      display: flex;
      gap: 0;
      flex-direction: column;
  }
  .inputBox{
      width: 90%;
      margin: auto;
  }
  .contact{
      padding: 0;
  }
  .map{
      min-height: 300px;
      padding: 0;
  }
}
.plagh{
  color: black;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 41px;
  height: 100px;
  text-align: center;

}


/* 
---------------------------------------------
tell
--------------------------------------------- 
*/

.tell {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
.phone {
  padding: 7px;
  margin: 5px;
  border: solid 4px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  color: #23a9f2;
  cursor: pointer;
  font-size: 15px;
  background-color: gray;
}
.whatsapp {
  padding: 5px;
  margin: 5px;
  border: solid 4px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  cursor: pointer;
  font-size: 20px;
}

/* FOOTER */
footer {
    background-image: url(../images/bg-black.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

.footer i {
    color: var(--c-brand);
}

