*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    display: grid;
}

    /* start main header  */

    .mainheader{
    display: flex;
    justify-content: space-around;
padding: 10px;
align-items: center;
border-top: 1px solid lightgrey;
border-bottom: 1px solid lightgrey;
flex-wrap: wrap;
gap: 10px;
}
.mainheader > .icons{
    display: flex;
    gap: 20px;
}
.mainheader > .icons > i{
    color: lightgray;
    font-size: 1.2em;
}
.mainheader > .eng {
    display: flex;
    gap: 10px;
}

.dropdown {
  width: 200px;
  position: relative;
/* overflow: hidden; */
}
.dropdown::after{
    content: '';
    right: 4px;
    top: 8px;
    background: #333;
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}
.dropdown::before{
    content: '';
    right: 4px;
    top: 8px;
    background: #333;
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(90deg);
z-index: 1;
/* background: rgb(238, 236, 236); */
}
.dropdown-selected {
  background-color: rgb(238, 236, 236);
  height: 30px;
  border: 1px solid #ccc;
  cursor: pointer;
text-align: center;
display: flex;
align-items: center;
padding: 10px;
width: 100%;
border-radius: 5px;
}

.dropdown-options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: rgb(255, 252, 252);
  z-index: 1000;
  margin-top: 3px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  border-radius: 5px;
}

.dropdown-option {
  padding: 10px;
  color: #333;
  cursor: pointer;
}

.dropdown-option:hover {
  background-color: rgb(240, 237, 237);
  color: black;
}
.eng button{
    padding: 10px;
    border: none;
    outline: none;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
background: yellow;
width: 80%;
font-weight: 600;
border-radius: 5px;
    border: 1px solid yellow;
transition:  all ease-in-out 0.6s ;
}
.eng button:hover {
    background-color: transparent;
    border: 1px solid yellow;
}


/* start frist header */

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: sticky;
    top: 0px;
    left: 0;            
    width: 100%;
    padding: 10px;
    background: #fff;
    z-index: 2;     
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);  
    border-bottom: 1px solid #e0e0e0;       
height: 100px;
  }


.navbar .builder{
    width: 100%;
    display: flex;
    align-items: center;
justify-content: space-between;
}
.navbar .builder i{
    color: yellow;
    font-size: 1.5em;
}
.navbar .builder h2{
  font-size: 1.9em;
}
.navbar .menue {
  width: 20%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-0.6em);
cursor: pointer;
visibility: hidden;
}


.navbar .menue .spana {
  background: yellow;
  position: absolute;
  width: 40px;
  height: 5px;
  transition: all 0.3s ease-in-out;
}


.navbar .menue .spana1 {
  top: -0.3em;
  left: 0;
}

.navbar .menue .spana2 {
  top: 5px;
  left: 0;
}

.navbar .menue .spana3 {
  top: 15px;
  left: 0;
}


.rotate45 {
  transform: rotate(45deg) translateX(0.4em) translateY(0.5em);
cursor: pointer;
}

.rotate45revers {
  transform: rotate(-45deg) translateY(-0.1em);
cursor: pointer;
}

.hiddens {
  visibility: hidden;

}

.navbar .Anhcoretag{
    display: flex;
width: 100%;
}
.navbar .Anhcoretag ul {
    display: flex;
    justify-content: space-between;
    width: 80%;
}
.navbar .Anhcoretag ul li{
    list-style: none;
cursor: pointer;
transition: all ease-in-out 0.9s;
width: 100%;
}
.navbar .Anhcoretag ul li:nth-child(1){
    color: rgb(255, 187, 0);
}
.navbar .Anhcoretag ul li:hover{
    color: rgb(255, 187, 0);
}
.pages {
  position: relative;
  width: 100%;
}

.dropdown-optionss {
  visibility: hidden;
  opacity: 0;              
  position: absolute;
  width: 100%;
  background-color: rgb(255, 252, 252);
  z-index: 2;
  top: 50px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
background: #fff;
}

.dropdown-optionss .dropdown-option {
  width: 100%;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
}

.pages:hover .dropdown-optionss {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
  width: 100%;
}

.dropdown-optionsss {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  background-color: rgb(255, 252, 252);
  z-index: 3;             
  top: 50px;
  left: 0;                 
  transform: translateY(0) translateX(20px);
  transition: all 0.3s ease-in-out;
}

.pages:hover .dropdown-optionsss {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px) translateX(20px);
}

/* start scetionbackground */

.sectionimages{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('./images/wallpere.jpg');
    flex-direction: column;
background-attachment: fixed;
    gap: 20px;
    transform: scale(0);
    transition: all ease-in-out 1s;
opacity: 0;
  }
