
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f9fb;
      color: #002e6e;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }

    .header {
      background: linear-gradient(to right, #00b8de, #002e6e, #00b8de, #002e6e, #00b8de);
      color: white;
      padding: 2rem 1rem;
      text-align: center;
      animation: fadeInDown 1s ease;
    }

    .header h1 {
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
    }

    .header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    #typed-words{
      padding: 1rem 1.5rem;
      max-width: 900px;
      margin: auto;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      animation: fadeIn 1.5s ease;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    section {
      padding: 2rem 1.5rem;
      max-width: 900px;
      margin: auto;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      animation: fadeIn 1.5s ease;
      margin-bottom: 2rem;
    }

    h2 {
      color: #002e6e;
      border-left: 5px solid #00b8de;
      padding-left: 0.5rem;
      margin-bottom: 1rem;
    }

    form label {
      display: block;
      margin: 15px 0 5px;
      font-weight: 600;
      color: #002e6e;
    }

    input[type="text"],
    input[type="tel"],
    input[type="date"],
    input[type="file"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      border: 1.5px solid #00b8de;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-size: 1rem;
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #002e6e;
      box-shadow: 0 0 5px rgba(0, 46, 110, 0.3);
    }

    textarea {
      resize: vertical;
    }

    .checkbox-label {
      display: flex;
      align-items: center;
      margin-top: 15px;
    }

    .checkbox-label input[type="checkbox"] {
      margin-right: 10px;
      transform: scale(1.2);
    }

    input[type="checkbox"] {
      accent-color: #00b8de;
      cursor: pointer;
    }

    form div {
      margin-bottom: 1rem;
    }

    
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url('checkmark-blue.png') no-repeat center/cover;
}

   
    .submit-btn {
      background: #00b8de;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s ease;
      margin-top: 15px;
    }

    .submit-btn:hover {
      background: #002e6e;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    a {
      color: #00b8de;
      text-decoration: underline;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 1.5rem;
      }

      header p {
        font-size: 1rem;
      }

      .submit-btn {
        width: 100%;
      }
    }




    
/* MODEL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}



/* FORM MODEL  */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 30px 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  color: #002e6e;
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.modal-content button.btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #00b8de;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.modal-content button.btn:hover {
  background-color: #0099b0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}


.spinner {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.amount{
  color: #002e6e;
  font-size: larger;
}