:root {
  --primary-color: #00247d;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}

 
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
   font-family: "Montserrat", sans-serif;
   scroll-behavior: smooth;
}

a,
button,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.fs-14{
  font-size: 12px;
}
/* Owl Dots Style */

.owl-dots{
    text-align:center;
    margin-top:25px;
}

.owl-dots .owl-dot{
    height:10px;
    width:10px;
    margin:5px;
    background:#cfcfcf !important;
    display:inline-block;
    border-radius:50%;
    transition:0.3s;
}

.owl-dots .owl-dot.active{
    background:var(--primary-color) !important;
    width:25px;
    border-radius:20px;
}

/* ===================== Globle Items ===================== */
.btn-1 {
  display: inline-block;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: var(--primary-color);
}
.btn-1:hover {
  color: #fff;
  background: var(--primary-color);
}
.round-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  text-decoration: none;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: 0.3s;
}
.round-btn:hover {
  color: #fff;
  background-color: var(--primary-color);
}
/* ===================== End Globle Items ===================== */

/* ======================== Header Area ======================== */
header {
   position:relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  transition: 0.5s ease;
  z-index: 997;
  padding: 10px 0;
}
header.active {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header .logo img {
  width: 50px;
}
header .header .logo img.logo-img-1 {
  display: block;
}
header .header .logo img.logo-img-2 {
  display: none;
}
header.active .header .logo img.logo-img-1 {
  display: none;
}
header.active .header .logo img.logo-img-2 {
  display: block;
}
header .header .navs{
  margin-left: auto;
}
header .header .navs > ul > li {
  position: relative;
  display: inline-block;
  margin: 0 20px;
}
header .header .navs > ul{
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 0;
}
header .header .navs > ul > li > a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #000;
  padding: 5px 20px;
  margin: 0 3px;
  cursor: pointer;
}
header .header .navs > ul > li:hover > a {
  color: #000;
}
header .header .navs > ul > li > a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}
header .header .navs > ul > li:hover > a.down-arrow::after {
  transform: rotate(180deg);
}
header .header .navs > ul > li.active a {
  color: #000;
  background: var(--primary-color);
  border-radius: 30px;
}
header .header .navs .sub-menu {
  position: absolute;
  top: 100%;
  width: 280px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
header .header .navs > ul > li:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
}
header .header .navs .sub-menu > ul {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 6px;
  padding: 8px 10px;
}
header .header .navs .sub-menu > ul > li {
  display: block;
}
header .header .navs .sub-menu > ul > li > a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--neutra-color);
  padding: 5px 0;
  transition: 0.1s;
}
header .header .navs .sub-menu > ul > li > a:hover {
  color: var(--primary-color);
}
header .header .btns-box {
  display: flex;
  align-items: center;
}
header .header .btns-box .request-btn {
  padding: 0 15px 0 20px;
}
header .header .btns-box .contact-btn {
  position: relative;
}
header .header .btns-box .contact-btn:hover .btn-icon {
  background-color: var(--primary-color);
  color: #fff;
}
header .header .btns-box .contact-btn .contact-box {
  position: absolute;
  right: 0;
  padding-top: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
header .header .btns-box .contact-btn:hover .contact-box {
  pointer-events: all;
  opacity: 1;
}
header .header .btns-box .contact-btn .contact-info {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  overflow: hidden;
}
header .header .btns-box .contact-btn .contact-info .contact-heading {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  padding: 6px 15px;
}
header .header .btns-box .contact-btn .contact-info .info {
  padding: 10px 15px;
  background-color: rgba(204, 204, 204, 0.3);
}
header .header .btns-box .contact-btn .contact-info .info p {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  padding-bottom: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a img,
header .header .btns-box .contact-btn .contact-info .info a i {
  width: 25px;
  font-size: 20px;
  margin-right: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
header .header .btns-box .contact-btn .contact-info .info a:hover {
  opacity: 0.7;
}
header.active .header .logo img.logo-img-2 {
  display: block;
}

@media screen and (max-width: 1199px) {
  header {
    padding: 20px 0;
  }
  header .header .navs {
    display: none;
  }
  header .header .btns-box .contact-btn {
    display: none;
  }
  header .header .btns-box {
    margin-left: auto;
  }
}

@media screen and (max-width: 575px) {
  header {
    padding: 15px 0;
  }
  header .header .logo img {
    width: 50px;
  }
  header .header .btns-box {
    display: block;
    margin-right: 15px;
  }
  header .header .round-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  header .header .btns-box .request-btn .btn-1 {
    display: none;
  }
}
/* ======================== End Header Area ======================== */

/* Default hidden */
header .header .navs .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Show submenu */
header .header .navs ul li:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
}

header .header .navs .sub-menu .sub-menu{
  top: 0;
  left: 108%;
  width: 180px;
}

header .header .navs ul li{
  position: relative;
}


header .header .navs a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}

header .header .navs li:hover > a.down-arrow::after {
  transform: rotate(280deg);
}

.side-menu .menu-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.submenu-toggle::after{
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}

.submenu-toggle.active::after{
  transform:rotate(180deg);
}

/* ======================== Side-Menu Area ======================== */

.side-menu-area::-webkit-scrollbar {
  display: none;
}
.side-menu-area {
  scrollbar-width: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.side-menu-area.active {
  pointer-events: all;
}
.side-menu-area .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.5s ease;
}
.side-menu-area.active .overlay {
  opacity: 1;
}
.side-menu-area .side-menu-box {
  scrollbar-width: none;
  width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* border-top-right-radius: 50px; */
  /* border-bottom-right-radius: 50px; */
  background-color: #fff;
  overflow: auto;
  transform: translateX(-150%);
  transition: 0.8s;
}
.side-menu-area.active .side-menu-box {
  transform: translateX(0%);
}
.side-menu-area .side-menu-box::-webkit-scrollbar {
  display: none;
}
.side-menu-area .side-menu-box .side-menu {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.side-menu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #eee;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  padding: 12px 0 6px;
}
.side-menu .header .logo img {
  width: 100px;
  padding-left: 10px;
}
.side-menu .header .close-btn button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 10px 20px;
}
.side-menu .navs {
  padding: 25px 25px;
}
.side-menu .navs ul {
  list-style: none;
}
.side-menu .navs > ul > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.side-menu .navs > ul > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* font-weight: 600; */
  color: var(--neutra-color);
  padding: 8px 0;
  cursor: pointer;
}
/* .side-menu .navs > ul > li > a.active, */
.side-menu .navs > ul > li > a:hover {
  color: var(--primary-color);
}
/*.side-menu .navs > ul > li > a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}
.side-menu .navs > ul > li > a.active.down-arrow::after {
  transform: rotate(180deg);
}*/
.side-menu .navs > ul > li > .sub-menu {
  display: none;
  padding-left: 10px;
  padding-bottom: 10px;
}
.side-menu .navs a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}

