/* ===== Reset and Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

main {
  padding: 20px;
}

.errorlist>li {
    color: red;
    list-style-type: none;
    margin-left: -32px;
}
/* ===== Header ===== */
.nav-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
  border: 10px solid #00682f;
  background-color: #00682f;
  position: relative;
  flex-wrap: wrap;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #00682f;
}

.brand-name {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* ===== Menu Toggle (Mobile) ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  margin-left: auto;
  cursor: pointer;
}

/* ===== Combined Nav Content ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-primary {
  border: 2px solid #fff;
  color: #00682f;
  background-color: #fff;
}
.btn-primary:hover, .btn:hover{
    color: #fcfffd !important;
    background-color: #72a110 !important;
    border: transparent;
    scale: 1.1;
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {

  /* Hide action-buttons on tablets and smaller */
  .action-buttons {
    display: none !important;
  }
}

@media (max-width: 850px) {
  .nav-header {
    gap: 10px;
    padding: 6px 9px;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }

  /* Hide nav links initially on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #00682f;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-links.show {
    display: flex;
    max-height: 500px;
  }
  .action-buttons.show {
    display: flex;
    max-height: 500px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-logo {
    height: 70px;
    width: 70px;
  }

  main {
    padding: 0px !important;
  }

  .nav-header {
    gap: 10px;
    padding: 6px 0px;
  }

  .brand-name {
    font-size: 15px;
  }
}


/* footer */

.footer-section {
  background-color: #ffffff;
  padding: 10px 80px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-heading {
  color: #00682F;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.footer-text,
.footer-social span,
.footer-contact span {
  color: #52525B;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
}

.footer-area{
  padding: 20px 60px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.trust-header {
  display: flex;
  width: 100%;
  height: 115px;
  padding: 0 200px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  background-color: #00682f;
}

.trust-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 230px;
  border: 1px solid #00682f;
}

.trust-title {
  flex: 1 0 0;
  color: #fff;
  text-align: center;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

@media (max-width: 991px) {
  .trust-header {
    padding: 0 100px;
    height: 100px;
  }

  .trust-logo {
    width: 70px;
    height: 70px;
  }

  .trust-title {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 640px) {
  .trust-header {
    padding: 0 20px;
    height: 80px;
    gap: 15px;
  }

  .trust-logo {
    width: 60px;
    height: 60px;
  }

  .trust-title {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-area{
  padding: 20px 10px;
}

}


/* personal details */

   body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
}

.heading {
  text-align: center;
  color: #009245;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group.full {
  width: 100%;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #344054;
}

input[type="text"],
select,
input[type="file"] {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  color: #000;
  font-size: 14px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.radio-group label {
  font-size: 14px;
  color: #344054;
  display: flex;
  align-items: center;
  gap: 4px;
}

.optional {
  font-weight: 400;
  font-size: 12px;
  color: #aaa;
}

.subtext {
  margin-top: -4px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #999;
}

.button-wrapper {
  margin-top: 16px;
}

.next-button {
  background-color: #999;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.next-button:hover {
  background-color: #888;
}
.file-input {
  display: none;
}

.file-label {
  display: inline-block;
  padding: 8px 16px;
  background-color: #999;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: fit-content;
}

.file-label:hover {
  background-color: #888;
}


/* contact */

 body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: white;
    }

    .form-container {
      max-width: 600px;
      margin: 40px auto;
      padding: 20px;
      background-color: #ffffff;
    }

    .heading {
      text-align: center;
      color: #009245;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .form-group.half {
      flex: 1;
      min-width: 48%;
    }

    label {
      font-size: 14px;
      font-weight: 500;
      color: #344054;
    }

    input[type="text"],
    input[type="email"],
    select {
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      background-color: white;
      color: #000;
      font-size: 14px;
    }

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #344054;
      margin-top: 10px;
    }

    .checkbox-group input[type="checkbox"] {
      margin-top: 3px;
    }

    .submit-button {
      margin-top: 20px;
      background-color: #999;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    .submit-button:hover {
      background-color: #888;
    }

    input#dob {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: white;
    color: #000;
    font-size: 14px;
  }
