/* inquiry fornm  */
  /* Fade and slide animation on load */
  .fade-slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s ease forwards;
  }
  .fade-slide-in:nth-child(1) {
    animation-delay: 0.1s;
  }
  .fade-slide-in:nth-child(2) {
    animation-delay: 0.3s;
  }
  @keyframes fadeSlideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Form floating labels */
  .form-floating-group {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .form-floating-group input,
  .form-floating-group select,
  .form-floating-group textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .form-floating-group input:focus,
  .form-floating-group select:focus,
  .form-floating-group textarea:focus {
    outline: none;
    border-color: #28597e;
    box-shadow: #28597e;
  }

  /* Hide native arrow on select */
  .form-floating-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
      url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 6px;
  }

  /* Label styling and floating */
  .form-floating-group label {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: #6c757d;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
    background: white;
    padding: 0 0.25rem;
  }

  /* Move label up when input is focused or filled */
  .form-floating-group input:focus + label,
  .form-floating-group input:not(:placeholder-shown) + label,
  .form-floating-group select:focus + label,
  .form-floating-group select:not([value=""]) + label,
  .form-floating-group textarea:focus + label,
  .form-floating-group textarea:not(:placeholder-shown) + label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color:#28597e;
    font-weight: 600;
  }

  /* Underline animation */
  .underline {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    height: 2px;
    width: 0;
    background-color: #28597e;
    border-radius: 1px;
    transition: width 0.4s ease;
  }
  .form-floating-group input:focus ~ .underline,
  .form-floating-group select:focus ~ .underline,
  .form-floating-group textarea:focus ~ .underline {
    width: calc(100% - 2rem);
  }

  /* Button hover animation */
  .btn-animate {
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  .btn-animate:hover {
    transform: translateY(-3px);
    box-shadow:#28597e;
  }


  /* TOURIST */

  /* Tourist Visa Section Styles */
  .tourist-visa {
    background: #ffffff;
  }
  .tourist-visa .feature-box {
    background: #f9fbfc;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .tourist-visa .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  .tourist-visa .feature-icon {
    font-size: 2.8rem;
    color: #2c5c80;
    margin-bottom: 18px;
  }
  .btn-insurance {
    background-color: #2c5c80;
    color: white;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
  }
  .btn-insurance:hover {
    background-color: #2c5c80;
    color: white;
  }



/* work permit */
  /* Work Permit Visa Section */
  .workpermit-visa {
    background: #f8f9fa;
  }
  .workpermit-visa .feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .workpermit-visa .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  .workpermit-visa .feature-icon {
    font-size: 3rem;
    color: #26577c;
    margin-bottom: 18px;
  }
  .workpermit-visa h5 {
    font-weight: 600;
    margin-bottom: 12px;
  }
  .workpermit-visa p {
    font-size: 0.95rem;
    color: #555;
  }
  .workpermit-visa .btn-primary {
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .workpermit-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  .workpermit-details strong {
    color: #26577c;
  }

  /* new york page */

  /* Animation keyframes
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animated-fadeInUp {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
  }

  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  .delay-4 { animation-delay: 0.8s; }
  .delay-5 { animation-delay: 1s; }
  .delay-6 { animation-delay: 1.2s; }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .feature-item .emoji {
    font-size: 2rem;
    margin-top: 5px;
  }

  .feature-item h5 {
    margin: 0 0 5px;
    font-weight: 600;
  }

  .feature-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
  } */