.side-menu .navs a.active.down-arrow::after {
  transform: rotate(180deg);
}
.side-menu .navs .sub-menu{
  display: none;
  padding-left: 10px;
  padding-bottom: 10px;
}
.side-menu .navs .sub-menu > ul > li a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--neutra-color);
  padding: 4px 0;
}
.side-menu .navs .sub-menu > ul > li a:hover {
  color: var(--primary-color);
}
.side-menu .request-btn {
  text-align: center;
  margin-left: -15px;
  margin-bottom: 40px;
  margin-top: auto;
}

/* ======================== End Side-Menu Area ======================== */



.tap-section {
      background:  linear-gradient(to bottom, #f0f4f8, #00247d);
      padding: 0px 0 30px;
      overflow: hidden;
      position: relative;
    }
.tap-section  img{
  width: 100%;
}
    /* faint dot grid bg */
    .tap-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* ── TOP LABEL ── */
    .tap-label {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 14px;
    }
    .tap-label-line { width: 24px; height: 2px; background: #2563eb; border-radius: 2px; }
    .tap-label-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 700; color: #2563eb;
    }

    /* heading */
    .tap-heading {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; color: #0f172a;
      letter-spacing: -1.5px; line-height: 1.1;
      margin-bottom: 14px;
    }
    .tap-heading span { color: #2563eb; }

    .tap-sub {
      font-size: 15px; font-weight: 300;
      color: #fff; line-height: 1.75;
      margin-bottom: 0;
    }

    /* ── VISA CARDS — HORIZONTAL SPLIT ── */
    .tap-cards-wrap {
      margin-top: 0px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .tap-visa-card {
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      min-height: 200px;
      transition: transform .3s cubic-bezier(.34,1.4,.64,1),
                  box-shadow .3s ease;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }
    .tap-visa-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.13);
    }

    /* left color strip */
    .tap-card-strip {
      width: 8px;
      flex-shrink: 0;
    }
    .tap-strip-blue { background: linear-gradient(to bottom, #2563eb, #60a5fa); }
    .tap-strip-navy { background: linear-gradient(to bottom, #0f172a, #334155); }

    /* card content */
    .tap-card-content {
      flex: 1;
      background: #ffffff;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    /* icon circle */
    .tap-card-ico {
      width: 70px; height: 70px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; flex-shrink: 0;
      transition: transform .3s ease;
    }
    .tap-visa-card:hover .tap-card-ico { transform: rotate(-6deg) scale(1.08); }
    .tap-ico-blue { background: #eff6ff; color: #2563eb; }
    .tap-ico-navy { background: #f1f5f9; color: #0f172a; }

    /* text block */
    .tap-card-text { flex: 1; }
    .tap-card-badge {
      display: inline-block;
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 700;
      padding: 4px 12px; border-radius: 50px;
      margin-bottom: 10px;
    }
    .tap-badge-blue { background: #eff6ff; color: #2563eb; }
    .tap-badge-navy { background: #f1f5f9; color: #475569; }

    .tap-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 20px; font-weight: 800;
      color: #0f172a; letter-spacing: -0.5px;
      margin-bottom: 8px;
    }
    .tap-card-desc {
      font-size: 14px; color: #64748b;
      line-height: 1.7; font-weight: 300;
      margin: 0;
    }

    /* features inline */
    .tap-card-features {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 14px;
    }
    .tap-feat {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 500; color: #475569;
      background: #f8fafc; border: 1px solid #e2e8f0;
      border-radius: 50px; padding: 4px 12px;
    }
    .tap-feat i { font-size: 9px; color: #2563eb; }
    .tap-ico-navy ~ .tap-card-text .tap-feat i { color: #0f172a; }

    /* CTA right side */
    .tap-card-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .tap-apply-btn {
      display: inline-flex; align-items: center; gap: 10px;
      border-radius: 14px;
      padding: 15px 24px;
      font-family: 'Syne', sans-serif;
      font-size: 14px; font-weight: 700;
      text-decoration: none; border: none;
      cursor: pointer; white-space: nowrap;
      transition: all .25s;
    }
    .tap-btn-blue {
      background: #2563eb; color: #fff;
      box-shadow: 0 6px 24px rgba(37,99,235,0.3);
    }
    .tap-btn-blue:hover {
      background: #1d4ed8; color: #fff;
      box-shadow: 0 12px 36px rgba(37,99,235,0.45);
      transform: translateX(-3px);
    }
    .tap-btn-dark {
      background: #0f172a; color: #fff;
      box-shadow: 0 6px 24px rgba(15,23,42,0.2);
    }
    .tap-btn-dark:hover {
      background: #1e293b; color: #fff;
      box-shadow: 0 12px 36px rgba(15,23,42,0.35);
      transform: translateX(-3px);
    }
    .tap-apply-btn i { transition: transform .25s; }
    .tap-apply-btn:hover i { transform: translateX(3px); }

    .tap-card-note {
      font-size: 11.5px; color: #94a3b8; text-align: right;
      font-weight: 400;
    }

    /* ── BOTTOM INFO ROW ── */
    .tap-info-row {
      margin-top: 40px;
      background: #ffffff;
      border-radius: 20px;
      padding: 28px 36px;
      display: flex; align-items: center;
      gap: 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    }
    .tap-info-item {
      flex: 1;
      display: flex; align-items: center; gap: 14px;
      padding: 0 28px;
      border-right: 1px solid #f1f5f9;
    }
    .tap-info-item:first-child { padding-left: 0; }
    .tap-info-item:last-child  { border-right: none; }
    .tap-info-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: #eff6ff; color: #2563eb;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .tap-info-num {
      font-family: 'Syne', sans-serif;
      font-size: 20px; font-weight: 800;
      color: #0f172a; line-height: 1;
    }
    .tap-info-label {
      font-size: 12px; color: #94a3b8;
      margin-top: 2px; font-weight: 400;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .tap-card-content { gap: 20px; padding: 26px 24px; }
      .tap-info-row { flex-wrap: wrap; gap: 20px; padding: 24px; }
      .tap-info-item { border-right: none; padding: 0; flex: 0 0 45%; }
    }
    @media (max-width: 767px) {
      .tap-section { padding: 60px 0; }
      .tap-visa-card { flex-direction: column; min-height: auto; }
      .tap-card-strip { width: 100%; height: 6px; }
      .tap-strip-blue { background: linear-gradient(to right, #2563eb, #60a5fa); }
      .tap-strip-navy { background: linear-gradient(to right, #0f172a, #334155); }
      .tap-card-content { flex-direction: column; align-items: flex-start; gap: 20px; }
      .tap-card-cta { align-items: flex-start; width: 100%; }
      .tap-apply-btn { width: 100%; justify-content: space-between; }
      .tap-info-item { flex: 0 0 100%; }
    }

 .vsc-section {
      background: linear-gradient(to right, #f0f4f8, #ddd);
      padding: 40px 0 110px;
      overflow: hidden;
      position: relative;
    }

    /* faint dot grid */
    .vsc-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }

    /* bg glow blobs */
    .vsc-blob1 {
      position: absolute;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
      top: -100px; left: -100px; pointer-events: none;
    }
    .vsc-blob2 {
      position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
      bottom: -80px; right: -80px; pointer-events: none;
    }

    /* ── HEADER ── */
    .vsc-label {
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 16px;
    }
    .vsc-label-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #2563eb;
      animation: vscPulse 2s ease infinite;
    }
    @keyframes vscPulse {
      0%,100%{ opacity:1; transform:scale(1); }
      50%    { opacity:0.4; transform:scale(1.6); }
    }
    .vsc-label-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 700;
      color: #2563eb;
    }

    .vsc-heading {
      font-family: 'Syne', sans-serif;
      font-size: 40px;
      font-weight: 800; color: #0f172a;
      letter-spacing: -1.5px; line-height: 1.1;
      margin-bottom: 12px;
    }
    .vsc-heading em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(15,23,42,0.25);
    }
    .vsc-sub {
      font-size: 15px; font-weight: 300;
      color: #64748b; line-height: 1.7;
    }

    /* ── COMPARE TABLE ── */
    .vsc-table-wrap {
      margin-top: 56px;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    }

    /* table header row */
    .vsc-thead {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      background: #f8fafc;
    }

    .vsc-thead-label {
      padding: 28px 32px;
      display: flex; align-items: center;
      border-right: 1px solid rgba(0,0,0,0.06);
    }
    .vsc-thead-label span {
      font-size: 18px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      color: #94a3b8;
    }

    .vsc-thead-visa {
      padding: 28px 32px;
      border-right: 1px solid rgba(0,0,0,0.06);
      background: #ffffff;
    }
    .vsc-thead-visa:last-child { border-right: none; }

    .vsc-visa-badge {
      display: inline-block;
      font-size: 10px; letter-spacing: 1.5px;
      text-transform: uppercase; font-weight: 700;
      padding: 4px 14px; border-radius: 50px;
      margin-bottom: 10px;
    }
    .vsc-badge-green { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
    .vsc-badge-blue  { background: rgba(37,99,235,0.08); color: #2563eb; border: 1px solid rgba(37,99,235,0.15); }

    .vsc-visa-name {
      font-family: 'Syne', sans-serif;
      font-size: 20px; font-weight: 800;
      color: #0f172a; letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .vsc-visa-sub {
      font-size: 13px; color: #94a3b8;
      font-weight: 300;
    }

    /* table body rows */
    .vsc-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      transition: background .2s;
    }
    .vsc-row:last-of-type { border-bottom: none; }
    .vsc-row:hover { background: #f8fafc; }

    .vsc-row-label {
      padding: 20px 32px;
      display: flex; align-items: center;
      border-right: 1px solid rgba(0,0,0,0.04);
      font-size: 13.5px; font-weight: 500;
      color: #64748b;
      gap: 10px;
    }
    .vsc-row-label i {
      font-size: 12px; color: #cbd5e1;
      width: 16px;
    }

    .vsc-row-val {
      padding: 20px 32px;
      display: flex; align-items: center;
      border-right: 1px solid rgba(0,0,0,0.04);
      font-size: 14px; font-weight: 400;
      color: #334155;
      gap: 10px;
    }
    .vsc-row-val:last-child { border-right: none; }
    .vsc-row-val i.fa-check {
      color: #10b981; font-size: 10px;
      width: 18px; height: 18px;
      background: rgba(16,185,129,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .vsc-row-val i.fa-check.blue-check {
      color: #2563eb;
      background: rgba(37,99,235,0.1);
    }

    /* CTA footer row */
    .vsc-tfoot {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      border-top: 1px solid rgba(0,0,0,0.06);
      background: #f8fafc;
    }
    .vsc-tfoot-empty {
      padding: 28px 32px;
      border-right: 1px solid rgba(0,0,0,0.06);
      display: flex; align-items: center;
    }
    .vsc-tfoot-empty span {
      font-size: 16px; color: #cbd5e1;
      font-weight: 300;
    }
    .vsc-tfoot-btn {
      padding: 24px 32px;
      border-right: 1px solid rgba(0,0,0,0.06);
      display: flex; align-items: center; justify-content: center;
    }
    .vsc-tfoot-btn:last-child { border-right: none; }

    .vsc-apply-btn {
      display: inline-flex; align-items: center; gap: 10px;
      border-radius: 14px; padding: 14px 24px;
      font-family: 'Syne', sans-serif;
      font-size: 14px; font-weight: 700;
      text-decoration: none; border: none;
      cursor: pointer; width: 100%;
      justify-content: center;
      transition: all .25s;
    }
    .vsc-btn-green {
      background: #10b981; color: #fff;
      box-shadow: 0 6px 24px rgba(16,185,129,0.3);
    }
    .vsc-btn-green:hover {
      background: #059669; color: #fff;
      box-shadow: 0 12px 36px rgba(16,185,129,0.45);
      transform: translateY(-2px);
    }
    .vsc-btn-blue {
      background: #2563eb; color: #fff;
      box-shadow: 0 6px 24px rgba(37,99,235,0.3);
    }
    .vsc-btn-blue:hover {
      background: #1d4ed8; color: #fff;
      box-shadow: 0 12px 36px rgba(37,99,235,0.45);
      transform: translateY(-2px);
    }
    .vsc-apply-btn i { transition: transform .25s; }
    .vsc-apply-btn:hover i { transform: translateX(4px); }

    /* ── MOBILE CARDS (shown only on mobile) ── */
    .vsc-mobile-cards { display: none; }

    .vsc-mob-card {
      border-radius: 20px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .vsc-mob-head {
      padding: 24px 24px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      background: #f8fafc;
    }
    .vsc-mob-features { padding: 8px 0; }
    .vsc-mob-feat {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 24px;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      font-size: 13.5px; color: #334155;
    }
    .vsc-mob-feat:last-child { border-bottom: none; }
    .vsc-mob-feat i.fa-check {
      color: #10b981; font-size: 10px;
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(16,185,129,0.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .vsc-mob-feat i.blue { color: #2563eb; background: rgba(37,99,235,0.1); }
    .vsc-mob-foot { padding: 20px 24px; background: #f8fafc; }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .vsc-section { padding: 60px 0 70px; }
      .vsc-table-wrap { display: none; }
      .vsc-mobile-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
    }



/* Section */
.hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Title */
.hero .title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.hero .title span {
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .desc {
    color: #64748b;
    margin-top: 15px;
    font-size: 17px;
}

/* Floating Card */
.hero .floating-card {
    margin-top: 50px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.hero .floating-card:hover {
    transform: translateY(-10px) scale(1.02);
}


/* Button */
.hero .btn-premium {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00247d, #06b6d4);
    box-shadow: 0 10px 30px rgba(79,70,229,0.4);
    transition: 0.3s;
    display:inline-block;
    text-align: center;
    text-decoration: none;
}

.hero .btn-premium:hover {
    transform: translateY(-3px);
}

/* Image Box */
.hero .img-wrapper {
    position: relative;
}

.hero .img-main {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
.bg-blur {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #4f46e5;
    filter: blur(120px);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}
.bg-blur2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #06b6d4;
    filter: blur(120px);
    opacity: 0.3;
    bottom: -100px;
    right: 0px;
}

/* Responsive */
@media(max-width: 991px){
  .hero{
    padding: 40px 0;
  }
    .hero .title {
        font-size: 28px;
    }
    .hero .hero {
        padding: 70px 0;
    }
    .bg-blur{
      width: 450px;
    }
    .bg-blur2{
      width: 350px;
    }
    .hero .img-main{
      display: none;
    }
}

/* Input */
.input-group-modern {
    position: relative;
}

.input-group-modern i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-modern {
    padding: 12px 12px 12px 38px;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    transition: 0.3s;
}

.input-modern:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.section-title{
  margin-bottom: 40px;
}

.section-title h3{
    font-weight:700;
    font-size: 40px;
    text-align: center;
}

.section-title span{
    width:60px;
    height:4px;
    background:var(--primary-color);
    display:block;
    margin:10px auto;
    border-radius:10px;
}


#documents-section{
  overflow: hidden;
  padding: 40px 0;
}
/* FIX CUT ISSUE */
#documents-section .owl-carousel .owl-stage-outer{
  overflow: visible !important;
}


/* ALIGN */
#documents-section .owl-carousel .owl-stage{
  display:flex;
  align-items:stretch;
}

/* CARD */
#documents-section .slider-card{
  background:#fff;
  border-radius:24px;
  padding:20px;
  height:100%;
  transition:all 0.5s ease;
  border:1px solid #e5e7eb;
  position:relative;
  overflow:hidden;
}

#documents-section .slider-card:hover::before{
  opacity:1;
}

/* TEXT */
#documents-section .slider-card h5{
  font-weight:600;
  margin-bottom:12px;
}
#documents-section .slider-card ul{
  padding: 10px 10px 10px 20px;
}
#documents-section .slider-card ul li{
  font-size: 14px;
  padding-bottom: 10px;
}

#documents-section .slider-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.7;
}

/* TAG */
#documents-section .tag{
  display:inline-block;
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  background:var(--primary-color);
  opacity: 0.4;
  color:#fff;
  margin-bottom:12px;
}

/* SIDE ITEMS */
#documents-section .owl-item .slider-card{
  transform:scale(0.9);
  opacity:0.65;
}

/* 🔥 CENTER ITEM */
#documents-section .owl-item.center .slider-card{
  transform:scale(1.1) translateY(-10px);
  opacity:1;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
  border-color:#00247d40;
  z-index:2;
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{ transform:translateY(-10px);}
  50%{ transform:translateY(-16px);}
  100%{ transform:translateY(-10px);}
}

#documents-section .owl-item.center .slider-card{
  animation:float 3s ease-in-out infinite;
}

/* NAV */
#documents-section .owl-nav button{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%!important;
  background:#fff!important;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

#documents-section .owl-nav .owl-prev{ left:-75px; }
#documents-section .owl-nav .owl-next{ right:-75px; }

#documents-section .owl-nav span{
  font-size:26px;
  color:#ff9800;
}

/* MOBILE */
@media(max-width:768px){
 #documents-section  .owl-item .slider-card{
    transform:scale(0.95);
    opacity:1;
  }
 #documents-section  .owl-item.center .slider-card{
    transform:scale(1.05);
    animation:none;
  }
}


/* ABOUT SECTION */
.about-section {
  position: relative;
  background: #f4f6f9;
  padding: 40px 0;
}

/* Sticky */
.sticky-wrapper {
  position: sticky;
  top: 90px;
}

/* Premium Box */
.about-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Image */
.about-img img {
  width: 100%;
  border-radius: 20px;
}

/* Text */
.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}



/* Responsive */
@media (max-width: 768px) {
  .sticky-wrapper {
    position: relative;
    top: 0;
  }

  .about-box {
    padding: 30px;
  }

  .about-content {
    text-align: center;
    margin-top: 30px;
  }
}

/* Section */
.process-section{
  padding:100px 0 50px;
}

/* LEFT SIDE */
.process-section .left-content{
  position: sticky;
  top: 100px;
}
.process-section .left-content img {
    width: 80%;
    margin: 0 auto;
}

.process-section .left-content h3{
  font-size:40px;
  font-weight:700;
  color:#0f172a;
}

.process-section .left-content p{
  color:#64748b;
  margin-top:20px;
}

/* TIMELINE */
.process-section .timeline{
  position: relative;
  padding-left:60px;
}

.process-section .timeline::before{
  content:'';
  position:absolute;
  left:28px;
  top:0;
  width:2px;
  height:100%;
  background:#e2e8f0;
}

/* ITEM */
.process-section .timeline-item{
  position:relative;
  margin-bottom:70px;
  display:flex;
  gap:25px;
  align-items:flex-start;
  padding-left: 20px;
}

/* ICON */
.process-section .timeline-icon{
  position:absolute;
  left:-60px;
  width:56px;
  height:56px;
  background:#eef2f7;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#0f172a;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* Hover Smooth */
.process-section .timeline-item:hover .timeline-icon{
  transform:scale(1.1);
  background:var(--primary-color);
  color: #fff;
}

/* TEXT */
.process-section .timeline-content h4{
  font-size:22px;
  font-weight:600;
  color:#0f172a;
}

.process-section .timeline-content p{
  color:#64748b;
  margin-top:8px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:991px){

.process-section  .left-content{
    position:static;
    margin-bottom:60px;
  }

.process-section  .timeline{
    padding-left:40px;
  }

.process-section  .timeline-icon{
    left:-45px;
    width:50px;
    height:50px;
  }

}



.section {
  padding: 40px 0px 40px;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
}


.navs-tabs{
  text-align: center;
}
.navs-tabs ul.nav{
    display: inline-flex;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 30px;
    padding: 6px;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
}
#pills-tab li button{
      width: 250px;
      border-radius: 20px;
    }


.header-title {
  margin-bottom: 40px;
  text-align: center;
}

.header-title h3 {
    font-size: 40px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.header-title h3 span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-title p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}
.section .img img {
  position: absolute;
  bottom: 0;
  width: 30%;
  right: 0;
}
.section .header-title {
  text-align: center;
}
.section .header-title p {
  width: 100%;
}

/* Grid */

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 10px;
  }
  .section .img img {
    display: none;
  }
  .section .header-title p {
    width: 100%;
    font-size: 14px;
  }
  .header-title h4{
    font-size: 24px;
  }
}

/* Card */

.country-card {
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all .25s cubic-bezier(.34, 1.4, .64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.country-card i{
    text-align: center;
    margin: 0 auto;
}

.country-card:hover {
  border: 1px solid var(--primary-color);
}

.country-card img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.country-card span {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}
.country-card span.au-ctype-651{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  background: #f0fdf4;
  color: #16a34a;
}
.country-card span.au-ctype-600{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  background: #eff6ff;
  color: #2563eb;
}

.toggle-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(99, 102, 241, 0.35);
}

.toggle-btn svg {
  transition: transform 0.4s ease;
}

.toggle-btn.active svg {
  transform: rotate(180deg);
}

/* Text Change Logic */
.toggle-btn .less-text {
  display: none;
}

.toggle-btn[aria-expanded="true"] .more-text {
  display: none;
}

.toggle-btn[aria-expanded="true"] .less-text {
  display: inline;
}
.list-group-flush {
  border-radius: 0;
  margin-bottom: 20px;
}




#cta{
  padding: 80px 0 40px;
}
#cta .container{
  background-color: var(--primary-color);
  border-radius: 10px;
  position: relative;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#cta .des h6{
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
#cta .des p{
  font-size: 16px;
  padding: 20px 0;
  color: #fff;
}
#cta .img img{
    width: 20%;
    position: absolute;
    right: 25px;
    bottom: 0px;
}
#cta .des a{
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}


