/* get in touch */
  
.ct8x {
    max-width: auto;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #e56306 0%, #f6ea05 100%);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(144, 9, 198, 0.1);
  }
  
  .hd2y {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .hd2y::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #96e715;
    margin: 10px auto 0;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .in3p {
    position: relative;
  }
  
  .in3p input,
  .in3p textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #d11414;
    background-color: transparent;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .in3p label {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #15c308;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .in3p input:focus,
  .in3p textarea:focus {
    outline: none;
    border-color: #2d0d71;
  }
  
  .in3p input:focus + label,
  .in3p textarea:focus + label,
  .in3p input:not(:placeholder-shown) + label,
  .in3p textarea:not(:placeholder-shown) + label {
    top: -20px;
    left: 0;
    font-size: 0.8rem;
    color: #080000;
  }
  
  .in3p textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #6f19d8;
    color: rgb(235, 240, 241);
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
  }
  
  .submit-btn:hover {
    background-color: #c3f804;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(92, 94, 88, 0.2);
  }
  
  @media (max-width: 768px) {
    .ct8x {
      padding: 1.5rem;
    }
  
    .hd2y {
      font-size: 1.5rem;
    }
  }
  
  
 