.videshi-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(5, 24, 44, 0.86), rgba(5, 24, 44, 0.45)),
    url("../images/thumbs/banner-two-bg-img1.png") center bottom / cover no-repeat;
}

.videshi-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: floatPulse 9s ease-in-out infinite;
}

.videshi-section {
  padding: 100px 0;
}

.videshi-card {
  height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.videshi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 128, 100, 0.28);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.videshi-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e8f6ef;
  color: #0f8f61;
  font-size: 28px;
}

.videshi-band {
  background: #f5fbf8;
}

.videshi-stat {
  border-left: 3px solid #0f8f61;
  padding-left: 18px;
}

.videshi-destination-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.videshi-page-hero {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(6, 33, 53, 0.88), rgba(6, 33, 53, 0.62)),
    url("../images/thumbs/visa-journey-banner-img.png") center / cover no-repeat;
}

.videshi-step {
  position: relative;
  padding-left: 68px;
}

.videshi-step span {
  position: absolute;
  left: 0;
  top: 0;
}

.videshi-form input,
.videshi-form textarea,
.videshi-form select {
  width: 100%;
  border: 1px solid #dbe5df;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

.videshi-form textarea {
  min-height: 150px;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-26px, -18px, 0) scale(1.06);
  }
}

@media (max-width: 767px) {
  .videshi-section {
    padding: 70px 0;
  }

  .videshi-page-hero {
    padding: 70px 0;
  }
}

.country-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background: #061d2f;
}

.country-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(44, 179, 127, 0.36), transparent 28%),
    linear-gradient(120deg, rgba(5, 22, 39, 0.95), rgba(5, 22, 39, 0.72));
  z-index: 1;
}

.country-hero__media {
  position: absolute;
  inset: 0;
}

.country-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  animation: countryHeroZoom 18s ease-in-out infinite alternate;
}

.country-hero .container {
  z-index: 2;
}

.country-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #b8f3d2;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.country-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31d083;
  box-shadow: 0 0 0 8px rgba(49, 208, 131, 0.16);
}

.country-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.country-video-link i {
  font-size: 30px;
  color: #31d083;
}

.country-hero-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  animation: countryCardFloat 6s ease-in-out infinite;
}

.country-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.country-hero-card__orbit {
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  animation: spinSlow 22s linear infinite;
}

.country-hero-card__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 210px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.country-hero-card__badge strong {
  display: block;
  color: #0f8f61;
  font-size: 34px;
  line-height: 1;
}

.country-hero-card__badge span {
  color: #334155;
  font-weight: 700;
}

.country-facts {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.country-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.country-fact {
  min-height: 118px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.country-fact:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.country-fact span {
  display: block;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 8px;
}

.country-fact strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
}

.country-info-card {
  position: relative;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.country-info-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(15, 143, 97, 0.1);
  transition: transform 0.35s ease;
}

.country-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 143, 97, 0.35);
}

.country-info-card:hover::after {
  transform: scale(1.35);
}

.country-info-card p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: #334155;
  font-weight: 700;
}

.country-course-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.country-course {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.country-course i {
  color: #0f8f61;
  font-size: 32px;
  transition: color 0.35s ease, transform 0.35s ease;
}

.country-course:hover {
  transform: translateY(-9px) rotate(-1deg);
  background: #0f8f61;
  color: #fff;
}

.country-course:hover i {
  color: #fff;
  transform: scale(1.12);
}

.country-panel {
  height: 100%;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.country-panel--dark {
  background:
    linear-gradient(135deg, rgba(4, 24, 39, 0.96), rgba(4, 43, 58, 0.96)),
    url("../images/shape/global-map.png") center / cover no-repeat;
}

.country-check-list {
  display: grid;
  gap: 18px;
}

.country-check-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #334155;
  font-weight: 700;
}

.country-check-list i {
  color: #0f8f61;
  font-size: 24px;
  flex-shrink: 0;
}

.country-check-list--light div {
  color: rgba(255, 255, 255, 0.82);
}

.country-check-list--light i {
  color: #31d083;
}

.country-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.country-timeline__item {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}

.country-timeline__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49, 208, 131, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.country-timeline__item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.country-timeline__item:hover::after {
  opacity: 1;
}

.country-timeline__item span,
.country-timeline__item h3,
.country-timeline__item p {
  position: relative;
  z-index: 1;
}

.country-timeline__item span {
  color: #31d083;
  font-size: 34px;
  font-weight: 900;
}

.country-timeline__item h3 {
  color: #fff;
  margin: 18px 0 12px;
  font-size: 22px;
}

.country-timeline__item p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.country-mini-card {
  height: 100%;
  padding: 24px;
  border-left: 4px solid #0f8f61;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.country-mini-card:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
}

.country-mini-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.country-mini-card p {
  color: #64748b;
  margin: 0;
}

.country-cta {
  padding: 0 0 100px;
  background: #f5fbf8;
}

.country-cta__inner {
  padding: 56px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(5, 24, 44, 0.9), rgba(5, 24, 44, 0.72)),
    url("../images/thumbs/visa-dashboard-img6.png") center / cover no-repeat;
  text-align: center;
}

.country-cta__inner span {
  color: #b8f3d2;
  font-weight: 800;
}

.country-cta__inner h2 {
  max-width: 760px;
  margin: 12px auto 28px;
  color: #fff;
}

@keyframes countryHeroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes countryCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .country-course-grid,
  .country-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .country-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .country-hero {
    padding: 86px 0 76px;
  }

  .country-course-grid,
  .country-timeline,
  .country-facts__grid {
    grid-template-columns: 1fr;
  }

  .country-panel,
  .country-cta__inner {
    padding: 28px;
  }
}

/* =============================================================
   COUNTRY PAGE — Professional Redesign  (cp- prefix)
   ============================================================= */

/* ── Hero ──────────────────────────────────────────────────── */
.cp-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
}

.cp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(4,18,36,.92) 45%, rgba(4,42,62,.72));
}

.cp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cpHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes cpHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.cp-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cp-hero__particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(49,208,131,.55);
  animation: cpParticleFloat linear infinite;
}

.cp-hero__particles span:nth-child(1)  { left:12%; top:20%; width:3px; height:3px; animation-duration:14s; animation-delay:0s; }
.cp-hero__particles span:nth-child(2)  { left:28%; top:65%; width:5px; height:5px; animation-duration:18s; animation-delay:-3s; }
.cp-hero__particles span:nth-child(3)  { left:55%; top:15%; width:4px; height:4px; animation-duration:12s; animation-delay:-6s; }
.cp-hero__particles span:nth-child(4)  { left:72%; top:75%; width:6px; height:6px; animation-duration:20s; animation-delay:-9s; }
.cp-hero__particles span:nth-child(5)  { left:85%; top:30%; width:3px; height:3px; animation-duration:16s; animation-delay:-2s; }
.cp-hero__particles span:nth-child(6)  { left:8%;  top:80%; width:5px; height:5px; animation-duration:22s; animation-delay:-7s; }
.cp-hero__particles span:nth-child(7)  { left:40%; top:88%; width:3px; height:3px; animation-duration:13s; animation-delay:-4s; }
.cp-hero__particles span:nth-child(8)  { left:60%; top:50%; width:4px; height:4px; animation-duration:17s; animation-delay:-11s; }
.cp-hero__particles span:nth-child(9)  { left:90%; top:60%; width:6px; height:6px; animation-duration:11s; animation-delay:-1s; }
.cp-hero__particles span:nth-child(10) { left:20%; top:42%; width:3px; height:3px; animation-duration:19s; animation-delay:-8s; }

@keyframes cpParticleFloat {
  0%   { transform: translateY(0) scale(1);   opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:.5; }
  100% { transform: translateY(-130px) scale(1.5); opacity:0; }
}

.cp-hero .container { position: relative; z-index: 3; }

/* Breadcrumb */
.cp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
}
.cp-breadcrumb a     { color: rgba(255,255,255,.6); transition: color .2s; text-decoration:none; }
.cp-breadcrumb a:hover { color: #31d083; }
.cp-breadcrumb > span { color: rgba(255,255,255,.9); }
.cp-breadcrumb i     { color: rgba(255,255,255,.35); font-size:11px; }

/* Eyebrow badge */
.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(49,208,131,.4);
  background: rgba(49,208,131,.12);
  color: #31d083;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Highlight word in h1 */
.cp-highlight {
  position: relative;
  color: #31d083;
}
.cp-highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 3px;
  border-radius: 100px;
  background: linear-gradient(90deg, #31d083, transparent);
}

/* CTA actions row */
.cp-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Glow pulse on primary button */
.cp-btn-glow {
  animation: cpBtnGlow 2.6s ease-in-out infinite;
}
@keyframes cpBtnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(49,208,131,.3); }
  50%       { box-shadow: 0 4px 36px rgba(49,208,131,.7), 0 0 0 8px rgba(49,208,131,.08); }
}

/* Play / Scroll link */
.cp-scroll-link {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background .3s, transform .3s, color .3s;
}
.cp-scroll-link:hover { background: rgba(49,208,131,.22); transform: scale(1.1); color: #31d083; }

.cp-scroll-link__ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(49,208,131,.45);
  animation: cpRingSpin 8s linear infinite;
}
@keyframes cpRingSpin { to { transform: rotate(360deg); } }

/* Trust bar */
.cp-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 16px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.cp-trust-bar__item { text-align: center; }
.cp-trust-bar__item strong { display:block; font-size:22px; font-weight:800; color:#31d083; line-height:1; }
.cp-trust-bar__item span  { display:block; font-size:12px; color:rgba(255,255,255,.62); margin-top:4px; }
.cp-trust-bar__sep { width:1px; height:38px; background:rgba(255,255,255,.18); flex-shrink:0; }

/* Hero card */
.cp-hero-card {
  position: relative;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.cp-hero-card__ring {
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  border: 1px solid rgba(49,208,131,.25);
  animation: cpRingFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.cp-hero-card__ring--2 {
  inset: -38px;
  border-color: rgba(49,208,131,.1);
  animation-duration: 9s;
  animation-direction: reverse;
}
@keyframes cpRingFloat {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.03) rotate(1.5deg); }
}

.cp-hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  animation: cpCardFloat 7s ease-in-out infinite;
}
@keyframes cpCardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.cp-hero-card__badge {
  position: absolute;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(15,23,42,.22);
}
.cp-hero-card__badge-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: #e8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8f61;
  font-size: 22px;
  flex-shrink: 0;
}
.cp-hero-card__badge strong { display:block; font-size:18px; font-weight:800; color:#0f172a; line-height:1; }
.cp-hero-card__badge span   { display:block; font-size:12px; color:#64748b; margin-top:2px; }

.cp-hero-card__pill {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: #0f8f61;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* Scroll indicator */
.cp-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  z-index: 4;
}
.cp-hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.8);
  animation: cpScrollBounce 2s ease-in-out infinite;
}
@keyframes cpScrollBounce {
  0%,100% { transform: translateY(0); opacity:1; }
  80%      { transform: translateY(12px); opacity:0; }
}