/* SECTION */
.country-section {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

/* ROW */
.country-section .country-row {
  height: 100%;
}

/* IMAGE */
.country-section .country-img {
  position: relative;
  overflow: hidden;
}

.country-section .country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay Gradient */
.country-section .country-img::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(0,0,0,0.5), rgba(0,0,0,0.1)); */
}

/* Hover Effect */
.country-section .country-img:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.country-section .country-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 50px;
}
.country-section .content-box{
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}
.country-section .content-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.country-section .content-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

/* BUTTON */
.country-section .btn-country {
  display: inline-block;
  padding: 12px 30px;
  background:#000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.country-section .btn-country:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.country-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.country-section .section-title h2{
    font-weight:700;
    font-size: 32px;
    color:#000;
}

.country-section .section-title span{
    width:60px;
    height:4px;
    background:var(--primary-color);
    display:block;
    margin:10px auto;
    border-radius:10px;
    color:#000;
}

/* RESPONSIVE */
@media (max-width: 768px) {

 .country-section .country-row {
    flex-direction: column !important;
  }

}



.faq-section {
    padding: 20px 0 0;
    position: relative;
}

/* Counter */
.faq-section .accordion {
    counter-reset: faq-counter;
}

.faq-section .accordion-item {
    counter-increment: faq-counter;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

/* Number Badge */
.faq-section .accordion-button::before {
    content: "0" counter(faq-counter);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: #000;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Header */
.faq-section .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* REMOVE default arrow */
.faq-section .accordion-button::after {
    display: none;
}

/* PLUS ICON */
.faq-section .accordion-button::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #ffbd6b;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 189, 107, 0.15);
    transition: 0.3s;
}

/* MINUS when active */
.faq-section .accordion-button:not(.collapsed)::after {
    content: "−";
    background: #000;
    color: #fff;
}

/* Active text */
.faq-section .accordion-button:not(.collapsed) {
    color: #000;
    box-shadow: none;
    background-color: #7affb15c;
}

/* Body */
.faq-section .accordion-body {
    color: #555;
    line-height: 1.6;
    padding: 20px 20px 20px;
    font-size: 16px;
}

/* Top gradient line */
.faq-section .accordion-item::before {
    content: "";
    height: 4px;
    width: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}
.faq-section .img img{
    width: 40%;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: 0px;
}

#steps{
  padding: 40px 0;
}

