@charset "utf-8";
/* CSS Document */
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #222222;
      line-height: 1.5;
    }

    /* Landing page styles */
    .landing-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      position: relative;
      z-index: 100;
    }

    .landing-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      margin-bottom: 2rem;
    }


    .landing-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 4rem 0;
    }

    .landing-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: #222222;
    }

    .landing-hero p {
      font-size: 1.25rem;
      color: #222222;
      max-width: 600px;
      margin-bottom: 2rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      background-color: #7b08b5;
      color: white;
      font-weight: 500;
      border-radius: 0.375rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
      border: none;
      font-size: 1rem;
    }

    .btn-primary:hover {
      background-color: #928778;
    }

    /* Modal styles */
    .modal-form-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    @media (max-width: 768px) {
      .modal-form-overlay {
        overflow: auto;
      }
    }

    .modal-form-overlay.active {
      opacity: 1;
      visibility: visible;
      z-index: 1000;
    }

    .modal-form {
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      width: 100%;
      /* max-width: 900px; */
      /* max-height: 90vh; */
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .modal-form-overlay.active .modal-form {
      transform: translateY(0);
      opacity: 1;
    }

    .modal-form-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2rem;
      height: 2rem;
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background-color: #f3f4f6;
      cursor: pointer;
      z-index: 10;
      transition: background-color 0.2s ease;
    }

    .modal-form-close:hover {
      background-color: #e5e7eb;
    }

    .modal-form-content {
      padding: 1.6rem;
    }

    /* Form styles from previous code */
    .container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
    }

    .text-center {
      text-align: center;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    .mb-4 {
      margin-bottom: 1rem;
    }

    .mb-6 {
      margin-bottom: 1.5rem;
    }

    .mb-8 {
      margin-bottom: 2rem;
    }

    .mt-2 {
      margin-top: 0.5rem;
    }

    .mt-4 {
      margin-top: 1rem;
    }

    .mt-8 {
      margin-top: 2rem;
    }

    .mt-12 {
      margin-top: 3rem;
    }

    .pt-6 {
      padding-top: 1.5rem;
    }

 	.py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.70rem;
    }

    .py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

    .py-8 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .p-3 {
      padding: 0.65rem;
    }


    .p-4 {
      padding: 1rem;
    }

    .p-6 {
      padding: 1.5rem;
    }

    .flex {
      display: flex;
    }

    .items-center {
      align-items: center;
    }

    .justify-center {
      justify-content: center;
    }

    .gap-1 {
      gap: 0.25rem;
    }

    .gap-2 {
      gap: 0.5rem;
    }

    .space-y-1 > * + * {
      margin-top: 0.25rem;
    }

    .space-y-4 > * + * {
      margin-top: 1rem;
    }

    .space-y-6 > * + * {
      margin-top: 1.5rem;
    }

    .w-full {
      width: 100%;
    }

    .min-w-16 {
      min-width: 4.5rem;
    }

    .flex-1 {
      flex: 1;
    }

    .grid {
      display: grid;
    }

    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .gap-4 {
      gap: 1rem;
    }

    .border {
      border: 1px solid #e5e7eb;
    }

    .border-t {
      border-top: 1px solid #e5e7eb;
    }

    .border-red-500 {
      border-color: #ef4444;
    }

    .rounded-md {
      border-radius: 0.375rem;
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    .overflow-hidden {
      overflow: hidden;
    }

    .bg-white {
      background-color: #fff;
    }

    .bg-black {
      background-color: #000;
    }

    .bg-red-50 {
      background-color: #fef2f2;
    }

    .bg-red-600 {
      background-color: #7b08b5;
    }

    .bg-gray-100 {
      background-color: #f3f4f6;
    }

    .bg-gray-200 {
      background-color: #e5e7eb;
    }

    .bg-green-100 {
      background-color: #d1fae5;
    }

    .text-white {
      color: #fff;
    }

    .text-black {
      color: #000;
    }

    .text-gray-500 {
      color: #6b7280;
    }

    .text-gray-600 {
      color: #4b5563;
    }

    .text-gray-700 {
      color: #374151;
    }

    .text-red-500 {
      color: #ef4444;
    }

    .text-red-600 {
      color: #7b08b5;
    }

    .text-green-500 {
      color: #10b981;
    }

    .text-blue-600 {
      color: #2563eb;
    }

    .text-blue-700 {
      color: #1976D2;
    }

    .text-sm {
      font-size: 0.875rem;
    }

    .text-lg {
      font-size: 1.125rem;
    }

    .text-xl {
      font-size: 1.25rem;
    }

    .text-2xl {
      font-size: 1.2rem;
    }

    .text-3xl {
      font-size: 1.6rem;
    }
    @media (min-width: 768px) {
        .text-3xl {
          font-size: 1.875rem;
        }
    }
    .text-4xl {
      font-size: 2.25rem;
    }

    .font-medium {
      font-weight: 500;
    }

    .font-semibold {
      font-weight: 600;
    }

    .font-bold {
      font-weight: 700;
    }

    .h-1 {
      height: 0.25rem;
    }

    .h-5 {
      height: 1.25rem;
    }

    .h-8 {
      height: 2rem;
    }

    .h-12 {
      height: 3rem;
    }

    .h-16 {
      height: 4.5rem;
    }

    .h-48 {
      height: 12rem;
    }

    .w-5 {
      width: 1.25rem;
    }

    .w-8 {
      width: 2rem;
    }

    .w-12 {
      width: 3rem;
    }

    .w-16 {
      width: 4.5rem;
    }

    .relative {
      position: relative;
    }

    .absolute {
      position: absolute;
    }

    .shadow-md {
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .outline-none {
      outline: none;
    }

    .transition-all {
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 300ms;
    }

    .transition-colors {
      transition-property: color, background-color, border-color;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 300ms;
    }

    .hover\:bg-red-700:hover {
      background-color: #7b08b5;
    }

    .hover\:bg-red-50:hover {
      background-color: #fef2f2;
    }

    .ring-2 {
      --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
      --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
      box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    }

    .ring-red-500 {
      --tw-ring-color: #7b08b5;
    }

    /* Form elements */
    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      font-size: inherit;
      color: inherit;
    }

    button:focus {
      outline: none;
    }

    input {
      font-family: inherit;
      font-size: inherit;
    }

    /* Progress bar */
    .progress-container {
      position: relative;
      height: 4px;
      background-color: #e5e7eb;
      border-radius: 9999px;
      overflow: hidden;
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    .progress-bar {
      position: absolute;
      height: 100%;
      background-color: #7b08b5;
      transition: width 0.5s ease;
    }

    /* Option cards */
    .option-card {
      border: 1px solid #e5e7eb;
      border-radius: 0.5rem;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .option-card:hover {
      box-shadow: 0px 15px 29px -5px rgba(0, 0, 0, 0.1);
	background-color: #eeeeee;
		
	position: relative; 
    -moz-transform: translate(0px, -3px);
    -ms-transform: translate(0px, -3px);
    -o-transform: translate(0px, -3px);
    -webkit-transform: translate(-0px, -3px);
    transform: translate(0px, -3px);
    }
	  
   .option-card:hover .option-label.light {
      background-color: #1976D2;
	-webkit-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    }	  

    .option-card.selected {
      border-color: #1976D2;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .option-image {
      height: 12rem;
      background-size: cover;
      background-position: center;
    }

    .option-label {
      padding: 1rem;
      text-align: center;
    }

    .option-label.black {
      background-color: #000;
      color: #fff;
    }

    .option-label.light {
      background-color: #8236a9;	-webkit-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
      color: #fff;
    }

    .icon-container {
      padding: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    @media (min-width: 768px) {
      .icon-container 
      {
          padding: 1.5rem;} 
      }

    /* Form styles */
    .form-group {
      margin-bottom: 1rem;
    }

    .form-control {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.375rem;
    }

    .form-control:focus {
      border-color: #7b08b5;
      outline: none;
    }


input {border-style: none !important;}

		.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1rem;
      border-radius: 0.375rem;
      font-weight: 500;
      transition: background-color 0.2s ease;
    }

    .btn-primary {
      background-color: #7b08b5;
      color: white;
    }

    .btn-primary:hover {
      background-color: #928778;
    }

    /* Features section */
    .features {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid #e5e7eb;
      display: grid;
      grid-template-columns: 1fr;
    }

    .feature {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
        margin-right: 8px;
    }

    /* Database error message */
    .db-error {
      padding: 1rem;
      margin-bottom: 1rem;
      background-color: #fee2e2;
      border: 1px solid #ef4444;
      border-radius: 0.375rem;
      color: #7b08b5;
    }

    /* Step transitions - Left to Right */
    .steps-container {
      position: relative;
      min-height: 440px; /* Adjust based on your content */
      overflow: hidden; /* Important to hide content that slides out */
        margin-bottom: 25px;
    }

    .form-step {
      position: absolute;
      width: 100%;
      max-width: 800px;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: 0;
      visibility: hidden;
      transform: translateX(100px); /* Start from right */
      transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    }

    .form-step.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      transform: translateX(0); /* Center position */
    }

    .form-step.exit {
      transform: translateX(-100px); /* Exit to left */
      opacity: 0;
      visibility: hidden;
    }
    .button-wrap {
    min-width: 100px;
    }

    /* Success message animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .success-message {
      animation: fadeIn 0.5s ease forwards;
    }

    /* Responsive */
    @media (min-width: 640px) {
      .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 768px) {
      .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .md\:text-2xl {
        font-size: 1.5rem;
      }

      .md\:text-4xl {
        font-size: 2.25rem;
      }
    }

    /* Icons */
    .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      stroke-width: 2;
      stroke: currentColor;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-lg {
      width: 48px;
      height: 48px;
    }
#form-icons { display: none;}
.button-wrap {width:50%;} #next-button { float: right;}
#form-header h2 { display: none; }
@media (min-width: 768px) {
    #form-icons { display: flex;}
    .button-wrap {width:auto;} #next-button { float: none;}
    #form-header h2 { display: block; }
}