/* ── Facts Strip ────────────────────────────────────────────── */
.cp-facts {
  position: relative;
  z-index: 5;
  margin-top: -64px;
  padding-bottom: 0;
}

.cp-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15,23,42,.18);
}

.cp-fact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  background: #fff;
  border-right: 1px solid #e4eeeb;
  transition: all .38s ease;
  cursor: default;
}
.cp-fact-card:last-child { border-right: none; }

.cp-fact-card:hover {
  background: #0f8f61;
  transform: translateY(-6px);
  position: relative;
  z-index: 2;
}
.cp-fact-card:hover .cp-fact-card__icon { background: rgba(255,255,255,.2); color: #fff; }
.cp-fact-card:hover span,
.cp-fact-card:hover strong { color: rgba(255,255,255,.9) !important; }

.cp-fact-card--accent { background: #f0faf6; }

.cp-fact-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #e8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8f61;
  font-size: 22px;
  transition: all .38s ease;
}
.cp-fact-card span  { display:block; font-size:12px; color:#64748b; margin-bottom:4px; transition:color .38s; }
.cp-fact-card strong { display:block; font-size:14px; font-weight:700; color:#0f172a; line-height:1.35; transition:color .38s; }

/* ── Shared Section Tag ─────────────────────────────────────── */
.cp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  background: #e8f6ef;
  color: #0f8f61;
  font-size: 13px;
  font-weight: 600;
}

/* ── Why Section ────────────────────────────────────────────── */
.cp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cp-why-card {
  position: relative;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}
.cp-why-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #31d083, #0f8f61);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .42s ease;
}
.cp-why-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(15,23,42,.12); border-color: rgba(15,143,97,.28); }
.cp-why-card:hover::before { transform: scaleY(1); }

.cp-why-card__num {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 56px;
  font-weight: 900;
  color: rgba(15,143,97,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cp-why-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #e8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8f61;
  font-size: 18px;
  margin-bottom: 12px;
}
.cp-why-card p { color:#334155; font-size:15px; line-height:1.65; margin:0; position:relative; z-index:1; }

/* ── Courses ────────────────────────────────────────────────── */
.cp-courses { background: #f5fbf8; }

.cp-courses-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cp-course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 14px 20px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  transition: all .38s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}
.cp-course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #0f8f61, #31d083);
  opacity: 0;
  transition: opacity .38s ease;
}
.cp-course-card:hover { transform: translateY(-10px) scale(1.04); box-shadow: 0 24px 60px rgba(15,143,97,.25); border-color: transparent; }
.cp-course-card:hover::before { opacity: 1; }
.cp-course-card:hover .cp-course-card__icon { background: rgba(255,255,255,.2); color: #fff; }
.cp-course-card:hover span { color: #fff; }
.cp-course-card:hover .cp-course-card__arrow { opacity:1; transform: translate(0,0); color:#fff; background:rgba(255,255,255,.18); }

.cp-course-card__icon {
  position: relative; z-index:1;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 26px;
  transition: all .38s ease;
}
.cp-course-card span {
  position: relative; z-index:1;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  transition: color .38s ease;
}
.cp-course-card__arrow {
  position: relative; z-index:1;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 14px;
  opacity: 0;
  transform: translate(5px, 5px);
  transition: all .38s ease;
}

/* ── Support Panels ─────────────────────────────────────────── */
.cp-support { background: #fff; }

.cp-panel {
  height: 100%;
  padding: 42px;
  border-radius: 22px;
  background: #f8fffe;
  border: 1px solid rgba(15,143,97,.12);
}
.cp-panel--dark {
  background: linear-gradient(140deg, rgba(4,22,38,.97), rgba(4,46,62,.95));
  border: none;
}

.cp-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15,143,97,.12);
}
.cp-panel--dark .cp-panel__head { border-bottom-color: rgba(255,255,255,.08); }

.cp-panel__icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 27px;
}
.cp-panel--dark .cp-panel__icon { background: rgba(49,208,131,.15); color: #31d083; }

/* Checklist */
.cp-checklist { display: grid; gap: 12px; }

.cp-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 11px;
  background: rgba(15,143,97,.05);
  border: 1px solid rgba(15,143,97,.1);
  transition: all .3s ease;
}
.cp-checklist__item:hover { background: rgba(15,143,97,.1); transform: translateX(5px); }

.cp-panel--dark .cp-checklist__item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.07); }
.cp-panel--dark .cp-checklist__item:hover { background: rgba(255,255,255,.1); }

