*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:  Arial, sans-serif;
}
body,html{
    scroll-behavior: smooth;
    width: 100% !important;
    overflow-x: hidden;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding-left: 1rem;
    padding-right: 1rem;
   position: sticky;
   background-color: #000;
   top: 0px;
}

header .logo img{
    width: 6rem;
    height: 4rem;
}
nav{
    display: flex;
    gap: 1.5rem;
    font-weight: bold;
    font-size: 1.4rem;
}
header a{
 
    color: #fff;
    text-decoration: none;
    transition: 0.5s ease;
}
nav a:hover{
    color: #fff;
text-shadow: 0px 3px 2px rgb(0, 0, 0);
}
section#hero{
    min-height: 100vh;
    padding: 5rem 3rem 3rem 3rem;
    display: flex;
    align-items: center;
}
#hero .container{
  display: flex;
  width: 60%;
  /* background-color: red; */
    flex-direction: column;
    align-items: flex-start;
justify-content: center;
    color: #fff;
    gap: 1rem;
}
#hero video{
    z-index: -1;
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}
#hero .photo{
    width: 40%;
    height: 20rem;
display: flex;
justify-content: right;
}
#hero .photo img{
    width: 75%;
    height: 100%;
    border-radius: 100%;
    background-color: #000000;
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
    shape-outside: circle();
    border: 4px solid #000;
}
#hero h1{
    
    color: #fff;
    font-size: 3rem;
    text-shadow: 0px 0px 5px rgb(0, 0, 0);
}
#hero h2{
    color:yellow;
    font-size: 2rem;
      text-shadow: 0px 0px 5px rgb(0, 0, 0);
}
#hero h3{
    font-size: 1.5rem;
    color: #fff;
      text-shadow: 0px 0px 5px rgb(0, 0, 0);
}
#hero h3 button{
    padding: 1rem;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 1rem;
    font-size: 1.3rem;
    background-color: #000;
    font-weight: bold;
    color: #fff;
    box-shadow: 0px 0px 5px gray;
    text-shadow: 0px 0px 5px #000;
    cursor: pointer;
}
#section-2{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: flex-start;
text-align: justify;
/* background-color: #111; */
padding: 3rem;
}
#section-2 .container{
    min-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}
#section-2>video{
    z-index: -1;
    position:absolute;
    top:100vh;
    left: 0;
    width: 100%;
    min-height: 90vh;
    object-fit: cover;
}

#section-2 .container h1{
    font-size: 3rem;
    text-align: center;
    color: #facc15;
}
#section-2 .container p{
     color: #ffffff;
     font-size: 1.5rem;
     line-height: 2rem;
     text-shadow: 0px 0px 5px gray;
     font-weight: 100;
     font-family: Arial, Helvetica, sans-serif;
}
#services{
    min-height: 100vh;
    width: 100%;
    text-align: center;

}
#services video{
    z-index: -1;
    position:absolute;
    top:200vh;
    left: 0;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}
#services .cards{
    width: 100%;
    height: 100vh;
 
}

#services .card{
    width: 25%;
    height:10rem;
    background-color: #ffffff;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 1rem;
    display: inline-block;
    font-size: 18px;
   padding: 1rem;
    box-shadow: 0px 0px 15px #ffee00;
    margin: 1.5rem;
    vertical-align: top;
    
}
#services .container>h1{
    font-size: 3rem;
       color: #facc15;
       padding: 2rem;
}
#projects{
min-height: 100vh;
width: 100%;
text-align: center;

}

#projects .container{
width: 100%;
min-height: 100vh;
display: block;
background-color: #000;
}
#projects>h1{
    text-align: center;
    font-size:3rem ;
    color: #facc15;
    background-color: #000;
    padding: 2rem;

}
#projects .container .item{
    width: 26%;
    margin: 2rem;
    height: 30rem;
    border-radius: 3rem;
    border: 2px solid #000;
    display: inline-block;
    overflow: hidden;
    text-align: left;
    border: 1px solid #000000;
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
    transition: 1s ease;
    background-color: #fff;
    
}
#projects .container .item h1{
    font-size: 1.4rem;
    color: #000000;
