.popupsform {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Above other content */
  }
  
  .popup-content {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  .popup-content .contact-form {
    padding: 0px 22px;
    padding-top: 20px;
    padding-bottom: 40px;
    border-radius: 6px;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
  }
  .unique{
    padding: 16px 40px;
    border-radius: 30px;
  }
  .unique i{
    transform: rotate(-45deg);
  }
  .unique:hover i{
    transform: rotate(0deg);
  }
  .popup-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .popup-text h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  
  .contact-form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .input-group{
    gap: 10px !important;
  }

  
  /* Responsive Styles */
  @media (min-width: 1000px) { 
    .popup-content {
      width: 96%;
    }
  }
  @media (max-width: 999px) { 
    .popup-content .img-division{
      display: none;
    }
    .popup-content .popup-text{
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .popupsform {
      width: 100%;
      height: 100%;
      padding: 40px;
    }
    .popup-content {
      height: 500px;
      width: 100%;
    }
    .popup-content .contact-form {
      padding: 0px 15px;
      padding-top: 10px;
      padding-bottom: 10px;
      border-radius: 6px;
  }
  
    .popup-text h2 {
      font-size: 1.2em;
    }
  
   
  
    .col-md-6 {
      width: 50%;
    
    }
    /* .contact-form .form-control {
      color: #082720;
      height: 40px;
      border-radius: 10px;
      border: 1px solid rgba(12, 58, 48, 0.2);
      box-shadow: 0px 4px 4px 0px rgba(8, 39, 32, 0.02);
      background-color: #ffffff;
     margin-bottom: 0px;
      padding: 12px 20px;
  } */
  }
  @media (max-width: 610px){
    .popup-content .row {
    flex-direction: column;
    }
       .contact-form .form-control {
      color: #082720;
      height: 30px;
      border-radius: 10px;
      border: 1px solid rgba(12, 58, 48, 0.2);
      box-shadow: 0px 4px 4px 0px rgba(8, 39, 32, 0.02);
      background-color: #ffffff;
     margin-bottom: 0px;
      padding: 5px 10px;
  } 
  .popup-content .contact-form {
    padding: 0px 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 6px;
  }
  .col-md-6 {
    width: 100%;
  }
  }
  
  @media (max-width: 480px) {
    .popup-content {
      padding: 15px;
    }
  
    .popup-text h2 {
      font-size: 1em;
    }
  
    .contact-form input {
      padding: 8px;
    }
  
    .default-btn {
      padding: 8px 15px;
      font-size: 0.9em;
    }
  }
  
  @media (max-width: 320px) {
    .popup-content {
      padding: 10px;
    }
  
    .popup-text h2 {
      font-size: 0.9em;
    }
  
    .contact-form input {
      padding: 6px;
    }
  
    .default-btn {
      padding: 6px 10px;
      font-size: 0.8em;
    }
  }
  