  /* SIGNUP CSS START */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.4;
    }

    50% {
      transform: translateY(-20px) scale(1.05);
      opacity: 0.6;
    }
  }

  @keyframes waveMove {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(-20px);
    }
  }

  .animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Premium Role Card Styles */
  .role-card {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 166, 200, 0.12), transparent);
    transition: left 0.6s ease;
  }

  .role-card:hover::before {
    left: 100%;
  }

  .role-card:hover {
    transform: translateY(-6px);
    border-color: #5EA6C8 !important;
    box-shadow: 0 20px 40px -12px rgba(94, 166, 200, 0.35);
  }

  /* Icon hover effect */
  .role-icon {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }

  .role-card:hover .role-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #5EA6C8, #3d8aae) !important;
  }

  .role-card:hover .role-icon i {
    color: white !important;
  }

  /* Arrow animation */
  .role-arrow {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
  }

  .role-card:hover .role-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* Background circles */
  .bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(94, 166, 200, 0.05);
    animation: float 10s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -150px;
    animation-delay: 2s;
  }

  .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    animation-delay: 4s;
  }

  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
  }

  .circle:nth-child(5) {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 85%;
    animation-delay: 3s;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .circle:nth-child(1) {
      width: 250px;
      height: 250px;
      top: -80px;
      right: -60px;
    }

    .circle:nth-child(2) {
      width: 300px;
      height: 300px;
      bottom: -120px;
      left: -100px;
    }

    .circle:nth-child(5) {
      width: 180px;
      height: 180px;
      top: 70%;
      left: 80%;
    }
  }

  .floating-img {
    animation: floating 4s ease-in-out infinite;
  }

  @keyframes floating {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  .wave-path {
    animation: waveMove 3s ease-in-out infinite;
  }

  /* SIGN UP  CSS END  */


  /* GUEST CSS START */


  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.4;
    }

    50% {
      transform: translateY(-15px) scale(1.03);
      opacity: 0.6;
    }
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }

    100% {
      background-position: 200% 0;
    }
  }

  .animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Background Circles */
  .bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(94, 166, 200, 0.05);
    animation: float 10s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -120px;
    animation-delay: 2s;
  }

  .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 5%;
    animation-delay: 4s;
  }

  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
  }

  .circle:nth-child(5) {
    width: 280px;
    height: 280px;
    top: 60%;
    left: 85%;
    animation-delay: 3s;
  }

  @media (max-width: 768px) {
    .circle:nth-child(1) {
      width: 200px;
      height: 200px;
      top: -60px;
      right: -50px;
    }

    .circle:nth-child(2) {
      width: 280px;
      height: 280px;
      bottom: -100px;
      left: -80px;
    }

    .circle:nth-child(3) {
      width: 120px;
      height: 120px;
    }

    .circle:nth-child(5) {
      width: 160px;
      height: 160px;
      top: 70%;
      left: 80%;
    }
  }

  /* Form input styles */
  input,
  select,
  textarea {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1.5px solid #E2E8F0;
    background-color: #FAFDFF;
  }

  input:hover,
  select:hover,
  textarea:hover {
    border-color: #7fbcd9;
    background-color: #FFFFFF;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #5EA6C8;
    box-shadow: 0 0 0 4px rgba(94, 166, 200, 0.12);
    background-color: #FFFFFF;
    transform: translateY(-1px);
  }

  /* Custom Radio & Checkbox */
  input[type="radio"] {
    accent-color: #5EA6C8;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    cursor: pointer;
    accent-color: #5EA6C8;
  }

  /* File upload styling */
  .file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    background: #FAFDFF;
    border: 2px dashed #CBD5E1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .file-upload:hover label {
    border-color: #5EA6C8;
    background: #F0F9FF;
    transform: translateY(-2px);
  }

  .file-name {
    font-size: 11px;
    color: #5EA6C8;
    margin-top: 6px;
    text-align: center;
    word-break: break-all;
    font-weight: 500;
  }

  .submit-btn {
    background: linear-gradient(135deg, #5EA6C8 0%, #3d8aae 100%);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
    left: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(94, 166, 200, 0.35);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .section-header {
    transition: all 0.3s ease;
  }

  .section-header:hover {
    color: #5EA6C8;
  }

  .flatpickr-calendar {
    border-radius: 16px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(94, 166, 200, 0.2);
  }

  .flatpickr-day.selected {
    background: #5EA6C8;
    border-color: #5EA6C8;
  }

  .flatpickr-day.today {
    border-color: #5EA6C8;
    background: rgba(94, 166, 200, 0.1);
  }

  /* Card hover effect */
  .form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  }

  label {
    transition: color 0.2s ease;
  }

  input:focus+label,
  select:focus+label {
    color: #5EA6C8;
  }

  /* YELLOW FORM  INPUT REMOVE */
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fafdff inset !important;
    box-shadow: 0 0 0 1000px #fafdff inset !important;
    background-color: #fafdff !important;
    background: #fafdff !important;
    border-color: #e2e8f0 !important;
  }

  input:-moz-autofill {
    background-color: #fafdff !important;
  }


  @media (max-width: 768px) {

    /* Grid to single column */
    .grid.md\:grid-cols-2,
    .grid.md\:grid-cols-3 {
      grid-template-columns: 1fr !important;
    }

    /* Reduce padding */
    .p-8,
    .p-6 {
      padding: 1rem !important;
    }

    .gap-5 {
      gap: 0.75rem !important;
    }

    /* Make submit button full width */
    .flex.justify-end {
      justify-content: center !important;
    }

    .submit-btn {
      width: 100% !important;
      justify-content: center !important;
    }

    .file-upload label {
      flex-direction: column;
      text-align: center;
      padding: 10px;
    }

    .bg-gradient-to-r .flex {
      flex-direction: column !important;
      text-align: center !important;
    }

    .bg-gradient-to-r .flex-1 {
      text-align: center !important;
    }
  }

  /* GUEST CSS END */


  /* CREW CSS START */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.4;
    }

    50% {
      transform: translateY(-15px) scale(1.03);
      opacity: 0.6;
    }
  }

  .animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Background Circles */
  .bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(94, 166, 200, 0.05);
    animation: float 10s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -120px;
    animation-delay: 2s;
  }

  .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 5%;
    animation-delay: 4s;
  }

  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
  }

  .circle:nth-child(5) {
    width: 280px;
    height: 280px;
    top: 60%;
    left: 85%;
    animation-delay: 3s;
  }

  @media (max-width: 768px) {
    .circle:nth-child(1) {
      width: 200px;
      height: 200px;
      top: -60px;
      right: -50px;
    }

    .circle:nth-child(2) {
      width: 280px;
      height: 280px;
      bottom: -100px;
      left: -80px;
    }

    .circle:nth-child(3) {
      width: 120px;
      height: 120px;
    }

    .circle:nth-child(5) {
      width: 160px;
      height: 160px;
      top: 70%;
      left: 80%;
    }
  }

  /* Form input styles */
  input,
  select,
  textarea {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1.5px solid #E2E8F0;
    background-color: #FAFDFF;
  }

  input:hover,
  select:hover,
  textarea:hover {
    border-color: #7fbcd9;
    background-color: #FFFFFF;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #5EA6C8;
    box-shadow: 0 0 0 4px rgba(94, 166, 200, 0.12);
    background-color: #FFFFFF;
    transform: translateY(-1px);
  }

  /* Custom Radio & Checkbox */
  input[type="radio"] {
    accent-color: #5EA6C8;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    cursor: pointer;
    accent-color: #5EA6C8;
  }

  /* File upload styling */
  .file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    background: #FAFDFF;
    border: 2px dashed #CBD5E1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .file-upload:hover label {
    border-color: #5EA6C8;
    background: #F0F9FF;
    transform: translateY(-2px);
  }

  .file-name {
    font-size: 11px;
    color: #5EA6C8;
    margin-top: 6px;
    text-align: center;
    word-break: break-all;
    font-weight: 500;
  }

  /* Submit button */
  .submit-btn {
    background: linear-gradient(135deg, #5EA6C8 0%, #3d8aae 100%);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
    left: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(94, 166, 200, 0.35);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Section headers */
  .section-header {
    transition: all 0.3s ease;
  }

  .section-header:hover {
    color: #5EA6C8;
  }

  /* Flatpickr custom styling */
  .flatpickr-calendar {
    border-radius: 16px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(94, 166, 200, 0.2);
  }

  .flatpickr-day.selected {
    background: #5EA6C8;
    border-color: #5EA6C8;
  }

  .flatpickr-day.today {
    border-color: #5EA6C8;
    background: rgba(94, 166, 200, 0.1);
  }

  /* Card hover effect */
  .form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  }

  /* Select2 custom styling */
  .select2-container--default .select2-selection--multiple {
    border-radius: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 4px !important;
    min-height: 46px !important;
    background: #fafdff !important;
  }

  .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #5EA6C8 !important;
    box-shadow: 0 0 0 3px rgba(94, 166, 200, 0.1) !important;
  }

  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5EA6C8 !important;
    color: white !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 4px 10px !important;
    font-size: 12px !important;
  }

  @media (max-width: 768px) {

    .grid.md\:grid-cols-2,
    .grid.md\:grid-cols-3 {
      grid-template-columns: 1fr !important;
    }

    .p-8,
    .p-6 {
      padding: 1rem !important;
    }

    .gap-5 {
      gap: 0.75rem !important;
    }

    .flex.justify-end {
      justify-content: center !important;
    }

    .submit-btn {
      width: 100% !important;
      justify-content: center !important;
    }

    .file-upload label {
      flex-direction: column;
      text-align: center;
      padding: 10px;
    }

    .bg-gradient-to-r .flex {
      flex-direction: column !important;
      text-align: center !important;
    }
  }


  /* GUEST CSS END */

  /* PARTNER CSS START */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.4;
    }

    50% {
      transform: translateY(-15px) scale(1.03);
      opacity: 0.6;
    }
  }

  .animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Background Circles */
  .bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(94, 166, 200, 0.05);
    animation: float 10s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -120px;
    animation-delay: 2s;
  }

  .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 5%;
    animation-delay: 4s;
  }

  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
  }

  .circle:nth-child(5) {
    width: 280px;
    height: 280px;
    top: 60%;
    left: 85%;
    animation-delay: 3s;
  }

  @media (max-width: 768px) {
    .circle:nth-child(1) {
      width: 200px;
      height: 200px;
      top: -60px;
      right: -50px;
    }

    .circle:nth-child(2) {
      width: 280px;
      height: 280px;
      bottom: -100px;
      left: -80px;
    }

    .circle:nth-child(3) {
      width: 120px;
      height: 120px;
    }

    .circle:nth-child(5) {
      width: 160px;
      height: 160px;
      top: 70%;
      left: 80%;
    }
  }

  /* Form input styles */
  input,
  select,
  textarea {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1.5px solid #E2E8F0;
    background-color: #FAFDFF;
  }

  input:hover,
  select:hover,
  textarea:hover {
    border-color: #7fbcd9;
    background-color: #FFFFFF;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #5EA6C8;
    box-shadow: 0 0 0 4px rgba(94, 166, 200, 0.12);
    background-color: #FFFFFF;
    transform: translateY(-1px);
  }

  /* Custom Radio & Checkbox */
  input[type="radio"] {
    accent-color: #5EA6C8;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    cursor: pointer;
    accent-color: #5EA6C8;
  }

  /* File upload styling */
  .file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    background: #FAFDFF;
    border: 2px dashed #CBD5E1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .file-upload:hover label {
    border-color: #5EA6C8;
    background: #F0F9FF;
    transform: translateY(-2px);
  }

  .file-name {
    font-size: 11px;
    color: #5EA6C8;
    margin-top: 6px;
    text-align: center;
    word-break: break-all;
    font-weight: 500;
  }

  /* Submit button */
  .submit-btn {
    background: linear-gradient(135deg, #5EA6C8 0%, #3d8aae 100%);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
    left: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(94, 166, 200, 0.35);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Section headers */
  .section-header {
    transition: all 0.3s ease;
  }

  .section-header:hover {
    color: #5EA6C8;
  }

  /* Flatpickr custom styling */
  .flatpickr-calendar {
    border-radius: 16px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(94, 166, 200, 0.2);
  }

  .flatpickr-day.selected {
    background: #5EA6C8;
    border-color: #5EA6C8;
  }

  .flatpickr-day.today {
    border-color: #5EA6C8;
    background: rgba(94, 166, 200, 0.1);
  }

  /* Card hover effect */
  .form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {

    .grid.md\:grid-cols-2,
    .grid.md\:grid-cols-3 {
      grid-template-columns: 1fr !important;
    }

    .p-8,
    .p-6 {
      padding: 1rem !important;
    }

    .gap-5 {
      gap: 0.75rem !important;
    }

    .flex.justify-end {
      justify-content: center !important;
    }

    .submit-btn {
      width: 100% !important;
      justify-content: center !important;
    }

    .file-upload label {
      flex-direction: column;
      text-align: center;
      padding: 10px;
    }

    .bg-gradient-to-r .flex {
      flex-direction: column !important;
      text-align: center !important;
    }
  }

  /* PARTNER CSS END  */

  /* OWNER CSS START */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.4;
    }

    50% {
      transform: translateY(-15px) scale(1.03);
      opacity: 0.6;
    }
  }

  .animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Background Circles */
  .bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(94, 166, 200, 0.05);
    animation: float 10s ease-in-out infinite;
  }

  .circle:nth-child(1) {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
  }

  .circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -120px;
    animation-delay: 2s;
  }

  .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 5%;
    animation-delay: 4s;
  }

  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
  }

  .circle:nth-child(5) {
    width: 280px;
    height: 280px;
    top: 60%;
    left: 85%;
    animation-delay: 3s;
  }

  @media (max-width: 768px) {
    .circle:nth-child(1) {
      width: 200px;
      height: 200px;
      top: -60px;
      right: -50px;
    }

    .circle:nth-child(2) {
      width: 280px;
      height: 280px;
      bottom: -100px;
      left: -80px;
    }

    .circle:nth-child(3) {
      width: 120px;
      height: 120px;
    }

    .circle:nth-child(5) {
      width: 160px;
      height: 160px;
      top: 70%;
      left: 80%;
    }
  }

  /* Form input styles */
  input,
  select,
  textarea {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1.5px solid #E2E8F0;
    background-color: #FAFDFF;
  }

  input:hover,
  select:hover,
  textarea:hover {
    border-color: #7fbcd9;
    background-color: #FFFFFF;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #5EA6C8;
    box-shadow: 0 0 0 4px rgba(94, 166, 200, 0.12);
    background-color: #FFFFFF;
    transform: translateY(-1px);
  }

  /* Custom Radio & Checkbox */
  input[type="radio"] {
    accent-color: #5EA6C8;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    cursor: pointer;
    accent-color: #5EA6C8;
  }

  /* File upload styling */
  .file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    background: #FAFDFF;
    border: 2px dashed #CBD5E1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .file-upload:hover label {
    border-color: #5EA6C8;
    background: #F0F9FF;
    transform: translateY(-2px);
  }

  .file-name {
    font-size: 11px;
    color: #5EA6C8;
    margin-top: 6px;
    text-align: center;
    word-break: break-all;
    font-weight: 500;
  }

  /* Submit button */
  .submit-btn {
    background: linear-gradient(135deg, #5EA6C8 0%, #3d8aae 100%);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
    left: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(94, 166, 200, 0.35);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Section headers */
  .section-header {
    transition: all 0.3s ease;
  }

  .section-header:hover {
    color: #5EA6C8;
  }

  /* Flatpickr custom styling */
  .flatpickr-calendar {
    border-radius: 16px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(94, 166, 200, 0.2);
  }

  .flatpickr-day.selected {
    background: #5EA6C8;
    border-color: #5EA6C8;
  }

  .flatpickr-day.today {
    border-color: #5EA6C8;
    background: rgba(94, 166, 200, 0.1);
  }

  /* Card hover effect */
  .form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {

    .grid.md\:grid-cols-2,
    .grid.md\:grid-cols-3 {
      grid-template-columns: 1fr !important;
    }

    .p-8,
    .p-6 {
      padding: 1rem !important;
    }

    .gap-5 {
      gap: 0.75rem !important;
    }

    .flex.justify-end {
      justify-content: center !important;
    }

    .submit-btn {
      width: 100% !important;
      justify-content: center !important;
    }

    .file-upload label {
      flex-direction: column;
      text-align: center;
      padding: 10px;
    }

    .bg-gradient-to-r .flex {
      flex-direction: column !important;
      text-align: center !important;
    }
  }


  /* OWNER JS END  */