    body {
      background: #e9f0f8;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #1a1a1a;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding-bottom: 40px;
    }

    h2, h3 {
      color: #0d6efd;
      font-weight: 700;
    }

    p.fs-5 {
      max-width: 600px;
      margin: 0 auto 30px;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    #introButtons button {
      min-width: 180px;
      font-weight: 600;
      box-shadow: 0 4px 8px rgb(13 110 253 / 0.3);
      transition: background-color 0.3s ease;
    }
    #introButtons button:hover {
      filter: brightness(90%);
    }

    /* Visa cards */
    #visaServicesSectionWrapper {
      margin-top: 30px;
    }
    #visaServicesSectionWrapper .card {
      border-radius: 15px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      transition: transform 0.25s ease;
    }
    #visaServicesSectionWrapper .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
    }

    #visaServicesSectionWrapper .card img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      object-fit: contain;
      max-height: 200px;
      background: #f0f4fb;
      padding: 15px;
      width: 100%;
    }

    #visaServicesSectionWrapper .card-body {
      text-align: center;
      padding: 1.25rem 1rem;
    }
    #visaServicesSectionWrapper .card-title {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: #0b5ed7;
    }
    #visaServicesSectionWrapper .card-text {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 0.7rem;
    }
    #visaServicesSectionWrapper .btn-primary {
      background-color: #0d6efd;
      border: none;
      font-weight: 600;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      transition: background-color 0.3s ease;
    }
    #visaServicesSectionWrapper .btn-primary:hover {
      background-color: #0b5ed7;
    }

    /* Back button styling */
    #visaServicesSectionWrapper .btn-secondary {
      min-width: 140px;
      margin-top: 15px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 3px 8px rgb(108 117 125 / 0.4);
    }
    #visaServicesSectionWrapper .btn-secondary:hover {
      background-color: #6c757d;
      color: #fff;
    }

    /* Form styling */
    #applicationForm {
      max-width: 720px;
      margin: 0 auto;
      padding: 25px 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgb(0 0 0 / 0.12);
    }
    #applicationForm h3 {
      text-align: center;
      margin-bottom: 25px;
    }
    #applicationForm label {
      font-weight: 600;
      color: #333;
    }
    #applicationForm .form-control,
    #applicationForm select,
    #applicationForm textarea {
      border-radius: 10px;
      border: 1.8px solid #ced4da;
      transition: border-color 0.3s ease;
      box-shadow: none;
      font-size: 1rem;
    }
    #applicationForm .form-control:focus,
    #applicationForm select:focus,
    #applicationForm textarea:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 8px rgb(13 110 253 / 0.3);
      outline: none;
    }
    #applicationForm textarea {
      resize: vertical;
      min-height: 80px;
    }

    #applicationForm button {
      border-radius: 50px;
      font-weight: 600;
      padding: 0.6rem 2.3rem;
      font-size: 1.1rem;
      transition: background-color 0.3s ease;
    }
    #applicationForm button.btn-success {
      background-color: #0d6efd;
      border: none;
      box-shadow: 0 5px 15px rgb(25 135 84 / 0.4);
    }
    #applicationForm button.btn-success:hover {
      background-color: #157347;
    }
    #applicationForm button.btn-secondary {
      margin-left: 15px;
      box-shadow: 0 3px 8px rgb(108 117 125 / 0.4);
      border-radius: 50px;
      font-weight: 600;
      padding: 0.55rem 1.8rem;
    }
    #applicationForm button.btn-secondary:hover {
      background-color: #6c757d;
      color: #fff;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      #visaServicesSection .card {
        margin-bottom: 25px;
      }
    }

    
   /* Work Visa*/
.visa-intro-box {
  background: linear-gradient(135deg, #e0f0ff, #f4faff);
  border-left: 6px solid #0d6efd;
  padding: 25px 20px;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.visa-intro-box h3 {
  font-weight: 700;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.visa-intro-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 0;
}

/* Optional: Add slight padding for small screens */
@media (max-width: 576px) {
  .visa-intro-box {
    padding: 20px 15px;
  }
}

/* Appointment Page*/
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card-img-top {
  width: 250px;
  height: 200px;
  object-fit: cover;        /* Crops slightly but fills the space without white borders */
  border-radius: 12px;
}