#steps .infographic-card {
      background: #ffffff;
      border-radius: 60px;
      width: 80%;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
 }

#steps .infographic-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 50% 50%, transparent 60px, #e9ebf0 61px, transparent 62px),
        radial-gradient(circle at 50% 50%, transparent 120px, #e9ebf0 121px, transparent 122px),
        radial-gradient(circle at 50% 50%, transparent 200px, #e9ebf0 201px, transparent 202px),
        radial-gradient(circle at 50% 50%, transparent 290px, #e9ebf0 291px, transparent 292px);
      opacity: 0.5;
      pointer-events: none;
      z-index: 0;
}

#steps .card-inner {
      position: relative;
      z-index: 1;
}

#steps .step-circle-wrap {
      display: flex;
      justify-content: center;
}

#steps .step-circle {
      width: 80px;
      height: 80px;
      color: #fff;
      font-weight: 600;
      font-size: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15), inset 0 2px 4px rgba(255,255,255,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #0049ffc7;
}

#steps .step-circle:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.4);
}

#steps .step-circle svg {
      width: 44px;
      height: 44px;
      stroke: #fff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
}

#steps .circle-red    { background: radial-gradient(circle at 35% 35%, #ff7096, #e63370); }
#steps .circle-purple { background: radial-gradient(circle at 35% 35%, #a66dff, #7b3fe4); }
#steps .circle-blue   { background: radial-gradient(circle at 35% 35%, #5aadff, #2d7dd2); }

