@charset "UTF-8";
.signup {
  padding: 4rem 1rem;
  background-color: #f9fdfb;
}
.signup__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .signup__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.signup__form {
  flex: 1;
  max-width: 500px;
}
.signup__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f3d2c;
}
.signup__subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #3b6a57;
}
.signup__form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.signup__field {
  display: flex;
  flex-direction: column;
}
.signup__field label {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.signup__field input {
  padding: 0.75rem;
  border: 1px solid #cbd5c0;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.signup__field input:focus {
  border-color: #2f7e4f;
  outline: none;
}
.signup__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.signup__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.signup__checkbox a {
  color: #2f7e4f;
  text-decoration: underline;
}
.signup__checkbox a:hover {
  text-decoration: none;
}
.signup__button {
  padding: 0.9rem;
  background-color: #2f7e4f;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.signup__button:hover {
  transform: translateY(-2px);
  background-color: #246f42;
}
.signup__note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.signup__visual {
  flex: 1;
  max-width: 500px;
  text-align: center;
}
.signup__visual img {
  width: 100%;
  max-width: 360px;
}
.signup__visual .signup__trust-text {
  font-size: 0.95rem;
  color: #3b6a57;
  margin-top: 1rem;
}

.org-form {
  padding: 4rem 1rem;
  background-color: #f9fdfb;
}
.org-form__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.org-form__container-locations {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.org-form__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.org-form__subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #3b6a57;
}
.org-form__card {
  background: #ffffff;
  border: 1px solid #c4e1d0;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.org-form__card input,
.org-form__card select,
.org-form__card textarea,
.org-form__card button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.org-form__group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.org-form__group label {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.org-form__group input,
.org-form__group select,
.org-form__group textarea {
  padding: 0.7rem;
  border: 1px solid #cbd5c0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}
.org-form__group--row {
  flex-direction: row;
  gap: 1rem;
}
.org-form__group--row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.org-form__submit {
  padding: 0.9rem;
  background-color: #2f7e4f;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.org-form__submit:hover {
  transform: translateY(-2px);
  background-color: #246f42;
}
.org-form__toggle {
  display: flex;
  background: #e5e7eb;
  border-radius: 2rem;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5rem;
  height: 2.5rem;
}
.org-form__toggle input[type=radio] {
  display: none;
}
.org-form__toggle-btn {
  padding: 0 1.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  background-color: transparent;
  color: #1f2937;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.org-form__toggle input[type=radio]:checked + .org-form__toggle-btn {
  background-color: #2f7e4f;
  color: white;
}
.org-form__toggle input[type=radio]#multi-no:checked + label[for=multi-no],
.org-form__toggle input[type=radio]#multi-yes:checked + label[for=multi-yes] {
  background-color: #2f7e4f;
  color: white;
}

input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #6b7280;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #6b7280;
}

.org-form__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.org-form__table th, .org-form__table td {
  padding: 0.6rem;
  border: 1px solid #cbd5c0;
  text-align: left;
  vertical-align: top;
}
.org-form__table td input,
.org-form__table td select,
.org-form__table td textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #cbd5c0;
  border-radius: 0.3rem;
}
.org-form__table td textarea {
  resize: vertical;
  font-family: inherit;
  font-size: inherit;
  padding: 0.5rem;
  border-radius: 4px;
}
.org-form__table .remove-row {
  background: none;
  color: #b91c1c;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.org-form__table input[type=checkbox][name$=-DELETE] {
  display: none;
}

.org-form__add {
  background: none;
  color: #2f7e4f;
  border: none;
  font-weight: bold;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 1rem;
  padding-left: 0.5rem;
}

.org-form__actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  align-items: center;
}
.org-form__actions .org-form__skip {
  text-decoration: underline;
  color: #374151;
}

.form-error {
  color: #b91c1c; /* or desired styling */
  margin: 0.25rem 0;
  padding-left: 1rem;
  list-style-type: disc;
}

.org-logo-box {
  float: right;
  text-align: center;
  margin-bottom: 1rem;
}

.organization-logo-img {
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 0.5rem;
}

.upload-toggle-icon {
  background: none;
  border: none;
  font-size: 18px;
  color: gray;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}

.upload-section {
  display: none;
  margin-top: 10px;
}
.upload-section.visible {
  display: block;
}