.sectionimages.show{
  transform: scale(100%);
opacity: 1;
}
.sectionimages h1{
    color: #fff;
}
.sectionimages h1 span{
    background: rgb(255, 208, 0);
padding: 10px;
border-radius: 5px;
color: #333;
}
.sectionimages p{
    width: 50%;
    text-align: center;
color: #fff;
}
.sectionimages button{
    padding: 15px;
font-weight: 800;
color: rgb(255, 208, 0);
border: none;
outline: none;
background: #333;
border-radius: 5px;
transition: all ease-in-out 0.9s;
width: 20%;
}
.sectionimages button:hover{
    background: rgb(255, 208, 0);
    color: #333;
}

/* Our Offered Services */


.OurOfferedServices{
    display: flex;
    flex-direction: column;
    margin-top: 5em;
    justify-content: center;
    align-items: center;
}
.OurOfferedServices .ourservice{
    text-align: center;
}
.OurOfferedServices .ourservice p{
    color: lightgrey;
}
.OurOfferedServices .itemss{
    display: flex;
    width: 100%;
    margin-top: 5em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.OurOfferedServices .itemss .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  width: 30%;
  text-align: center;
padding: 10px;
margin: 10px;
transition: all ease-in-out 0.9s;
gap: 10px;
cursor: pointer;
height: auto;
transform: scale(0) rotate(45deg);
opacity: 0;
transition: all ease-in-out 0.9s;
}
.OurOfferedServices .itemss .box.boxShow{
  opacity: 1;
  transform: scale(100%) rotate(0deg);
}
.OurOfferedServices .itemss .box:hover{
    transform: rotateX(5deg)  rotateY(5deg);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.OurOfferedServices .itemss .box img{
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.OurOfferedServices .itemss .box p{
    color: rgb(189, 185, 185);
}
/* Our Latest Projects */

.ourlatest{
  display: flex;
  flex-direction: column;
  margin-top: 8em;
  justify-content: center;
  align-items: center;
}
.ourlatest .our{
  text-align: center;
}
.ourlatest .our p{
  color: lightgrey;
}
.ourlatest .itemsour{
  display: flex;
  margin: 6em ;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
overflow: hidden;
}
.ourlatest .itemsour .box{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
  width: 40%;
height: 400px;
position: relative;
overflow: hidden;
cursor: pointer;
opacity: 0;
transform: scale(0);
transition: all ease-in-out 1s;
}
.ourlatest .itemsour .box.boxShowimage{
  opacity: 1;
  transform: scale(100%);
}
.ourlatest .itemsour .box::after{
  content: '';
  top: 0;
  left: 0;
  background: rgb(253, 253, 8,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(0);
transition: transform 1s;
}
.ourlatest .itemsour .box:hover::after{
  transform: scale(100);
}
.ourlatest .itemsour .box .iamges{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} 
.ourlatest .itemsour .box .iamges img{
  width: 100%;
  object-fit: cover;
  height: 460px;
}
.ourlatest .itemsour .box .paragrf{
  transform: translateY(-12em);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
z-index: 1;
opacity: 0;
transition: opacity 1s;
}
.ourlatest .itemsour .box:hover .paragrf{
  opacity: 1;

}

/* Meet Our Expert Members */
.meeetour{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.meeetour .meetheading{
  text-align: center;
}
.meeetour .meetheading p{
  color: lightgrey;
}
.meeetour .meetitems{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 6em 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.meeetour .meetitems .box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
width: 30%;
height: 400px;
gap: 15px;
opacity: 0;
transform: scale(0);
transition: all ease-in-out 0.9s;
}
.meeetour .meetitems .box.boxProfile{
  opacity: 1;
  transform: scale(100%);
}
.meeetour .meetitems .box .images{
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.meeetour .meetitems .box:nth-child(1) .images{
  background-image: url('./images/profile1.jpg');
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.meeetour .meetitems .box:nth-child(2) .images{
  background-image: url('./images/profile2.jpg');
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.meeetour .meetitems .box:nth-child(3) .images{
  background-image: url('./images/profile3.jpg');
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.meeetour .meetitems .box .images::after{
  content: '';
  bottom: 0;
  left: 0;
  background: rgb(248, 248, 3,0.6);
  width: 100%;
  height: 0vh;
position: absolute;
transition: height 1s;
}
.meeetour .meetitems .box .images:hover::after{
  height: 100vh;
}
.meeetour .meetitems .box .images .icons{
  display: flex;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.9s;
  z-index: 1;
}
.meeetour .meetitems .box .images:hover .icons{
  opacity: 1;
  visibility: visible;
}
.meeetour .meetitems .box .profiledetails{
  text-align: center;
}
/* start score actions */

.score{
  display: flex;
  width: 100%;
  height: 250px;
  background: rgb(255, 217, 0);
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.score .items h2{
font-size: 3em;
}

/* Some Features that Made us Unique */

.Uniq{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 6em;
}
.Uniq .madeheading{
  text-align: center;
}
.Uniq .madeheading p{
  color:  lightgrey;
}
.Uniq .uniqueitems{
  display: flex;
  margin-top: 5em;
width: 100%;
flex-wrap: wrap;
justify-content: center;
}
.Uniq .uniqueitems .uniqueBox{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
  margin: 10px;
  border: 1px solid lightgrey;
height: auto;
justify-content: center;
padding: 45px;
border-radius: 10px;
transition: all ease-in-out 0.9s;
cursor: pointer;
opacity: 0;
transform: scale(0);
transition: all ease-in-out 0.9s;
}
.Uniq .uniqueitems .uniqueBox.showUniuewBox{
  opacity: 1;
  transform: scale(100%);
}
.Uniq .uniqueitems .uniqueBox:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.Uniq .uniqueitems .uniqueBox h3{
  padding: 10px;
  transition: all ease-in-out 1s;
}
.Uniq .uniqueitems .uniqueBox:hover h3{
  color: rgb(255, 238, 0);
}
.Uniq .uniqueitems .uniqueBox p{
  color: lightgrey;
}
/* profileessssrounde */

.profileessssrounde{
  display: flex;
margin-top: 6em;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.profileessssrounde .profileitems{
  display: flex;
width: 40%;
border: 1px solid lightgrey;
padding: 45px;
margin: 10px;
border-radius: 10px ;
transition: all ease-in-out 0.9s;
cursor: pointer;
justify-content: center;
align-items: center;
opacity: 0;
transform: scale(0);
transition: all ease-in-out 0.9s;
}
.profileessssrounde .profileitems.showprofileitems{
  opacity: 1;
  transform: scale(100%);
}
.profileessssrounde .profileitems:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.profileessssrounde .profileitems .images{
padding: 10px;
}
.profileessssrounde .profileitems .images img{
  height: 100px;
  width: 100px;
  object-fit: cover;
border-radius: 50px;
}
.profileessssrounde .profileitems .details{
display: flex;
flex-direction: column;
gap: 10px;
}
.profileessssrounde .profileitems .details h3{
  transition: all ease-in-out 0.9s;

}
.profileessssrounde .profileitems:hover .details h3{
  color: rgb(255, 217, 0);
}

/* start footer */

.footer{
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
padding: 45px;
flex-wrap: wrap;
gap: 30px;
margin-top: 5em;
background-color: #333;
}
.footer .footerItems{
  display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.footer .footerItems .footerBox{
  display: flex;
  flex-direction: column;
  width: 40%;
  margin: 10px;
  color: lightgrey;
}
.footer .footerItems .footerBox h1{
  color: rgb(255, 230, 0);
  padding: 15px;
}
.footer .footerItems .footerBox p{
  padding: 10px;
}
.footer .footerItems .footerBox span{
   color: rgb(255, 230, 0);
   padding: 15px;
   font-size: 2em;
}
   .inputs{
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
position: relative;
overflow: hidden;
}
.inputs::after{
  content: '';
  top: 0;
  right: 0;
  background: yellow;
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50px;

}
.footer .footerItems .footerBox input{
  padding: 18px;
  border: none;
  outline: none;
  border-radius: 50px;
width: 100%;
}
.iconss{
  position: absolute;
  right: 1em;
  top: 1em;
z-index: 1;
}
 .footerlast{
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
color: lightgrey;
align-items: center;
}
.footerlast .icons{
  display: flex;
  padding: 10px;
  gap: 20px;
}
.footerlast .icons i{
  background: black;
  padding: 10px;
  width: 100%;
  transition: all ease-in-out 0.9s;
  border-radius: 5px;
}
.footerlast .icons i:hover{
  background: rgb(255, 230, 0);
  color: #333;
}
@media (max-width: 900px) {
  
    .navbar {
    display: flex;
  /* position: sticky; */
    flex-direction: column;
    height: 70px;
    transition: height 0.5s ease;
    /* overflow: hidden; */
  }
  .navbar .builder i{
    color: yellow;
    font-size: 1em;
}
.navbar .builder h2{
  font-size: 1em;
}
.navbar .menue{
    visibility: visible;
}
  .Anhcoretag {
    /* visibility: hidden; */
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
  }

  .navbar .Anhcoretag ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.navbar .Anhcoretag ul li{
    padding: 10px;
}
  .navbar .Anhcoretag ul li:hover {
    background-color: rgb(241, 237, 237);
  }
  .navbar.height {
    height: 300px; 
}

.Anhcoretag.visibility {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;  
  }
.ourlatest .itemsour .box{
  width: 40%;
}
  .ourlatest .itemsour .box .iamges img{
    height: 570px;
  }
  .meeetour .meetitems .box{
    width: 40%;
  }
  .Uniq .uniqueitems .uniqueBox{
    width: 40%;
  }
  .profileessssrounde .profileitems{
    width: 45%;
  }
  .footer .footerItems .footerBox{
    width: 50%;
  }
  .footer .footerItems .footerlast{
    width: 50%;
  }
}

@media (max-width: 600px){
.navbar {
    display: flex;
  /* position: sticky; */
    flex-direction: column;
    height: 70px;
    transition: height 0.5s ease;
    /* overflow: hidden; */
  }
  .navbar .builder i{
    color: yellow;
    font-size: 1em;
}
.navbar .builder h2{
  font-size: 1em;
}
.navbar .menue{
    visibility: visible;
}
  .Anhcoretag {
    /* visibility: hidden; */
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
  }

  .navbar .Anhcoretag ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.navbar .Anhcoretag ul li{
    padding: 10px;
}
  .navbar .Anhcoretag ul li:hover {
    background-color: rgb(241, 237, 237);
  }
  .navbar.height {
    height: 300px; 
}

.Anhcoretag.visibility {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;  
  }

    .sectionimages{
        width: 100%;
    }
    .sectionimages p{
        width: 80%;
    }
    .sectionimages button{
        width: 60%;
    }
  .OurOfferedServices .itemss .box{
    width: 80%;
    height: auto;
  }
  .ourlatest .itemsour .box{
  width: 80%;
}
  .ourlatest .itemsour .box .iamges img{
    height: 570px;
  }
  .meeetour .meetitems .box{
    width: 70%;
  }
    .Uniq .uniqueitems .uniqueBox{
    width: 60%;
  }
    .profileessssrounde .profileitems{
    width: 60%;
  }
   .footer .footerItems .footerBox{
    width: 70%;
  }
  .footer .footerItems .footerlast{
    width: 70%;
  }
}
@media (max-width: 400px){
  .navbar {
    display: flex;
  /* position: sticky; */
    flex-direction: column;
    height: 70px;
    transition: height 0.5s ease;
    /* overflow: hidden; */
  }
  .navbar .builder i{
    color: yellow;
    font-size: 1em;
}
.navbar .builder h2{
  font-size: 1em;
}
.navbar .menue{
    visibility: visible;
}
  .Anhcoretag {
    /* visibility: hidden; */
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
  }

  .navbar .Anhcoretag ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.navbar .Anhcoretag ul li{
    padding: 10px;
}
  .navbar .Anhcoretag ul li:hover {
    background-color: rgb(241, 237, 237);
  }
  .navbar.height {
    height: 300px; 
}

.Anhcoretag.visibility {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;  
  }  
  
  .sectionimages{
        width: 100%;
    }
    .sectionimages p{
        width: 80%;
    }
    .sectionimages button{
        width: 60%;
    }
      .meeetour .meetitems .box{
    width: 80%;
  }
    .Uniq .uniqueitems .uniqueBox{
    width: 80%;
  }
      .profileessssrounde .profileitems{
    width: 80%;
  }
    .footer .footerItems .footerBox{
    width: 80%;
  }
  .footer .footerItems .footerlast{
    width: 80%;
  }
}
@media (max-width: 250px){
  .navbar {
    display: flex;
  /* position: sticky; */
    flex-direction: column;
    height: 70px;
    transition: height 0.5s ease;
    /* overflow: hidden; */
  }
  .navbar .builder i{
    color: yellow;
    font-size: 1em;
}
.navbar .builder h2{
  font-size: 1em;
}
.navbar .menue{
    visibility: visible;
}
  .Anhcoretag {
    /* visibility: hidden; */
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
  }

  .navbar .Anhcoretag ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.navbar .Anhcoretag ul li{
    padding: 10px;
}
  .navbar .Anhcoretag ul li:hover {
    background-color: rgb(241, 237, 237);
  }
  .navbar.height {
    height: 300px; 
}

.Anhcoretag.visibility {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;  
  } 
  .sectionimages{
        width: 100%;
    }
    .sectionimages h1 {
        font-size: 1em;
    }
    .sectionimages p{
        width: 100%;
        padding: 10px;
    }
    .sectionimages button{
        width: 60%;
    }
      .meeetour .meetitems .box{
    width: 90%;
  }
    .Uniq .uniqueitems .uniqueBox{
    width: 90%;
  }
      .profileessssrounde .profileitems{
    width: 90%;
  }
    .footer .footerItems .footerBox{
    width: 90%;
  }
  .footer .footerItems .footerlast{
    width: 90%;
  }
}

