    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f8f9fa;
      margin: 0;
      padding: 0;
    }

    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      padding: 20px;
    }

    .contact-form {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 100%;
      position: relative;
    }

    .back-btn {
      position: absolute;
      top: 15px;
      left: 15px;
      text-decoration: none;
      color: #007bff;
      font-size: 16px;
      font-weight: bold;
      transition: color 0.3s;
    }

    .back-btn:hover {
      color: #0056b3;
    }

    .contact-form h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 24px;
      color: #333;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: none;
      border-bottom: 2px solid #ccc;
      background: transparent;
      padding: 10px 0;
      font-size: 16px;
      color: #333;
      outline: none;
      transition: border-color 0.3s;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #aaa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #007bff;
    }

    .form-group select {
      appearance: none;
      padding-right: 25px;
    }

    .form-group textarea {
      resize: none;
      height: 80px;
    }

    .submit-btn {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
      width: 100%;
    }

    .submit-btn:hover {
      background: #0056b3;
    }

    @media (max-width: 600px) {
      .contact-form {
        padding: 25px;
      }

      .back-btn {
        top: 10px;
        left: 10px;
        font-size: 14px;
      }
    }


    #scrollProgress {
            position: fixed;
            top: 10;
            left: 0;
            width: 0%;
            height: 4.5px;
            /* Adjust the height as needed */
            background: linear-gradient(to right, #f11818, #3f2cee);
            /* Customize the color */
            z-index: 100;
        }
        
        
        
    