.auth-form {
  padding: 4rem 1rem;
  background-color: #f9fdfb;
}
.auth-form__container {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #2f7e4f;
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
}
.auth-form__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.auth-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.auth-form__group label {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.auth-form__group input {
  padding: 0.7rem;
  border: 1px solid #cbd5c0;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.auth-form__submit {
  padding: 0.9rem;
  background-color: #2f7e4f;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.auth-form__link {
  margin-top: 1rem;
  text-align: center;
}
.auth-form__link a {
  color: #2f7e4f;
  text-decoration: underline;
}

.profile-section {
  padding: 4rem 1rem;
  background-color: #f9fdfb;
}
.profile-section__container {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #2f7e4f;
  border-radius: 1rem;
  padding: 2rem;
  background-color: #fff;
}
.profile-section__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.profile-section__item {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.profile-section__item strong {
  font-weight: 600;
  display: inline-block;
  width: 140px;
  color: #333;
}
.profile-section__link {
  margin-top: 2rem;
  text-align: left;
}
.profile-section__link a {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background-color: #2f7e4f;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}
.profile-section__link a:hover {
  background-color: #256c40;
}

.organization-detail__locations {
  margin-top: 2rem;
}
.organization-detail__locations h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2f7e4f;
}
.organization-detail__locations .organization-detail__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}
.organization-detail__locations .organization-detail__table th, .organization-detail__locations .organization-detail__table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.organization-detail__locations .organization-detail__table th {
  background-color: #f1f8f4;
  font-weight: 600;
  color: #2f7e4f;
}
.organization-detail__locations .organization-detail__table tbody tr:nth-child(even) {
  background-color: #f9fdfb;
}
.organization-detail__locations .organization-detail__table tbody tr:hover {
  background-color: #eef6f1;
}

.profile-section__avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.profile-picture-img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.upload-toggle-icon {
  background: none;
  border: none;
  font-size: 18px;
  color: gray;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}

.upload-section {
  display: none;
  margin-top: 10px;
}
.upload-section.visible {
  display: block;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  padding-top: 60px;
}

.nz-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nz-header .logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.nz-header .logo img {
  display: block;
  height: 40px;
}
.nz-header .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.nz-header .nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nz-header .auth-buttons .login-btn,
.nz-header .auth-buttons .signup-btn {
  margin-left: 1rem;
  padding: 6px 12px;
  border: 1px solid #00795f;
  border-radius: 20px;
  text-decoration: none;
}
.nz-header .signup-btn {
  background-color: #00795f;
  color: #fff;
}

.nz-footer {
  background: #f8f8f8;
  padding: 40px 2rem 20px;
  font-size: 16px;
  color: #333;
}
.nz-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.nz-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.nz-footer .footer-columns .footer-col {
  flex: 1 1 200px;
}
.nz-footer .footer-columns .footer-col h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.nz-footer .footer-columns .footer-col ul {
  list-style: none;
  padding: 0;
}
.nz-footer .footer-columns .footer-col ul li {
  margin-bottom: 8px;
}
.nz-footer .footer-columns .footer-col ul li a {
  text-decoration: none;
  color: #333;
}
.nz-footer .footer-columns .footer-col ul li a:hover {
  color: #00795f;
}
.nz-footer .footer-columns .footer-col.newsletter input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.nz-footer .footer-columns .footer-col.newsletter button {
  padding: 8px 12px;
  background-color: #00795f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.nz-footer .footer-columns .footer-col.newsletter button:hover {
  background-color: #005f49;
}
.nz-footer .footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
}

.hero-section {
  padding: 4rem 2rem;
  background-color: #fff;
}
.hero-section .hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-section .hero-text {
  flex: 1 1 50%;
}
.hero-section .hero-text h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1rem;
}
.hero-section .hero-text p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.hero-section .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
}
.hero-section .hero-text .hero-buttons .btn-primary {
  background-color: #00795f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.hero-section .hero-text .hero-buttons .btn-secondary {
  border: 1px solid #333;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  background-color: transparent;
}
.hero-section .hero-media {
  flex: 1 1 45%;
}
.hero-section .hero-media .hero-visual {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.hero-section .hero-media .hero-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.demo-video-section {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.demo-video-section .demo-video-wrapper {
  width: 1200px;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.demo-video-section .demo-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.section-divider {
  width: 100vw;
  height: 4px;
  background-color: #ccc;
  margin: 2rem 0;
}

.features-section {
  padding: 3rem 2rem;
}
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.features-section .features-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features-section .feature-item .feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.features-section .feature-item .feature-header img {
  width: 60px;
  height: 60px;
}
.features-section .feature-item .feature-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.features-section .feature-item .feature-desc {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.testimonial-section {
  padding: 4rem 2rem;
  background-color: #fff;
}
.testimonial-section .testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.testimonial-section .testimonial-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f0f0f0;
  border-radius: 16px;
  transition: all 1s ease-in-out;
}
.testimonial-section .testimonial-item .client-img {
  flex-shrink: 0;
}
.testimonial-section .testimonial-item .client-img img {
  width: 140x;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .testimonial-item .testimonial-text {
  flex: 1;
  font-size: 2rem;
}
.testimonial-section .testimonial-item .testimonial-text p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-section .testimonial-item .testimonial-text .client-meta {
  font-style: italic;
  color: #111111;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease-in-out;
}
.testimonial-item.active {
  position: relative;
  opacity: 1;
  transform: translateX(0%);
}
.testimonial-item.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}
.testimonial-item.enter-right {
  transform: translateX(100%);
  opacity: 0;
}

.pricing-section {
  padding: 3rem 2rem;
}
.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pricing-section .pricing-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .pricing-section .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-section .pricing-grid .pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.pricing-section .pricing-grid .pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-section .pricing-grid .pricing-card .plan-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pricing-section .pricing-grid .pricing-card .plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.pricing-section .pricing-grid .pricing-card .plan-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #777;
}
.pricing-section .pricing-grid .pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}
.pricing-section .pricing-grid .pricing-card .plan-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  position: relative;
}
.pricing-section .pricing-grid .pricing-card .plan-features li::before {
  content: "✔";
  position: absolute;
  left: -1.5rem;
  color: #00795f;
}
.pricing-section .pricing-grid .pricing-card .btn-primary {
  background-color: #00795f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}
.pricing-section .pricing-grid .pricing-card .btn-primary:hover {
  background-color: #005f49;
}
.pricing-section .pricing-grid .pricing-card.basic {
  border: 2px solid #00795f;
}
.pricing-section .pricing-grid .pricing-card.standard {
  border: 2px solid #00795f;
}
.pricing-section .pricing-grid .pricing-card.premium {
  border: 2px solid #00795f;
}