*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    display: grid;
}
.headerone {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 40px;
    background: #333;
}

.headerone .email {
    display: flex;
    gap: 20px;
}

.headerone .email span {
    font-weight: 700;
    color: #fff;
}

.headerone .email p {
    color: rgb(13, 168, 168);
}

.headerone .icons {
    display: flex;
    gap: 20px;
}

.headerone .icons i {
    color: aqua;
    transition: all ease-in-out 0.6s;
}

.headerone .icons i:hover {
    opacity: 0.6;
}

.headertwo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 6;
}


.headertwo .create {
    position: relative;
}

.headertwo .create h3 {
    font-size: 2.5em;
    font-weight: 300;
}

.headertwo .create::after {
    content: '';
    bottom: 9px;
    right: -11px;
    background: aqua;
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50px;
}

.headertwo .links {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative; 
    
}

.headertwo .links a {
    text-decoration: none;
    padding: 25px;
    transition: all ease-in-out 0.3s;
    color: #333;
    position: relative;
}

.headertwo .links a:hover {
    color: rgb(16, 121, 121);
}

.headertwo .links .about {
    position: relative; 
}

.headertwo .links .options {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    min-width: 150px;
    transform: translate(30px);
}

.headertwo .links a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    font-weight: 800;
}

.headertwo .links .options a:hover {
    background-color: #eee;
}
.headertwo .links .about a{
    position: relative;
    /* overflow: hidden; */
}
.headertwo .links .about a::after{
    content: '';
    top: 10px;
    right: 0;
    background: #333;
    width: 10px;
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
}
.headertwo .links .about a::before{
    content: '';
    top: 7px;
    right: 0;
    background: #fff;
    width: 15px;
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    z-index: 1;
}

.headertwo .links .about:hover .options {
    opacity: 1;
    visibility: visible;
    display: flex;
    gap: 10px;
    flex-direction: column;
    font-weight: 700;
cursor: pointer;
transform: translate(0px);
}
.headertwo .links .about:hover .options p{
    width: 100%;
    height: 40px;
    transition: all ease-in-out 0.8s;
    padding: 10px;
}
.headertwo .links .about:hover .options p:hover{
    background: lightgray;
}
.headertwo .links .about:hover .options::after{
    content: '';
    top: 0;
    left: 0;
    background: aquamarine;
    width: 100%;
    height: 2px;
    position: absolute;
}
.sectionsbg {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../image/8d90987af9e8b4dff950a0ac5f42357f.jpg);
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
overflow: hidden;
}

.sectionsbg .job {
   color: #fff;
 font-size: 40px;
 margin: 5px 0;
 margin-top: -4px;
 display: flex;

}

.sectionsbg .first h1 {
    color: #fff;
    font-size: 3em;
    font-weight: 400;
    margin-bottom: 10px;
}

.sectionsbg .job .typing-text {
   margin-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #1de2d1;
  animation: typing 6s steps(21) infinite;
  word-spacing: 10px;
}

@keyframes typing {
     0%{
    width: 0ch;
  }
  50%{
    width: 22ch;
  }
  100%{
    width: 0ch;
  }
}

.sectionsbg .seconds p {
    color: #fff;
    font-size: 1.5em;
    font-weight: 100;
}

.sectionsbg .btns button {
    padding: 10px 20px;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 30px;
    color: #333;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease-in-out;
    border: 1px solid aquamarine;
    cursor: pointer;
}

.sectionsbg .btns button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: aquamarine;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.6s ease-in-out;
}

.sectionsbg .btns button:hover::after {
    height: 0%;
}

.sectionsbg .btns button:hover {
    color: aquamarine;
}
.itemsone{
    display: flex;
    width: 100%;
    justify-content: space-around;
margin-top: 3em;
}
.itemsone .boxone{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 20%;
    padding: 10px;
    position: relative;
}
.itemsone .boxone h2{
    color: aquamarine;
font-size: 2.5em;
}
.itemsone .boxone p{
    width: 100%;
    display: flex;
gap: 10px;
}
.itemsone .boxone p i{
    color: aquamarine;
}
.itemsone .boxone .number{
    position: absolute;
    z-index: -12;
    font-size: 4em;
color: lightgrey;
top: -0.4em;
left: -0.1em;
}
.ourworks{
    display: flex;
    flex-direction: column;
 width: 100%;   
 margin-top: 8em;
 gap: 20px;
}
.ourworks .heading{
    text-align: center;
}
.ourworks .paras{
    text-align: center;
    width: 50%;
    margin: 0px auto;
    font-size: 1.5em;
color: rgb(116, 111, 111);
}
.items{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.box{
    display: flex;
width: 50%;
box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
background-image:  url(../image/first.jpg);
height: 350px;
justify-content: center;
align-items: center;
transition: all ease-in-out 0.7s;
background-size: cover;
background-repeat: no-repeat;
margin: 10px;
cursor: pointer;
overflow: hidden;
}

.box:nth-child(2){
    background-image:  url(../image/sceond.jpg);
}
.box:nth-child(3){
    background-image:  url(../image/third.jpg);
}
#items .box:nth-child(1){
    background-image:  url(../image/fourth.jpg);
}
#items .box:nth-child(2){
    background-image:  url(../image/fifth.jpg);
}
#items .box:nth-child(3){
    background-image:  url(../image/six.jpg);
}
.box .name{
    text-align: center;
}
.box .name p{
    color: #fff;
    font-size: 2em;
    opacity: 0;
    transition: all ease-in-out 0.9s;
    transform: translateY(20px);
}
.box .name p:nth-child(2){
    transform: translateY(35px);
}
.box:hover{
   background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/first.jpg); 
}
.box:nth-child(2):hover{
   background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/sceond.jpg); 
}
.box:nth-child(3):hover{
   background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/third.jpg); 
}
#items .box:nth-child(1):hover{
       background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/fourth.jpg); 
}
#items .box:nth-child(2):hover{
       background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/fifth.jpg); 
}
#items .box:nth-child(3):hover{
       background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),  url(../image/six.jpg); 
}
.box:hover .name p{
    opacity: 1;
    transform: translate(0px);
}
.bottom{
    display: flex;
    width: 80%;
margin: 60px auto;
height: 400px;
background: #333;
justify-content: center;
align-items: center;
}
.bottom .part{
    width: 100%;
}
.bottom .part img{
    width: 100%;
    height: fit-content;
    padding: 20px;
height: 400px;
}
.bottom .parts{
    display: flex;
    gap: 10px;
flex-direction: column;
}
.bottom .parts .first{
    display: flex;
}
 .para{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.para h3{
    text-align: left;
    color: #fff;
}
.para p{
    /* font-size: 0.8em; */
    text-align: left;
    color: #fff;
}
.para a{
    text-decoration: none;
color: #fff;
border-bottom: 2px solid #fff;
width: 30%;
/* font-size: 0.7em; */
transition: all ease-in-out 0.9s;
text-align: center;
margin: 10px 0px;
font-weight: 800;
}
.para a:hover{
    border: none;
}
