/* ---------- Passport LEFT SIDE Modern Document Styles ---------- */

:root {
  --tz-accent-green: #66b131;
  --tz-dark-blue: #13357b;
  --blue: #0049ff;

  --tz-mid-blue: #0d2857;
  --tz-soft-border: rgba(13, 40, 87, 0.07);
  --tz-shadow: 0 10px 30px rgba(13, 40, 87, 0.08);
}

/* section spacing */
.passport-section {
  padding-top: 40px;
  text-align: center;
}
/* heading */
.passport-section .sectionTitle__title {
  font-size: 28px;
  color: var(--tz-mid-blue);
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.passport-section .sectionTitle__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  margin-top: 12px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--tz-accent-green),
    var(--tz-dark-blue)
  );
   margin-left: auto;
  margin-right: auto;
}

/* left list container */
.passport-info {
  gap: 18px;
  display: block;
}

.passport-info ol {
  counter-reset: passport-counter;
  padding-left: 0;
  margin: 0;
}

/* list item card */
.passport-info ol > li {
  counter-increment: passport-counter;
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 22px 76px;
  margin-bottom: 20px;
  border: 1px solid var(--tz-soft-border);
  box-shadow: var(--tz-shadow);
  list-style: none;
  text-align: center;
  padding-left: 22px !important;
}

/* number box */
.passport-info ol > li::before {
  content: none !important;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--tz-accent-green);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* heading inside item */
.passport-info ol > li h5 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--tz-mid-blue);
  font-weight: 600;
}

/* text inside item */
.passport-info ol > li p {
  margin: 0 0 10px;
  color: #596779;
}

/* bullets */
.passport-info ol > li ul {
  margin: 10px 0 0 18px;
  padding: 0;
   margin-left: 0 !important;
  padding-left: 0 !important;
  display: inline-block; /* so bullets stay neat */
  text-align: left;
}

.passport-info ol > li ul li {
  list-style: disc;
  margin-bottom: 6px;
  color: #3a485a;
}

/* mobile */
@media (max-width: 767px) {
  .passport-info ol > li {
    padding-left: 20px;
  }
  .passport-info ol > li::before {
    width: 36px;
    height: 36px;
    font-size: 14px;
    left: 10px;
  }
}
.passport-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.passport-hover {
  transition: all 0.25s ease;
}
/* passport hero header  */
.passport-hero-left {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 4px 10px rgba(0, 0, 0, 0.35);
}
/* end of passport hero header  */
/* Passport section cta form */
.passport-wrapper {
  display: flex;
  align-items: stretch; /* SAME HEIGHT */
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Image column */
.passport-image {
  flex: 1;
  min-width: 40%;
  max-width: 50%;
  display: flex;
}

.passport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Auto crop, perfect alignment */
  display: block;
}

/* Form column */
.passport-form {
  flex: 1;
  min-width: 50%;
  background: #eaffe7;
  display: flex;
  align-items: stretch;
}

/* Let the inner form fill height smoothly */
.passport-form > div {
  height: 100%;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .passport-wrapper {
    flex-direction: column;
  }

  .passport-image,
  .passport-form {
    max-width: 100%;
    min-width: 100%;
    height: auto;
  }

  .passport-image img {
    height: auto;
  }
}
/* end of sectionTitle__title section cta form */
