@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0px 10px;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 
.containerc {
  z-index: 12;
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  margin: 10px 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.containerc .contentc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
}
.contentc .image-box {
  max-width: 55%;
}
.contentc .image-box img {
  width: 100%;
}
.contentc .topic {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}
.contentc form {
  width: 40%;
  margin-right: 30px;
}
.contentc .input-box {
  height: 50px;
  width: 100%;
  margin: 16px 0;
  position: relative;
}
.contentc .input-box input {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  padding: 0 16px;
  background: #b9faf1;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.contentc .input-box input:focus,
.contentc .input-box input:valid {
  border-color: #059481;
  background-color: #fff;
}
.contentc .input-box label {
  position: absolute;
  left: 18px;
  top: 50%;
  color: #636c72;
  font-size: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.contentc .input-box input:focus ~ label,
.contentc .input-box input:valid ~ label {
  top: 0;
  left: 12px;
  display: 14px;
  color: #adfbfd;
  background: #fff;
}
.contentc .message-box {
  min-height: 100px;
  position: relative;
}
.contentc .message-box textarea {
  position: absolute;
  height: 100%;
  width: 100%;
  resize: none;
  background: #b2f1b8;
  border: 2px solid transparent;
  border-radius: 6px;
  outline: none;
  padding: 5px 16px;
  transition: all 0.3s ease;
}
.contentc .message-box textarea:focus {
  border-color: #11cf67;
  background-color: #fff;
}
.contentc .message-box label {
  position: absolute;
  font-size: 16px;
  color: #636c72;
  left: 18px;
  top: 6px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.contentc .message-box textarea:focus ~ label {
  left: 12px;
  top: -10px;
  color: #09a19a;
  font-size: 14px;
  background: #fff;
}
.contentc .input-box input[type="submit"] {
  color: #fff;
  background: #03ad3c;
  padding-left: 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.contentc .input-box input[type="submit"]:hover {
  background-color: #03ad3c;
}
/* Add these media queries to your existing CSS code */
@media (max-width: 1200px) {
  .containerc {
    margin: 0 10px;
    z-index: 12;
  }
 
}

@media (max-width: 1000px) {
  .contentc .image-box {
    max-width: 70%;
  }
  .contentc {
    padding: 10px 0;
  }
}
.contact .col p {
  margin-bottom: 10px;
}

.contact .col p i {
  color: #7a7a7a;
  margin-right: 10px;
}
@media (max-width: 900px) {
  .contentc .image-box {
    display:  none;
  }
  .containerc {
    margin: 0 10px;
    z-index: 12;
  }
  .contentc form {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    z-index: 12;
  }
  .contentc .input-box {
    margin: 12px 0;
    z-index: 12;
  }
}

@media (max-width: 600px) {
  .contentc form {
    padding: 20px;
    z-index: 12;
  }
}
