.elementor-3168 .elementor-element.elementor-element-7cd13ee{--display:flex;}.elementor-3168 .elementor-element.elementor-element-4fcc6cf6{width:auto;max-width:auto;}.elementor-3168 .elementor-element.elementor-element-4fcc6cf6.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:1;}/* Start custom CSS for html, class: .elementor-element-4fcc6cf6 */<style>
    body {
      font-family: 'Poppins', sans-serif;
    }

    .form-popup {
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border: 1px solid #0f2a70;
      padding: 20px;
      background-color: white;
      z-index: 100;
      display: none; /* Add this line to hide the form by default */
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
    }

    h1 {
      text-align: center;
      color: #0f2a70;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
      width: 100%;
      padding: 12px;
      border: 1px solid #0f2a70;
      box-sizing: border-box;
      margin-bottom: 10px;
      border-radius: 30px;
      color: #0f2a70;
    }

    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus {
      border-color: #0f2a70;
    }

    /* Updated placeholder styles */
    input[type="text"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="email"]::placeholder {
      color: #0f2a70;
    }

    input[type="text"]:-ms-input-placeholder,
    input[type="tel"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder {
      color: #0f2a70;
    }

    .file-input {
      position: relative;
      display: inline-block;
      padding: 5px 10px;
      border: 1px solid #0f2a70;
      border-radius: 30px;
      background-color: #f0f0f0;
      cursor: pointer;
      width: 250px;
    }

    .file-input input[type="file"] {
      opacity: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer;
    }

    .file-input .file-name {
      font-size: 14px;
      margin-left: 5px;
    }

    .download-button {
      background-color: #0f2a70;
      color: white;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      width: 250px;
      text-align: center;
      text-decoration: none;
      display: block;
      border-radius: 30px;
      margin: 0 auto;
    }

    .download-button:hover {
      opacity: 0.8;
    }

    button[type="submit"] {
      background-color: #0f2a70;
      color: white;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      width: 200px;
      border-radius: 30px;
      margin: 20px auto;
      display: block;
    }

    button[type="submit"]:hover {
      opacity: 0.8;
    }

    .inline-inputs {
      display: flex;
      justify-content: space-between;
    }

    .open-form-button {
      background-color: #ffffff;
      color: #0f2a70;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      border-radius: 50px;
      width: 800px;
      font-size: 30px;
      font-weight: semi-bold;
    }

    .open-form-button:hover {
      opacity: 0.10;
    }

    .file-input-container {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .file-input-label {
      margin-right: 10px;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      z-index: 99;
      display: none;
    }
  </style>/* End custom CSS */