margin-top: 1.3rem;
padding-left:  1.5rem;
padding-right: 1.5rem;
margin-bottom: 1rem;
}
#projects .container .item p{
    font-size: 0.9rem;
margin-top: 0.5rem;
padding-left:  1.5rem;
text-align: justify;
color: #000000;
padding-right: 1.5rem;
margin-bottom: 1rem;
width: 90%;

}
#projects .container .item button{
padding: 0.5rem 1rem 0.5rem 1rem;
border-radius: 2rem;
background-color: #000000;
border: 1px solid #000000;
margin-top: 0.5rem;
margin-left: 1.5rem;
font-size: 1.1rem;
color: #fff;
font-weight: bolder;
}
#projects .container .item img{
width: 100%;
height: 40%;
border-top-right-radius: 1rem;
border-top-left-radius: 1rem;

}
#projects .container .item:hover{
    padding: 0.5rem;
}
section#testinomials{
    min-height: 100vh;
    padding-top: 10rem;
}
#testinomials h1{
    text-align: center;
    color: #facc15;
    font-size: 2.3rem;
    padding-bottom: 2rem;
}
#testinomials video{
    z-index: -1;
    position:absolute;
    top: 320vh;
    left: 0;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}
#testinomials .paras{
    display: inline-block;
}
#testinomials .container{
    width: 100%;
    text-align: center;
}

#testinomials .container>div{
    width: 30%;
    display: inline-block;
    text-align: justify;
    height: 13rem;
    margin: 1rem;
    background-color: #fffef5;
    border-radius: 1rem;
    border: 1px solid black;
    padding: 2rem;
    font-weight: bold;
    box-shadow: 0px 0px 10px yellow;
}
#testinomials .container>div>p{
    margin-bottom: 1rem;
}
#testinomials img{
    border-radius: 100%;
    border: 2px solid #facc15;
}
#testinomials p.first{
    color: #ffbf00;
}
section#contact{
    min-height: 100vh;
    width: 100%;
    background-color: #000;

}
#contact .container{
   
    margin: auto;
    width: 70%;
    background-color: #000;


}
#contact .container p{
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
#contact .container h1{
    font-size: 2.2rem;
    margin: 2rem;
}
section#footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    background-color: #000;
    color: #fff;
    padding: 2rem;
    font-size: 1.2rem;
}
#footer i{
    font-size: 2rem;
    margin: 0.3rem;
    color: #fff;
}
@media(max-width:768px){
    header a{
        display: none;
    }
    section#hero{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    #hero button{
        width: 100%;
        margin: auto;
    }
    #hero .photo{
        width: 100%;
    }
    #hero .photo img{
        width: 65%;
        height: 75%;
        margin: auto;

    }
    #hero .container{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    #section-2{
        flex-direction: column;
       
    }
    #section-2 .photo{
        display: none;

    }
    #section-2 .container{
        width: 100%;
    }
    #services .card{
        width: 30%;
    }
    #services .card h1{
        font-size: 0.9rem;
    }
    #testinomials .container>div{
        width: 80%;
    }
    #projects .container .item{
        width: 70%;
    }
    #contact .container{
        padding: 0;
        width: 100%;
    }
    #services .card{
        height: 10rem;
    }
    #hero video{
        height: 150vh;
    }
    #section-2 video{
    top: 100vh;
    height: 280vh
    }
    #services video{
        top:370vh ;
        height:350vh ;
    }
    #testinomials video{
        top: 580vh;
        height: 200vh;
    }
    #testinomials .container>div{
height: 20rem;
text-align: left;
    }
    #projects .container .item{
        height: 30rem;
    }
}
@media (max-width:360px){
      #projects .container .item{
        height: 32rem;
    }
}
@media (min-width:415px) and (max-width:756px){
    #testinomials .container>div{
        height: 14rem;
    }
}