#steps .step-connector {
      display: flex;
      justify-content: center;
      height: 30px;
}
#steps .connector-line {
      width: 2px;
      height: 28px;
      background: #ccc;
      border-radius: 2px;
}

#steps .step-label {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      color: #0049ffc7;
}

#steps .label-red    { color: #e63370; }
#steps .label-purple { color: #7b3fe4; }
#steps .label-blue   { color: #2d7dd2; }

#steps .step-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 767px) {
#steps .infographic-card { border-radius: 36px; padding: 32px 20px 40px; }
#steps .infographic-title { font-size: 1.5rem; }
#steps .step-circle { width: 88px; height: 88px; }
#steps .step-circle svg { width: 34px; height: 34px; }
}


  .tip-box {
        border-radius: 16px;
        padding: 30px 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        background: #f8fafc;
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: 0.3s ease;
    }

    .tip-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 36, 125, 0.15);
    }

    .tip-title {
        font-size: 18px;
        font-weight: 700;
        color: #00247d;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .tip-icon {
        width: 40px;
        height: 40px;
        background: rgba(0, 36, 125, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #00247d;
    }

    .tip-text {
        color: #444;
        font-size: 15px;
        line-height: 1.6;
    }


/* ======================== */
/* PREMIUM FOOTER */
/* ======================== */

.footer {
  margin-bottom: 10px;
}

.footer .container{
  background: linear-gradient(135deg, #000000, #084298);
  color: #cbd5e1;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}
.footer-top-shape{
  position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    transform: rotate(180deg);
}
.footer-top-shape img{
  width: 100%!important;
}
.footer img{
  width: 50px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 3px solid #ff5f6d;
  max-width: max-content;
}

.footer p {
  font-size: 14px;
  width: 100%;
  line-height: 1.7;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: block;
  margin-bottom: 10px;
}
.footer p a{
  display: inline;
}
.footer p a:hover {
  color: #6366f1;
  padding-left: 0px;
}

.footer a:hover {
  color: #6366f1;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 8px;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #6366f1;
  transform: translateY(-3px);
}

/* Divider */
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

/* Bottom Bar */
.footer-bottom {
  font-size: 14px;
  color: #94a3b8;
}

.banner-section {
    padding: 50px 80px 50px 0px
}

/* The Main Pill-Shaped Container */
.visa-banner-card {
    background-color: #3b66ff;
    border-radius: 0 500px 500px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.text-content {
    padding: 60px 80px;
    color: white;
    z-index: 10;
}

.work-process-tag {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Action Buttons */
.cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.btn-check-now {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-check-now:hover {
    background-color: white;
    color: #3b66ff;
    transform: scale(1.05);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.icon-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Image & Badge Area */
.visual-area {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.worker-photo {
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 2;
    bottom: 0px;
    position: absolute;
    right: 150px;
}

/* Bounce Animation for Badge */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-badge {
    position: absolute;
    left: 0;
    top: 35%;
    z-index: 15;
    max-width: 190px;
    animation: floatBadge 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

/* RESPONSIVE CSS */
@media (max-width: 1200px) {
    .main-heading { font-size: 34px; }
    .text-content { padding: 50px; }
    .worker-photo { height: 450px; }
}

@media (max-width: 991px) {
    .visa-banner-card {
        border-radius: 40px;
        text-align: center;
        flex-direction: column;
        margin: 0 15px;
    }
    .text-content { padding: 50px 20px; }
    .cta-container { justify-content: center; flex-direction: column; gap: 25px; }
    
    .visual-area { width: 100%; }
    .worker-photo {
        height: 400px;
        position: relative;
        margin-top: 20px;
        display: none;
    }
    .floating-badge {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 20px;
        animation: floatBadge 4s ease-in-out infinite;
        display: none;
    }
}




/* Section Title */
#who-we .section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:40px;
}

/* Card Design */
#who-we .news-card{
    background:linear-gradient(to right, #f0f4f8, #ddd);
    border-radius:30px;
    padding:30px 30px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* Left Content */
#who-we .news-content{
    flex:1;
    min-width:280px;
}

#who-we .news-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

#who-we .news-text{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

/* Button */
#who-we .news-btn{
    padding:12px 28px;
    border-radius:50px;
    background:#000;
    color: #fff;
    border:none;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

#who-we .news-btn:hover{
    transform:translateY(-3px);
}

/* Image */
#who-we .news-image{
    flex:1;
    min-width:280px;
}

#who-we .news-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
}

/* Responsive */
@media(max-width:991px){
    #who-we .section-title{
        font-size:36px;
    }

    #who-we .news-title{
        font-size:28px;
    }

    #who-we .news-card{
        padding:30px;
    }
}

@media(max-width:768px){
    #who-we .news-card{
        flex-direction:column;
        text-align:center;
    }
}



/* Section */
.pricing-section {
    padding: 80px 0;
}


/* Main Card */
.pricing-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Heading */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #00247d;
}
.section-title p{
  font-size: 16px;
  font-weight: 400;
}
.section-desc {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Price */
.price-box {
    background: #00247d;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.price-box h2 {
    font-size: 40px;
    margin: 0;
    font-weight: 600;
}

/* List */
.feature-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.feature-list li::before {
    content: "✔";
    color: #00247d;
    margin-right: 10px;
    font-weight: bold;
}

/* Info Boxes */
.info-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #00247d;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box h5 {
    font-weight: 600;
    color: #00247d;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        padding: 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .price-box h2 {
        font-size: 32px;
    }
}


