
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('https://img.freepik.com/free-photo/transparent-vivid-autumn-leaves_23-2148239689.jpg?t=st=1745433434~exp=1745437034~hmac=86e0dcc65e3310518d0ef1dad600452a855ea5da207e0b474ed76f97341f75e1&w=996') no-repeat center center fixed;
    background-size: cover;
  }
  
  .ids-request-form {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 90px;
  }
  
  #ids-serviceForm {
    max-width: 540px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.582);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .ids-heading {
    text-align: center;
    color: goldenrod;
    margin-bottom: 30px;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .ids-label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #FFD700;
  }
  
  .ids-input,
  .ids-select,
  .ids-button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  .ids-input:focus,
  .ids-select:focus {
    border-color: #FFD700;
    outline: none;
    background-color: #2c2c2c;
  }
  
  .ids-button {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s ease, color 0.3s ease;
  }
  
  .ids-button:hover {
    background-color: #e6c200;
    color: #000;
  }
  
  #ids-thankYouMessage {
    display: none;
    text-align: center;
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  #ids-thankYouMessage img {
    width: 80px;
    margin-bottom: 10px;
  }

  #ids-thankYouMessage h2 {
    color: yellow;
    font-family: "Poetsen One", sans-serif;
  }

  #ids-thankYouMessage p {
    font-size: 18px;
    color: #e4e0da;
  }
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    #ids-serviceForm {
      padding: 20px;
      max-width: 90%;
    }
  
    .ids-heading {
      font-size: 24px;
      margin-bottom: 20px;
    }
  
    .ids-label {
      font-size: 14px;
    }
  
    .ids-input,
    .ids-select,
    .ids-button {
      font-size: 14px;
      padding: 10px;
    }
    #ids-thankYouMessage {
        max-width: 90%;
      }
  }

  
  /* service Form  end */



