
  
 .leadform {
    background-color: #0f0f0f;
    color: #ffffff;
     padding: 0 0;
    font-family: 'Arial', sans-serif;
	    background: linear-gradient(0deg, #0e1b28 0%, #050606 100%);
		    padding-bottom: 100px;
			    border-radius: 0% 0% 3% 3%;
  }

  .leadform-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
  .leadform-header .section-title{    line-height: 1.3;}

  .leadform-left {
    flex: 1;
    /*background: linear-gradient(rgba(30, 30, 60, 0.7), rgba(30, 30, 60, 0.7)), url('/api/placeholder/500/600') center/cover no-repeat;*/
    border-radius: 12px 0 0 12px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }

  .leadform-right {
    flex: 1;
    background-color: #111111;
    border-radius: 0 12px 12px 0;
    padding: 40px;
  }
 
 .leadform-header{
	display: flex;
    flex-wrap: nowrap;
    
    align-items: center;
    flex-direction: row;
    height: 100%;
 }

  

  .leadform-left p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 20px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: flex;
    gap: 16px;
  }

  .form-group {
    flex: 1;
  }

  input, textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
  }

  textarea {
    resize: none;
    height: 150px;
  }

  input::placeholder, textarea::placeholder {
    color: #fff;
    opacity: 0.7;
  }

  .form-submit {
    margin-top: 10px;
  }

  .submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .arrow {
    margin-left: 10px;
  }
  
  .leadform .form-submit .submit-btn:hover{
	  background-color: rgb(29, 41, 56);
	  color:	white;
  }
   @media (max-width: 768px) {
    .leadform-container {
      flex-direction: column;
    }

    .leadform-left, .leadform-right {
      border-radius: 0;
    }

    .form-row {
      flex-direction: column;
    }
	.leadform {
		padding : 0;
	}
  }
	