@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  *{
  
      font-family: "Poppins", serif;
      font-weight: 200px;
      font-style: normal;
      margin: 0;
      padding: 0;
      text-decoration: none;
      scroll-behavior: smooth;
  }

header{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: white;
    z-index: 1;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.517);
}
header nav h1 a{
    color: black;
    font-size: 1.5rem;
}
header nav{
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: space-between;
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul a{
    padding:0 10px;
    font-size: 14px;
    color: black;
    transition: 0.5s ease;
}

nav ul a:hover{
    color: orange;
}

.menu{
    display: none;  
}
#close{
    display: none;
}

 .contact-us{
    width: 100%;
    height: 70vh;
    background-image: url(../images/drum-back.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.contact-us div{
    background: linear-gradient(to bottom,rgba(255, 255, 255, 0), #1a163a);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us h1{
    color: orange;
    font-size: 2rem;
}
.message-us{
    width: 100%;
    min-height: 60vh;
    background-color: whitesmoke;
}

.message-us h2{
    padding: 20px;
    text-decoration: underline;
}
.message-us .company-info{
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    gap: 40px;
}

.company-info .our-info{
    flex-grow: 1;
    flex-basis: 200;
    width: 150px;
    padding:10px;
    border-bottom: 3px solid black;
}

.messageus-cont{
    display: flex;
    justify-content: center;
    width: 100%;
}

.messageus-cont .message{
    width: 350px;
    text-align: center;
}

.message p{
    font-size: 14px;
    color: gray;
}

.message a button{
    padding: 10px ;
    border: none;
    color: white;
    background-color: green;
    width: 100%;
    transition: 0.5s ease;
    border: 1px solid green;
    border-radius: 10px;
}

.message button:hover{
    color: green;
    background-color: rgb(125, 255, 125);
}

/* service css */
.services{
    width: 100%;
    min-height: 100vh;
}
.services h2{
    color: orange;
    text-align: center;
}

.services h1{
    text-align: center;
}

.services .container{
    display: flex;
    flex-wrap: wrap;
}

.services label{
    font-weight: bold;
    font: 20px;
}

.services .box{
    margin:20px 30px;
    padding: 20px;
    flex-grow: 1;
    flex-basis: 200;
    width: 200px;
    box-shadow: 0 10px 30px #cdcdcd;
    transition: 0.5s ease;
    color: #333;
    border-radius: 10px;
}

.services .box:hover{
    background-color: orange;
    color: white;
}

.services .box p{
    font-size: 13px;
}


/* footer css */
footer .container{
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}

footer .links{
    flex-grow: 1;
    flex-basis: 200;
    margin: 20px;
}

footer h1{
    font-size: 1.5rem;
}

footer ul{
    list-style: none;
}
footer a{
    font-size: 13px;
    color: #333;
}

footer a:hover{
    text-decoration: underline;
}
footer .infomation{
    display: flex;
    margin: 10px 0;
}

footer .infomation i{
    font-size: 1rem;
    background-color: orange;
    margin: 5px;
    color: white;
    border-radius: 50%;
    padding: 16px;
}
footer .Copyright{
    padding: 40px;
    text-align: center;
}