.cp-checklist__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 18px;
}
.cp-panel--dark .cp-checklist__icon { background: rgba(49,208,131,.18); color: #31d083; }

.cp-checklist__item span { font-size:15px; color:#334155; font-weight:500; line-height:1.5; }
.cp-panel--dark .cp-checklist__item span { color: rgba(255,255,255,.82); }

/* ── Process Timeline ───────────────────────────────────────── */
.cp-process { background: #041827; }
.cp-process .cp-section-tag { background: rgba(49,208,131,.15); color: #31d083; }

.cp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cp-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 2px;
  background: linear-gradient(90deg, rgba(49,208,131,.05), rgba(49,208,131,.35), rgba(49,208,131,.05));
  z-index: 0;
}

.cp-timeline__item {
  position: relative;
  padding: 0 12px;
  text-align: center;
  z-index: 1;
  transition: transform .38s ease;
}
.cp-timeline__item:hover { transform: translateY(-10px); }

.cp-timeline__num {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid rgba(49,208,131,.35);
  background: rgba(49,208,131,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: #31d083;
  transition: all .42s ease;
}
.cp-timeline__num::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px dashed rgba(49,208,131,.2);
  animation: cpRingSpin 14s linear infinite;
}
.cp-timeline__item:hover .cp-timeline__num {
  background: #31d083;
  color: #041827;
  border-color: #31d083;
  box-shadow: 0 0 0 12px rgba(49,208,131,.1);
}

.cp-timeline__step {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cp-timeline__item h3 { font-size:17px; font-weight:700; color:#fff; margin-bottom:10px; }
.cp-timeline__item p  { font-size:13.5px; color:rgba(255,255,255,.6); line-height:1.65; margin:0; }

/* ── Student Challenges ─────────────────────────────────────── */
.cp-challenges { background: #fff; }

.cp-challenge-card {
  position: relative;
  height: 100%;
  padding: 28px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
  overflow: hidden;
  transition: transform .38s ease, box-shadow .38s ease;
}
.cp-challenge-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0f8f61, #31d083);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s ease;
}
.cp-challenge-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(15,23,42,.13); }
.cp-challenge-card:hover::after { transform: scaleX(1); }

.cp-challenge-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all .38s ease;
}
.cp-challenge-card:hover .cp-challenge-card__icon { background: #0f8f61; color: #fff; }

.cp-challenge-card h3 { font-size:18px; font-weight:700; color:#0f172a; margin-bottom:10px; }
.cp-challenge-card p  { color:#64748b; font-size:15px; line-height:1.65; margin:0; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.cp-faq { background: #f5fbf8; }

.cp-accordion { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }

.cp-accordion__item {
  border: 1px solid rgba(15,143,97,.14);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.cp-accordion__item.is-open {
  box-shadow: 0 16px 50px rgba(15,143,97,.1);
  border-color: rgba(15,143,97,.32);
}

.cp-accordion__btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background .2s;
}
.cp-accordion__btn:hover { background: rgba(15,143,97,.04); }

.cp-accordion__btn h3 { font-size:17px; font-weight:600; color:#0f172a; margin:0; flex:1; text-align:left; }

.cp-accordion__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61;
  font-size: 18px;
  transition: transform .38s ease, background .3s ease, color .3s ease;
}
.cp-accordion__item.is-open .cp-accordion__icon { transform: rotate(45deg); background: #0f8f61; color: #fff; }

.cp-accordion__body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
}
.cp-accordion__item.is-open .cp-accordion__body { max-height: 400px; padding: 0 24px 22px; }

.cp-accordion__body p { color:#64748b; font-size:15px; line-height:1.72; margin:0; }

/* ── CTA ────────────────────────────────────────────────────── */
.cp-cta { padding: 60px 0 100px; background: #f5fbf8; }

.cp-cta__inner {
  position: relative;
  padding: 72px 40px;
  border-radius: 26px;
  background: linear-gradient(130deg, rgba(4,22,38,.96), rgba(4,50,66,.93));
  text-align: center;
  overflow: hidden;
}

.cp-cta__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cp-cta__orb--1 { width:320px; height:320px; top:-110px; left:-90px; background: radial-gradient(circle, rgba(49,208,131,.18), transparent 70%); }
.cp-cta__orb--2 { width:260px; height:260px; bottom:-90px; right:-70px; background: radial-gradient(circle, rgba(15,143,97,.22), transparent 70%); }

.cp-cta__eyebrow {
  position: relative; z-index:1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(49,208,131,.15);
  border: 1px solid rgba(49,208,131,.28);
  color: #31d083;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cp-cta__inner h2 {
  position: relative; z-index:1;
  max-width: 700px;
  margin: 0 auto 36px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
}

.cp-cta__actions {
  position: relative; z-index:1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}
.cp-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .cp-courses-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-timeline { grid-template-columns: repeat(3, 1fr); }
  .cp-timeline::before { display: none; }
}

@media (max-width: 991px) {
  .cp-facts__grid    { grid-template-columns: repeat(2, 1fr); }
  .cp-courses-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .cp-hero           { padding: 110px 0 90px; }
  .cp-hero__scroll   { display: none; }
  .cp-trust-bar      { gap: 14px; padding: 14px 18px; }
  .cp-facts          { margin-top: -30px; }
  .cp-facts__grid    { grid-template-columns: 1fr 1fr; }
  .cp-why-grid       { grid-template-columns: 1fr; }
  .cp-courses-grid   { grid-template-columns: repeat(2, 1fr); }
  .cp-timeline       { grid-template-columns: 1fr; }
  .cp-panel          { padding: 28px 22px; }
  .cp-cta__inner     { padding: 48px 24px; }
}

@media (max-width: 479px) {
  .cp-facts__grid    { grid-template-columns: 1fr; }
  .cp-trust-bar      { flex-direction: column; gap: 10px; }
  .cp-trust-bar__sep { width: 48px; height: 1px; }
}

/* =============================================================
   SHARED — Compact hero for inner pages
   ============================================================= */
.cp-hero--compact { padding: 110px 0 90px; }
@media (max-width:767px) { .cp-hero--compact { padding: 86px 0 70px; } }

/* =============================================================
   SERVICES PAGE  (sp- prefix)
   ============================================================= */
.sp-stats { background: #0f8f61; }
.sp-stats__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.sp-stat-item {
  padding: 36px 24px; text-align:center;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background .3s;
}
.sp-stat-item:last-child { border-right: none; }
.sp-stat-item:hover { background: rgba(255,255,255,.08); }
.sp-stat-item strong { display:block; font-size:44px; font-weight:900; color:#fff; line-height:1; margin-bottom:8px; }
.sp-stat-item span   { font-size:14px; color:rgba(255,255,255,.82); font-weight:500; }

.sp-service-card {
  height:100%; padding:38px;
  border-radius:22px; background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 32px rgba(15,23,42,.06);
  transition:all .38s ease; position:relative; overflow:hidden;
}
.sp-service-card::before {
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,#0f8f61,#31d083);
  transform:scaleX(0); transform-origin:left; transition:transform .42s ease;
}
.sp-service-card:hover { transform:translateY(-8px); box-shadow:0 28px 70px rgba(15,23,42,.13); border-color:rgba(15,143,97,.2); }
.sp-service-card:hover::before { transform:scaleX(1); }
.sp-service-card__icon {
  width:64px; height:64px; border-radius:16px;
  background:#e8f6ef; display:flex; align-items:center; justify-content:center;
  color:#0f8f61; font-size:30px; margin-bottom:20px; transition:all .38s ease;
}
.sp-service-card:hover .sp-service-card__icon { background:#0f8f61; color:#fff; }
.sp-service-card h2 { font-size:22px; font-weight:700; color:#0f172a; margin-bottom:12px; }
.sp-service-card > p { color:#64748b; font-size:15px; line-height:1.7; margin-bottom:22px; }
.sp-service-card__features { display:grid; gap:10px; margin-bottom:26px; }
.sp-service-card__feature { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#334155; }
.sp-service-card__feature i { color:#0f8f61; font-size:16px; flex-shrink:0; margin-top:2px; }
.sp-service-card__link {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:#0f8f61; text-decoration:none; transition:gap .3s;
}
.sp-service-card__link:hover { gap:14px; color:#0f8f61; }

.sp-why-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 20px; border-radius:14px;
  background:#f8fffe; border:1px solid rgba(15,143,97,.1);
  transition:all .3s ease;
}
.sp-why-item:hover { background:#e8f6ef; transform:translateX(6px); border-color:rgba(15,143,97,.28); }
.sp-why-item__icon {
  width:44px; height:44px; flex-shrink:0; border-radius:11px;
  background:#e8f6ef; display:flex; align-items:center; justify-content:center;
  color:#0f8f61; font-size:20px; transition:all .3s ease;
}
.sp-why-item:hover .sp-why-item__icon { background:#0f8f61; color:#fff; }
.sp-why-item h3 { font-size:16px; font-weight:700; color:#0f172a; margin-bottom:4px; }
.sp-why-item p  { font-size:14px; color:#64748b; margin:0; line-height:1.55; }

.sp-testimonials { background:#041827; }
.sp-testimonials .cp-section-tag { background:rgba(49,208,131,.15); color:#31d083; }
.sp-testimonial {
  padding:32px; border-radius:20px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  transition:all .38s ease; height:100%;
}
.sp-testimonial:hover { background:rgba(255,255,255,.1); transform:translateY(-6px); }
.sp-testimonial__tag {
  display:inline-flex; align-items:center; gap:5px;
  padding:4px 12px; border-radius:100px;
  background:rgba(49,208,131,.18); color:#31d083; font-size:12px; font-weight:600; margin-bottom:14px;
}
.sp-testimonial__stars { display:flex; gap:4px; margin-bottom:16px; color:#fbbf24; font-size:16px; }
.sp-testimonial__quote { font-size:15px; color:rgba(255,255,255,.82); line-height:1.78; margin-bottom:24px; font-style:italic; }
.sp-testimonial__author { display:flex; align-items:center; gap:14px; }
.sp-testimonial__avatar {
  width:48px; height:48px; border-radius:50%; background:#0f8f61;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px; font-weight:700; flex-shrink:0;
}
.sp-testimonial__name { font-weight:700; color:#fff; font-size:15px; }
.sp-testimonial__role { font-size:13px; color:rgba(255,255,255,.55); }

/* =============================================================
   BLOG PAGE  (bp- prefix)
   ============================================================= */
.bp-featured {
  border-radius:22px; overflow:hidden; background:#fff;
  border:1px solid rgba(17,24,39,.08); box-shadow:0 12px 50px rgba(15,23,42,.1);
  transition:all .38s ease;
}
.bp-featured:hover { transform:translateY(-6px); box-shadow:0 28px 70px rgba(15,23,42,.15); }
.bp-featured__img-wrap { position:relative; overflow:hidden; height:360px; }
.bp-featured__img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; display:block; }
.bp-featured:hover .bp-featured__img-wrap img { transform:scale(1.05); }
.bp-featured__badge {
  position:absolute; top:20px; left:20px;
  padding:6px 16px; border-radius:100px;
  background:#0f8f61; color:#fff; font-size:12px; font-weight:700;
  letter-spacing:.04em; text-transform:uppercase;
}
.bp-featured__body { padding:32px 36px; }
.bp-featured__cats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.bp-cat-pill { display:inline-flex; padding:4px 14px; border-radius:100px; font-size:12px; font-weight:600; background:#e8f6ef; color:#0f8f61; }
.bp-cat-pill--dark { background:#0f8f61; color:#fff; }
.bp-featured__meta { display:flex; align-items:center; gap:18px; flex-wrap:wrap; font-size:13px; color:#94a3b8; margin-bottom:14px; }
.bp-featured__meta span { display:flex; align-items:center; gap:5px; }
.bp-featured__title {
  font-size:clamp(20px,2.5vw,26px); font-weight:700; color:#0f172a;
  line-height:1.35; margin-bottom:12px; text-decoration:none; display:block; transition:color .2s;
}
.bp-featured__title:hover { color:#0f8f61; }
.bp-featured__excerpt { font-size:15px; color:#64748b; line-height:1.72; margin-bottom:22px; }
.bp-read-more {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:#0f8f61; text-decoration:none; transition:gap .3s;
}
.bp-read-more:hover { gap:14px; color:#0f8f61; }

.bp-card {
  height:100%; border-radius:18px; overflow:hidden; background:#fff;
  border:1px solid rgba(17,24,39,.08); box-shadow:0 8px 30px rgba(15,23,42,.06);
  transition:all .38s ease;
}
.bp-card:hover { transform:translateY(-8px); box-shadow:0 24px 64px rgba(15,23,42,.14); border-color:rgba(15,143,97,.2); }
.bp-card__img-wrap { position:relative; overflow:hidden; height:200px; }
.bp-card__img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; display:block; }
.bp-card:hover .bp-card__img-wrap img { transform:scale(1.07); }
.bp-card__cat { position:absolute; top:12px; left:12px; }
.bp-card__body { padding:22px; }
.bp-card__meta { display:flex; align-items:center; gap:12px; font-size:12px; color:#94a3b8; margin-bottom:10px; flex-wrap:wrap; }
.bp-card__meta span { display:flex; align-items:center; gap:4px; }
.bp-card__title {
  font-size:17px; font-weight:700; color:#0f172a;
  line-height:1.4; margin-bottom:10px; text-decoration:none; display:block; transition:color .2s;
}
.bp-card__title:hover { color:#0f8f61; }
.bp-card__excerpt { font-size:14px; color:#64748b; line-height:1.65; margin-bottom:16px; }

.bp-newsletter {
  position:relative; padding:64px 48px;
  border-radius:24px; background:linear-gradient(130deg,#0f8f61,#0a6845);
  text-align:center; overflow:hidden;
}
.bp-newsletter::before { content:""; position:absolute; top:-70px; right:-70px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.07); }
.bp-newsletter::after  { content:""; position:absolute; bottom:-50px; left:-50px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.05); }
.bp-newsletter h2 { position:relative; z-index:1; color:#fff; margin-bottom:12px; font-size:clamp(22px,3vw,34px); }
.bp-newsletter p  { position:relative; z-index:1; color:rgba(255,255,255,.82); margin-bottom:0; }

.bp-insight-strip { display:grid; grid-template-columns:repeat(4,1fr); border-radius:16px; overflow:hidden; box-shadow:0 16px 56px rgba(15,23,42,.12); }
.bp-insight-item { padding:28px 22px; background:#fff; border-right:1px solid #e4eeeb; text-align:center; transition:background .3s; }
.bp-insight-item:last-child { border-right:none; }
.bp-insight-item:hover { background:#0f8f61; }
.bp-insight-item:hover strong,
.bp-insight-item:hover span { color:rgba(255,255,255,.9); }
.bp-insight-item strong { display:block; font-size:28px; font-weight:800; color:#0f8f61; margin-bottom:4px; transition:color .3s; }
.bp-insight-item span   { font-size:13px; color:#64748b; transition:color .3s; }

/* =============================================================
   CONTACT PAGE  (ct- prefix)
   ============================================================= */
.ct-info-card {
  display:flex; align-items:flex-start; gap:18px;
  padding:26px 24px; border-radius:18px;
  background:#fff; border:1px solid rgba(15,143,97,.12); transition:all .35s ease;
}
.ct-info-card:hover { transform:translateY(-5px); box-shadow:0 20px 54px rgba(15,23,42,.12); border-color:rgba(15,143,97,.3); }
.ct-info-card__icon {
  width:52px; height:52px; flex-shrink:0; border-radius:13px;
  background:#e8f6ef; display:flex; align-items:center; justify-content:center;
  color:#0f8f61; font-size:24px; transition:all .35s ease;
}
.ct-info-card:hover .ct-info-card__icon { background:#0f8f61; color:#fff; }
.ct-info-card h3 { font-size:16px; font-weight:700; color:#0f172a; margin-bottom:6px; }
.ct-info-card p  { font-size:15px; color:#64748b; margin:0; line-height:1.6; }
.ct-info-card a  { color:#0f8f61; text-decoration:none; font-weight:500; transition:color .2s; }
.ct-info-card a:hover { color:#0a6845; text-decoration:underline; }

.ct-form {
  padding:44px; border-radius:24px;
  background:#fff; border:1px solid rgba(15,143,97,.1);
  box-shadow:0 16px 60px rgba(15,23,42,.1);
}
.ct-form label { display:block; font-size:14px; font-weight:600; color:#334155; margin-bottom:7px; }
.ct-form input,
.ct-form select,
.ct-form textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid #dbe5df; border-radius:10px;
  font-size:15px; color:#0f172a; background:#fafffe;
  transition:border-color .25s, box-shadow .25s; outline:none; appearance:none;
}
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus { border-color:#0f8f61; box-shadow:0 0 0 3px rgba(15,143,97,.1); }
.ct-form textarea { min-height:140px; resize:vertical; }

.ct-hours {
  display:flex; align-items:center; gap:12px;
  padding:16px 20px; border-radius:12px;
  background:#f0faf6; border:1px solid rgba(15,143,97,.15);
  font-size:14px; color:#334155;
}
.ct-hours i { color:#0f8f61; font-size:22px; flex-shrink:0; }
.ct-hours strong { color:#0f172a; }

.ct-quick {
  display:inline-flex; align-items:center; gap:12px;
  padding:16px 28px; border-radius:14px;
  font-size:15px; font-weight:600; text-decoration:none; transition:all .3s ease;
}
.ct-quick i { font-size:22px; }
.ct-quick--call { background:#0f8f61; color:#fff; }
.ct-quick--call:hover { background:#0a6845; color:#fff; transform:translateY(-3px); box-shadow:0 12px 30px rgba(15,143,97,.3); }
.ct-quick--whatsapp { background:#25d366; color:#fff; }
.ct-quick--whatsapp:hover { background:#1ebe57; color:#fff; transform:translateY(-3px); box-shadow:0 12px 30px rgba(37,211,102,.3); }

.ct-social-link {
  width:44px; height:44px; border-radius:50%;
  background:#f0faf6; border:1px solid rgba(15,143,97,.15);
  display:flex; align-items:center; justify-content:center;
  color:#0f8f61; font-size:18px; text-decoration:none; transition:all .3s ease;
}
.ct-social-link:hover { background:#0f8f61; color:#fff; transform:translateY(-3px); }

/* Responsive for new pages */
@media (max-width:1199px) {
  .sp-stats__grid    { grid-template-columns:repeat(2,1fr); }
  .bp-insight-strip  { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .sp-stats__grid       { grid-template-columns:1fr 1fr; }
  .bp-newsletter        { padding:44px 24px; }
  .bp-featured__img-wrap{ height:220px; }
  .bp-featured__body    { padding:20px; }
  .ct-form              { padding:28px 20px; }
}
@media (max-width:479px) {
  .sp-stats__grid   { grid-template-columns:1fr; }
  .bp-insight-strip { grid-template-columns:1fr 1fr; }
}

/* =============================================================
   COUNTRY PAGE EXTRA SECTIONS
   ============================================================= */

/* ── University Cards ─────────────────────────────────────── */
.cp-univ-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.cp-univ-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 8px 32px rgba(15,23,42,.07);
  transition: box-shadow .38s ease, border-color .38s ease;
  position: relative;
  overflow: hidden;
}
.cp-univ-card::before {
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg,#0f8f61,#31d083);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .45s ease;
}
.cp-univ-card:hover { box-shadow:0 28px 70px rgba(15,23,42,.14); border-color:rgba(15,143,97,.25); }
.cp-univ-card:hover::before { transform:scaleX(1); }

.cp-univ-card__badge {
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 12px; border-radius:100px;
  background:#e8f6ef; color:#0f8f61;
  font-size:12px; font-weight:700;
  margin-bottom:14px;
}
.cp-univ-card h3 { font-size:19px; font-weight:800; color:#0f172a; margin-bottom:8px; }
.cp-univ-card__courses {
  font-size:13px; color:#64748b; margin-bottom:16px; line-height:1.5;
}
.cp-univ-card__link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:#0f8f61;
  text-decoration:none; transition:gap .3s;
}
.cp-univ-card__link:hover { gap:10px; color:#0f8f61; }

/* ── Scholarship Cards ────────────────────────────────────── */
.cp-scholarship-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.cp-scholarship-card {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(140deg,#f0faf6,#e8f6ef);
  border: 1px solid rgba(15,143,97,.18);
  transition: all .38s ease;
  position: relative;
}
.cp-scholarship-card:hover { transform:translateY(-7px); box-shadow:0 24px 60px rgba(15,143,97,.16); }

.cp-scholarship-card__amount {
  display:block;
  font-size:28px; font-weight:900; color:#0f8f61;
  margin-bottom:6px; line-height:1;
}
.cp-scholarship-card h3 { font-size:17px; font-weight:700; color:#0f172a; margin-bottom:8px; }
.cp-scholarship-card p  { font-size:14px; color:#334155; margin-bottom:14px; line-height:1.55; }
.cp-scholarship-card__criteria {
  display:flex; align-items:center; gap:7px;
  font-size:12px; font-weight:600; color:#0f8f61;
}
.cp-scholarship-card__criteria i { font-size:14px; }

/* ── Cost Breakdown ──────────────────────────────────────── */
.cp-cost-section { background:#f5fbf8; }

.cp-cost-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(15,23,42,.1);
}
.cp-cost-cell {
  padding: 28px 22px;
  background: #fff;
  border-right: 1px solid #e4eeeb;
  text-align: center;
  transition: background .35s, transform .35s;
}
.cp-cost-cell:last-child { border-right:none; }
.cp-cost-cell:hover { background:#0f8f61; transform:translateY(-6px); position:relative; z-index:2; }
.cp-cost-cell:hover .cp-cost-cell__icon,
.cp-cost-cell:hover .cp-cost-cell__label,
.cp-cost-cell:hover .cp-cost-cell__value { color:rgba(255,255,255,.9); }

.cp-cost-cell__icon {
  font-size:28px; color:#0f8f61; margin-bottom:10px;
  display:block; transition:color .35s;
}
.cp-cost-cell__label { display:block; font-size:12px; color:#64748b; margin-bottom:6px; transition:color .35s; }
.cp-cost-cell__value { display:block; font-size:15px; font-weight:700; color:#0f172a; line-height:1.35; transition:color .35s; }

/* ── Work Rights Box ─────────────────────────────────────── */
.cp-work-box {
  display:flex; align-items:flex-start; gap:18px;
  padding:26px 28px;
  border-radius:18px;
  background:#041827;
  border:1px solid rgba(49,208,131,.15);
}
.cp-work-box__icon {
  width:54px; height:54px; flex-shrink:0;
  border-radius:14px;
  background:rgba(49,208,131,.15);
  display:flex; align-items:center; justify-content:center;
  color:#31d083; font-size:26px;
}
.cp-work-box h3 { font-size:18px; font-weight:700; color:#fff; margin-bottom:8px; }
.cp-work-box p  { font-size:14px; color:rgba(255,255,255,.72); margin:0; line-height:1.65; }

/* ── Community Stat Banner ───────────────────────────────── */
.cp-community-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:#0f8f61;
  border-radius:18px;
  overflow:hidden;
}
.cp-community-item {
  padding:32px 22px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.15);
  transition:background .3s;
}
.cp-community-item:last-child { border-right:none; }
.cp-community-item:hover { background:rgba(255,255,255,.08); }
.cp-community-item strong {
  display:block;
  font-size:32px; font-weight:900; color:#fff;
  line-height:1; margin-bottom:6px;
}
.cp-community-item span { font-size:13px; color:rgba(255,255,255,.8); font-weight:500; }

/* ── Country-specific hero stats ─────────────────────────── */
.cp-hero-stats {
  display:inline-flex; align-items:center; gap:24px;
  flex-wrap:wrap;
  margin-top:28px;
  padding:14px 22px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.cp-hero-stats__item { text-align:center; }
.cp-hero-stats__item strong { display:block; font-size:20px; font-weight:800; color:#31d083; line-height:1; }
.cp-hero-stats__item span   { display:block; font-size:11px; color:rgba(255,255,255,.65); margin-top:3px; }
.cp-hero-stats__sep { width:1px; height:32px; background:rgba(255,255,255,.18); }

/* ── Animated gradient highlight ────────────────────────── */
.cp-highlight {
  display:inline;
  background-image:linear-gradient(90deg,#31d083 0%,#fff 45%,#31d083 85%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

/* ── Visa Timeline vertical ─────────────────────────────── */
.cp-visa-steps {
  display:flex;
  flex-direction:column;
  gap:0;
  position:relative;
  padding-left:36px;
}
.cp-visa-steps::before {
  content:"";
  position:absolute;
  left:12px; top:20px; bottom:20px;
  width:2px;
  background:linear-gradient(180deg,#0f8f61,rgba(15,143,97,.15));
  border-radius:2px;
}
.cp-visa-step {
  position:relative;
  padding:0 0 28px 24px;
}
.cp-visa-step::before {
  content:"";
  position:absolute;
  left:-24px; top:4px;
  width:14px; height:14px;
  border-radius:50%;
  background:#0f8f61;
  border:3px solid #e8f6ef;
  box-shadow:0 0 0 3px rgba(15,143,97,.2);
  transition:transform .3s;
}
.cp-visa-step:hover::before { transform:scale(1.3); }
.cp-visa-step h4 { font-size:15px; font-weight:700; color:#0f172a; margin-bottom:4px; }
.cp-visa-step p  { font-size:14px; color:#64748b; margin:0; line-height:1.55; }

/* ── Responsive extras ───────────────────────────────────── */
@media (max-width:1199px) {
  .cp-univ-grid         { grid-template-columns:repeat(2,1fr); }
  .cp-scholarship-grid  { grid-template-columns:repeat(2,1fr); }
  .cp-cost-grid         { grid-template-columns:repeat(2,1fr); }
  .cp-community-strip   { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .cp-univ-grid         { grid-template-columns:1fr; }
  .cp-scholarship-grid  { grid-template-columns:1fr; }
  .cp-cost-grid         { grid-template-columns:1fr 1fr; }
  .cp-community-strip   { grid-template-columns:1fr 1fr; }
  .cp-work-box          { flex-direction:column; gap:12px; padding:20px; }
}
@media (max-width:479px) {
  .cp-cost-grid         { grid-template-columns:1fr; }
  .cp-community-strip   { grid-template-columns:1fr; }
}

/* =============================================================
   HERO IMAGE COLLAGE  — replaces old single card
   ============================================================= */

.cp-hero-collage {
  position: relative;
  padding: 16px 0 68px 16px;
}

/* Animated outer ring */
.cp-hero-collage::after {
  content: "";
  position: absolute;
  inset: -18px 0 40px -2px;
  border-radius: 28px;
  border: 1px solid rgba(49,208,131,.2);
  animation: cpRingFloat 8s ease-in-out infinite;
  pointer-events: none;
}

/* Main large image */
.cp-hero-collage__main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.16);
  box-shadow: 0 36px 90px rgba(0,0,0,.45);
}

.cp-hero-collage__main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  animation: cpCardFloat 7s ease-in-out infinite;
}

/* Dark gradient at bottom of main image */
.cp-hero-collage__main::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(4,18,36,.72), transparent);
  pointer-events: none;
}

/* Country flag badge on main image */
.cp-hero-collage__flag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 100px;
  background: rgba(4,18,36,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.cp-hero-collage__flag img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}

/* Intake pill — top right */
.cp-hero-collage__intake {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: #0f8f61;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15,143,97,.5);
}

/* Floating secondary image — bottom-left */
.cp-hero-collage__float {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 46%;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: cpCardFloat 8.5s 1.2s ease-in-out infinite reverse;
  background: #fff;
}

.cp-hero-collage__float img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* 360° badge — bottom-right */
.cp-hero-collage__badge {
  position: absolute;
  bottom: 4px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(15,23,42,.28);
}

.cp-hero-collage__badge-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: #e8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8f61;
  font-size: 22px;
  flex-shrink: 0;
}

.cp-hero-collage__badge strong { display:block; font-size:18px; font-weight:800; color:#0f172a; line-height:1; }
.cp-hero-collage__badge span   { display:block; font-size:12px; color:#64748b; margin-top:3px; }

/* Students pill on floating image */
.cp-hero-collage__students {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(4,18,36,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.cp-hero-collage__students i { color: #31d083; font-size: 13px; }

/* Responsive */
@media (max-width:991px) {
  .cp-hero-collage__float  { width: 42%; }
}
@media (max-width:767px) {
  .cp-hero-collage { padding: 10px 0 55px 10px; }
  .cp-hero-collage__float  { width: 40%; left: -6px; }
  .cp-hero-collage__badge  { padding: 10px 13px; }
  .cp-hero-collage__badge strong { font-size:15px; }
}

/* =============================================================
   VD JOURNEY ANIMATION STRIP
   Inspired by NRI Overseas infinite-shift-left runway effect
   ============================================================= */

.vd-journey {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(180deg, #03101e 0%, #051a32 45%, #072540 100%);
  isolation: isolate;
}

/* ── Slowly drifting sky background (the infinite-shift-left equivalent) */
.vd-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 180px 90px at 12% 35%, rgba(255,255,255,.05) 0%, transparent 100%),
    radial-gradient(ellipse 250px 80px at 48% 25%, rgba(255,255,255,.04) 0%, transparent 100%),
    radial-gradient(ellipse 160px 70px at 78% 40%, rgba(255,255,255,.05) 0%, transparent 100%),
    radial-gradient(ellipse 200px 100px at 95% 20%, rgba(255,255,255,.03) 0%, transparent 100%);
  animation: vdSkyDrift 80s linear infinite;
}

@keyframes vdSkyDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 1200px 0, 900px 0, 600px 0, 300px 0; }
}

/* ── Stars */
.vd-journey__stars {
  position: absolute;
  inset: 0 0 80px;
  z-index: 1;
  pointer-events: none;
}

.vd-journey__star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: vdStarTwinkle ease-in-out infinite;
}

.vd-journey__star:nth-child(1)  { width:2px; height:2px; top:15%; left:5%;  animation-duration:2.2s; animation-delay:0s; }
.vd-journey__star:nth-child(2)  { width:1px; height:1px; top:25%; left:12%; animation-duration:3.1s; animation-delay:.5s; }
.vd-journey__star:nth-child(3)  { width:2px; height:2px; top:10%; left:22%; animation-duration:1.8s; animation-delay:1s; }
.vd-journey__star:nth-child(4)  { width:1px; height:1px; top:35%; left:30%; animation-duration:2.7s; animation-delay:1.5s; }
.vd-journey__star:nth-child(5)  { width:3px; height:3px; top:8%;  left:42%; animation-duration:2.0s; animation-delay:.3s; }
.vd-journey__star:nth-child(6)  { width:1px; height:1px; top:20%; left:55%; animation-duration:3.5s; animation-delay:2s; }
.vd-journey__star:nth-child(7)  { width:2px; height:2px; top:30%; left:64%; animation-duration:1.9s; animation-delay:.8s; }
.vd-journey__star:nth-child(8)  { width:1px; height:1px; top:12%; left:72%; animation-duration:2.8s; animation-delay:1.2s; }
.vd-journey__star:nth-child(9)  { width:2px; height:2px; top:22%; left:82%; animation-duration:2.3s; animation-delay:1.8s; }
.vd-journey__star:nth-child(10) { width:1px; height:1px; top:18%; left:92%; animation-duration:3.2s; animation-delay:.6s; }
.vd-journey__star:nth-child(11) { width:2px; height:2px; top:38%; left:18%; animation-duration:2.5s; animation-delay:2.2s; }
.vd-journey__star:nth-child(12) { width:1px; height:1px; top:40%; left:50%; animation-duration:1.7s; animation-delay:1.4s; }

@keyframes vdStarTwinkle {
  0%,100% { opacity:.15; transform:scale(1); }
  50%      { opacity:.9;  transform:scale(1.5); }
}

/* ── Clouds */
.vd-journey__cloud {
  position: absolute;
  border-radius: 100px;
  background: rgba(255,255,255,.055);
  filter: blur(3px);
  animation: vdCloudDrift linear infinite;
  z-index: 2;
}

.vd-journey__cloud::before,
.vd-journey__cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.vd-journey__cloud::before { width:55%; height:220%; top:-85%; left:18%; }
.vd-journey__cloud::after  { width:40%; height:190%; top:-70%; right:18%; }

.vd-journey__cloud:nth-child(1) { width:130px; height:38px; top:18%; animation-duration:28s; animation-delay:0s; }
.vd-journey__cloud:nth-child(2) { width:90px;  height:28px; top:32%; animation-duration:22s; animation-delay:-10s; }
.vd-journey__cloud:nth-child(3) { width:160px; height:44px; top:10%; animation-duration:38s; animation-delay:-20s; }
.vd-journey__cloud:nth-child(4) { width:110px; height:32px; top:40%; animation-duration:18s; animation-delay:-6s; }
.vd-journey__cloud:nth-child(5) { width:80px;  height:24px; top:24%; animation-duration:32s; animation-delay:-14s; }

@keyframes vdCloudDrift {
  0%   { transform: translateX(-250px); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 0.8; }
  100% { transform: translateX(calc(100vw + 250px)); opacity: 0; }
}

/* ── Destination country pins */
.vd-journey__pins {
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.vd-journey__pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  animation: vdPinFloat ease-in-out infinite;
}

.vd-journey__pin span { font-size: 16px; }

.vd-journey__pin:nth-child(1) { animation-duration:3.0s; animation-delay:0s; }
.vd-journey__pin:nth-child(2) { animation-duration:3.4s; animation-delay:.4s; }
.vd-journey__pin:nth-child(3) { animation-duration:2.8s; animation-delay:.8s; }
.vd-journey__pin:nth-child(4) { animation-duration:3.2s; animation-delay:1.2s; }
.vd-journey__pin:nth-child(5) { animation-duration:2.6s; animation-delay:1.6s; }
.vd-journey__pin:nth-child(6) { animation-duration:3.6s; animation-delay:2.0s; }
.vd-journey__pin:nth-child(7) { animation-duration:3.0s; animation-delay:2.4s; }
.vd-journey__pin:nth-child(8) { animation-duration:2.9s; animation-delay:2.8s; }

@keyframes vdPinFloat {
  0%,100% { transform: translateY(0);    opacity: .72; }
  50%      { transform: translateY(-6px); opacity: 1; }
}

/* ── Airplane */
.vd-journey__plane {
  position: absolute;
  width: 140px;
  z-index: 6;
  animation: vdPlaneFly 13s ease-in-out infinite;
}

.vd-journey__plane img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.55));
  animation: vdPlaneWobble 3.8s ease-in-out infinite;
}

/* Vapor / contrail trail */
.vd-journey__trail {
  position: absolute;
  top: 50%;
  right: calc(100% - 8px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(270deg, rgba(255,255,255,.6), rgba(255,255,255,.2), transparent);
  transform: translateY(-50%);
  pointer-events: none;
  animation: vdTrailGrow 13s ease-in-out infinite;
}

.vd-journey__trail::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  height: 1px;
  background: linear-gradient(270deg, rgba(255,255,255,.4), transparent);
  animation: vdTrailGrow 13s 0.1s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes vdPlaneFly {
  0%   { left: -160px; top: 55%; }
  10%  { top: 42%; }
  25%  { top: 50%; }
  40%  { top: 44%; left: 42%; }
  60%  { top: 48%; }
  78%  { top: 41%; left: 78%; }
  90%  { top: 47%; }
  100% { left: calc(100% + 170px); top: 55%; }
}

@keyframes vdPlaneWobble {
  0%,100% { transform: rotate(-7deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-8px); }
}

@keyframes vdTrailGrow {
  0%   { width: 0; opacity: 0; }
  4%   { opacity: 1; }
  30%  { width: 180px; }
  60%  { width: 320px; }
  90%  { opacity: .5; }
  100% { width: 500px; opacity: 0; }
}

/* ── City skyline (scrolling) ─ clip-path buildings */
.vd-journey__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 95px;
  z-index: 3;
  animation: vdSkylineScroll 55s linear infinite;
  display: flex;
}

@keyframes vdSkylineScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vd-journey__skyline-block {
  flex-shrink: 0;
  width: 50%;
  height: 100%;
  background: #041827;
  clip-path: polygon(
    0% 100%,   0% 55%,
    1.5% 55%,  1.5% 38%,  2.5% 38%,  2.5% 28%,  3.5% 28%,  3.5% 38%,  4.5% 38%,  4.5% 55%,
    6%   55%,  6%   42%,  7.5% 42%,  7.5% 55%,
    9%   55%,  9%   32%,  10%  32%,  10%  20%,   11%  20%,  11%  32%,  12%  32%,  12%  55%,
    13.5% 55%, 13.5% 45%, 14.5% 45%, 14.5% 38%, 15.5% 38%, 15.5% 45%, 16.5% 45%, 16.5% 55%,
    18%  55%,  18%  60%,
    20%  60%,  20%  44%,  21%  44%,  21%  34%,  22%  34%,  22%  44%,  23%  44%,  23%  60%,
    24.5% 60%, 24.5% 50%, 25.5% 50%, 25.5% 40%, 26.5% 40%, 26.5% 50%, 27.5% 50%, 27.5% 60%,
    29%  60%,  29%  46%,  30%  46%,  30%  28%,  31%  28%,  31%  18%,  32%  18%,  32%  28%,  33%  28%,  33%  46%,  34%  46%,  34%  60%,
    35.5% 60%, 35.5% 52%, 36.5% 52%, 36.5% 42%, 37.5% 42%, 37.5% 52%, 38.5% 52%, 38.5% 60%,
    40%  60%,  40%  48%,  41%  48%,  41%  36%,  42%  36%,  42%  48%,  43%  48%,  43%  60%,
    44.5% 60%, 44.5% 55%,
    46%  55%,  46%  44%,  47%  44%,  47%  32%,  48%  32%,  48%  22%,  49%  22%,  49%  32%,  50%  32%,  50%  44%,  51%  44%,  51%  55%,
    52.5% 55%, 52.5% 46%, 53.5% 46%, 53.5% 38%, 54.5% 38%, 54.5% 46%, 55.5% 46%, 55.5% 55%,
    57%  55%,  57%  48%,  58%  48%,  58%  55%,
    59.5% 55%, 59.5% 40%, 60.5% 40%, 60.5% 28%, 61.5% 28%, 61.5% 16%, 62.5% 16%, 62.5% 28%, 63.5% 28%, 63.5% 40%, 64.5% 40%, 64.5% 55%,
    66%  55%,  66%  45%,  67%  45%,  67%  35%,  68%  35%,  68%  45%,  69%  45%,  69%  55%,
    70.5% 55%, 70.5% 60%,
    72%  60%,  72%  48%,  73%  48%,  73%  38%,  74%  38%,  74%  28%,  75%  28%,  75%  38%,  76%  38%,  76%  48%,  77%  48%,  77%  60%,
    78.5% 60%, 78.5% 52%, 79.5% 52%, 79.5% 42%, 80.5% 42%, 80.5% 52%, 81.5% 52%, 81.5% 60%,
    83%  60%,  83%  46%,  84%  46%,  84%  34%,  85%  34%,  85%  24%,  86%  24%,  86%  34%,  87%  34%,  87%  46%,  88%  46%,  88%  60%,
    89.5% 60%, 89.5% 50%, 90.5% 50%, 90.5% 40%, 91.5% 40%, 91.5% 50%, 92.5% 50%, 92.5% 60%,
    94%  60%,  94%  48%,  95%  48%,  95%  38%,  96%  38%,  96%  48%,  97%  48%,  97%  60%,
    98.5% 60%, 98.5% 52%, 100% 52%,
    100% 100%
  );
}

/* Green glow line above skyline (runway lights) */
.vd-journey__runway {
  position: absolute;
  bottom: 95px;
  left: 0; right: 0;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(49,208,131,.12) 15%,
    rgba(49,208,131,.4)  50%,
    rgba(49,208,131,.12) 85%,
    transparent 100%
  );
}

/* Dashed runway-light dots */
.vd-journey__runway::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 30px,
    rgba(49,208,131,.25) 30px,
    rgba(49,208,131,.25) 60px
  );
  animation: vdRunwayLights 0.8s linear infinite;
}

@keyframes vdRunwayLights {
  from { background-position: 0 0; }
  to   { background-position: 60px 0; }
}

/* Left / right fade edges (vignette) */
.vd-journey__vignette {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: linear-gradient(90deg,
    rgba(3,16,30,.9)  0%,
    transparent       14%,
    transparent       86%,
    rgba(3,16,30,.9)  100%
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width:991px) {
  .vd-journey { height: 200px; }
  .vd-journey__pin:nth-child(n+7) { display: none; }
  .vd-journey__plane { width: 110px; }
}
@media (max-width:767px) {
  .vd-journey { height: 170px; }
  .vd-journey__pin:nth-child(n+5) { display: none; }
  .vd-journey__plane { width: 90px; }
  .vd-journey__skyline { height: 70px; }
}

/* =============================================================
   VD RUNWAY PROCESS SECTION
   Reference: NRI Overseas runway + location pins style
   ============================================================= */

.vd-rps {
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

/* Outer wrapper scrollable on small screens */
.vd-rps__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 10px;
}

/* Inner min-width for pins */
.vd-rps__inner {
  position: relative;
  min-width: 1040px;
  padding: 0 60px;
}

/* ── The Runway Road ── */
.vd-rps__road {
  position: relative;
  height: 88px;
  background: linear-gradient(180deg,
    #7a7a7a 0%,
    #555 6%,
    #3a3a3a 15%,
    #2e2e2e 50%,
    #3a3a3a 85%,
    #555 94%,
    #7a7a7a 100%
  );
  box-shadow: 0 16px 48px rgba(0,0,0,.28), inset 0 2px 6px rgba(0,0,0,.4);
}

/* Top yellow-orange border strip */
.vd-rps__road::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #e8850a  0px, #e8850a  28px,
    #ff6b00  28px, #ff6b00 56px
  );
}

/* Bottom yellow-orange border strip */
.vd-rps__road::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #e8850a  0px, #e8850a  28px,
    #ff6b00  28px, #ff6b00 56px
  );
}

/* Animated center dashes */
.vd-rps__road-center {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 5px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.65) 0px,
    rgba(255,255,255,.65) 45px,
    transparent 45px,
    transparent 72px
  );
  animation: vdRoadDash 1.4s linear infinite;
}

@keyframes vdRoadDash {
  from { background-position: 0 0; }
  to   { background-position: 72px 0; }
}

/* Small side reflectors */
.vd-rps__road-dots {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 100px;
  padding: 0 80px;
}

/* ── Airplane on the runway ── */
.vd-rps__plane {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 190px;
  z-index: 8;
  pointer-events: none;
  animation: vdRpsPlaneFloat 4s ease-in-out infinite;
}

.vd-rps__plane img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.45));
}

@keyframes vdRpsPlaneFloat {
  0%,100% { transform: translateY(-55%) rotate(0deg); }
  50%      { transform: translateY(-60%) rotate(.8deg); }
}

/* ── Location Pins ── */
.vd-rps__pin {
  position: absolute;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
}

/* ABOVE runway: flex column-reverse → head at bottom (touching road), label at top */
.vd-rps__pin--above {
  flex-direction: column-reverse;
  bottom: 100%;
}

/* BELOW runway: flex column → head at top (touching road), label at bottom */
.vd-rps__pin--below {
  flex-direction: column;
  top: 100%;
}

/* Orange balloon / location pin head */
.vd-rps__pin-head {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffaa30, #e8850a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(232,133,10,.5);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  z-index: 2;
}

.vd-rps__pin:hover .vd-rps__pin-head {
  transform: scale(1.15);
  box-shadow: 0 12px 38px rgba(232,133,10,.7);
}

.vd-rps__pin-head i {
  font-size: 24px;
  color: #fff;
}

/* Triangle pointer — "above" pins point DOWN into road */
.vd-rps__pin--above .vd-rps__pin-head::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left:  10px solid transparent;
  border-right: 10px solid transparent;
  border-top:   15px solid #e8850a;
}

/* Triangle pointer — "below" pins point UP into road */
.vd-rps__pin--below .vd-rps__pin-head::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left:  10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #ffaa30;
}

/* Connecting stem */
.vd-rps__pin-stem {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(232,133,10,.8), rgba(232,133,10,.25));
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.vd-rps__pin--below .vd-rps__pin-stem {
  background: linear-gradient(180deg, rgba(232,133,10,.25), rgba(232,133,10,.8));
}

/* Text label */
.vd-rps__pin-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  max-width: 140px;
  line-height: 1.35;
  padding: 10px 6px 6px;
  white-space: normal;
}

.vd-rps__pin--below .vd-rps__pin-label {
  padding: 6px 6px 10px;
}

.vd-rps__pin-num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0f8f61;
  margin-bottom: 3px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .vd-rps__plane  { width: 150px; }
  .vd-rps__inner  { min-width: 900px; }
}
@media (max-width: 767px) {
  .vd-rps         { padding: 80px 0 60px; }
  .vd-rps__plane  { width: 120px; }
}

/* =============================================================
   VD BOARDING PASS — Original Process Section Design
   ============================================================= */

.vd-bp-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f5fbf8 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}

/* Subtle background circles */
.vd-bp-section::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,208,131,.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.vd-bp-section::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,143,97,.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

/* ── Header flight path line ── */
.vd-bp-flightbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  position: relative;
}

.vd-bp-flightbar__airport {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .05em;
}

.vd-bp-flightbar__code {
  font-size: 22px;
  font-weight: 900;
  color: #0f8f61;
  letter-spacing: .04em;
}

.vd-bp-flightbar__line {
  flex: 1;
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, #0f8f61, #31d083, rgba(49,208,131,.2));
  border-radius: 100px;
}

/* Animated airplane on the line */
.vd-bp-flightbar__plane {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: #0f8f61;
  animation: vdFlightBarPlane 4s ease-in-out infinite;
}

@keyframes vdFlightBarPlane {
  0%   { left: 0%;    opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 100%;  opacity: 0; }
}

/* ── Boarding Pass Cards Grid ── */
.vd-bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── Individual Card ── */
.vd-bcard {
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.07);
  box-shadow: 0 6px 28px rgba(15,23,42,.07);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .38s ease, border-color .38s ease;
  display: flex;
  flex-direction: column;
}

.vd-bcard:hover {
  transform: translateY(-12px) rotate(.4deg);
  box-shadow: 0 28px 70px rgba(15,143,97,.2);
  border-color: rgba(15,143,97,.3);
}

/* ── Card top accent strip ── */
.vd-bcard__top {
  height: 6px;
  background: linear-gradient(90deg, #0f8f61, #31d083, #0f8f61);
  background-size: 200% auto;
  animation: vdCardTopShimmer 3s linear infinite;
}

@keyframes vdCardTopShimmer {
  from { background-position: 0 0; }
  to   { background-position: 200% 0; }
}

/* ── Card header ── */
.vd-bcard__head {
  padding: 18px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17,24,39,.06);
}

.vd-bcard__flight {
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vd-bcard__route {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0f8f61;
}

.vd-bcard__route i { font-size: 14px; }

/* ── Card body ── */
.vd-bcard__body { padding: 20px 22px 0; flex: 1; }

.vd-bcard__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f8f61;
  font-size: 26px;
  margin-bottom: 16px;
  transition: all .38s ease;
  position: relative;
}

.vd-bcard:hover .vd-bcard__icon-wrap {
  background: #0f8f61;
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

/* Ghost step number behind icon */
.vd-bcard__ghost-num {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(15,143,97,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vd-bcard__title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.vd-bcard__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.68;
  margin: 0;
}

/* ── Perforated tear line ── */
.vd-bcard__perf {
  position: relative;
  margin: 18px 0 0;
  height: 1px;
  border: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(15,143,97,.3) 0px,
    rgba(15,143,97,.3) 8px,
    transparent 8px,
    transparent 14px
  );
}

/* Notch circles on edges (like real boarding pass perforations) */
.vd-bcard__perf::before,
.vd-bcard__perf::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5fbf8;
  border: 1px solid rgba(15,143,97,.15);
  z-index: 2;
}

.vd-bcard__perf::before { left: -32px; }
.vd-bcard__perf::after  { right: -32px; }

/* ── Card footer stub ── */
.vd-bcard__foot {
  padding: 13px 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-bcard__step-code {
  font-size: 11px;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vd-bcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.vd-bcard__badge--free    { background: #e8f6ef; color: #0f8f61; }
.vd-bcard__badge--open    { background: rgba(99,102,241,.1); color: #4f46e5; }
.vd-bcard__badge--ready   { background: rgba(245,158,11,.1);  color: #d97706; }
.vd-bcard__badge--board   { background: rgba(239,68,68,.1);   color: #dc2626; }

/* ── Connect bar between cards (visual line at bottom) ── */
.vd-bp-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.vd-bp-connector__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15,143,97,.25);
}

.vd-bp-connector__dot--active {
  background: #0f8f61;
  box-shadow: 0 0 0 4px rgba(15,143,97,.15);
}

.vd-bp-connector__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(15,143,97,.15), rgba(15,143,97,.4), rgba(15,143,97,.15));
  border-radius: 100px;
  max-width: 80px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .vd-bp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .vd-bp-grid { grid-template-columns: 1fr; }
  .vd-bcard:hover { transform: translateY(-8px) rotate(0deg); }
  .vd-bp-section { padding: 80px 0; }
}

/* =============================================================
   VD 3D PLANE SCROLL SECTION
   Three.js + GSAP ScrollTrigger — adapted from CodePen
   ============================================================= */

/* Canvas injected by Three.js — fixed overlay */
#vd-plane-canvas-wrap {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

#vd-plane-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Loading overlay */
.vd-3d-loading {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4cfc9;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: .04em;
  visibility: hidden;
  opacity: 0;
}

/* Outer section */
.vd-plane-section {
  position: relative;
  background-color: #d4cfc9;
  z-index: 1;
}

/* All scrollable content inside */
.vd-plane-content {
  position: relative;
  z-index: 2;
}

/* ── Generic section block ── */
.vd-ps {
  position: relative;
  padding: 10vmin;
  width: calc(100vw - 20vmin);
  height: calc(100vh - 20vmin);
  margin: 0 auto;
  z-index: 2;
}

.vd-ps--right  { text-align: right; }

.vd-ps--dark {
  color: #fff;
}

.vd-ps h1 {
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.05;
}

.vd-ps h2 {
  font-size: clamp(30px, 6vw, 68px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.1;
}

.vd-ps--dark h1,
.vd-ps--dark h2 { color: #fff; }

.vd-ps--right h2 { text-align: right; }

.vd-ps p {
  font-size: clamp(15px, 2vw, 22px);
  color: #334155;
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}

.vd-ps--dark p  { color: rgba(255,255,255,.8); }
.vd-ps--right p { margin-left: auto; text-align: right; }

/* Scroll CTA */
.vd-ps__scroll-cta {
  position: absolute;
  bottom: 10vmin;
  font-size: clamp(18px, 3.5vw, 28px);
  color: #0f172a;
  font-weight: 500;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vd-ps__scroll-cta::after {
  content: "";
  width: 40px; height: 2px;
  background: #0f8f61;
  border-radius: 2px;
  animation: vdScrollCue 1.5s ease-in-out infinite;
}

@keyframes vdScrollCue {
  0%,100% { transform: scaleX(1); }
  50%      { transform: scaleX(0.4); }
}

/* ── Ground / parallax container ── */
.vd-plane-ground-wrap {
  position: relative;
  overflow: hidden;
}

.vd-plane-parallax {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -100px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform-origin: top center;
}

.vd-plane-ground {
  z-index: 0;
  background-image: url("https://assets.codepen.io/557388/background-reduced.jpg");
}

.vd-plane-clouds {
  z-index: 3;
  background-image: url("https://assets.codepen.io/557388/clouds.png");
}

/* ── Blueprint section ── */
.vd-plane-blueprint {
  position: relative;
  background-color: #041827;
  background-image:
    linear-gradient(rgba(49,208,131,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,208,131,.1) 1px, transparent 1px),
    linear-gradient(rgba(49,208,131,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,208,131,.05) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
  background-attachment: fixed;
}

/* SVG overlay (fixed, drawn on scroll) */
.vd-plane-blueprint-svg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  stroke: #31d083;
  fill: none;
  pointer-events: none;
  z-index: 51;
  visibility: hidden;
}

.vd-plane-blueprint .vd-ps {
  background: transparent;
}

/* ── Sunset CTA ── */
.vd-plane-sunset {
  background: url("https://assets.codepen.io/557388/sunset-reduced.jpg") no-repeat top center;
  background-size: cover;
}

.vd-plane-sunset .vd-ps h2 { color: #fff; }
.vd-plane-sunset .vd-ps p  { color: rgba(255,255,255,.85); }

.vd-plane-end h2 { margin-bottom: 50vh; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .vd-ps { padding: 8vmin; width: calc(100vw - 16vmin); height: calc(100vh - 16vmin); }
}

/* =============================================================
   VD JOURNEY STEPS — Vertical airplane scroll timeline
   ============================================================= */

.vd-jsteps-section {
  padding: 100px 0 120px;
  background: #f5fbf8;
  position: relative;
  overflow: hidden;
}

.vd-jsteps-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,208,131,.07) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

/* ── Scrollable wrapper ── */
.vd-jsteps-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 0 60px;
}

/* ── Center vertical line ── */
.vd-jline {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  z-index: 1;
}

/* Dashed track background */
.vd-jline__track {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(15,143,97,.22) 0px, rgba(15,143,97,.22) 8px,
    transparent 8px, transparent 18px
  );
  border-radius: 4px;
}

/* Animated green fill (drawn on scroll) */
.vd-jline__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, #0f8f61, #31d083);
  border-radius: 4px;
  transition: height .05s linear;
}

/* ── Airplane on the line ── */
.vd-jline__plane {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 80px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.28));
  transition: top .15s ease;
}

.vd-jline__plane img { width: 100%; display: block; }

/* ── Step rows — 3-column grid: left | dot | right ── */
.vd-jstep {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.vd-jstep:last-child { margin-bottom: 0; }

/* Center dot */
.vd-jstep__dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(15,143,97,.28);
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61; font-size: 24px;
  box-shadow: 0 4px 18px rgba(15,143,97,.15);
  transition: all .38s ease;
  position: relative; z-index: 3;
  flex-shrink: 0;
}

.vd-jstep:hover .vd-jstep__dot {
  background: #0f8f61;
  color: #fff;
  border-color: #0f8f61;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(15,143,97,.35);
}

/* Content card */
.vd-jstep__card {
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,143,97,.1);
  box-shadow: 0 6px 24px rgba(15,23,42,.07);
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}

.vd-jstep__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15,143,97,.14);
  border-color: rgba(15,143,97,.28);
}

/* Left-side card (text right-aligned) */
.vd-jstep__card--left { text-align: right; }

/* Step label / eyebrow */
.vd-jstep__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #0f8f61;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

/* Step title */
.vd-jstep__title {
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.55;
  margin-bottom: 14px;
}

.vd-jstep__title strong { color: #0f8f61; font-weight: 700; }

/* CTA button */
.vd-jstep__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(15,143,97,.4);
  color: #0f8f61;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.vd-jstep__cta:hover { background: #0f8f61; color: #fff; border-color: #0f8f61; }

/* Empty column filler */
.vd-jstep__empty { display: block; }

/* ── Connector dots above/below each step dot ── */
.vd-jstep__dot::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,143,97,.3);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .vd-jsteps-wrap     { padding-left: 44px; }
  .vd-jline           { left: 14px; transform: none; }
  .vd-jstep           { grid-template-columns: 44px 1fr; }
  .vd-jstep__empty    { display: none; }
  .vd-jstep__card--left { text-align: left; }
  /* On mobile: dot first, card second, empty col removed */
  .vd-jstep > *:first-child:not(.vd-jstep__dot) { display: none; }
  .vd-jline__plane    { width: 56px; }
}

/* =============================================================
   GS — Ground Services: service cards inside 3D ground-container
   ============================================================= */

/* Service sections match standard .section height for correct GSAP timing */
.gs-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Glassmorphism service card */
.gs-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  padding: 36px 38px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    0 30px 80px rgba(15,23,42,.25),
    0 0 0 1px rgba(255,255,255,.3) inset;
  transition: transform .38s ease, box-shadow .38s ease;
  position: relative;
  overflow: hidden;
}

.gs-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f8f61, #31d083);
  border-radius: 24px 24px 0 0;
}

.gs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(15,23,42,.3), 0 0 0 1px rgba(255,255,255,.4) inset;
}

/* Ghost step number */
.gs-card__num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(15,143,97,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Icon circle */
.gs-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: #e8f6ef;
  display: flex; align-items: center; justify-content: center;
  color: #0f8f61; font-size: 28px;
  margin-bottom: 16px;
  transition: all .38s ease;
}

.gs-card:hover .gs-card__icon { background: #0f8f61; color: #fff; }

/* Step label */
.gs-card__label {
  font-size: 11px;
  font-weight: 800;
  color: #0f8f61;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

/* Title — override .content h2 */
.gs-card h2 {
  font-size: clamp(26px, 3.2vw, 42px) !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  display: block !important;
  line-height: 1.12 !important;
  margin: 0 0 12px !important;
}

/* Description */
.gs-card p {
  font-size: 15px !important;
  color: #334155 !important;
  line-height: 1.72 !important;
  margin: 0 0 22px !important;
  max-width: none !important;
}

/* Feature bullets */
.gs-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  width: 100%;
}

.gs-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #334155;
}

.gs-card__feature i { color: #0f8f61; font-size: 15px; flex-shrink: 0; margin-top: 2px; }

/* CTA button */
.gs-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  background: #0f8f61;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  align-self: flex-start;
}

.gs-card__btn:hover { background: #0a6845; color: #fff; transform: translateX(5px); }

/* Right-aligned variant */
.gs-section--right .gs-card {
  align-items: flex-end;
  text-align: right;
}

.gs-section--right .gs-card__features { align-items: flex-end; }
.gs-section--right .gs-card__feature  { flex-direction: row-reverse; }
.gs-section--right .gs-card__btn      { align-self: flex-end; }

/* Responsive */
@media (max-width: 991px) {
  .gs-card { max-width: 420px; padding: 28px 26px; }
  .gs-card h2 { font-size: clamp(22px, 4vw, 34px) !important; }
}
@media (max-width: 767px) {
  .gs-card { max-width: 100%; }
}

/* =============================================================
   VD JOURNEY ROADMAP — horizontal railway timeline
   ============================================================= */

.vd-journey-section {
  background: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}

.vd-journey-heading {
  padding-bottom: 60px;
}

.vd-journey-wrap {
  overflow: hidden;
  padding-bottom: 40px;
  position: relative;
}

.vd-journey-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: journey-scroll 90s linear infinite;
}

.vd-journey-bg {
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

@keyframes journey-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 769px) {
  .vd-journey-plane {
    position: absolute;
    top: 19%;
    left: 0%;
    width: 320px;
    z-index: 10;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .vd-journey-plane {
    position: absolute;
    top: 15%;
    left: 0%;
    width: 90%;
    z-index: 10;
    pointer-events: none;
  }
  .vd-journey-track {
    height: 285px;
  }
}

.vd-journey-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 150px 64px 150px;
  min-width: 680px;
  position: relative;
}

/* ── RAILWAY TRACK ── */
.vd-jtrack {
  grid-column: 1 / -1;
  grid-row: 2;
  z-index: 1;
  position: relative;
  background: repeating-linear-gradient(
    90deg,
    #5c3d1e 0px, #5c3d1e 26px,
    #3d2510 26px, #3d2510 40px
  );
}

.vd-jtrack::before,
.vd-jtrack::after {
  content: '';
  position: absolute;
  left: -60px;
  right: -60px;
  height: 11px;
  background: linear-gradient(180deg, #f0c040 0%, #c89020 100%);
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.vd-jtrack::before { top: 11px; }
.vd-jtrack::after  { bottom: 11px; }

/* ── STEP ITEMS ── */
.vd-jstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  z-index: 3;
  gap: 12px;
}

.vd-jstep--above {
  grid-row: 1;
  justify-content: flex-end;
  padding-bottom: 0;
}

.vd-jstep--below {
  grid-row: 3;
  justify-content: flex-start;
  padding-top: 0;
}

/* ── PIN ── */
.vd-jpin {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
  position: relative;
  flex-shrink: 0;
  z-index: 4;
}

.vd-jpin--down::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 17px solid #f97316;
}

.vd-jpin--up::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #f97316;
}

/* ── LABEL ── */
.vd-jlabel {
  color: #0a6845;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 130px;
}

.vd-jnum {
  display: inline;
  font-weight: 700;
  color: #f97316;
  margin-right: 2px;
}

@media (max-width: 767px) {
  .vd-journey-grid { min-width: 620px; grid-template-rows: 130px 54px 130px; }
  .vd-jpin { width: 48px; height: 48px; font-size: 20px; }
  .vd-jlabel { font-size: 12px; max-width: 110px; }
}

/* ======================== Typewriter ======================== */
#vd-typewriter {
  display: inline;
}
.vd-cursor {
  display: inline;
  color: inherit;
  font-weight: 400;
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 1px;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ======================== Service Cards ======================== */
.vd-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s, transform 0.3s;
}
.vd-service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.vd-service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-50, #eef3ff);
  border-radius: 14px;
}
.vd-service-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.vd-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--main-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.vd-service-card__link:hover { gap: 10px; }

/* ======================== Destination Cards ======================== */
.vd-dest-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.vd-dest-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); color: inherit; }
.vd-dest-card__img { overflow: hidden; height: 200px; }
.vd-dest-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vd-dest-card:hover .vd-dest-card__img img { transform: scale(1.06); }
.vd-dest-card__body { padding: 20px 22px 24px; }
.vd-dest-card__flag { font-size: 28px; }
.vd-dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--main-600);
  font-weight: 600;
  font-size: 14px;
}
.vd-dest-card:hover .vd-dest-card__link { gap: 10px; }

/* ======================== About Section ======================== */
.vd-about-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--main-600);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.vd-about-badge__number { display: block; font-size: 32px; font-weight: 700; line-height: 1; }
.vd-about-badge__label  { display: block; font-size: 13px; margin-top: 4px; opacity: 0.9; }
.vd-check-icon {
  width: 28px;
  height: 28px;
  color: var(--main-600);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 576px) {
  .vd-about-badge { right: 10px; bottom: 10px; }
}

/* ======================== Why Choose Us ======================== */
.vd-why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: background 0.3s;
}
.vd-why-card:hover { background: rgba(255,255,255,0.13); }
.vd-why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--main-600);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

/* ======================== Process Cards ======================== */
.vd-process-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid #e5e7eb;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.vd-process-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); transform: translateY(-4px); }
.vd-process-card--active {
  background: var(--main-600);
  border-color: var(--main-600);
  color: #fff;
}
.vd-process-card--active h5,
.vd-process-card--active p { color: #fff; }
.vd-process-card__num {
  font-size: 48px;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1;
}
.vd-process-card--active .vd-process-card__num { color: rgba(255,255,255,0.2); }
.vd-process-card__icon {
  font-size: 32px;
  color: var(--main-600);
  margin-top: 16px;
}
.vd-process-card--active .vd-process-card__icon { color: #fff; }

/* ======================== Blog Cards ======================== */
.vd-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.vd-blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); transform: translateY(-4px); }
.vd-blog-card__img { overflow: hidden; height: 220px; }
.vd-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vd-blog-card:hover .vd-blog-card__img img { transform: scale(1.06); }
.vd-blog-card__body { padding: 24px 24px 28px; }
.vd-blog-card__tag {
  display: inline-block;
  background: var(--main-50, #eef3ff);
  color: var(--main-600);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.vd-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--main-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.vd-blog-card:hover .vd-blog-card__link { gap: 10px; }

/* push scroll-to-top above mobile bar on small screens */
@media (max-width: 767px) {
  .progress-wrap {
    inset-block-end: 72px !important;
  }
}

/* ======================== Mobile Bottom Bar ======================== */
.vd-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background: var(--main-two-600);
  padding: 8px 12px;
  gap: 10px;
}

.vd-mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--main-600);
  color: hsl(var(--white));
  font-weight: 600;
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.vd-mobile-bar__btn i {
  font-size: 18px;
}

.vd-mobile-bar__btn--wa {
  background: #00CC99;
  color: hsl(var(--white));
}

/* ======================== Desktop Floating Buttons ======================== */
.vd-float-btns {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9998;
  flex-direction: column;
  gap: 12px;
}

.vd-float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  padding: 14px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  overflow: hidden;
  max-width: 52px;
  transition: max-width 0.35s ease, padding 0.35s ease, gap 0.35s ease;
  white-space: nowrap;
}

.vd-float-btn:hover {
  max-width: 160px;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
}

.vd-float-btn__label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  width: 0;
  transition: opacity 0.25s ease 0.1s, width 0.3s ease;
  overflow: hidden;
}

.vd-float-btn:hover .vd-float-btn__label {
  opacity: 1;
  width: auto;
}

.vd-float-btn--wa {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  animation: glow-wa 2s ease-in-out infinite;
}

.vd-float-btn--call {
  background: var(--main-600);
  box-shadow: 0 4px 18px rgba(99,130,235,0.45);
  animation: glow-call 2s ease-in-out infinite;
}

.vd-float-btn--wa:hover  { box-shadow: 0 6px 28px rgba(37,211,102,0.7); animation: none; }
.vd-float-btn--call:hover { box-shadow: 0 6px 28px rgba(99,130,235,0.7); animation: none; }

@keyframes glow-wa {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.85), 0 0 0 8px rgba(37,211,102,0.12); }
}

@keyframes glow-call {
  0%, 100% { box-shadow: 0 4px 18px rgba(99,130,235,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(99,130,235,0.85), 0 0 0 8px rgba(99,130,235,0.12); }
}

@media (min-width: 1200px) {
  .logo img {
    padding: 5px;
  }
}

