
.background {
  position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://img.freepik.com/free-photo/top-view-set-tools-wooden-table_23-2148428309.jpg?t=st=1720766605~exp=1720770205~hmac=7447ace91287bd83687d17c894abe7b222bdfe4b25bb404013f31c4872f96f42&w=900');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
   
}
.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black; /* Adjust the color and opacity as needed */
  opacity: 0.7;
  z-index: 1;
}

.bg-heading {
  position: relative;
  z-index: 2;
    width: 50%;
    text-align: center;
    align-items: center;
}

.bg-heading h1{
  font-size: 5rem;
  color: white;
}
.bg-heading p{
  font-size:20px;
  color: white;

}

.Contactus-page{
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.containers{
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.containers .content-contactus{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.containers .content-contactus .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content-contactus .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content-contactus .left-side .details{
  margin: 14px;
  text-align: center;
}
.content-contactus .left-side .details i{
  font-size: 30px;
  color: purple;
  margin-bottom: 10px;
}
.content-contactus .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content-contactus .left-side .details .text-one,
.content-contactus .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.containers .content-contactus .right-side{
  width: 75%;
  margin-left: 75px;
}
.content-contactus .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: purple;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: purple;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover{
  background: #5029bc;
}

@media (max-width: 768px) {
    .bg-heading {
        width: 75%; 
    }
}

@media (max-width: 480px) {
    .bg-heading {
        width: 90%; 
    }
}

@media (max-width: 950px) {
  .containers{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .containers .content-contactus .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .containers{
    margin: 40px 0;
    height: 100%;
  }
  .containers .content-contactus{
    flex-direction: column-reverse;
  }
 .containers .content-contactus .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .containers .content-contactus .left-side::before{
   display: none;
 }
 .containers .content-contactus .right-side{
   width: 100%;
   margin-left: 0;
 }
}

