

.form-group {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 15px;
    vertical-align: top;
  }
  
  .form-group:nth-child(2n) {
    margin-right: 0;
  }
  
  .contact-form-s1 {
    padding: 20px;
    border-radius: 10px;
  }
  
  .contact-form-s1 label {
    font-weight: bold;
    color: #0056b3;
    display: block;
    margin-bottom: 5px;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    /* box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); */
  }
  
  .submit-btn-wrap {
    text-align: center;
    margin-top: 20px;
  }
  
  .theme-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .theme-btn:hover {
    background-color: #0056b3;
  }
  
  #loader {
    display: none;
    text-align: center;
    margin-top: 20px;
  }
  .contact-info {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 10px;
  }
  
  .contact-info i {
    font-size: 24px; /* Adjust the size as needed */
    margin-right: 10px;
    color: #007bff; /* Customize the color */
  }
  
  .contact-info p {
    margin: 0;
    font-size: 16px;
    color: #333;
  }
  
  h2 {
    margin-bottom: 20px;
    font-weight: bold;
  }
  