.aps-section {
      background: #f8fafc;
      padding: 100px 0 110px;
      overflow: hidden;
      position: relative;
    }

    /* dot grid */
    .aps-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* glow blob */
    .aps-blob {
      position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(30,58,110,0.05) 0%, transparent 70%);
      top: -150px; right: -150px;
      pointer-events: none;
    }

    /* ── LEFT SIDE ── */
    .aps-left {
      position: relative; z-index: 2;
      padding-right: 48px;
    }

    .aps-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .aps-ew-line { width: 28px; height: 2px; background: #1e3a6e; border-radius: 2px; }
    .aps-ew-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 700;
      color: #1e3a6e;
    }

    .aps-heading {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 800; color: #0f172a;
      letter-spacing: -2px; line-height: 1.08;
      margin-bottom: 20px;
    }
    .aps-heading em {
      font-style: italic; color: #1e3a6e;
    }

    .aps-sub {
      font-size: 15px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      margin-bottom: 40px;
      max-width: 400px;
    }

    /* trust pills */
    .aps-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-bottom: 44px;
    }
    .aps-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: #ffffff;
      border: 1px solid rgba(30,58,110,0.12);
      border-radius: 50px; padding: 8px 16px;
      font-size: 12.5px; font-weight: 500; color: #334155;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
      transition: all .2s;
    }
    .aps-pill:hover { border-color: rgba(30,58,110,0.3); color: #1e3a6e; }
    .aps-pill i { color: #1e3a6e; font-size: 11px; }

    /* stat boxes */
    .aps-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .aps-stat {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 18px; padding: 22px 20px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: all .25s;
    }
    .aps-stat:hover {
      border-color: rgba(30,58,110,0.15);
      box-shadow: 0 8px 28px rgba(30,58,110,0.08);
      transform: translateY(-2px);
    }
    .aps-stat-num {
      font-size: 30px; font-weight: 800;
      color: #1e3a6e; line-height: 1;
      margin-bottom: 5px; letter-spacing: -1px;
    }
    .aps-stat-num span { color: #3b6bc4; }
    .aps-stat-label { font-size: 12px; color: #94a3b8; font-weight: 400; }

    /* ── RIGHT SIDE — STEPS ── */
    .aps-right {
      position: relative; z-index: 2;
    }

    /* vertical line */
    .aps-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .aps-timeline::before {
      content: '';
      position: absolute;
      left: 27px; top: 28px; bottom: 28px;
      width: 2px;
      background: linear-gradient(to bottom,
        #1e3a6e 0%,
        #3b6bc4 50%,
        rgba(30,58,110,0.1) 100%);
      border-radius: 2px;
    }

    /* step item */
    .aps-step {
      display: flex; gap: 24px;
      padding: 0 0 32px;
      position: relative;
    }
    .aps-step:last-child { padding-bottom: 0; }

    /* circle */
    .aps-step-circle {
      width: 56px; height: 56px; border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      position: relative; z-index: 1;
      transition: all .3s;
      border: 2px solid transparent;
    }
    .aps-sc-1 { background: #1e3a6e; color: #fff; box-shadow: 0 6px 24px rgba(30,58,110,0.3); }
    .aps-sc-2 { background: #ffffff; color: #1e3a6e; border-color: rgba(30,58,110,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .aps-sc-3 { background: #ffffff; color: #1e3a6e; border-color: rgba(30,58,110,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

    .aps-step:hover .aps-step-circle {
      background: #1e3a6e !important;
      color: #fff !important;
      border-color: transparent !important;
      box-shadow: 0 8px 28px rgba(30,58,110,0.3) !important;
      transform: scale(1.08);
    }

    /* step card */
    .aps-step-card {
      flex: 1;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 20px;
      padding: 28px 28px 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: all .3s cubic-bezier(.34,1.4,.64,1);
      position: relative;
      overflow: hidden;
    }
    .aps-step-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #1e3a6e, #3b6bc4);
      opacity: 0;
      transition: opacity .3s;
    }
    .aps-step:hover .aps-step-card {
      transform: translateX(6px);
      border-color: rgba(30,58,110,0.12);
      box-shadow: 0 12px 40px rgba(30,58,110,0.1);
    }
    .aps-step:hover .aps-step-card::before { opacity: 1; }

    /* step number tag */
    .aps-step-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10.5px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 700;
      color: #1e3a6e; margin-bottom: 10px;
      opacity: 0.6;
    }
    .aps-step-tag::before {
      content: '';
      width: 16px; height: 1px;
      background: #1e3a6e;
    }

    .aps-step-title {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 800;
      color: #0f172a; letter-spacing: -0.5px;
      margin-bottom: 10px; line-height: 1.25;
    }
    .aps-step-desc {
      font-size: 14px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      margin: 0;
    }

    /* icon inside card top-right */
    .aps-card-ico {
      position: absolute;
      top: 20px; right: 20px;
      width: 36px; height: 36px; border-radius: 10px;
      background: #f0f4fb;
      display: flex; align-items: center; justify-content: center;
      color: #3b6bc4; font-size: 14px;
      transition: all .3s;
    }
    .aps-step:hover .aps-card-ico {
      background: #1e3a6e; color: #fff;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .aps-section { padding: 70px 0; }
      .aps-left { padding-right: 0; margin-bottom: 56px; }
      .aps-sub { max-width: 100%; }
      .aps-stats { grid-template-columns: repeat(4,1fr); }
    }
    @media (max-width: 767px) {
      .aps-section { padding: 60px 0; }
      .aps-heading { letter-spacing: -1.5px; }
      .aps-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .aps-timeline::before { left: 23px; }
      .aps-step-circle { width: 48px; height: 48px; font-size: 16px; }
      .aps-step-card { padding: 22px 18px; }
    }



@media (min-width: 320px) and (max-width: 480px) {
  
 .header-title h3{
  font-size: 28px;
 }
 .process-section {
    padding: 40px 0 0px;
}
.process-section .left-content h3{
  font-size: 28px;
}
#steps .infographic-card{
  width: 100%;
}
#steps .infographic-card .col-md-4{
  margin-bottom: 40px;
}
#steps{
  padding: 0;
}
.section-title h3{
  font-size: 28px;
}
#cta{
  padding: 0px 0 40px;
}
#cta .des h6{
  font-size: 28px;
}
#cta .img img{
  display: none;
}
.fs-14 {
    font-size: 12px;
    padding: 0 20px 10px;
}
.country-card{
  font-size: 12px;
  gap: 0;
}
.banner-section {
    padding: 50px 0px 50px 0px;
}
.faq-section .img img{
  display: none;
}
  
}